ADD show health option

This commit is contained in:
2025-04-20 21:45:41 +02:00
parent 40b86ebf86
commit 69cae0044a
6 changed files with 28 additions and 8 deletions

View File

@@ -7,6 +7,7 @@ def main():
pygame.init()
screen = pygame.display.set_mode((720, 720))
clock = pygame.time.Clock()
pygame.display.set_caption("CS2 Demo Viewer")
states = {}
context = {
@@ -15,7 +16,8 @@ def main():
"font": pygame.font.Font(None, 36),
"small_font": pygame.font.Font(None, 15),
"options": {
"show_yaw": True
"show_yaw": True,
"show_health": True
}
}