24 lines
453 B
Plaintext
24 lines
453 B
Plaintext
#the mod name as displayed in-game
|
|
displayName: "Java Mod Template"
|
|
|
|
#the internal name of your mod
|
|
name: "example-java-mod"
|
|
|
|
#your name
|
|
author: "You"
|
|
|
|
#the fully qualified main class of the mod
|
|
main: "example.ExampleJavaMod"
|
|
|
|
#the mod description as seen in the mod dialog
|
|
description: "A Mindustry Java mod template."
|
|
|
|
#the mod version
|
|
version: 1.0
|
|
|
|
#the minimum game build required to run this mod
|
|
minGameVersion: 145
|
|
|
|
#this is a java mod
|
|
java: true
|