1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-18 04:43:19 +02:00
SpaceCadetPinball/SpaceCadetPinball/TLightBargraph.h

20 lines
419 B
C++

#pragma once
#include "TLightGroup.h"
class TLightBargraph :
public TLightGroup
{
public:
TLightBargraph(TPinballTable* table, int groupIndex);
~TLightBargraph() override;
int Message(MessageCode code, float value) override;
void Reset() override;
static void BargraphTimerExpired(int timerId, void* caller);
float* TimerTimeArray;
int TimerBargraph{};
int TimeIndex{};
int PlayerTimerIndexBackup[4]{};
};