merge projects and arrange script folders

This commit is contained in:
voffka81
2022-08-17 11:14:32 +03:00
parent beea2145cb
commit c0ea0addcb
35 changed files with 608 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using Assets.Scripts.Actions;
namespace Assets.Scripts.Buildings
{
public class Burger : BaseCell
{
protected override void BuildOptionsList()
{
OptionsList.Add("Hamburgers - 83$", new Eat(null, 6, 1, 83));
OptionsList.Add("Cheesburger - 94$", new Eat(null, 6, 1, 94));
OptionsList.Add("Astro chicken - 131$", new Eat(null, 6, 1, 131));
OptionsList.Add("Fries - 68$", new Eat(null, 6, 1, 68));
OptionsList.Add("Shakes - 108$", new Eat(null, 6, 1, 108));
OptionsList.Add("Colas - 73$", new Eat(null, 6, 1, 73));
}
}
}