UNPKG

boardcast

Version:

Animation library for tabletop game rules on hex boards with CLI tools and game extensions

14 lines (13 loc) 397 B
/** * Boardcast Contrib Library * * Game-specific extensions and utilities for the Boardcast hex board library. * Each game system is organized into its own module with specialized methods * for visualization and animation of game mechanics. */ // Game system modules export * as Lancer from './lancer/index.js'; export const AVAILABLE_GAMES = [ 'lancer' // Add future games here ];