mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 03:55:21 +00:00
81c2034a16
Fixed minor bug in TLightGroup. Cleaned up some warnings.
17 lines
353 B
C++
17 lines
353 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);
|
|
|
|
std::vector<TPinballComponent*> List;
|
|
int Timer;
|
|
};
|