Add Craps game interactive
This commit is contained in:
parent
f72073358b
commit
36d3b20bff
3 changed files with 277 additions and 0 deletions
|
|
@ -12,6 +12,7 @@ import GoldCoinGame from '@/components/GoldCoinGame';
|
|||
import GuessingGame from '@/components/GuessingGame';
|
||||
import SubtractionGame from '@/components/SubtractionGame';
|
||||
import ParityBitsGame from '@/components/ParityBitsGame';
|
||||
import CrapsGame from '@/components/CrapsGame';
|
||||
|
||||
interface Game {
|
||||
id: string;
|
||||
|
|
@ -22,6 +23,13 @@ interface Game {
|
|||
}
|
||||
|
||||
const games: Game[] = [
|
||||
{
|
||||
id: 'craps-game',
|
||||
title: 'Craps: First Throw',
|
||||
description: 'Experience the classic casino dice game! Roll two dice and learn about probability as you discover the rules of the opening throw.',
|
||||
tags: ['probability', 'dice', 'casino', 'mathematics', 'statistics', 'gambling'],
|
||||
component: CrapsGame
|
||||
},
|
||||
{
|
||||
id: 'parity-magic',
|
||||
title: 'Parity Magic',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue