//draw help text public void DrawText(SpriteBatch sb) { if (drawText) { box.DrawText(sb, Blaze.fonts["helpFont"], "Press E to enter"); } }
//draw the text public void Draw(SpriteBatch sb) { if (dir == -1 || dir == Playing.Instance.dir) { box.DrawText(sb, Blaze.fonts["helpFont"], text); } }