blob: 81e976b87ff03b32c9bcceec53c846cf2c1bdb0b (
plain)
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
|
package kr.syeyoung.dungeonsguide;
import net.minecraft.init.Blocks;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
@Mod(modid = DungeonsGuide.MODID, version = DungeonsGuide.VERSION)
public class DungeonsGuide
{
public static final String MODID = "skyblock_dungeons_guide";
public static final String VERSION = "0.1";
private SkyblockStatus skyblockStatus;
private static DungeonsGuide dungeonsGuide;
@EventHandler
public void init(FMLInitializationEvent event)
{
dungeonsGuide = this;
skyblockStatus = new SkyblockStatus();
MinecraftForge.EVENT_BUS.register(new EventListener());
}
public SkyblockStatus getSkyblockStatus() {
return skyblockStatus;
}
public static DungeonsGuide getDungeonsGuide() {
return dungeonsGuide;
}
}
|