Gameboard
From Future Skill
Revision as of 09:41, 8 April 2021 by KimSimmons (talk | contribs) (Created page with "= [DRAFT] The GameBoard library = A reusable and configurable system for game-like challenges. == GameBoard quick setup == <nowiki> from gameboard import GameBoard from game...")
Revision as of 09:41, 8 April 2021 by KimSimmons (talk | contribs) (Created page with "= [DRAFT] The GameBoard library = A reusable and configurable system for game-like challenges. == GameBoard quick setup == <nowiki> from gameboard import GameBoard from game...")
[DRAFT] The GameBoard library
A reusable and configurable system for game-like challenges.
GameBoard quick setup
from gameboard import GameBoard from gameboard_helpers import CommonSetups, Style fn init(): board = GameBoard() CommonSetups.square(board) Style.topdown(board) board.fill(10, 10)