Files
Simulation/Assets/TempTarget.cs

16 lines
272 B
C#
Raw Normal View History

2025-07-14 09:35:27 +09:00
using UnityEngine;
public class TempTarget : 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()
{
}
}