mirror of
https://github.com/ConjureETS/MTI860_VR_Multi_Controller.git
synced 2026-03-24 20:41:14 +00:00
24 lines
787 B
C#
24 lines
787 B
C#
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";
|
|
}
|
|
}
|