mirror of
https://github.com/yawaflua/Informatis.git
synced 2025-12-10 12:09:27 +02:00
new Mod!
This commit is contained in:
28
src/UnitInfo/core/Main.java
Normal file
28
src/UnitInfo/core/Main.java
Normal file
@@ -0,0 +1,28 @@
|
||||
package UnitInfo.core;
|
||||
|
||||
import arc.Events;
|
||||
import mindustry.game.EventType.*;
|
||||
import mindustry.mod.Mod;
|
||||
|
||||
public class Main extends Mod {
|
||||
public Main(){
|
||||
Events.on(ClientLoadEvent.class, e -> {
|
||||
new HudUi().addTable();
|
||||
});
|
||||
|
||||
Events.on(WorldLoadEvent.class, e -> {
|
||||
new HudUi().addTable();
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(){
|
||||
}
|
||||
|
||||
@Override
|
||||
public void loadContent(){
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user