Fixed compilation errors / Re-added basic trace dialog

This commit is contained in:
Anuken
2019-05-10 16:02:05 -04:00
parent 0ff56e3a68
commit 68faae69c5
7 changed files with 52 additions and 33 deletions

View File

@@ -285,4 +285,16 @@ public class Administration{
}
}
public static class TraceInfo{
public String ip, uuid;
public boolean modded, mobile;
public TraceInfo(String ip, String uuid, boolean modded, boolean mobile){
this.ip = ip;
this.uuid = uuid;
this.modded = modded;
this.mobile = mobile;
}
}
}