2025-11-04 11:02:02 +09:00
|
|
|
using System;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public static class SimulationConfig
|
|
|
|
|
{
|
|
|
|
|
public static event Action<string> onSimulationCodeSet;
|
|
|
|
|
static string simulationCode="";
|
|
|
|
|
public static string SimulationCode
|
|
|
|
|
{
|
|
|
|
|
get { return simulationCode; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
simulationCode = value;
|
|
|
|
|
onSimulationCodeSet?.Invoke(simulationCode);
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-04 19:02:01 +09:00
|
|
|
public static int speed = 3;
|
2025-11-04 11:02:02 +09:00
|
|
|
public static int duration = 3600;
|
|
|
|
|
}
|