summaryrefslogtreecommitdiffstats
path: root/src/autokid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/autokid.h')
-rw-r--r--src/autokid.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/autokid.h b/src/autokid.h
new file mode 100644
index 0000000..a51effd
--- /dev/null
+++ b/src/autokid.h
@@ -0,0 +1,41 @@
+// autokid.h
+
+#ifndef _AUTOKID_H_
+#define _AUTOKID_H_
+
+
+class CInstanceManager;
+class CD3DEngine;
+class CParticule;
+class CTerrain;
+class CCamera;
+class CObject;
+
+enum ObjectType;
+
+
+
+class CAutoKid : public CAuto
+{
+public:
+ CAutoKid(CInstanceManager* iMan, CObject* object);
+ ~CAutoKid();
+
+ void DeleteObject(BOOL bAll=FALSE);
+
+ void Init();
+ BOOL EventProcess(const Event &event);
+ Error RetError();
+
+protected:
+
+protected:
+ float m_speed;
+ float m_progress;
+ float m_lastParticule;
+ int m_soundChannel;
+ BOOL m_bSilent;
+};
+
+
+#endif //_AUTOKID_H_