2020-11-01 16:45:29 +01:00
|
|
|
#pragma once
|
|
|
|
#include "TPinballComponent.h"
|
2021-01-01 14:14:11 +01:00
|
|
|
|
|
|
|
|
2020-11-01 16:45:29 +01:00
|
|
|
class TComponentGroup :
|
2021-01-01 14:14:11 +01:00
|
|
|
public TPinballComponent
|
2020-11-01 16:45:29 +01:00
|
|
|
{
|
|
|
|
public:
|
2021-01-01 14:14:11 +01:00
|
|
|
TComponentGroup(TPinballTable* table, int groupIndex);
|
|
|
|
~TComponentGroup() override;
|
|
|
|
int Message(int code, float value) override;
|
|
|
|
static void NotifyTimerExpired(int timerId, void* caller);
|
2020-11-01 16:45:29 +01:00
|
|
|
|
2021-10-01 17:55:44 +02:00
|
|
|
std::vector<TPinballComponent*> List;
|
2021-01-01 14:14:11 +01:00
|
|
|
int Timer;
|
|
|
|
};
|