namespace Assets.Scripts.Utilities { public class Constant { public const string SEPARATOR = "-"; // Files public const string FILE_PATH = ""; // DO NOT PUSH THIS, OR I KILL YOU... TWICE public const string FILE_INSIDE_PROJECT_PATH = "Task/Times/"; public const string FILE_TIME = "TimeFile"; public const string FILE_EXTENSION = ".txt"; // Game Tag public const string GT_TARGET = "Target"; public const string GT_HAMMER = "Hammer"; // Player Prefs Keys public const string PPK_PLAYER_NAME = "PlayerName"; public const string PPK_TIMER_TIME = "Time"; public const string PPK_MOVEMENT_CHOICE = "mouvement"; public const string PPK_SCENE_NAME = "scene"; } }