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