コード例 #1
0
 //Constructors
 public InputPin(LogicEntity owner)
     : base(owner)
 {
 }
コード例 #2
0
 //Constructors
 public OutputPin(LogicEntity owner)
     : base(owner)
 {
     logicLevel = LogicLevel.ERROR;
 }
コード例 #3
0
 //Constructors
 protected Pin(LogicEntity owner)
 {
     this.owner          = owner;
     this.sprite         = new Sprite();
     this.sprite.Texture = GraphicElements.PinTextureError;
 }