GameConstants.cs 686 B

123456789101112131415161718192021222324
  1. using UnityEngine;
  2. using System.Collections;
  3. public partial class GameConstants
  4. {
  5. //public const string SERVER_BASE_URL = "https://game.gamatic.com/app_condom_dk/";
  6. //public const string APP_STORE_URL = "";
  7. //public const string GAME_NAME = "Icelandic CTS";
  8. //public const string SUPPORT_EMAIL_FOR_IOS_CRASH_LOG = "nattard@av.com.mt";
  9. //private const float DEBUG_BUTTON_WIDTH = 200f;
  10. //private const float DEBUG_BUTTON_HEIGHT = 65f;
  11. public static GUILayoutOption DebugButtonWidth
  12. {
  13. get { return GUILayout.Width(DEBUG_BUTTON_WIDTH); }
  14. }
  15. public static GUILayoutOption DebugButtonHeight
  16. {
  17. get { return GUILayout.Height(DEBUG_BUTTON_HEIGHT); }
  18. }
  19. }