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/T2TemplatePluginList.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to 'src/T2DLL/T2TemplatePluginList.cpp')
-rw-r--r-- | src/T2DLL/T2TemplatePluginList.cpp | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/T2DLL/T2TemplatePluginList.cpp b/src/T2DLL/T2TemplatePluginList.cpp new file mode 100644 index 0000000..c3063a2 --- /dev/null +++ b/src/T2DLL/T2TemplatePluginList.cpp @@ -0,0 +1,46 @@ +#include "T2TemplatePluginList.h" + +T2TemplatePluginList::T2TemplatePluginList(unsigned long) { +} + +/*virtual*/ T2TemplatePluginList::~T2TemplatePluginList() { +} + +void T2TemplatePluginList::AllClear() { +} + +void T2TemplatePluginList::Regist(T2TemplatePlugin*) { +} + +void T2TemplatePluginList::Add(T2TemplatePlugin*) { +} + +unsigned int T2TemplatePluginList::GetItemCount() { +} + +T2TemplatePlugin* T2TemplatePluginList::GetItemAt(int) { +} + +T2TenantDef* T2TemplatePluginList::FindFloor() { +} + +T2TenantDef* T2TemplatePluginList::FindTenantDef(int) { +} + +T2MoverDef* T2TemplatePluginList::FindMoverDef(int) { +} + +T2OuterObjDef* T2TemplatePluginList::FindOutObjDef(int) { +} + +T2PeopleDef* T2TemplatePluginList::FindPeopleDef(int) { +} + +T2SilhouetteDef* T2TemplatePluginList::FindSilhouette(int) { +} + +int T2TemplatePluginList::CalcCategoryCount() { +} + +void T2TemplatePluginList::DispatchIdle(T2TowerDoc*) { +} |