Exported LinePortals

Added helper functions for lines related to portals
This commit is contained in:
Boondorl 2023-01-15 15:29:23 -05:00 committed by Christoph Oelckers
commit dd7cb8649f
7 changed files with 110 additions and 0 deletions

View file

@ -708,6 +708,10 @@ void InitThingdef()
sectorportalstruct->Size = sizeof(FSectorPortal);
sectorportalstruct->Align = alignof(FSectorPortal);
auto lineportalstruct = NewStruct("LinePortal", nullptr, true);
lineportalstruct->Size = sizeof(FLinePortal);
lineportalstruct->Align = alignof(FLinePortal);
auto playerclassstruct = NewStruct("PlayerClass", nullptr, true);
playerclassstruct->Size = sizeof(FPlayerClass);
playerclassstruct->Align = alignof(FPlayerClass);