-
Notifications
You must be signed in to change notification settings - Fork 41
Enum
jiepengtan edited this page Nov 20, 2019
·
2 revisions
- 需要在文件 __DllSourceFiles/Tools.UnsafeECS.ECDefine/Src/Unsafe/Enum.cs 中进行定义,
- 生成的代码的主体可以在 __DllSourceFiles/Game.Model/Src/__UnsafeECS/Generated/CodeGen_Enum.cs 看到
- 之所以放在这里定义,1. 相应的Component中需要用到,后项的代码生成中,可能会生成更多的辅助代码,也可能用于生成相应的Excel
public enum EDir {
Up =0 ,
Left = 1,
Down = 2,
Right = 3,
EnumCount = 4,
}
- 生成的代码
public enum EDir : int {
Up = 0,
Left = 1,
Down = 2,
Right = 3,
EnumCount = 4,
}