mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
13 lines
598 B
C#
13 lines
598 B
C#
namespace TEngine.Runtime.Entity
|
|
{
|
|
public class EntityEvent
|
|
{
|
|
public static int ShowEntitySuccess = StringId.StringToHash("EntityEvent.ShowEntitySuccess");
|
|
public static int ShowEntityFailure = StringId.StringToHash("EntityEvent.ShowEntityFailure");
|
|
public static int ShowEntityUpdate = StringId.StringToHash("EntityEvent.ShowEntityUpdate");
|
|
public static int ShowEntityDependency = StringId.StringToHash("EntityEvent.ShowEntityDependency");
|
|
public static int HideEntityComplete = StringId.StringToHash("EntityEvent.HideEntityComplete");
|
|
}
|
|
}
|
|
|