List<Creature>[,] theWorld; public Environment() { List<Creature>[,] theWorld = new List<Creature>[100,100]; } public void addCreature(Creature c) { for (int x = 0; x < 100; x++) { for (int y = 0; y < 100; y++) { theWorld[x, y].Add (c); } } }