Shryne / Ai_System

A program that lets some ai's play some games and shows their performance doing that
MIT License
0 stars 0 forks source link

JavaFX and tornadoFX must be included #4

Closed Shryne closed 5 years ago

Shryne commented 5 years ago

To fullfill #3 JavaFX and tornadoFX must be included.

Shryne commented 5 years ago

All it took was this:

<dependencies>
    <dependency>
        <groupId>no.tornado</groupId>
        <artifactId>tornadofx</artifactId>
        <version>1.7.17</version>
    </dependency>
    <dependency>
        <groupId>org.openjfx</groupId>
        <artifactId>javafx-controls</artifactId>
        <version>12.0.1</version>
    </dependency>
    <dependency>
        <groupId>org.openjfx</groupId>
        <artifactId>javafx-fxml</artifactId>
        <version>13-ea+10</version>
    </dependency>
</dependencies>