14 lines
381 B
Java
14 lines
381 B
Java
package com.r3944realms.leashedplayer.client.renderer;
|
|
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
import net.neoforged.api.distmarker.Dist;
|
|
import net.neoforged.api.distmarker.OnlyIn;
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
public class PlayerSlotItemLayerState {
|
|
public LivingEntity entity;
|
|
public PlayerSlotItemLayerState(LivingEntity entity) {
|
|
this.entity = entity;
|
|
}
|
|
}
|