Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     //遊戲啟動
     NonogramMgr.Instance().startGame(null);
     //關閉遊戲
     NonogramMgr.Instance().closeGame();
 }
Ejemplo n.º 2
0
 public static NonogramMgr Instance()
 {
     if (m_GameMgr == null)
     {
         m_GameMgr = new NonogramMgr();
         init();
     }
     return(m_GameMgr);
 }
Ejemplo n.º 3
0
 public bool closeGame()
 {
     m_GameMgr = null;
     return(true);
 }