diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
commit | 37e364b2c6cc7487a1c888d256a73e5337bb7189 (patch) | |
tree | eaf6e857382eef16c2dd940eb4125536fbe068bd /src/T2DLL/T2Pool.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2Pool.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/T2DLL/T2Pool.cpp b/src/T2DLL/T2Pool.cpp new file mode 100644 index 0000000..1b1d709 --- /dev/null +++ b/src/T2DLL/T2Pool.cpp @@ -0,0 +1,58 @@ +#include "T2Pool.h" + +T2Pool::T2Pool(T2PoolDef*, T2SeasonParamDef*, T2TemplatePluginList*, T2PeopleArrayList*, int, unsigned int, unsigned int, T2WorldDef*) { +} + +T2Pool::T2Pool(T2Archive&, T2PoolDef*, T2SeasonParamDef*, T2TemplatePluginList*, T2PeopleArrayList*, T2WorldDef*) { +} + +/*virtual*/ T2Pool::~T2Pool() { +} + +void T2Pool::GameLevelChanged(int) { +} + +void T2Pool::IncHour(T2DateTime*) { +} + +void T2Pool::DayChanged() { +} + +int T2Pool::IsChangePopulation() { +} + +int T2Pool::Find(T2TenantMemberDef*, int, unsigned int, int) const { +} + +int T2Pool::Find(T2TenantMemberTableDef*, int, unsigned int, int) const { +} + +T2People* T2Pool::Call(T2TenantMemberDef*, int, unsigned int, unsigned int) { +} + +void T2Pool::Enter(T2People*) { +} + +void T2Pool::Leave(T2People*) { +} + +T2People* T2Pool::RecoverPeople(T2PeopleType*) { +} + +void T2Pool::ShrinkPeople(T2People*, T2PeopleType&) { +} + +void T2Pool::DuplicatePeople(T2PeopleType*) { +} + +void T2Pool::RemovePeople(T2People*) { +} + +T2People* T2Pool::BornVIP(int, int) { +} + +void T2Pool::DeadVIP(T2People*) { +} + +void T2Pool::Write(T2Archive&) { +} |