8 lines
165 B
Python
8 lines
165 B
Python
import pygame
|
|
import controls
|
|
from tilemap.playground import PlayGround
|
|
|
|
if __name__ == "__main__":
|
|
pg = PlayGround(geometry = (1, 3))
|
|
pygame.init()
|
|
pass |