Ejemplo n.º 1
0
 protected override void InitData()
 {
     if (Inst == null)
     {
         Inst = this;
     }
 }
Ejemplo n.º 2
0
        public void PlayFunly()
        {
            if (funly.Count == 13)
            {
                string str = "";
                for (int i = 0; i < funly.Count; ++i)
                {
                    str += (char)(funly[i]);
                }

                InterfaceControler.GetInst().AddMsgBox(str);
                funly.Clear();
            }
        }
Ejemplo n.º 3
0
 protected override void DestroyData()
 {
     Inst = null;
 }