20 lines
404 B
C#
20 lines
404 B
C#
using Assets.Scripts.Actions;
|
|
|
|
namespace Assets.Scripts.Buildings
|
|
{
|
|
public class HotDogs : BaseCell
|
|
{
|
|
protected override void Initialize()
|
|
{
|
|
_name = "Hot dogs";
|
|
}
|
|
|
|
protected override void BuildOptionsList()
|
|
{
|
|
_optionsList.Add(new Eat("Hot Dog", 15, 20));
|
|
_optionsList.Add(new Eat("Cola", 10, 10));
|
|
}
|
|
|
|
}
|
|
}
|