Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 22nd, 2012  |  syntax: C#  |  size: 0.51 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. using CryEngine;
  2.  
  3. namespace CryMono.Current
  4. {
  5.         public sealed class OutputPort
  6.         {
  7.                 public string Name { get; set; }
  8.                 public NodePortType RawType { get; set; }
  9.                 public PortType TypeModifier { get; set; }
  10.                 public string Description { get; set; }
  11.         }
  12.  
  13.         public sealed class InputPort
  14.         {
  15.                 public string Name { get; set; }
  16.                 public NodePortType RawType { get; set; }
  17.                 public PortType TypeModifier { get; set; }
  18.                 public string Description { get; set; }
  19.                 public object DefaultValue { get; set; }
  20.         }
  21. }