public void Draw(GraphicsDevice graphicsDevice) { context.Begin(graphicsDevice); drawables.Draw(context); OnDrawDebug(context); context.End(); }
////////////////////////////////////////////////////////////////////////////// #region Drawable public override void Draw(Context context) { drawables.Draw(context); }
////////////////////////////////////////////////////////////////////////////// #region Drawable public override void Draw(Context context) { mRootView.Draw(context); drawables.Draw(context); }