Ejemplo n.º 1
0
 public void Draw(GraphicsDevice graphicsDevice)
 {
     context.Begin(graphicsDevice);
     drawables.Draw(context);
     OnDrawDebug(context);
     context.End();
 }
Ejemplo n.º 2
0
        //////////////////////////////////////////////////////////////////////////////

        #region Drawable

        public override void Draw(Context context)
        {
            drawables.Draw(context);
        }
Ejemplo n.º 3
0
        //////////////////////////////////////////////////////////////////////////////

        #region Drawable

        public override void Draw(Context context)
        {
            mRootView.Draw(context);
            drawables.Draw(context);
        }