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/T2MoverNumberTable.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to 'src/T2DLL/T2MoverNumberTable.cpp')
-rw-r--r-- | src/T2DLL/T2MoverNumberTable.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/T2DLL/T2MoverNumberTable.cpp b/src/T2DLL/T2MoverNumberTable.cpp new file mode 100644 index 0000000..2034d98 --- /dev/null +++ b/src/T2DLL/T2MoverNumberTable.cpp @@ -0,0 +1,58 @@ +#include "T2MoverNumberTable.h" + +/*virtual*/ void T2MoverModuleTable::OnT2DlgItemLButtonUp(unsigned int, CPoint) { +} + +/*virtual*/ void T2MoverModuleTable::OnT2DlgItemMouseMove(unsigned int, CPoint) { +} + +/*virtual*/ int T2MoverModuleTable::Create(const char*, unsigned long, const RECT&, CWnd*, unsigned int) { +} + +T2MoverModuleTable::T2MoverModuleTable(T2TowerDoc*, T2ImageObj*, CPalette*) { +} + +/*virtual*/ T2MoverModuleTable::~T2MoverModuleTable() { +} + +/*virtual*/ int T2MoverModuleTable::OnT2DlgItemCreate(CREATESTRUCTA*) { +} + +/*virtual*/ void T2MoverModuleTable::SpendTime() { +} + +void T2MoverModuleTable::SetMover(T2Mover*) { +} + +T2ElevatorModule* T2MoverModuleTable::GetModule(int) { +} + +int T2MoverModuleTable::GetCellContent(const TableCellT&) { +} + +int T2MoverModuleTable::GetVScrValue() { +} + +/*virtual*/ void T2MoverModuleTable::DrawCellSelf(CDC*, const TableCellT&, int) { +} + +/*virtual*/ void T2MoverModuleTable::ListenToMessage(unsigned int, void*) { +} + +void T2MoverModuleTable::RefreshMoverCell(int, unsigned int) { +} + +void T2MoverModuleTable::DrawMoverCellByIndex(unsigned int) { +} + +/*virtual*/ void T2MoverModuleTable::ClickCell(const TableCellT&, const POINT&) { +} + +/*virtual*/ int T2MoverModuleTable::OnCommand(unsigned int, long) { +} + +/*virtual*/ int T2MoverModuleTable::OnT2DlgItemEraseBkgnd(CDC*) { +} + +/*virtual*/ void T2MoverModuleTable::OnT2DlgItemLButtonDown(unsigned int, CPoint) { +} |