namespace TACO.Thingies { using System; public class TacoBeam : ElectricThingie { private Slots.Electric mSlot; public TacoBeam(string id) : base(id) { mSlot = new TACO.Slots.Electric(TACO.Slots.Electric.Type.Receiver); Slots.Add(mSlot); } public override string Name { get { return "Taco Beam"; } } public override bool Movable { get { return false; } } public override double NaturalWeight { get { return 20.0; } } } }