UNPKG

boardcast

Version:

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

12 lines (11 loc) 440 B
/** * Lancer game system contrib module for Boardcast * * This module provides Lancer-specific visualization and animation methods * that extend the core Boardcast functionality. */ export { LancerMovement } from './movement.js'; export { LancerCombat } from './combat.js'; // Re-export commonly used types from core library for convenience export { Colors, ClearType } from 'boardcast'; export { BoardcastHexBoard } from 'boardcast';