Files
XRLib/Assets/Scripts/Simulator/Model/Entity.cs
2025-11-04 11:02:02 +09:00

18 lines
301 B
C#

using UnityEngine;
public class Entity : MonoBehaviour
{
public string name;
// 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()
{
}
}