Files
Simulation/Assets/WorkSpace/LH/BaseSimulationMessage.cs
UVCLimHun 60eae20b92
All checks were successful
Code Review / code-review (pull_request) Successful in 8s
webmanager
2025-04-30 12:15:05 +09:00

25 lines
524 B
C#

using UnityEngine;
using System;
using System.Collections.Generic;
namespace Octopus.Simulator
{
public enum SimulationType
{
generator_event,
transporter_event,
processor_event,
resource_component_event
}
[Serializable]
public class BaseSimulationMessage
{
public string type;
public string _event;
public string component_type;
public string component_id;
//public List<string> data;
public string timestamp;
}
}