summaryrefslogtreecommitdiff
path: root/vfg/src/Animal.h
diff options
context:
space:
mode:
Diffstat (limited to 'vfg/src/Animal.h')
-rw-r--r--vfg/src/Animal.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/vfg/src/Animal.h b/vfg/src/Animal.h
new file mode 100644
index 0000000..4155901
--- /dev/null
+++ b/vfg/src/Animal.h
@@ -0,0 +1,19 @@
+#ifndef ANIMAL_H
+#define ANIMAL_H
+
+#include "ofMain.h"
+#include "ofxXmlSettings.h"
+#include "Puppet.h"
+
+
+class Animal: public Puppet
+{
+ public:
+ Animal();
+ virtual ~Animal();
+ void update();
+ protected:
+ private:
+};
+
+#endif // ANIMAL_H