- 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

@ -416,6 +416,18 @@ void DoomLevelMesh::SideTextureChanged(struct side_t* side, int section)
// UpdateSide(level, side->Index());
}
void DoomLevelMesh::SectorLightChanged(struct sector_t* sector)
{
};
void DoomLevelMesh::SectorLightThinkerCreated(struct sector_t* sector, class DLighting* lightthinker)
{
};
void DoomLevelMesh::SectorLightThinkerDestroyed(struct sector_t* sector, class DLighting* lightthinker)
{
};
void DoomLevelMesh::UpdateSide(FLevelLocals& doomMap, unsigned int sideIndex)
{
FreeSide(doomMap, sideIndex);