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-01-30 12:19:25 +01:00
|
|
|
objlist_class<TPinballComponent>* List;
|
2021-01-01 14:14:11 +01:00
|
|
|
int Timer;
|
|
|
|
};
|