-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle
40 lines (29 loc) · 1.03 KB
/
settings.gradle
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
/*/
| Settings gradle file.
| Edit the mod information and game path here.
| For additional libraries to be bundled, edit build.gradle.
/*/
// ===== Mod info ===== //
def modInfo = [
modID : "snoobinoob.lightoverlay",
modName : "Light Overlay",
modVersion : "4.6",
gameVersion : "auto",
modDescription : "Adds an overlay to show dark areas",
author : "Snoobinoob",
clientside : false,
modDependencies : [],
modOptionalDependencies : [],
]
// ===== Necesse game directory ===== //
// "auto" to attempt searching in default locations
def gamePath = "auto"
// ===== Use decompiled sources ===== //
// Can be overridden with -PuseDecompiledSources=false
def useDecompiledSources = true
// ===== Project name ===== //
// No need to edit, inherits mod name from mod info
rootProject.name = modInfo.modName
gradle.ext.modInfo = modInfo
gradle.ext.gamePath = gamePath
gradle.ext.useDecompiledSources = useDecompiledSources