added file for board position and game management

This commit is contained in:
Milan Martin Jäckel 2026-06-03 20:45:40 +02:00
parent 280374c105
commit 31684c6e3f

10
position.py Normal file
View File

@ -0,0 +1,10 @@
import pygame as pg
pos = [[4, 3, 2, 5, 6, 2, 3, 4],
[1, 1, 1, 1, 1, 1, 1, 1],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[1, 1, 1, 1, 1, 1, 1, 1],
[4, 3, 2, 5, 6, 2, 3, 4]]