From 31684c6e3f397e860de842871b6d6f9723ab9d3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Martin=20J=C3=A4ckel?= Date: Wed, 3 Jun 2026 20:45:40 +0200 Subject: [PATCH] added file for board position and game management --- position.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 position.py diff --git a/position.py b/position.py new file mode 100644 index 0000000..3b8a6f9 --- /dev/null +++ b/position.py @@ -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]] \ No newline at end of file