UNPKG

falgames

Version:

Falgames is a helpful package to enhance your discord bot with fun and interactive minigames

33 lines (31 loc) 1.19 kB
/** * @module * * This module provides a collection of games to enrich your Discord bot. * * @example * ```js * import { TwoZeroFourEight } from 'falgames'; * const game = new TwoZeroFourEight(); * ``` */ export { TwoZeroFourEight } from "./src/2048.js" export { Connect4 } from "./src/Connect4.js" export { FastType } from "./src/FastType.js" export { FindEmoji } from "./src/FindEmoji.js" export { Fishy } from "./src/Fishy.js" export { Flood } from "./src/Flood.js" export { Hangman } from "./src/Hangman.js" export { MatchPairs } from "./src/MatchPairs.js" export { Minesweeper } from "./src/Minesweeper.js" export { GuessThePokemon } from "./src/GuessThePokemon.js" export { RockPaperScissors } from "./src/RockPaperScissors.js" export { WouldYouRather } from "./src/WouldYouRather.js" //export { version } from "./package.json" with { type: "json" } export { TicTacToe } from "./src/TicTacToe.js" export { Emojify } from "./utils/emojify.js" export { Slots } from "./src/Slots.js" export { Snake } from "./src/Snake.js" export { Trivia } from "./src/Trivia.js" export { Wordle } from "./src/Wordle.js" export { Roll } from "./src/Roll.js"