fix: changed custom content type to HashMap<String, Object>

This commit is contained in:
Yannik Bretschneider 2021-05-01 23:18:53 +02:00
parent 5a667ea860
commit cdf9c342ef
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
package uulm.teamname.marvelous.gamelibrary.events;
import java.util.HashMap;
/** Represents a custom event ({@link EventType#CustomEvent}). */
public class CustomEvent extends Event {
public String teamIdentifier;
public Object customContent;
public HashMap<String, Object> customContent;
}