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