This commit is contained in:
25
Assets/WorkSpace/LH/BaseSimulationMessage.cs
Normal file
25
Assets/WorkSpace/LH/BaseSimulationMessage.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user