All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.harium.etyl.core.context.SceneApplication Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package com.harium.etyl.core.context;

import com.harium.etyl.commons.context.Application;

public abstract class SceneApplication extends Application {

    /**
     * Scene Graph
     */
    protected Scene scene;

    public SceneApplication(int w, int h) {
        super(w, h);
        scene = new Scene();
        components.add(scene);
    }

    public SceneApplication(int x, int y, int w, int h) {
        super(x, y, w, h);
        scene = new Scene();
        components.add(scene);
    }

    public Scene getScene() {
        return scene;
    }

    public void setScene(Scene scene) {
        this.scene = scene;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy