Fix compilation

This commit is contained in:
Ricardo Luís Vaz Silva 2024-08-10 16:51:56 -03:00 committed by Magnus Norddahl
commit 467cf2800b
2 changed files with 18 additions and 7 deletions

View file

@ -1,8 +1,22 @@
#include "levelmeshhelper.h"
#include "hw_meshbuilder.h"
#include "hw_mesh.h"
#include "v_video.h"
struct NullLevelMeshUpdater : UpdateLevelMesh
{
virtual void SectorChanged(void *sector) {};
virtual void SideChanged(void *side) {};
};
static NullLevelMeshUpdater nullUpdater;
UpdateLevelMesh* LevelMeshUpdater = &nullUpdater;
MeshBuilder::MeshBuilder()
{
Reset();