diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2UnitInfo.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/T2DLL/T2UnitInfo.cpp b/src/T2DLL/T2UnitInfo.cpp new file mode 100644 index 0000000..15660b5 --- /dev/null +++ b/src/T2DLL/T2UnitInfo.cpp @@ -0,0 +1,40 @@ +#include "T2UnitInfo.h" + +T2UnitInfo::T2UnitInfo() { +} + +T2UnitInfo::~T2UnitInfo() { +} + +int T2UnitInfo::IsBuildable() { +} + +int T2UnitInfo::IsMoverID(unsigned int) { +} + +int T2UnitInfo::IsRequestID(unsigned int) { +} + +unsigned int T2UnitInfo::GetTenantID() { +} + +unsigned int T2UnitInfo::GetMoverID() { +} + +unsigned int T2UnitInfo::GetRequestID() { +} + +void T2UnitInfo::FillTenantID(unsigned int) { +} + +void T2UnitInfo::FillMoverID(unsigned int) { +} + +void T2UnitInfo::InitMask(CResFile&) { +} + +void T2UnitInfo::Read(T2Archive&, T2TowerDoc*) { +} + +void T2UnitInfo::Write(T2Archive&) { +} |