This commit is contained in:
Crizomb 2025-01-23 10:42:14 +01:00
commit 299091b632
15 changed files with 4068 additions and 3 deletions

View file

@ -9,4 +9,13 @@ public static class GlobalsVariable
public static AbstractUnit QueenA;
public static AbstractUnit QueenB;
public static Dictionary<string, int> prices = new Dictionary<string, int>()
{
{ "Zombie",1 },
{ "Squelette",2 },
{ "Creeper",3 },
{ "Sorcière",3 },
{ "Golem",8 }
};
}