From bae3d22054a9b01d05a87f97a77e59685684035f Mon Sep 17 00:00:00 2001 From: UVCLimHun Date: Thu, 17 Apr 2025 17:00:15 +0900 Subject: [PATCH] Update hello.cs --- Assets/hello.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Assets/hello.cs b/Assets/hello.cs index 0520336..077b1c5 100644 --- a/Assets/hello.cs +++ b/Assets/hello.cs @@ -4,11 +4,14 @@ using UnityEngine; public class hello : MonoBehaviour { + int count = 0; + string Hello = ""; // Start is called before the first frame update void Start() { Debug.Log("test for gpt code review"); Debug.Log("test2"); + up(count); } // Update is called once per frame @@ -16,4 +19,9 @@ public class hello : MonoBehaviour { } + + public int up(int o) + { + return o++; + } }