
Untitled
By: a guest on
Jun 22nd, 2012 | syntax:
C# | size: 0.51 KB | hits: 14 | expires: Never
using CryEngine;
namespace CryMono.Current
{
public sealed class OutputPort
{
public string Name { get; set; }
public NodePortType RawType { get; set; }
public PortType TypeModifier { get; set; }
public string Description { get; set; }
}
public sealed class InputPort
{
public string Name { get; set; }
public NodePortType RawType { get; set; }
public PortType TypeModifier { get; set; }
public string Description { get; set; }
public object DefaultValue { get; set; }
}
}