public void ACircle(Dispatcher _dispatcher, EShapes _event)
        {
            var disp = _dispatcher as CInstanceSpecificValueHandlers;

            disp.Circles += disp.Step;
        }
Beispiel #2
0
 public Shape(GraphicsDevice device, int width, int height, EShapes shapetype)
     : base(device, width, height)
 {
     ShapeType = shapetype;
 }