6 lines
144 B
Python
6 lines
144 B
Python
|
|
import pygame
|
||
|
|
|
||
|
|
pygame.font.init()
|
||
|
|
|
||
|
|
font_helvetica = pygame.font.SysFont('Helvetica', 30)
|
||
|
|
font_helvetica16 = pygame.font.SysFont('Helvetica', 15)
|