Moved Nullable to utils package

This commit is contained in:
Anuken
2020-10-02 23:11:26 -04:00
parent ae2a4ea2d6
commit 35af71c613
87 changed files with 66 additions and 115 deletions

View File

@@ -1,6 +1,6 @@
package mindustry.entities.comp;
import arc.util.ArcAnnotate.*;
import arc.util.*;
import mindustry.annotations.Annotations.*;
import mindustry.game.*;
import mindustry.gen.*;
@@ -17,7 +17,8 @@ abstract class TeamComp implements Posc{
return team.rules().cheat;
}
public @Nullable Building core(){
public @Nullable
Building core(){
return team.core();
}