blob: edbfc1b769fb58da5152beb32d8b15934f7dea60 (
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
35
36
37
|
package com.anthonyhilyard.iceberg;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber.Bus;
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
@Mod.EventBusSubscriber(modid = Loader.MODID, bus = Bus.FORGE, value = Dist.CLIENT)
public class IcebergClient
{
public IcebergClient()
{
}
public void onClientSetup(FMLClientSetupEvent event)
{
}
// @SubscribeEvent
// public static void onTooltipPre(RenderTooltipEvent.Pre event)
// {
// Loader.LOGGER.info("tooltip pre");
// }
// @SubscribeEvent
// public static void onTooltipColor(RenderTooltipEvent.Color event)
// {
// Loader.LOGGER.info("tooltip color");
// }
// @SubscribeEvent
// public static void onTooltipPost(RenderTooltipExtEvent.Post event)
// {
// Loader.LOGGER.info("tooltip post");
// }
}
|