You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
328 B
23 lines
328 B
3 years ago
|
import pygame
|
||
|
|
||
|
|
||
|
pygame.init()
|
||
|
font = pygame.font.Font('CRC35.otf', 25)
|
||
|
|
||
|
RED = 0xFF0000
|
||
|
BLUE = 0x0000FF
|
||
|
YELLOW = 0xFFC91F
|
||
|
GREEN = 0x00FF00
|
||
|
MAGENTA = 0xFF03B8
|
||
|
CYAN = 0x00FFCC
|
||
|
BLACK = 0x000
|
||
|
WHITE = 0xFFFFFF
|
||
|
DARK_BLUE = 0x282e46
|
||
|
GREY = 0x383e4F
|
||
|
COLORS = [RED, BLUE, YELLOW, GREEN, MAGENTA, CYAN]
|
||
|
|
||
|
WIDTH = 900
|
||
|
HEIGHT = 700
|
||
|
|
||
|
FPS = 30
|