2021-05-01 20:30:52 +00:00
|
|
|
package uulm.teamname.marvelous.gamelibrary.events;
|
|
|
|
|
|
|
|
import uulm.teamname.marvelous.gamelibrary.entities.Entity;
|
|
|
|
import uulm.teamname.marvelous.gamelibrary.entities.EntityID;
|
|
|
|
|
|
|
|
/** Represents the game state event ({@link EventType#GameStateEvent}). */
|
|
|
|
public class GameStateEvent extends Event {
|
2021-05-01 21:19:36 +00:00
|
|
|
public Entity[] entities;
|
2021-05-01 20:30:52 +00:00
|
|
|
public EntityID[] turnOrder;
|
|
|
|
public EntityID activeCharacter;
|
|
|
|
public boolean winCondition;
|
|
|
|
}
|