Add base for physcollmap dumper

This commit is contained in:
Jan
2022-01-05 20:14:32 +01:00
parent daa7008038
commit 88771849fb
6 changed files with 362 additions and 1 deletions

View File

@ -237,6 +237,20 @@ namespace IW4
cplane_s* planes;
};
enum PhysicsGeomType
{
PHYS_GEOM_NONE = 0x0,
PHYS_GEOM_BOX = 0x1,
PHYS_GEOM_BRUSHMODEL = 0x2,
PHYS_GEOM_BRUSH = 0x3,
PHYS_GEOM_COLLMAP = 0x4,
PHYS_GEOM_CYLINDER = 0x5,
PHYS_GEOM_CAPSULE = 0x6,
PHYS_GEOM_GLASS = 0x7,
PHYS_GEOM_COUNT,
};
struct PhysGeomInfo
{
BrushWrapper* brushWrapper;