namespace TACO.Thingies { using System; public class Switch : ElectricThingie { private Slots.PushPull mSwitchSlot; private Slots.Electric mSocket; public Switch(string id) : base(id) { mSwitchSlot = new TACO.Slots.PushPull(); mSocket = new TACO.Slots.Electric(TACO.Slots.Electric.Type.Emitter); Slots.Add(mSwitchSlot); Slots.Add(mSocket); } public override string Name { get { return "Switch"; } } public override bool Movable { get { return false; } } public override double NaturalWeight { get { return 5.0; } } } }