コード例 #1
0
ファイル: GameModel.cs プロジェクト: SpiritWolf2015/DragObj
    public static GameModel getInstance()
    {
        if (model == null)
        {
            model = new GameModel();

            model.init();
        }
        return model;
    }