From b2aafde7d51a8b17132c3fd8c1e01ac21a47ad6a Mon Sep 17 00:00:00 2001 From: Better nya Date: Wed, 18 Feb 2026 13:24:45 +1100 Subject: [PATCH] move files to old to begin on actual program Signed-off-by: Better nya --- old/installed_fonts.py | 5 +++++ main.py => old/main.py | 0 2 files changed, 5 insertions(+) create mode 100644 old/installed_fonts.py rename main.py => old/main.py (100%) diff --git a/old/installed_fonts.py b/old/installed_fonts.py new file mode 100644 index 0000000..75f6516 --- /dev/null +++ b/old/installed_fonts.py @@ -0,0 +1,5 @@ +import pygame +pygame.init() +pygame.font.init() +fonts = pygame.font.get_fonts() +print(fonts) \ No newline at end of file diff --git a/main.py b/old/main.py similarity index 100% rename from main.py rename to old/main.py