Skip to content

Commit

Permalink
feat(api): HMobEffect
Browse files Browse the repository at this point in the history
  • Loading branch information
WakelessSloth56 committed Sep 24, 2022
1 parent 915e816 commit 6bdf516
Showing 1 changed file with 12 additions and 0 deletions.
@@ -0,0 +1,12 @@
package org.auioc.mcmod.arnicalib.api.game.effect;

import net.minecraft.world.effect.MobEffect;
import net.minecraft.world.effect.MobEffectCategory;

public class HMobEffect extends MobEffect {

public HMobEffect(MobEffectCategory category, int color) {
super(category, color);
}

}

0 comments on commit 6bdf516

Please sign in to comment.