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/T2FInfoAreaIterator.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to 'src/T2DLL/T2FInfoAreaIterator.cpp')
-rw-r--r-- | src/T2DLL/T2FInfoAreaIterator.cpp | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/T2DLL/T2FInfoAreaIterator.cpp b/src/T2DLL/T2FInfoAreaIterator.cpp new file mode 100644 index 0000000..c7452ab --- /dev/null +++ b/src/T2DLL/T2FInfoAreaIterator.cpp @@ -0,0 +1,64 @@ +#include "T2FInfoAreaIterator.h" + +T2FInfoAreaIterator::T2FInfoAreaIterator(const T2FloorInfo&, const RECT&) { +} + +/*virtual*/ T2FInfoAreaIterator::~T2FInfoAreaIterator() { +} + +void T2FInfoAreaIterator::Reset() { +} + +int T2FInfoAreaIterator::CalcNextUnitInfo() { +} + +int T2FInfoAreaIterator::CurrentV(int&) const { +} + +int T2FInfoAreaIterator::Current(T2UnitInfo*&) { +} + +int T2FInfoAreaIterator::Next(T2UnitInfo*&) { +} + +int T2FInfoAreaIterator::NextTenant(T2Tenant*&) { +} + +void T2FInfoAreaIterator::GetTenantRect(RECT&) { +} + +int T2FInfoAreaIterator::NextRequest(T2Request*&) { +} + +int T2FInfoAreaIterator::NextMover(T2Mover*&) { +} + +T2FInfoPtIterator::T2FInfoPtIterator(const T2FloorInfo&, POINT) { +} + +/*virtual*/ T2FInfoPtIterator::~T2FInfoPtIterator() { +} + +int T2FInfoPtIterator::CurrentH(int&) const { +} + +int T2FInfoPtIterator::CalcRightUnitInfo() { +} + +int T2FInfoPtIterator::CalcLeftUnitInfo() { +} + +int T2FInfoPtIterator::Current(T2UnitInfo*&) { +} + +int T2FInfoPtIterator::Right(T2UnitInfo*&) { +} + +int T2FInfoPtIterator::Left(T2UnitInfo*&) { +} + +int T2FInfoPtIterator::RightTenant(T2Tenant*&) { +} + +int T2FInfoPtIterator::LeftTenant(T2Tenant*&) { +} |