getClientLasertagManager()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
dl 0
loc 1
rs 10
c 0
b 0
f 0
1
package de.pewpewproject.lasertag.lasertaggame.state.management.client;
2
3
/**
4
 * Accessor interface for the client lasertag manager. Gets injected into the ClientWorld.class.
5
 *
6
 * @author Étienne Muser
7
 */
8
public interface IClientLasertagManagerAccessor {
9
10
    default IClientLasertagManager getClientLasertagManager() { return null; }
11
}
12