예제 #1
0
 public Game(int width, int height)
 {
     levelWidth = width;
     levelHeight = height - 1;
     creatures = new List<Creature>();
     statusQueue = new StatusQueue(height - 1, width - 1);
 }
예제 #2
0
 public Game(int width, int height)
 {
     levelWidth  = width;
     levelHeight = height - 1;
     creatures   = new List <Creature>();
     statusQueue = new StatusQueue(height - 1, width - 1);
 }