forked from aniket091/Gamecord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
20 lines (20 loc) · 1.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports.TwoZeroFourEight = require('./src/2048');
module.exports.Connect4 = require('./src/Connect4');
module.exports.FastType = require('./src/FastType');
module.exports.FindEmoji = require('./src/FindEmoji');
module.exports.Fishy = require('./src/Fishy');
module.exports.Flood = require('./src/Flood');
module.exports.Hangman = require('./src/Hangman');
module.exports.MatchPairs = require('./src/MatchPairs');
module.exports.Minesweeper = require('./src/Minesweeper');
module.exports.GuessThePokemon = require('./src/GuessThePokemon');
module.exports.RockPaperScissors = require('./src/RockPaperScissors');
module.exports.WouldYouRather = require('./src/WouldYouRather');
module.exports.version = require('./package.json').version;
module.exports.TicTacToe = require('./src/TicTacToe');
module.exports.Emojify = require('./utils/emojify');
module.exports.Slots = require('./src/Slots');
module.exports.Snake = require('./src/Snake');
module.exports.Trivia = require('./src/Trivia');
module.exports.Wordle = require('./src/Wordle');
module.exports.MagicEightBall = require('./src/8Ball');