Files
Simulation/Assets/Scripts/SimulationModels/SimulationModelResource.cs

10 lines
189 B
C#
Raw Normal View History

2025-05-26 18:06:25 +09:00
using UnityEngine;
2025-06-05 17:54:18 +09:00
public class SimulationModelResource : SimulationModel
2025-05-26 18:06:25 +09:00
{
2025-06-24 17:02:07 +09:00
public override void GetData(string data)
2025-05-26 18:06:25 +09:00
{
2025-06-24 17:02:07 +09:00
throw new System.NotImplementedException();
2025-05-26 18:06:25 +09:00
}
}