UNPKG

slanted-gamedev-toolz

Version:

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

18 lines (17 loc) 516 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; dealCards: () => void; handsRemaining: number; isOutOfHands: boolean; restartGame: () => void; } export declare const ShuffleDealBtn: React.FC<Props>;