package kvaddakopter.gui.controllers;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
public class MainController implements Initializable {
/**
* View responsible for Planning Tab.
*/
@FXML
private Parent tabPlanera;
/**
* Controller responsible for Running Tab.
*/
@FXML
private TabPlaneraController tabPlaneraController;
/**
* View responsible for Running Tab.
*/
@FXML
private Parent tabUtfor;
/**
* Controller responsible for Running Tab.
*/
@FXML
private TabUtforController tabUtforController;
/**
* Runs When GUI is initialized.
*/
@Override
public void initialize(URL location, ResourceBundle resources) {
// INIT THE PROGRAM
// CONSTRUCT THE CORE OBJECT
}
}