Files
Studio/Assets/Scripts/XED/Machine/StackerCrane/StackerCraneTask.cs
2025-02-19 17:24:26 +09:00

24 lines
379 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace XED
{
public class StackerCraneTask
{
public ETaskType taskType;
public StackerCraneTask(ETaskType taskType)
{
this.taskType = taskType;
}
}
public enum ETaskType
{
None,
Incoming,
Outgoing,
}
}