summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2MoverArray.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2MoverArray.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/T2DLL/T2MoverArray.h b/src/T2DLL/T2MoverArray.h
new file mode 100644
index 0000000..794f8ee
--- /dev/null
+++ b/src/T2DLL/T2MoverArray.h
@@ -0,0 +1,19 @@
+#pragma once
+#include "common.h"
+
+class T2MoverArray {
+public:
+ T2MoverArray(unsigned int);
+ virtual ~T2MoverArray();
+ T2Mover* FindUnusedMover();
+ void DrawMoverAll(T2TowerDoc*, const RECT&);
+ virtual void DispatchIdle(T2TowerDoc*, int);
+ int CalcMentenanceCost(T2TowerDoc*) const;
+ void Read(T2Archive&, T2TowerDoc*);
+ void Write(T2Archive&);
+
+ T2Mover* GetIndexMover(int) {}
+ T2MoverArray(const T2MoverArray&) {}
+ T2MoverArray& operator=(const T2MoverArray&) {}
+ void `default constructor closure'() {}
+};