mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 15:20:17 +01:00
19 lines
419 B
C++
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]{};
|
|
};
|