最初のコミット

このコミットが含まれているのは:
2023-11-30 08:32:10 +09:00
コミット afd6c4b576
2個のファイルの変更25行の追加0行の削除
ファイルの表示
+25
ファイルの表示
@@ -0,0 +1,25 @@
import pygame
from pygame.locals import *
import sys
class Main:
@classmethod
def main (cls) -> None:
pygame.init ()
screen = pygame.display.set_mode ((640, 480))
while (True):
screen.fill ((255, 255, 255))
pygame.display.update ()
for event in pygame.event.get ():
if event.type == QUIT:
pygame.quit ()
sys.exit ()
if __name__ == '__main__':
Main.main ()