From 1ca8b405835f253cf058803619168447923227be Mon Sep 17 00:00:00 2001 From: YK Date: Wed, 27 Aug 2025 15:25:09 +0200 Subject: [PATCH] The same but better for unity 6 --- Chocolate.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Chocolate.cs diff --git a/Chocolate.cs b/Chocolate.cs new file mode 100644 index 0000000..59d9ffa --- /dev/null +++ b/Chocolate.cs @@ -0,0 +1,16 @@ +using UnityEngine; + +public class Chocolate : MonoBehaviour +{ + // Start is called once before the first execution of Update after the MonoBehaviour is created + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + } +}