mirror of
https://github.com/alula/SpaceCadetPinball.git
synced 2024-11-23 10:19:50 +01:00
17 lines
355 B
C++
17 lines
355 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
|
|
|
|
class TComponentGroup :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TComponentGroup(TPinballTable* table, int groupIndex);
|
|
~TComponentGroup() override;
|
|
int Message(int code, float value) override;
|
|
static void NotifyTimerExpired(int timerId, void* caller);
|
|
|
|
objlist_class<TPinballComponent>* List;
|
|
int Timer;
|
|
};
|