aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/rosegoldaddons/features/DamagePerSecond.java
blob: e0d990f5161d00487eb9e3006ea9ae453b056524 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package rosegoldaddons.features;

import net.minecraft.client.Minecraft;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

public class DamagePerSecond {
    @SubscribeEvent
    public void onEntityJoin(EntityJoinWorldEvent event) {

    }
}