27 lines
919 B
C#
27 lines
919 B
C#
namespace DDD
|
|
{
|
|
public static class CommonConstants
|
|
{
|
|
public const string VisualLook = "VisualLook";
|
|
public const string RestaurantPlayer = "RestaurantPlayer";
|
|
public const string BaseRestaurantEnvironment = "BaseRestaurantEnvironment";
|
|
}
|
|
|
|
public static class DataConstants
|
|
{
|
|
public const string ItemDataSo = "ItemDataSo";
|
|
public const string FoodDataSo = "FoodDataSo";
|
|
public const string EnvironmentDataSo = "EnvironmentDataSo";
|
|
public const string SpriteDataSo = "SpriteDataSo";
|
|
public const string RestaurantPlayerDataSo = "RestaurantPlayerDataSo";
|
|
|
|
public const string BasePropSpriteMaterial = "BasePropSpriteMaterial";
|
|
}
|
|
|
|
public static class RestaurantPlayerAnimation
|
|
{
|
|
public const string Idle = "Idle";
|
|
public const string Walk = "RunFast";
|
|
public const string Dash = "Dash";
|
|
}
|
|
} |