Bump IW4OF

This commit is contained in:
Louvenarde 2023-08-05 15:17:49 +02:00
parent 1466b27c4b
commit 582b85958e
2 changed files with 23 additions and 2 deletions

@ -1 +1 @@
Subproject commit fcc7936f9a33c55d5a08d2d607f931b960c24d9a
Subproject commit 6af596a010eebf727e5d914bf9a01903c14ae128

View File

@ -3016,7 +3016,7 @@ namespace Game
struct FxElemVisualState
{
char color[4];
unsigned char color[4];
float rotationDelta;
float rotationTotal;
float size[2];
@ -3693,6 +3693,27 @@ namespace Game
float coeffs[4];
};
struct DpvsPlanes
{
DpvsPlane* planes;
int count;
};
struct DpvsClipPlaneSet
{
DpvsPlane* planes[16];
unsigned int count;
};
struct DpvsStaticCellCmd
{
DpvsPlane* planes;
GfxAabbTree* tree;
char planeCount;
char frustumPlaneCount;
unsigned __int16 sceneViewType;
};
struct GfxPortal
{
GfxPortalWritable writable;