-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpzpr.js
More file actions
36 lines (36 loc) · 725 Bytes
/
Copy pathpzpr.js
File metadata and controls
36 lines (36 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
exports.files = [
"header",
"pzpr/env",
"pzpr/event",
"pzpr/classmgr",
"pzpr/variety",
"pzpr/parser",
"pzpr/metadata",
"pzpr/util",
"puzzle/Puzzle",
"puzzle/Config",
"puzzle/Address",
"puzzle/Piece",
"puzzle/PieceList",
"puzzle/Board",
"puzzle/BoardExec",
"puzzle/GraphBase",
"puzzle/LineManager",
"puzzle/AreaManager",
"puzzle/Graphic",
"puzzle/MouseInput",
"puzzle/KeyInput",
"puzzle/Encode",
"puzzle/FileData",
"puzzle/Answer",
"puzzle/Operation",
"variety-common/Graphic",
"variety-common/KeyInput",
"variety-common/MouseInput",
"variety-common/Answer",
"variety-common/BoardExec",
"variety-common/Encode",
"variety-common/FileData"
].map(function(mod) {
return "src/" + mod + ".js";
});