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