package envoy.event; /** * @author Leon Hofmeister * @since Envoy Common v0.2-beta */ public final class ProfilePicChange extends Event { private static final long serialVersionUID = 0L; /** * @param value the byte[] of the new image * @since Envoy Common v0.2-beta */ public ProfilePicChange(byte[] value) { super(value); } }