package coffee.liz.ecs.events; import coffee.liz.ecs.model.Entity; /** Marker interface for events emitted by {@link Entity}. */ public interface EntityEvent { /** * Get the entity that emitted this event. * * @return source {@link Entity} */ Entity getEntity(); }