Saved a whole four bytes of memory

This commit is contained in:
David Anderson
2005-07-19 16:14:52 +00:00
parent 3863bd3ccc
commit ffbf9fdca6
3 changed files with 35 additions and 31 deletions

View File

@ -35,9 +35,12 @@ public:
int Type();
int type;
REAL fData;
union
{
REAL fData;
int iData;
} v;
String cData;
int iData;
};
extern AMX_NATIVE_INFO msg_Natives[];