UNPKG

slanted-gamedev-toolz

Version:

A slanted mix of tools for your brilliant ideas in game design.

19 lines (18 loc) 539 B
import React from "react"; import { MassAppealCard } from "../../cardDecks/massAppealDeck"; export interface Props { isHandDealt: boolean; showNextLevelBtn: boolean; isGameOver: boolean; isAllowDealing: boolean; shuffleDeck: () => void; remainingDeck: MassAppealCard[]; nextLevel: () => void; isLevelBeaten: boolean; nextHand: () => void; handsRemaining: number; levelScore: number; isOutOfHands: boolean; restartGame: () => void; } export declare const ShuffleDealBtn: React.FC<Props>;