Files
laser-game/Assets/Game/Scripts/HelloWorld.cs
T
2025-04-26 18:30:58 +03:00

19 lines
334 B
C#

using System;
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()
{
}
}