21 lines
362 B
C#
21 lines
362 B
C#
/*
|
|
* auto generated by tools(注意:千万不要手动修改本文件)
|
|
* EnumIds
|
|
*/
|
|
|
|
namespace OCES.Audio
|
|
{
|
|
public static class EnumIds
|
|
{
|
|
public const uint GameState = 1;
|
|
|
|
public const uint TestEnum = 2;
|
|
|
|
public static void RegisterAllGameState()
|
|
{
|
|
StateGroupRegistry.Register<GameState>(1);
|
|
StateGroupRegistry.Register<TestEnum>(2);
|
|
}
|
|
}
|
|
}
|