Files
XRLib/Assets/Scripts/Simulator/Model/SinkManager.cs
2025-10-16 10:24:29 +09:00

19 lines
323 B
C#

using UnityEngine;
namespace Simulator.Model
{
public class SinkManager
{
// 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()
{
}
}
}