1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class TestCon
- {
-
- public static string orderId
- {
- get
- {
- #if UNITY_ANDROID
- return "900a0733-2e50-4479-99b9-df331e4fbab8";
- #elif UNITY_IOS
- return "900a0733-2e50-4479-99b9-df331e4fbab8";
- #else
- return "";
- #endif
- }
- }
- public static string gameID
- {
- get
- {
- #if UNITY_ANDROID
- return "80388d1f-8901-414c-b7f8-62d125e60200";
- #elif UNITY_IOS
- return "80388d1f-8901-414c-b7f8-62d125e60200";
- #else
- return "";
- #endif
- }
- }
- public static string gameSecret
- {
- get
- {
- #if UNITY_ANDROID
- return "12345678123456781234567812345678";
- #elif UNITY_IOS
- return "12345678123456781234567812345678";
- #else
- return "";
- #endif
- }
- }
- public static string TestHost
- {
- get
- {
- #if UNITY_ANDROID
- return "https://testchinaapi.youloft.com";
- #elif UNITY_IOS
- return "https://testchinaapi.youloft.com";
- #else
- return "";
- #endif
- }
- }
- }
|