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
|
|
|
{
|
|
|
|
|
// 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()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|