cbt-game-engine
Version:
Platform-agnostic game engine for Interactive Autism Quiz Game
10 lines (9 loc) • 354 B
TypeScript
import { GameConfig } from '../types';
export declare const createDefaultConfig: () => GameConfig;
export declare const createSegment: (id: number, question: string, animationFile?: string, timeLimit?: number) => {
id: number;
question: string;
animationFile: string | undefined;
completed: boolean;
timeLimit: number | undefined;
};