- add messages for sector light change, thinker creation, and destruction

This commit is contained in:
Rachael Alexanderson 2024-08-11 15:58:33 -04:00
commit a4e3aca33c
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0
7 changed files with 42 additions and 0 deletions

View file

@ -13,6 +13,10 @@ struct NullLevelMeshUpdater : UpdateLevelMesh
virtual void SectorChangedOther(struct sector_t* sector) {};
virtual void SideTextureChanged(struct side_t* side, int section) {};
virtual void SectorLightChanged(struct sector_t* sector) {};
virtual void SectorLightThinkerCreated(struct sector_t* sector, class DLighting* lightthinker) {};
virtual void SectorLightThinkerDestroyed(struct sector_t* sector, class DLighting* lightthinker) {};
};
static NullLevelMeshUpdater nullUpdater;