This commit is contained in:
max
2026-03-26 00:43:35 +01:00
parent 932734e5b4
commit e156122357
5 changed files with 13 additions and 52 deletions

View File

@@ -176,17 +176,6 @@ namespace Car_simulation.UI
_window.Draw(text);
}
}
// Draw version info
DrawVersionInfo();
}
private void DrawVersionInfo()
{
Text versionText = new Text("Car Simulation v1.0", _font, 10);
versionText.FillColor = new Color(100, 100, 100);
versionText.Position = new Vector2f(_window.Size.X - 120, _window.Size.Y - 15);
_window.Draw(versionText);
}
public void ToggleDebugInfo()