Achievement finalizations

This commit is contained in:
Anuken
2022-10-20 13:53:07 -04:00
parent 3ffea4061e
commit b10a146cd9
6 changed files with 47 additions and 27 deletions

View File

@@ -182,6 +182,15 @@ public class EventType{
}
}
/** Called when the client sends a chat message. This only fires clientside! */
public static class ClientChatEvent{
public final String message;
public ClientChatEvent(String message){
this.message = message;
}
}
/** Called when a sector is conquered, e.g. a boss or base is defeated. */
public static class SectorCaptureEvent{
public final Sector sector;