This commit is contained in:
2025-03-10 18:37:53 +08:00
parent 5519a8595b
commit b86ffd9f5b
26 changed files with 2078 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
from os import environ
import time
environ['PYGAME_HIDE_SUPPORT_PROMPT'] = '1'
import pygame as sdl
name = "Basic HUD Framework"
def action():
if __name__ == "__main__":
sdl.init()
sdl.display.set_caption(f"Commodore UI Element Test Window")
screen = sdl.display.set_mode((1024, 768), sdl.RESIZABLE)