YellowArenaBlockModel()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
package de.pewpewproject.lasertag.block.models.concrete.arena_block;
2
3
import de.pewpewproject.lasertag.block.models.EmissiveBlockModel;
4
import net.fabricmc.api.EnvType;
5
import net.fabricmc.api.Environment;
6
7
@Environment(EnvType.CLIENT)
8
public class YellowArenaBlockModel extends EmissiveBlockModel {
9
10
    public YellowArenaBlockModel() {
11
        super("block/arena_block_dark", "block/yellow_arena_block_glow");
12
    }
13
}
14