boardcast
Version:
Animation library for tabletop game rules on hex boards with CLI tools and game extensions
18 lines • 595 B
TypeScript
/**
* 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.
*/
export * as Lancer from './lancer/index.js';
export interface GameContribModule {
name: string;
version: string;
description: string;
author?: string;
gameSystem: string;
}
export declare const AVAILABLE_GAMES: readonly ["lancer"];
export type GameSystem = typeof AVAILABLE_GAMES[number];
//# sourceMappingURL=index.d.ts.map