mirror of
https://github.com/ConjureETS/MTI860_VR_Multi_Controller.git
synced 2026-03-24 04:21:15 +00:00
29 lines
817 B
C#
29 lines
817 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts
|
|
{
|
|
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";
|
|
}
|
|
}
|