Beispiel #1
0
        public static void Setup(GameViewModel gameViewModel)
        {
            gameViewModel.AddPlayer();
            var maxDrops = 8; //TODO Make this a formula or something. This is currently the amount from the brief example

            for (int i = 0; i < maxDrops; i++)
            {
                gameViewModel.AddRaindrop();
            }
        }