
com.gempukku.libgdx.graph.shader.property.PropertyContainerImpl 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.shader.property;
import com.badlogic.gdx.utils.ObjectMap;
import com.gempukku.libgdx.graph.pipeline.producer.rendering.producer.PropertyContainer;
public class PropertyContainerImpl implements PropertyContainer {
private ObjectMap properties = new ObjectMap<>();
public void setValue(String name, Object value) {
properties.put(name, value);
}
public void remove(String name) {
properties.remove(name);
}
@Override
public Object getValue(String name) {
return properties.get(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy