Bugfixing

This commit is contained in:
Maximilian Wagner
2023-07-03 21:21:17 +02:00
parent 1de58ded22
commit b2659b89c3
2 changed files with 13 additions and 28 deletions

View File

@@ -11,19 +11,19 @@ public class MainMenu : MonoBehaviour
private Dictionary<int, int> levels = new Dictionary<int, int>()
{
{1, 1},
{2, 2},
{3, 3},
{4, 4},
{5, 7},
{6, 10},
{7, 11},
{8, 12},
{9, 13},
{10, 14},
{11, 15},
{12, 16},
{13, 21}
{0, 1},
{1, 2},
{2, 3},
{3, 4},
{4, 7},
{5, 10},
{6, 11},
{7, 12},
{8, 13},
{9, 14},
{10, 15},
{11, 16},
{12, 21}
};
public void startGame()