| Total Complexity | 3 | 
| Total Lines | 14 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | package de.pewpewproject.lasertag.entity.render.armor; | ||
| 13 | public class LasertagVestModel extends AnimatedGeoModel<LasertagVestItem> { | ||
| 14 | @Override | ||
| 15 |     public Identifier getModelResource(LasertagVestItem object) { | ||
| 16 | return new Identifier(LasertagMod.ID, "geo/lasertag_vest.geo.json"); | ||
| 17 | } | ||
| 18 | |||
| 19 | @Override | ||
| 20 |     public Identifier getTextureResource(LasertagVestItem object) { | ||
| 21 | return new Identifier(LasertagMod.ID, "textures/armor/lasertag_vest.png"); | ||
| 22 | } | ||
| 23 | |||
| 24 | @Override | ||
| 25 |     public Identifier getAnimationResource(LasertagVestItem animatable) { | ||
| 26 | return new Identifier(LasertagMod.ID, "animations/idle_animation.json"); | ||
| 27 | } | ||
| 29 |