using Assets.Scripts.Buildings; using System.Collections.Generic; public class Map { private List Cells; public Map() { Cells = new List { new House(), new Burger() }; } }