mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2025-09-01 06:20:15 +02:00
Proj v1, ready.
port_draw in multiple T classes. pb v1. proj v1, ready. WinMain v3.
This commit is contained in:
parent
62a63bbf2e
commit
d83c4e2b26
34 changed files with 519 additions and 77 deletions
|
@ -262,3 +262,12 @@ TPinballComponent* TPinballTable::find_component(int groupIndex)
|
|||
MessageBoxA(nullptr, "Table cant find (lh):", Buffer, 0x2000u);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
void TPinballTable::port_draw()
|
||||
{
|
||||
for (int index = ListP1->Count() - 1; index >= 0; index--)
|
||||
{
|
||||
static_cast<TPinballComponent*>(ListP1->Get(index))->port_draw();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue