de.pewpewproject.lasertag.lasertaggame.state.management.client.IClientLasertagManagerAccessor   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getClientLasertagManager() 0 1 1
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