namespace TACO.Thingies { using System; public class MouseEngine : Thingie { private Slots.Gear mGearSlot; public MouseEngine(string id) : base(id) { mGearSlot = new Slots.Gear(); Slots.Add(mGearSlot); } public override string Name { get { return "Mouse Engine"; } } public override double NaturalWeight { get { return 10; } } } }