Constants.cs 465 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public static class Constants
  5. {
  6. public const string ONLINE = "Online";
  7. public const string LOCAL = "Local";
  8. public const string GAME_MODE = "GameMode";
  9. public const string GAME_ID = "GameId";
  10. public const string GAME_QUESTION_TIMER = "QuestionTimer";
  11. public const string GAME_TO_WIN = "NeededToWin";
  12. public const string SCENE_NAR_KAMPEN = "narKampen";
  13. }