2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-15 14:31:43 +00:00

Move IW4 menu dumping logic to separate class and constants to common scope

This commit is contained in:
Jan
2021-10-24 14:59:43 +02:00
parent 4e5e6d05bd
commit 805c00539b
10 changed files with 1384 additions and 1260 deletions
+20
View File
@@ -0,0 +1,20 @@
#pragma once
namespace IW4
{
class ObjConstants
{
ObjConstants() = default;
public:
static constexpr const char* INFO_STRING_PREFIX_PHYS_PRESET = "PHYSIC";
static constexpr const char* INFO_STRING_PREFIX_TRACER = "TRACER";
static constexpr const char* INFO_STRING_PREFIX_VEHICLE = "VEHICLEFILE";
static constexpr const char* INFO_STRING_PREFIX_WEAPON = "WEAPONFILE";
static constexpr const char* GDF_FILENAME_PHYS_PRESET = "physpreset.gdf";
static constexpr const char* GDF_FILENAME_TRACER = "tracer.gdf";
static constexpr const char* GDF_FILENAME_VEHICLE = "vehicle.gdf";
static constexpr const char* GDF_FILENAME_WEAPON = "weapon.gdf";
};
}