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