forked from ArtemKot4/ScriptStory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.config
82 lines (82 loc) · 1.99 KB
/
build.config
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"defaultConfig": {
"readme": "this build config is generated automatically by mod development toolchain",
"api": "CoreEngine",
"buildType": "develop",
"resourcePacksDir":"minecraft_packs/resource/",
"behaviorPacksDir":"minecraft_packs/behavior/"
},
"compile": [
{
"path": "source/main.js",
"sourceType": "mod"
},
{
"path": "source/launcher.js",
"sourceType": "launcher"
},
{
"path": "library/BackpackAPI.js",
"sourceType": "library"
},
{
"path": "library/BlockEngine.js",
"sourceType": "library"
},
{
"path": "library/ChargeItem.js",
"sourceType": "library"
},
{
"path": "library/DependenceHelper.js",
"sourceType": "library"
},
{
"path": "library/energy-net.js",
"sourceType": "library"
},
{
"path": "library/ItemAnimHelper.js",
"sourceType": "library"
},
{
"path": "library/RenderUtil.js",
"sourceType": "library"
},
{
"path": "library/SoundAPI.js",
"sourceType": "library"
},
{
"path": "library/StorageInterface.js",
"sourceType": "library"
},
{
"path": "library/TileRender.js",
"sourceType": "library"
},
{
"path": "library/ToolLib.js",
"sourceType": "library"
}
],
"resources": [
{
"path": "resources/assets",
"resourceType": "resource"
},
{
"path": "resources/models",
"resourceType": "resource"
},
{
"path": "gui/gui",
"resourceType": "gui"
}
],
"nativeDirs": [
{
"path": "native/native"
}
]
}