mirror of
https://github.com/ConjureETS/MTI860_VR_Multi_Controller.git
synced 2026-03-24 12:31:15 +00:00
23 lines
717 B
C#
23 lines
717 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_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";
|
|
}
|
|
}
|