mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Fixes
This commit is contained in:
parent
8f4258716f
commit
86034d5a98
2 changed files with 34 additions and 1 deletions
|
@ -3919,7 +3919,11 @@ typedef struct Container_str_s {
|
||||||
int maxobjects;
|
int maxobjects;
|
||||||
} Container_str;
|
} Container_str;
|
||||||
|
|
||||||
typedef vec3_t Vector;
|
typedef struct Vector_s {
|
||||||
|
float x;
|
||||||
|
float y;
|
||||||
|
float z;
|
||||||
|
} Vector;
|
||||||
|
|
||||||
typedef struct spawnsort_s {
|
typedef struct spawnsort_s {
|
||||||
void *spawnpoint;
|
void *spawnpoint;
|
||||||
|
|
|
@ -1,3 +1,32 @@
|
||||||
|
typedef struct beam_s {
|
||||||
|
Class_t baseClass;
|
||||||
|
int entity;
|
||||||
|
int hModel;
|
||||||
|
int endtime;
|
||||||
|
Vector start;
|
||||||
|
Vector end;
|
||||||
|
float scale;
|
||||||
|
float alpha;
|
||||||
|
int flags;
|
||||||
|
int parent;
|
||||||
|
float max_offset;
|
||||||
|
float min_offset;
|
||||||
|
int numSubdivisions;
|
||||||
|
int overlap;
|
||||||
|
int beamshader;
|
||||||
|
unsigned char shaderRGBA[4];
|
||||||
|
int update_time;
|
||||||
|
int delay;
|
||||||
|
float life;
|
||||||
|
int numspherebeams;
|
||||||
|
float sphereradius;
|
||||||
|
int toggletime;
|
||||||
|
int toggledelay;
|
||||||
|
int active;
|
||||||
|
float alphastep;
|
||||||
|
int renderfx;
|
||||||
|
} beam_t;
|
||||||
|
|
||||||
typedef struct cg_common_data_s {
|
typedef struct cg_common_data_s {
|
||||||
Class_t baseClass;
|
Class_t baseClass;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue