More property work

Add StringProperty
Add possibility for callbacks
Switch RenderablePlanet to use Properties
This commit is contained in:
Alexander Bock
2014-05-03 19:53:12 +02:00
parent 8d2e86447c
commit ac38f73faa
10 changed files with 246 additions and 53 deletions

View File

@@ -44,6 +44,9 @@ public:
operator T();
TemplateProperty<T>& operator=(T val);
void setValue(T val);
T value() const;
protected:
T _value;
};