namespace TACO.Thingies { using System; public abstract class Ball : Thingie { private int mRotation = 0; public Ball(string id) : base(id) { } protected int Rotation { get { return mRotation; } set { mRotation = value; } } } }