Advertisement
YTG123

fabric.mod.toml

Nov 15th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. schemaVersion = 1
  2. id = "modid"
  3. version = "${version}"
  4.  
  5. name = "Example Mod"
  6. description = "This is an example description! Tell everyone what your mod is about!"
  7. authors = ["Me!"]
  8.  
  9. license = "CC0-1.0"
  10. icon = "assets/modid/icon.png"
  11.  
  12. environment = "*"
  13.  
  14. mixins = ["modid.mixins.json"]
  15.  
  16. [contact]
  17. homepage = "https://fabricmc.net/"
  18. sources = "https://github.com/FabricMC/fabric-example-mod"
  19.  
  20. [entrypoints]
  21. main = ["net.fabricmc.example.ExampleMod"]
  22.  
  23. [depends]
  24. fabricloader = ">=0.7.4"
  25. fabric = "*"
  26. minecraft = "1.16.x"
  27.  
  28. [suggests]
  29. another_mod = "*"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement