-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
21 lines (20 loc) · 644 Bytes
/
Copy pathindex.js
File metadata and controls
21 lines (20 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const Generator = require('./src/generators/generator.js');
const MazeGenerator = require('./src/generators/maze.js');
const RoomGenerator = require('./src/generators/room.js');
const StairGenerator = require('./src/generators/stairs.js');
const Renderer = require('./src/renderer.js');
const Cell = require('./src/cell.js');
const Grid = require('./src/grid.js');
const Utils = require('./src/utils.js');
module.exports = {
generators: {
generator: Generator,
maze: MazeGenerator,
room: RoomGenerator,
stairs: StairGenerator
},
renderer: Renderer,
cell: Cell,
grid: Grid,
utils: Utils
}