17 lines
258 B
C#
17 lines
258 B
C#
using Assets.Scripts.Buildings;
|
|
using System.Collections.Generic;
|
|
|
|
public class Map
|
|
{
|
|
private List<BaseCell> Cells;
|
|
|
|
public Map()
|
|
{
|
|
Cells = new List<BaseCell>
|
|
{
|
|
new House(),
|
|
new Burger()
|
|
};
|
|
}
|
|
}
|