mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-10-08 21:08:11 +02:00
16 lines
361 B
C++
16 lines
361 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
|
|
|
|
class TComponentGroup :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TComponentGroup(TPinballTable* table, int groupIndex);
|
|
~TComponentGroup() override;
|
|
int Message(MessageCode code, float value) override;
|
|
static void NotifyTimerExpired(int timerId, void* caller);
|
|
|
|
std::vector<TPinballComponent*> List;
|
|
int Timer;
|
|
};
|