de.pewpewproject.lasertag.block.models.concrete.arena_divider.YellowArenaDividerBlockModel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A YellowArenaDividerBlockModel() 0 6 1
1
package de.pewpewproject.lasertag.block.models.concrete.arena_divider;
2
3
import de.pewpewproject.lasertag.block.models.EmissiveDividerBlockModel;
4
import net.fabricmc.api.EnvType;
5
import net.fabricmc.api.Environment;
6
7
@Environment(EnvType.CLIENT)
8
public class YellowArenaDividerBlockModel extends EmissiveDividerBlockModel {
9
    public YellowArenaDividerBlockModel() {
10
        super(
11
                "block/arena_block_dark",
12
                "block/yellow_arena_block_glow",
13
                "block/arena_divider_side_dark",
14
                "block/yellow_arena_divider_side_glow"
15
        );
16
    }
17
}
18