123456789101112131415161718192021222324 |
- using UnityEngine;
- using System.Collections;
- public partial class GameConstants
- {
- //public const string SERVER_BASE_URL = "https://game.gamatic.com/app_condom_dk/";
- //public const string APP_STORE_URL = "";
- //public const string GAME_NAME = "Icelandic CTS";
- //public const string SUPPORT_EMAIL_FOR_IOS_CRASH_LOG = "nattard@av.com.mt";
- //private const float DEBUG_BUTTON_WIDTH = 200f;
- //private const float DEBUG_BUTTON_HEIGHT = 65f;
- public static GUILayoutOption DebugButtonWidth
- {
- get { return GUILayout.Width(DEBUG_BUTTON_WIDTH); }
- }
- public static GUILayoutOption DebugButtonHeight
- {
- get { return GUILayout.Height(DEBUG_BUTTON_HEIGHT); }
- }
- }
|