This commit is contained in:
2025-04-17 09:53:24 +09:00
parent ce9ca7ed4c
commit c2b88e5157
2 changed files with 29 additions and 0 deletions

18
Assets/hello.cs Normal file
View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class hello : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("test for gpt code review");
}
// Update is called once per frame
void Update()
{
}
}