1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 20:46:03 +08:00

Updated typedescription_t with unknown members (thanks pred)

This commit is contained in:
Scott Ehlert
2008-11-12 00:02:51 -06:00
parent a3e4dfb524
commit 2f59f3eb64

View File

@ -260,6 +260,7 @@ struct typedescription_t
int fieldOffset[ TD_OFFSET_COUNT ]; // 0 == normal, 1 == packed offset int fieldOffset[ TD_OFFSET_COUNT ]; // 0 == normal, 1 == packed offset
unsigned short fieldSize; unsigned short fieldSize;
short flags; short flags;
int unknown[2];
// the name of the variable in the map/fgd data, or the name of the action // the name of the variable in the map/fgd data, or the name of the action
const char *externalName; const char *externalName;
// pointer to the function set for save/restoring of custom data types // pointer to the function set for save/restoring of custom data types
@ -289,10 +290,10 @@ struct typedescription_t
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
struct datamap_t struct datamap_t
{ {
typedescription_t *dataDesc; 0 typedescription_t *dataDesc;
int dataNumFields; 4 int dataNumFields;
char const *dataClassName; 8 char const *dataClassName;
datamap_t *baseMap; 12 datamap_t *baseMap;
bool chains_validated; bool chains_validated;
// Have the "packed" offsets been computed // Have the "packed" offsets been computed