zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Demo/Config/StartSceneConfig.cs

23 lines
516 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
namespace ET
{
[Config]
public partial class StartSceneConfigCategory : ACategory<StartSceneConfig>
{
public static StartSceneConfigCategory Instance;
public StartSceneConfigCategory()
{
Instance = this;
}
}
public partial class StartSceneConfig : IConfig
{
public long Id { get; set; }
public int Process;
public int Zone;
public string SceneType;
public string Name;
public int OuterPort;
}
}