Начало создания ядра версия 0.0.1

This commit is contained in:
Niken
2026-05-05 15:41:31 +03:00
commit 09050b7165
5 changed files with 79 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from dataclasses import dataclass
@dataclass
class Card:
STARTING_CARDS = 7
low_gap = 0
hight_gap = 9
color_special_quantity = 2
no_color_special_quantity = 4
color = ("green", "yellow", "red", "blue")
color_special = ["add_two", "revers", "skip"]
no_color_special = ["choose color", "add_quad"]