using Encompass; namespace isometricparkfna.Renderers { public class BudgetWindowRenderer : GeneralRenderer { private SpriteBatch batch; private SpriteFont font; public BudgetWindowRenderer(SpriteBatch batch, SpriteFont font) { this.batch = batch; this.font = font; } public override void Render() { var budgetWindow = new BudgetWindow(new Budget { }, this.monoFont, 0, 0); foreach (ref readonly var entity in ReadEntities()) { // budgetWindow.update // this.showBudget = this.budgetWindow.update(mouseCur, this.simulation.latestBudget, this.simulation.previousBudget); } } } }