merge projects and arrange script folders
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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()
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user