Misc minor fixes

This commit is contained in:
Anuken
2022-07-18 22:14:53 -04:00
parent 2c6b2a6fa9
commit a6ae178b46
7 changed files with 35 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
package mindustry.game;
import arc.math.geom.*;
import arc.util.*;
import mindustry.core.GameState.*;
import mindustry.ctype.*;
@@ -267,6 +268,18 @@ public class EventType{
}
}
public static class BuildingCommandEvent{
public final Player player;
public final Building building;
public final Vec2 position;
public BuildingCommandEvent(Player player, Building building, Vec2 position){
this.player = player;
this.building = building;
this.position = position;
}
}
public static class GameOverEvent{
public final Team winner;