wip
Some checks failed
Release / pypi-release (push) Failing after 37s
Release / release (ubuntu-latest) (push) Failing after 1m0s
Release / release (windows-latest) (push) Has been cancelled
Release / build-site (push) Has been cancelled

This commit is contained in:
Waylon Walker 2025-11-22 22:14:46 -06:00
parent f55c2fe32b
commit de1001dd57
30 changed files with 1451 additions and 3 deletions

7
creeper_adventure/creeper.py Executable file → Normal file
View file

@ -1,10 +1,12 @@
import random
from copy import copy
from itertools import cycle, repeat
from pathlib import Path
import random
from typing import List, Optional
import pygame
from more_itertools import flatten
from pydantic import BaseModel
import pygame
from creeper_adventure.game import Game
@ -348,7 +350,6 @@ class MainMenu(Menu):
h = 50
x = self.game.screen.get_size()[0] / 2 - w / 2
y = 300
print(self.game.frames)
return Button(self.game, self.surf, self.button_text, x, y, w, h, self.toggle)
def set_button_text(self):