Example #1
0
 public DescriptionSwitch(Vector2 position, int rotation, string uniqueID, int bits, string identifier, ComponentSide side) : base(position, rotation, uniqueID, ComponentType.SWITCH)
 {
     this.Bits       = bits;
     this.Side       = side;
     this.Identifier = identifier;
 }
Example #2
0
 public IOConfig(ComponentSide side, string?identifier = null)
 {
     this.Side       = side;
     this.Identifier = identifier;
 }