summaryrefslogtreecommitdiff
path: root/liveengine/src/layers.h
diff options
context:
space:
mode:
Diffstat (limited to 'liveengine/src/layers.h')
-rw-r--r--liveengine/src/layers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/liveengine/src/layers.h b/liveengine/src/layers.h
index 2ebbd53..ae17989 100644
--- a/liveengine/src/layers.h
+++ b/liveengine/src/layers.h
@@ -12,10 +12,10 @@ class layer
virtual void load(string _f){};
virtual void draw(float a){};
virtual void draw(float a,unsigned char* controllers){ draw(a);};
- virtual bool getLoaded();
- protected:
- private:
+ bool getLoaded() {return isLoaded;};
+ protected:
bool isLoaded;
+ private:
};
class svglayer: public layer