Fix more IW5 command and struct mistakes

This commit is contained in:
Jan
2021-07-24 10:54:13 +02:00
parent 29f72cde7a
commit 7afc5d42b0
6 changed files with 21 additions and 5 deletions

View File

@ -660,10 +660,16 @@ namespace IW5
float floatTime;
};
struct complex_s
{
float real;
float imag;
};
struct water_t
{
WaterWritable writable;
float* H0;
complex_s* H0;
float* wTerm;
int M;
int N;
@ -3370,6 +3376,8 @@ namespace IW5
SndAliasCustom projIgnitionSound;
};
typedef tdef_align(4) AttSight AttSight4;
struct WeaponAttachment
{
const char* szInternalName;
@ -3381,7 +3389,7 @@ namespace IW5
XModel** viewModels;
XModel** reticleViewModels;
AttAmmoGeneral* ammogeneral;
AttSight* sight;
AttSight4* sight;
AttReload* reload;
AttAddOns* addOns;
AttGeneral* general;