コード例 #1
0
ファイル: GameFactory.cs プロジェクト: nanosphere/gensou02SLG
 public static void initFacroty()
 {
     gm = null;
     um = null;
     nm = null;
     am = null;
 }
コード例 #2
0
ファイル: GameFactory.cs プロジェクト: nanosphere/gensou02SLG
 public static game.Game getGame()
 {
     if (gm == null)
     {
         gm = new game.Game();
     }
     return(gm);
 }