21 lines
571 B
C#
21 lines
571 B
C#
![]() |
namespace DDD
|
||
|
{
|
||
|
public static class CommonConstants
|
||
|
{
|
||
|
public const string VisualLook = "VisualLook";
|
||
|
public const string RestaurantPlayer = "RestaurantPlayer";
|
||
|
}
|
||
|
|
||
|
public static class DataConstants
|
||
|
{
|
||
|
public const string ItemDataSo = "ItemDataSo";
|
||
|
public const string RestaurantPlayerDataSo = "RestaurantPlayerDataSo";
|
||
|
}
|
||
|
|
||
|
public static class RestaurantPlayerAnimation
|
||
|
{
|
||
|
public const string Idle = "Idle";
|
||
|
public const string Walk = "RunFast";
|
||
|
public const string Dash = "Dash";
|
||
|
}
|
||
|
}
|