
com.gempukku.libgdx.graph.plugin.ui.UIPluginPrivateData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libgdx-graph Show documentation
Show all versions of libgdx-graph Show documentation
libGDX-graph runtime library for pipeline rendering
The newest version!
package com.gempukku.libgdx.graph.plugin.ui;
import com.badlogic.gdx.scenes.scene2d.Stage;
import com.badlogic.gdx.utils.ObjectMap;
import com.gempukku.libgdx.graph.plugin.RuntimePipelinePlugin;
import com.gempukku.libgdx.graph.time.TimeProvider;
public class UIPluginPrivateData implements UIPluginPublicData, RuntimePipelinePlugin {
private ObjectMap stages = new ObjectMap<>();
@Override
public void setStage(String id, Stage stage) {
stages.put(id, stage);
}
@Override
public Stage getStage(String id) {
return stages.get(id);
}
@Override
public void update(TimeProvider timeProvider) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy