Files
TutorialRTS/Assets/Scripts/SelectionMarker.cs

18 lines
291 B
C#
Raw Normal View History

2026-03-19 11:57:23 +00:00
using UnityEngine;
public class SelectionMarker : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}