1
0
mirror of https://github.com/alula/SpaceCadetPinball.git synced 2024-11-23 18:30:44 +01:00
SpaceCadetPinballEmscripten/SpaceCadetPinball/TComponentGroup.h

17 lines
355 B
C
Raw Normal View History

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