sarl-fireworks/src/main/sarl/io/sarl/demos/fireworks/Fireworks.sarl

15 lines
360 B
Plaintext

package io.sarl.demos.fireworks
import io.janusproject.Boot
import io.sarl.demos.fireworks.agents.LaunchingArea
import io.sarl.demos.fireworks.gui.FXMLViewerController
import static io.janusproject.Boot.*
class Firework {
static def main(controller: FXMLViewerController) {
Boot::offline = true
Boot::startJanus(typeof(LaunchingArea), controller)
}
}