gather-and-defend/Assets/LogScript.cs
2023-06-03 09:35:13 -04:00

19 lines
309 B
C#

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