Exported episode and skill infos
This commit is contained in:
parent
7e410fd5d8
commit
d0e056565b
5 changed files with 125 additions and 2 deletions
|
|
@ -767,6 +767,14 @@ void InitThingdef()
|
|||
terraindefstruct->Size = sizeof(FTerrainDef);
|
||||
terraindefstruct->Align = alignof(FTerrainDef);
|
||||
|
||||
auto episodestruct = NewStruct("EpisodeInfo", nullptr, true);
|
||||
episodestruct->Size = sizeof(FEpisode);
|
||||
episodestruct->Align = alignof(FEpisode);
|
||||
|
||||
auto skillstruct = NewStruct("SkillInfo", nullptr, true);
|
||||
skillstruct->Size = sizeof(FSkillInfo);
|
||||
skillstruct->Align = alignof(FSkillInfo);
|
||||
|
||||
PStruct *pstruct = NewStruct("PlayerInfo", nullptr, true);
|
||||
pstruct->Size = sizeof(player_t);
|
||||
pstruct->Align = alignof(player_t);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue