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