
@DieGurke,as I don't want to interfere with your branch at all, I only added the absolute minimum that should be mergeable without conflict. I leave the rest of the implementation (usage in ChatScene, ChatControl and referencing in FXML) up to you. There's no way in hell I'll risk your wrath...
25 lines
671 B
Java
25 lines
671 B
Java
/**
|
|
* This module contains all classes defining the client application of the Envoy
|
|
* project.
|
|
*
|
|
* @author Kai S. K. Engelbart
|
|
* @author Leon Hofmeister
|
|
* @author Maximilian Käfer
|
|
* @since Envoy Client v0.1-beta
|
|
*/
|
|
module envoy {
|
|
|
|
requires transitive envoy.common;
|
|
requires transitive java.desktop;
|
|
requires transitive java.logging;
|
|
requires transitive java.prefs;
|
|
requires javafx.controls;
|
|
requires javafx.fxml;
|
|
requires javafx.base;
|
|
requires javafx.graphics;
|
|
|
|
opens envoy.client.ui to javafx.graphics, javafx.fxml;
|
|
opens envoy.client.ui.controller to javafx.graphics, javafx.fxml;
|
|
opens envoy.client.ui.custom to javafx.graphics, javafx.fxml;
|
|
}
|