All checks were successful
Code Review / code-review (pull_request) Successful in 3s
21 lines
384 B
C#
21 lines
384 B
C#
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");
|
|
Debug.Log("test2");
|
|
Debug.Log("test22");
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|