ofxVariableLab/src/GPUFontAtlasLayerCombo.cpp

19 lines
453 B
C++
Raw Normal View History

2023-04-12 10:58:53 +02:00
#include "GPUFontAtlasLayerCombo.h"
namespace ofxVariableLab {
void GPUFontAtlasLayerCombo::setup(const ComboIdentifier & identifier){
}
void GPUFontAtlasLayerCombo::update(){
}
void GPUFontAtlasLayerCombo::careForChild(shared_ptr <Layer> layer){
}
const ComboIdentifier & GPUFontAtlasLayerCombo::getIdentifier() const {
return identifier;
}
const vector <shared_ptr <GPUFontLayer> > & GPUFontAtlasLayerCombo::getLayers(){
return layers;
}
}