Skip to content

Instantly share code, notes, and snippets.

@dimitriye98
Created June 8, 2015 01:34
Show Gist options
  • Save dimitriye98/6c4b57376e00c951a56e to your computer and use it in GitHub Desktop.
Save dimitriye98/6c4b57376e00c951a56e to your computer and use it in GitHub Desktop.
package com.github.dimitriye98.prettyplants
import net.minecraftforge.fml.common.event.FMLInitializationEvent
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent
import net.minecraftforge.fml.common.Mod.EventHandler
import net.minecraftforge.fml.common.Mod
/**
* @author Dimitriye98
*/
@Mod(
name = "PrettyPlants",
modid = "prettyplants",
version = "1.0.0",
modLanguage = "Scala"
)
object PrettyPlants {
@EventHandler
def preInit(event: FMLPreInitializationEvent) {
}
@EventHandler
def init(event: FMLInitializationEvent) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment