merge projects and arrange script folders
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user