Starting Cooking System

This commit is contained in:
2025-01-09 22:00:40 -06:00
parent 9f8e3b34ea
commit 5344fc4aeb
7 changed files with 42 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
class_name CookingGame
const VerticalSlice = preload("res://scripts/Cooking/Recipe/VerticalSlice.gd");
var recipe:CookingRecipe = null;
func _init(recipe:CookingRecipe) -> void:
self.recipe = recipe;

View File

@@ -0,0 +1,4 @@
class_name CookingRecipe
func _init() -> void:
pass

View File

@@ -0,0 +1,4 @@
class_name VerticalSlice extends "res://scripts/Cooking/Recipe/CookingRecipe.gd"
func _init() -> void:
super._init();