14 lines
241 B
C#
14 lines
241 B
C#
|
using game;
|
||
|
|
||
|
public class LevelData
|
||
|
{
|
||
|
public readonly EnumLevelType Type = default;
|
||
|
public readonly uint ID = 0;
|
||
|
|
||
|
public LevelData(ConfLevelData config)
|
||
|
{
|
||
|
Type = config.levelType;
|
||
|
ID = config.levelID;
|
||
|
}
|
||
|
}
|