Files
XRLib/Assets/Scripts/Simulator/Model/SinkManager.cs

19 lines
323 B
C#
Raw Normal View History

2025-10-16 10:24:29 +09:00
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()
{
}
}
}