コード例 #1
0
        public static bool CheckPurchaserObject(AppcoinsUnity a)
        {
            if (a.purchaserObject == null)
            {
                return(true);
            }

            return(false);
        }
コード例 #2
0
 // Use this for initialization
 internal AppcoinsUnityEditorMode(AppcoinsUnity a, MessageHandlerGUI mH)
 {
     appcoinsUnity = a;
     messHandler   = mH;
     messHandler.ChangeTitle(title);
 }
コード例 #3
0
 public void Init(AppcoinsUnity appcoinsUnityRef)
 {
     //get refference to AppcoinsUnity class
     appcoinsUnity = appcoinsUnityRef;
 }
コード例 #4
0
 public static bool CheckPoAActive(AppcoinsUnity a)
 {
     return(a.enablePOA == true ? true : false);
 }