예제 #1
0
파일: GameUI.cs 프로젝트: eponymoose/Sirtet
    public void Setup(TetrisGame game)
    {
        _game = game;
        Reset();

        for (int i = 0; i < shapeCounterDisplays.Length; ++i)
        {
            shapeCounterDisplays[i].Shape = game.GetGameData().Shapes[i];
        }
    }