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

23 lines
516 B
C#

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;
}
}