16 lines
338 B
C#
16 lines
338 B
C#
namespace Assets.Scripts.Buildings
|
|
{
|
|
public class House : BaseCell
|
|
{
|
|
protected override void BuildOptionsList()
|
|
{
|
|
//_optionsList.Add(new Relax("Rest", 6, 1));
|
|
}
|
|
|
|
protected override void Initialize()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|