Compare commits

...

3 Commits

Author SHA1 Message Date
Łukasz 3691634fb3 basic 2021-03-17 14:39:06 +01:00
Łukasz ac61d57af1 basic 2021-03-17 14:37:59 +01:00
Łukasz 69f1936be9 test gita 2021-03-17 14:33:30 +01:00
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import random
from Main.constants import *
from constants import *
board = []

View File

@ -1,5 +1,6 @@
#constants
# display size in pixels
DISPLAY_SIZE_HORIZONTAL = 600
DISPLAY_SIZE_VERTICAL = 600

View File

@ -1,9 +1,8 @@
import pygame
# wersja 1.05
from constants import *
from Main import Board
from Main.constants import *
import Board
from constants import *
pygame.init()