1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-11-17 23:20:19 +01:00
SpaceCadetPinball/SpaceCadetPinball/TLightBargraph.h

19 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]{};
};