Drown event

we all need to know when they drown
This commit is contained in:
LeoDog896
2020-09-25 12:01:59 -04:00
parent 85d32cd510
commit c912eb197b
2 changed files with 11 additions and 1 deletions

View File

@@ -270,6 +270,14 @@ public class EventType{
}
}
public static class UnitDrownEvent{
public final Unit unit;
public UnitDrownEvent(Unit unit){
this.unit = unit;
}
}
public static class UnitCreateEvent{
public final Unit unit;