15 lines
242 B
C#
15 lines
242 B
C#
using System;
|
|
|
|
namespace Studio.Test
|
|
{
|
|
public class AGVPortNode : AGVNode
|
|
{
|
|
public enum PortType
|
|
{
|
|
Input,
|
|
Output
|
|
}
|
|
public PortType portType;
|
|
public Loader loader;
|
|
}
|
|
} |