Launcher/libLauncher/src/main/java/ru/gravit/launcher/events/ControlEvent.java
Zaxar163 1b516ccf2f Safe classWriter. (#92)
* ClassWriter hierarchy...

* Some improvements of jar building.

* Modules updated.

* Fixed modules... Again.

* Выловил заразу всё таки...

* Update modules to use SafeClassWriter.

* To Strings...

* Organize imports.
2018-12-06 09:29:34 +07:00

25 lines
582 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package ru.gravit.launcher.events;
import java.util.UUID;
import ru.gravit.utils.event.EventInterface;
//Набор стандартных событий
public class ControlEvent implements EventInterface {
private static final UUID uuid = UUID.fromString("f1051a64-0cd0-4ed8-8430-d856a196e91f");
public enum ControlCommand {
STOP, START, PAUSE, CONTINUE, CRASH
}
public ControlEvent(ControlCommand signal) {
this.signal = signal;
}
public ControlCommand signal;
@Override
public UUID getUUID() {
return uuid;
}
}