Misc minor fixes
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user