diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-06-28 22:22:32 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-06-28 22:22:32 +0100 |
commit | c0c336500955a23e344651e5412c9d9d441ef4ee (patch) | |
tree | 790769c748db307cf3314f6e896e2f61c68561a2 /src/T2DLL/T2PeopleArray.h | |
parent | 37e364b2c6cc7487a1c888d256a73e5337bb7189 (diff) | |
download | t2win-c0c336500955a23e344651e5412c9d9d441ef4ee.tar.gz t2win-c0c336500955a23e344651e5412c9d9d441ef4ee.zip |
first pass of T2DLL
Diffstat (limited to 'src/T2DLL/T2PeopleArray.h')
-rw-r--r-- | src/T2DLL/T2PeopleArray.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/T2DLL/T2PeopleArray.h b/src/T2DLL/T2PeopleArray.h index 3e1521c..49dd766 100644 --- a/src/T2DLL/T2PeopleArray.h +++ b/src/T2DLL/T2PeopleArray.h @@ -1,13 +1,16 @@ #pragma once #include "common.h" +#include "T2ObjectArray.h" +#include "T2People.h" -class T2PeopleArray { +class AFX_EXT_CLASS T2PeopleArray : public T2ObjectArray { public: - T2PeopleArray(unsigned int); + T2PeopleArray(unsigned int startID = 1); + virtual ~T2PeopleArray() {} + virtual void DispatchIdle(T2TowerDoc*, int); T2People* FindPeople(unsigned int); void ResolveLink(T2PeopleArrayList*); T2People* FindUnusedPeople(); - virtual void DispatchIdle(T2TowerDoc*, int); void DrawSearchedPerson(T2TowerDoc*); void SetWalkPeople(int); void DayChanged(); @@ -17,9 +20,8 @@ public: void Read(T2Archive&, T2TowerDoc*); void Write(T2Archive&); - virtual ~T2PeopleArray() {} - T2People* GetIndexPeople(int) {} - T2PeopleArray(const T2PeopleArray&) {} - T2PeopleArray& operator=(const T2PeopleArray&) {} - void `default constructor closure'() {} + T2People* GetIndexPeople(int i) { return &mPeople[i]; } + +protected: + T2People mPeople[256]; }; |