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