From 37e364b2c6cc7487a1c888d256a73e5337bb7189 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 14 Jun 2023 00:50:34 +0100 Subject: initial commit --- src/T2DLL/T2PeopleArrayList.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/T2DLL/T2PeopleArrayList.h (limited to 'src/T2DLL/T2PeopleArrayList.h') diff --git a/src/T2DLL/T2PeopleArrayList.h b/src/T2DLL/T2PeopleArrayList.h new file mode 100644 index 0000000..60c059c --- /dev/null +++ b/src/T2DLL/T2PeopleArrayList.h @@ -0,0 +1,24 @@ +#pragma once +#include "common.h" + +class T2PeopleArrayList { +public: + T2PeopleArrayList(); + virtual ~T2PeopleArrayList(); + void Add(T2PeopleArray*); + unsigned int GetItemCount(); + T2PeopleArray* GetItemAt(int); + T2People* FindPeople(unsigned int); + T2People* FindUnusedPeople(); + void DispatchIdle(T2TowerDoc*); + void DrawSearchedPerson(T2TowerDoc*); + void SetWalkPeople(int); + void TenantRemoved(unsigned int); + void AddStress(int); + void Read(T2Archive&, T2TowerDoc*); + void Write(T2Archive&); + void BreakoutEmergency(T2TowerDoc*); + + T2PeopleArrayList(const T2PeopleArrayList&) {} + T2PeopleArrayList& operator=(const T2PeopleArrayList&) {} +}; -- cgit v1.2.3