xlog, quit, stab, wip objects

This commit is contained in:
Pascal Engélibert 2024-02-10 18:06:30 +01:00
commit 711ea155ac
3 changed files with 114 additions and 34 deletions

9
xlog.py Normal file
View file

@ -0,0 +1,9 @@
import pygame
pygame.font.init()
font = pygame.font.SysFont('FreeMono', 16)
def display(surface, lines):
for i in range(len(lines)):
surface.blit(font.render(lines[i], False, (255,255,255)), (0, i*20))