Actions

Gameboard

From Future Skill

Revision as of 10: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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

[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)