48 lines
1.8 KiB
C#
48 lines
1.8 KiB
C#
namespace DDD
|
|
{
|
|
public static class CommonConstants
|
|
{
|
|
public const string VisualLook = "VisualLook";
|
|
public const string RestaurantPlayer = "RestaurantPlayer";
|
|
public const string BaseRestaurantEnvironment = "BaseRestaurantEnvironment";
|
|
public const string Clone = "(Clone)";
|
|
public const string Panel = "Panel";
|
|
}
|
|
|
|
public static class DataConstants
|
|
{
|
|
public const string ItemDataSo = "ItemDataSo";
|
|
public const string RecipeDataSo = "RecipeDataSo";
|
|
public const string FoodDataSo = "FoodDataSo";
|
|
public const string DrinkDataSo = "DrinkDataSo";
|
|
public const string IngredientDataSo = "IngredientDataSo";
|
|
public const string EnvironmentDataSo = "EnvironmentDataSo";
|
|
public const string RestaurantPlayerDataSo = "RestaurantPlayerDataSo";
|
|
public const string UiInputBindingSo = "UiInputBindingSo";
|
|
public const string RestaurantManagementSo = "RestaurantManagementSo";
|
|
|
|
public const string AtlasLabel = "Atlas";
|
|
public const string BasePropSpriteMaterial = "BasePropSpriteMaterial";
|
|
}
|
|
|
|
public static class RestaurantPlayerAnimation
|
|
{
|
|
public const string Idle = "Idle";
|
|
public const string Walk = "RunFast";
|
|
public const string Dash = "Dash";
|
|
}
|
|
|
|
public static class PathConstants
|
|
{
|
|
public const string RawSpritesPathUpper = "ASSETS/_DDD/_RAW/SPRITES/";
|
|
public const string RawFolderPath = "/_Raw";
|
|
public const string AddressablesFolderPath = "/_Addressables";
|
|
}
|
|
|
|
public static class ExtenstionConstants
|
|
{
|
|
public const string PngExtensionUpper = ".PNG";
|
|
public const string PngExtensionLower = ".png";
|
|
public const string SpriteAtlasExtenstionLower = ".spriteatlasv2";
|
|
}
|
|
} |