UNPKG

thomas-anderson-lib

Version:

A text adventure game library based on Thomas Anderson from The Matrix. Create your own Matrix-inspired text adventures with this easy-to-use library.

8 lines (7 loc) 194 B
import React from 'react'; interface MatrixGameProps { onGameOver?: (score: number) => void; className?: string; } export declare const MatrixGame: React.FC<MatrixGameProps>; export {};