|
|
@ -22,6 +22,18 @@ public class GameManager |
|
|
|
public static int PLAYER_SKIN = 5; //0 == puck, 1 == pancake, 2 == gummybear, 3==pig, 4==ball w/ bear, 5==pop
|
|
|
|
public static int MAX_PLAYER_SKIN = 5; |
|
|
|
|
|
|
|
public string GetRoundName() |
|
|
|
{ |
|
|
|
if (Round == 3) |
|
|
|
{ |
|
|
|
return "Final round!"; |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
return "Round " + GameManager.Instance.Round.ToString(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public GameManager() |
|
|
|
{ |
|
|
|
Reset(); |
|
|
|