Files
unity-application/Assets/Scripts/HelloWorld.cs
2023-02-24 20:10:56 +01:00

19 lines
320 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class HelloWorld : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("Hello World!");
}
// Update is called once per frame
void Update()
{
}
}