From bae3d22054a9b01d05a87f97a77e59685684035f Mon Sep 17 00:00:00 2001 From: UVCLimHun Date: Thu, 17 Apr 2025 17:00:15 +0900 Subject: [PATCH 1/2] 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++; + } } From 1d3e1da3f42c7140bc672b7625589ff5e4d55dd6 Mon Sep 17 00:00:00 2001 From: UVCLimHun Date: Thu, 17 Apr 2025 17:42:38 +0900 Subject: [PATCH 2/2] Update hello.cs --- Assets/hello.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Assets/hello.cs b/Assets/hello.cs index 077b1c5..0f6e23c 100644 --- a/Assets/hello.cs +++ b/Assets/hello.cs @@ -6,12 +6,14 @@ public class hello : MonoBehaviour { int count = 0; string Hello = ""; + int cuntplus = 0; // Start is called before the first frame update void Start() { Debug.Log("test for gpt code review"); Debug.Log("test2"); up(count); + cuntplus++; } // Update is called once per frame @@ -24,4 +26,9 @@ public class hello : MonoBehaviour { return o++; } + + public void NotUse() + { + + } }