This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sdi/Assets/hello.cs

20 lines
356 B
C#
Raw Normal View History

2025-04-17 09:53:24 +09:00
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");
2025-04-17 11:25:40 +09:00
Debug.Log("hello2");
2025-04-17 09:53:24 +09:00
}
// Update is called once per frame
void Update()
{
}
}