blob: d8650e78239b8d7bceb1d39f194923f3b7d0c607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import pygame
import random
pygame.init()
SCREEN_WIDTH, SCREEN_HEIGHT = 640, 640
FONT_FILE = "font.otf"
FONT_BIGGER = pygame.font.Font(FONT_FILE, 160)
FONT_BIG = pygame.font.Font(FONT_FILE, 130)
FONT_NORMAL = pygame.font.Font(FONT_FILE, 75)
FONT_SMALL = pygame.font.Font(FONT_FILE, 60)
FONT_TINY = pygame.font.Font(FONT_FILE, 30)
|