mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-04 02:01:51 +00:00
chore: use Asset definition instead of enum entry for zcg
This commit is contained in:
@ -3,31 +3,31 @@ game IW3;
|
||||
architecture x86;
|
||||
|
||||
// Game Assets
|
||||
asset PhysPreset ASSET_TYPE_PHYSPRESET;
|
||||
asset XAnimParts ASSET_TYPE_XANIMPARTS;
|
||||
asset XModel ASSET_TYPE_XMODEL;
|
||||
asset Material ASSET_TYPE_MATERIAL;
|
||||
asset MaterialTechniqueSet ASSET_TYPE_TECHNIQUE_SET;
|
||||
asset GfxImage ASSET_TYPE_IMAGE;
|
||||
asset snd_alias_list_t ASSET_TYPE_SOUND;
|
||||
asset SndCurve ASSET_TYPE_SOUND_CURVE;
|
||||
asset LoadedSound ASSET_TYPE_LOADED_SOUND;
|
||||
asset clipMap_t ASSET_TYPE_CLIPMAP_PVS;
|
||||
asset ComWorld ASSET_TYPE_COMWORLD;
|
||||
asset GameWorldSp ASSET_TYPE_GAMEWORLD_SP;
|
||||
asset GameWorldMp ASSET_TYPE_GAMEWORLD_MP;
|
||||
asset MapEnts ASSET_TYPE_MAP_ENTS;
|
||||
asset GfxWorld ASSET_TYPE_GFXWORLD;
|
||||
asset GfxLightDef ASSET_TYPE_LIGHT_DEF;
|
||||
asset Font_s ASSET_TYPE_FONT;
|
||||
asset MenuList ASSET_TYPE_MENULIST;
|
||||
asset menuDef_t ASSET_TYPE_MENU;
|
||||
asset LocalizeEntry ASSET_TYPE_LOCALIZE_ENTRY;
|
||||
asset WeaponDef ASSET_TYPE_WEAPON;
|
||||
asset FxEffectDef ASSET_TYPE_FX;
|
||||
asset FxImpactTable ASSET_TYPE_IMPACT_FX;
|
||||
asset RawFile ASSET_TYPE_RAWFILE;
|
||||
asset StringTable ASSET_TYPE_STRINGTABLE;
|
||||
asset PhysPreset AssetPhysPreset;
|
||||
asset XAnimParts AssetXAnim;
|
||||
asset XModel AssetXModel;
|
||||
asset Material AssetMaterial;
|
||||
asset MaterialTechniqueSet AssetTechniqueSet;
|
||||
asset GfxImage AssetImage;
|
||||
asset snd_alias_list_t AssetSound;
|
||||
asset SndCurve AssetSoundCurve;
|
||||
asset LoadedSound AssetLoadedSound;
|
||||
asset clipMap_t AssetClipMapPvs;
|
||||
asset ComWorld AssetComWorld;
|
||||
asset GameWorldSp AssetGameWorldSp;
|
||||
asset GameWorldMp AssetGameWorldMp;
|
||||
asset MapEnts AssetMapEnts;
|
||||
asset GfxWorld AssetGfxWorld;
|
||||
asset GfxLightDef AssetLightDef;
|
||||
asset Font_s AssetFont;
|
||||
asset MenuList AssetMenuList;
|
||||
asset menuDef_t AssetMenu;
|
||||
asset LocalizeEntry AssetLocalize;
|
||||
asset WeaponDef AssetWeapon;
|
||||
asset FxEffectDef AssetFx;
|
||||
asset FxImpactTable AssetImpactFx;
|
||||
asset RawFile AssetRawFile;
|
||||
asset StringTable AssetStringTable;
|
||||
|
||||
// Setup blocks
|
||||
block temp XFILE_BLOCK_TEMP default;
|
||||
@ -66,4 +66,3 @@ block normal XFILE_BLOCK_INDEX;
|
||||
#include "XAssets/RawFile.txt"
|
||||
#include "XAssets/StringTable.txt"
|
||||
|
||||
// EOF
|
@ -3,41 +3,41 @@ game IW4;
|
||||
architecture x86;
|
||||
|
||||
// Game Assets
|
||||
asset PhysPreset ASSET_TYPE_PHYSPRESET;
|
||||
asset PhysCollmap ASSET_TYPE_PHYSCOLLMAP;
|
||||
asset XAnimParts ASSET_TYPE_XANIMPARTS;
|
||||
asset XModel ASSET_TYPE_XMODEL;
|
||||
asset Material ASSET_TYPE_MATERIAL;
|
||||
asset MaterialPixelShader ASSET_TYPE_PIXELSHADER;
|
||||
asset MaterialVertexShader ASSET_TYPE_VERTEXSHADER;
|
||||
asset MaterialVertexDeclaration ASSET_TYPE_VERTEXDECL;
|
||||
asset MaterialTechniqueSet ASSET_TYPE_TECHNIQUE_SET;
|
||||
asset GfxImage ASSET_TYPE_IMAGE;
|
||||
asset snd_alias_list_t ASSET_TYPE_SOUND;
|
||||
asset SndCurve ASSET_TYPE_SOUND_CURVE;
|
||||
asset LoadedSound ASSET_TYPE_LOADED_SOUND;
|
||||
asset clipMap_t ASSET_TYPE_CLIPMAP_MP;
|
||||
asset ComWorld ASSET_TYPE_COMWORLD;
|
||||
asset GameWorldSp ASSET_TYPE_GAMEWORLD_SP;
|
||||
asset GameWorldMp ASSET_TYPE_GAMEWORLD_MP;
|
||||
asset MapEnts ASSET_TYPE_MAP_ENTS;
|
||||
asset FxWorld ASSET_TYPE_FXWORLD;
|
||||
asset GfxWorld ASSET_TYPE_GFXWORLD;
|
||||
asset GfxLightDef ASSET_TYPE_LIGHT_DEF;
|
||||
asset Font_s ASSET_TYPE_FONT;
|
||||
asset MenuList ASSET_TYPE_MENULIST;
|
||||
asset menuDef_t ASSET_TYPE_MENU;
|
||||
asset LocalizeEntry ASSET_TYPE_LOCALIZE_ENTRY;
|
||||
asset WeaponCompleteDef ASSET_TYPE_WEAPON;
|
||||
asset FxEffectDef ASSET_TYPE_FX;
|
||||
asset FxImpactTable ASSET_TYPE_IMPACT_FX;
|
||||
asset RawFile ASSET_TYPE_RAWFILE;
|
||||
asset StringTable ASSET_TYPE_STRINGTABLE;
|
||||
asset LeaderboardDef ASSET_TYPE_LEADERBOARD;
|
||||
asset StructuredDataDefSet ASSET_TYPE_STRUCTURED_DATA_DEF;
|
||||
asset TracerDef ASSET_TYPE_TRACER;
|
||||
asset VehicleDef ASSET_TYPE_VEHICLE;
|
||||
asset AddonMapEnts ASSET_TYPE_ADDON_MAP_ENTS;
|
||||
asset PhysPreset AssetPhysPreset;
|
||||
asset PhysCollmap AssetPhysCollMap;
|
||||
asset XAnimParts AssetXAnim;
|
||||
asset XModel AssetXModel;
|
||||
asset Material AssetMaterial;
|
||||
asset MaterialPixelShader AssetPixelShader;
|
||||
asset MaterialVertexShader AssetVertexShader;
|
||||
asset MaterialVertexDeclaration AssetVertexDecl;
|
||||
asset MaterialTechniqueSet AssetTechniqueSet;
|
||||
asset GfxImage AssetImage;
|
||||
asset snd_alias_list_t AssetSound;
|
||||
asset SndCurve AssetSoundCurve;
|
||||
asset LoadedSound AssetLoadedSound;
|
||||
asset clipMap_t AssetClipMapMp;
|
||||
asset ComWorld AssetComWorld;
|
||||
asset GameWorldSp AssetGameWorldSp;
|
||||
asset GameWorldMp AssetGameWorldMp;
|
||||
asset MapEnts AssetMapEnts;
|
||||
asset FxWorld AssetFxWorld;
|
||||
asset GfxWorld AssetGfxWorld;
|
||||
asset GfxLightDef AssetLightDef;
|
||||
asset Font_s AssetFont;
|
||||
asset MenuList AssetMenuList;
|
||||
asset menuDef_t AssetMenu;
|
||||
asset LocalizeEntry AssetLocalize;
|
||||
asset WeaponCompleteDef AssetWeapon;
|
||||
asset FxEffectDef AssetFx;
|
||||
asset FxImpactTable AssetImpactFx;
|
||||
asset RawFile AssetRawFile;
|
||||
asset StringTable AssetStringTable;
|
||||
asset LeaderboardDef AssetLeaderboard;
|
||||
asset StructuredDataDefSet AssetStructuredDataDef;
|
||||
asset TracerDef AssetTracer;
|
||||
asset VehicleDef AssetVehicle;
|
||||
asset AddonMapEnts AssetAddonMapEnts;
|
||||
|
||||
// Setup blocks
|
||||
block temp XFILE_BLOCK_TEMP default;
|
||||
@ -85,4 +85,3 @@ block normal XFILE_BLOCK_INDEX;
|
||||
#include "XAssets/VehicleDef.txt"
|
||||
#include "XAssets/AddonMapEnts.txt"
|
||||
|
||||
// EOF
|
@ -3,46 +3,46 @@ game IW5;
|
||||
architecture x86;
|
||||
|
||||
// Game Assets
|
||||
asset PhysPreset ASSET_TYPE_PHYSPRESET;
|
||||
asset PhysCollmap ASSET_TYPE_PHYSCOLLMAP;
|
||||
asset XAnimParts ASSET_TYPE_XANIMPARTS;
|
||||
asset XModelSurfs ASSET_TYPE_XMODEL_SURFS;
|
||||
asset XModel ASSET_TYPE_XMODEL;
|
||||
asset Material ASSET_TYPE_MATERIAL;
|
||||
asset MaterialPixelShader ASSET_TYPE_PIXELSHADER;
|
||||
asset MaterialVertexShader ASSET_TYPE_VERTEXSHADER;
|
||||
asset MaterialVertexDeclaration ASSET_TYPE_VERTEXDECL;
|
||||
asset MaterialTechniqueSet ASSET_TYPE_TECHNIQUE_SET;
|
||||
asset GfxImage ASSET_TYPE_IMAGE;
|
||||
asset snd_alias_list_t ASSET_TYPE_SOUND;
|
||||
asset SndCurve ASSET_TYPE_SOUND_CURVE;
|
||||
asset LoadedSound ASSET_TYPE_LOADED_SOUND;
|
||||
asset clipMap_t ASSET_TYPE_CLIPMAP;
|
||||
asset ComWorld ASSET_TYPE_COMWORLD;
|
||||
asset GlassWorld ASSET_TYPE_GLASSWORLD;
|
||||
asset PathData ASSET_TYPE_PATHDATA;
|
||||
asset VehicleTrack ASSET_TYPE_VEHICLE_TRACK;
|
||||
asset MapEnts ASSET_TYPE_MAP_ENTS;
|
||||
asset FxWorld ASSET_TYPE_FXWORLD;
|
||||
asset GfxWorld ASSET_TYPE_GFXWORLD;
|
||||
asset GfxLightDef ASSET_TYPE_LIGHT_DEF;
|
||||
asset Font_s ASSET_TYPE_FONT;
|
||||
asset MenuList ASSET_TYPE_MENULIST;
|
||||
asset menuDef_t ASSET_TYPE_MENU;
|
||||
asset LocalizeEntry ASSET_TYPE_LOCALIZE_ENTRY;
|
||||
asset WeaponAttachment ASSET_TYPE_ATTACHMENT;
|
||||
asset WeaponCompleteDef ASSET_TYPE_WEAPON;
|
||||
asset FxEffectDef ASSET_TYPE_FX;
|
||||
asset FxImpactTable ASSET_TYPE_IMPACT_FX;
|
||||
asset SurfaceFxTable ASSET_TYPE_SURFACE_FX;
|
||||
asset RawFile ASSET_TYPE_RAWFILE;
|
||||
asset ScriptFile ASSET_TYPE_SCRIPTFILE;
|
||||
asset StringTable ASSET_TYPE_STRINGTABLE;
|
||||
asset LeaderboardDef ASSET_TYPE_LEADERBOARD;
|
||||
asset StructuredDataDefSet ASSET_TYPE_STRUCTURED_DATA_DEF;
|
||||
asset TracerDef ASSET_TYPE_TRACER;
|
||||
asset VehicleDef ASSET_TYPE_VEHICLE;
|
||||
asset AddonMapEnts ASSET_TYPE_ADDON_MAP_ENTS;
|
||||
asset PhysPreset AssetPhysPreset;
|
||||
asset PhysCollmap AssetPhysCollMap;
|
||||
asset XAnimParts AssetXAnim;
|
||||
asset XModelSurfs AssetXModelSurfs;
|
||||
asset XModel AssetXModel;
|
||||
asset Material AssetMaterial;
|
||||
asset MaterialPixelShader AssetPixelShader;
|
||||
asset MaterialVertexShader AssetVertexShader;
|
||||
asset MaterialVertexDeclaration AssetVertexDecl;
|
||||
asset MaterialTechniqueSet AssetTechniqueSet;
|
||||
asset GfxImage AssetImage;
|
||||
asset snd_alias_list_t AssetSound;
|
||||
asset SndCurve AssetSoundCurve;
|
||||
asset LoadedSound AssetLoadedSound;
|
||||
asset clipMap_t AssetClipMap;
|
||||
asset ComWorld AssetComWorld;
|
||||
asset GlassWorld AssetGlassWorld;
|
||||
asset PathData AssetPathData;
|
||||
asset VehicleTrack AssetVehicleTrack;
|
||||
asset MapEnts AssetMapEnts;
|
||||
asset FxWorld AssetFxWorld;
|
||||
asset GfxWorld AssetGfxWorld;
|
||||
asset GfxLightDef AssetLightDef;
|
||||
asset Font_s AssetFont;
|
||||
asset MenuList AssetMenuList;
|
||||
asset menuDef_t AssetMenu;
|
||||
asset LocalizeEntry AssetLocalize;
|
||||
asset WeaponAttachment AssetAttachment;
|
||||
asset WeaponCompleteDef AssetWeapon;
|
||||
asset FxEffectDef AssetFx;
|
||||
asset FxImpactTable AssetImpactFx;
|
||||
asset SurfaceFxTable AssetSurfaceFx;
|
||||
asset RawFile AssetRawFile;
|
||||
asset ScriptFile AssetScript;
|
||||
asset StringTable AssetStringTable;
|
||||
asset LeaderboardDef AssetLeaderboard;
|
||||
asset StructuredDataDefSet AssetStructuredDataDef;
|
||||
asset TracerDef AssetTracer;
|
||||
asset VehicleDef AssetVehicle;
|
||||
asset AddonMapEnts AssetAddonMapEnts;
|
||||
|
||||
// Setup blocks
|
||||
block temp XFILE_BLOCK_TEMP default;
|
||||
@ -96,4 +96,3 @@ block normal XFILE_BLOCK_SCRIPT;
|
||||
#include "XAssets/VehicleDef.txt"
|
||||
#include "XAssets/AddonMapEnts.txt"
|
||||
|
||||
// EOF
|
@ -3,38 +3,38 @@ game T5;
|
||||
architecture x86;
|
||||
|
||||
// Game Assets
|
||||
asset PhysPreset ASSET_TYPE_PHYSPRESET;
|
||||
asset PhysConstraints ASSET_TYPE_PHYSCONSTRAINTS;
|
||||
asset DestructibleDef ASSET_TYPE_DESTRUCTIBLEDEF;
|
||||
asset XAnimParts ASSET_TYPE_XANIMPARTS;
|
||||
asset XModel ASSET_TYPE_XMODEL;
|
||||
asset Material ASSET_TYPE_MATERIAL;
|
||||
asset MaterialTechniqueSet ASSET_TYPE_TECHNIQUE_SET;
|
||||
asset GfxImage ASSET_TYPE_IMAGE;
|
||||
asset SndBank ASSET_TYPE_SOUND;
|
||||
asset SndPatch ASSET_TYPE_SOUND_PATCH;
|
||||
asset clipMap_t ASSET_TYPE_CLIPMAP_PVS;
|
||||
asset ComWorld ASSET_TYPE_COMWORLD;
|
||||
asset GameWorldSp ASSET_TYPE_GAMEWORLD_SP;
|
||||
asset GameWorldMp ASSET_TYPE_GAMEWORLD_MP;
|
||||
asset MapEnts ASSET_TYPE_MAP_ENTS;
|
||||
asset GfxWorld ASSET_TYPE_GFXWORLD;
|
||||
asset GfxLightDef ASSET_TYPE_LIGHT_DEF;
|
||||
asset Font_s ASSET_TYPE_FONT;
|
||||
asset MenuList ASSET_TYPE_MENULIST;
|
||||
asset menuDef_t ASSET_TYPE_MENU;
|
||||
asset LocalizeEntry ASSET_TYPE_LOCALIZE_ENTRY;
|
||||
asset WeaponVariantDef ASSET_TYPE_WEAPON;
|
||||
asset SndDriverGlobals ASSET_TYPE_SNDDRIVER_GLOBALS;
|
||||
asset FxEffectDef ASSET_TYPE_FX;
|
||||
asset FxImpactTable ASSET_TYPE_IMPACT_FX;
|
||||
asset RawFile ASSET_TYPE_RAWFILE;
|
||||
asset StringTable ASSET_TYPE_STRINGTABLE;
|
||||
asset PackIndex ASSET_TYPE_PACK_INDEX;
|
||||
asset XGlobals ASSET_TYPE_XGLOBALS;
|
||||
asset ddlRoot_t ASSET_TYPE_DDL;
|
||||
asset Glasses ASSET_TYPE_GLASSES;
|
||||
asset EmblemSet ASSET_TYPE_EMBLEMSET;
|
||||
asset PhysPreset AssetPhysPreset;
|
||||
asset PhysConstraints AssetPhysConstraints;
|
||||
asset DestructibleDef AssetDestructibleDef;
|
||||
asset XAnimParts AssetXAnim;
|
||||
asset XModel AssetXModel;
|
||||
asset Material AssetMaterial;
|
||||
asset MaterialTechniqueSet AssetTechniqueSet;
|
||||
asset GfxImage AssetImage;
|
||||
asset SndBank AssetSoundBank;
|
||||
asset SndPatch AssetSoundPatch;
|
||||
asset clipMap_t AssetClipMapPvs;
|
||||
asset ComWorld AssetComWorld;
|
||||
asset GameWorldSp AssetGameWorldSp;
|
||||
asset GameWorldMp AssetGameWorldMp;
|
||||
asset MapEnts AssetMapEnts;
|
||||
asset GfxWorld AssetGfxWorld;
|
||||
asset GfxLightDef AssetLightDef;
|
||||
asset Font_s AssetFont;
|
||||
asset MenuList AssetMenuList;
|
||||
asset menuDef_t AssetMenu;
|
||||
asset LocalizeEntry AssetLocalize;
|
||||
asset WeaponVariantDef AssetWeapon;
|
||||
asset SndDriverGlobals AssetSoundDriverGlobals;
|
||||
asset FxEffectDef AssetFx;
|
||||
asset FxImpactTable AssetImpactFx;
|
||||
asset RawFile AssetRawFile;
|
||||
asset StringTable AssetStringTable;
|
||||
asset PackIndex AssetPackIndex;
|
||||
asset XGlobals AssetXGlobals;
|
||||
asset ddlRoot_t AssetDDL;
|
||||
asset Glasses AssetGlasses;
|
||||
asset EmblemSet AssetEmblemSet;
|
||||
|
||||
// Setup blocks
|
||||
block temp XFILE_BLOCK_TEMP default;
|
||||
@ -79,4 +79,3 @@ block normal XFILE_BLOCK_PHYSICAL;
|
||||
#include "XAssets/Glasses.txt"
|
||||
#include "XAssets/EmblemSet.txt"
|
||||
|
||||
// EOF
|
@ -3,54 +3,54 @@ game T6;
|
||||
architecture x86;
|
||||
|
||||
// Game Assets
|
||||
asset PhysPreset ASSET_TYPE_PHYSPRESET;
|
||||
asset PhysConstraints ASSET_TYPE_PHYSCONSTRAINTS;
|
||||
asset DestructibleDef ASSET_TYPE_DESTRUCTIBLEDEF;
|
||||
asset XAnimParts ASSET_TYPE_XANIMPARTS;
|
||||
asset XModel ASSET_TYPE_XMODEL;
|
||||
asset Material ASSET_TYPE_MATERIAL;
|
||||
asset MaterialTechniqueSet ASSET_TYPE_TECHNIQUE_SET;
|
||||
asset GfxImage ASSET_TYPE_IMAGE;
|
||||
asset SndBank ASSET_TYPE_SOUND;
|
||||
asset SndPatch ASSET_TYPE_SOUND_PATCH;
|
||||
asset clipMap_t ASSET_TYPE_CLIPMAP_PVS;
|
||||
asset ComWorld ASSET_TYPE_COMWORLD;
|
||||
asset GameWorldSp ASSET_TYPE_GAMEWORLD_SP;
|
||||
asset GameWorldMp ASSET_TYPE_GAMEWORLD_MP;
|
||||
asset MapEnts ASSET_TYPE_MAP_ENTS;
|
||||
asset GfxWorld ASSET_TYPE_GFXWORLD;
|
||||
asset GfxLightDef ASSET_TYPE_LIGHT_DEF;
|
||||
asset Font_s ASSET_TYPE_FONT;
|
||||
asset FontIcon ASSET_TYPE_FONTICON;
|
||||
asset MenuList ASSET_TYPE_MENULIST;
|
||||
asset menuDef_t ASSET_TYPE_MENU;
|
||||
asset LocalizeEntry ASSET_TYPE_LOCALIZE_ENTRY;
|
||||
asset WeaponVariantDef ASSET_TYPE_WEAPON;
|
||||
asset WeaponAttachment ASSET_TYPE_ATTACHMENT;
|
||||
asset WeaponAttachmentUnique ASSET_TYPE_ATTACHMENT_UNIQUE;
|
||||
asset WeaponCamo ASSET_TYPE_WEAPON_CAMO;
|
||||
asset SndDriverGlobals ASSET_TYPE_SNDDRIVER_GLOBALS;
|
||||
asset FxEffectDef ASSET_TYPE_FX;
|
||||
asset FxImpactTable ASSET_TYPE_IMPACT_FX;
|
||||
asset RawFile ASSET_TYPE_RAWFILE;
|
||||
asset StringTable ASSET_TYPE_STRINGTABLE;
|
||||
asset LeaderboardDef ASSET_TYPE_LEADERBOARD;
|
||||
asset XGlobals ASSET_TYPE_XGLOBALS;
|
||||
asset ddlRoot_t ASSET_TYPE_DDL;
|
||||
asset Glasses ASSET_TYPE_GLASSES;
|
||||
asset EmblemSet ASSET_TYPE_EMBLEMSET;
|
||||
asset ScriptParseTree ASSET_TYPE_SCRIPTPARSETREE;
|
||||
asset KeyValuePairs ASSET_TYPE_KEYVALUEPAIRS;
|
||||
asset VehicleDef ASSET_TYPE_VEHICLEDEF;
|
||||
asset MemoryBlock ASSET_TYPE_MEMORYBLOCK;
|
||||
asset AddonMapEnts ASSET_TYPE_ADDON_MAP_ENTS;
|
||||
asset TracerDef ASSET_TYPE_TRACER;
|
||||
asset SkinnedVertsDef ASSET_TYPE_SKINNEDVERTS;
|
||||
asset Qdb ASSET_TYPE_QDB;
|
||||
asset Slug ASSET_TYPE_SLUG;
|
||||
asset FootstepTableDef ASSET_TYPE_FOOTSTEP_TABLE;
|
||||
asset FootstepFXTableDef ASSET_TYPE_FOOTSTEPFX_TABLE;
|
||||
asset ZBarrierDef ASSET_TYPE_ZBARRIER;
|
||||
asset PhysPreset AssetPhysPreset;
|
||||
asset PhysConstraints AssetPhysConstraints;
|
||||
asset DestructibleDef AssetDestructibleDef;
|
||||
asset XAnimParts AssetXAnim;
|
||||
asset XModel AssetXModel;
|
||||
asset Material AssetMaterial;
|
||||
asset MaterialTechniqueSet AssetTechniqueSet;
|
||||
asset GfxImage AssetImage;
|
||||
asset SndBank AssetSoundBank;
|
||||
asset SndPatch AssetSoundPatch;
|
||||
asset clipMap_t AssetClipMapPvs;
|
||||
asset ComWorld AssetComWorld;
|
||||
asset GameWorldSp AssetGameWorldSp;
|
||||
asset GameWorldMp AssetGameWorldMp;
|
||||
asset MapEnts AssetMapEnts;
|
||||
asset GfxWorld AssetGfxWorld;
|
||||
asset GfxLightDef AssetLightDef;
|
||||
asset Font_s AssetFont;
|
||||
asset FontIcon AssetFontIcon;
|
||||
asset MenuList AssetMenuList;
|
||||
asset menuDef_t AssetMenu;
|
||||
asset LocalizeEntry AssetLocalize;
|
||||
asset WeaponVariantDef AssetWeapon;
|
||||
asset WeaponAttachment AssetAttachment;
|
||||
asset WeaponAttachmentUnique AssetAttachmentUnique;
|
||||
asset WeaponCamo AssetWeaponCamo;
|
||||
asset SndDriverGlobals AssetSoundDriverGlobals;
|
||||
asset FxEffectDef AssetFx;
|
||||
asset FxImpactTable AssetImpactFx;
|
||||
asset RawFile AssetRawFile;
|
||||
asset StringTable AssetStringTable;
|
||||
asset LeaderboardDef AssetLeaderboard;
|
||||
asset XGlobals AssetXGlobals;
|
||||
asset ddlRoot_t AssetDDL;
|
||||
asset Glasses AssetGlasses;
|
||||
asset EmblemSet AssetEmblemSet;
|
||||
asset ScriptParseTree AssetScript;
|
||||
asset KeyValuePairs AssetKeyValuePairs;
|
||||
asset VehicleDef AssetVehicle;
|
||||
asset MemoryBlock AssetMemoryBlock;
|
||||
asset AddonMapEnts AssetAddonMapEnts;
|
||||
asset TracerDef AssetTracer;
|
||||
asset SkinnedVertsDef AssetSkinnedVerts;
|
||||
asset Qdb AssetQdb;
|
||||
asset Slug AssetSlug;
|
||||
asset FootstepTableDef AssetFootstepTable;
|
||||
asset FootstepFXTableDef AssetFootstepFxTable;
|
||||
asset ZBarrierDef AssetZBarrier;
|
||||
|
||||
// Setup blocks
|
||||
block temp XFILE_BLOCK_TEMP default;
|
||||
@ -112,4 +112,3 @@ block normal XFILE_BLOCK_STREAMER_RESERVE;
|
||||
#include "XAssets/FootstepFXTableDef.txt"
|
||||
#include "XAssets/ZBarrierDef.txt"
|
||||
|
||||
// EOF
|
Reference in New Issue
Block a user