mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 03:55:21 +00:00
20 lines
411 B
C++
20 lines
411 B
C++
#pragma once
|
|
#include "TLightGroup.h"
|
|
|
|
class TLightBargraph :
|
|
public TLightGroup
|
|
{
|
|
public:
|
|
TLightBargraph(TPinballTable* table, int groupIndex);
|
|
~TLightBargraph() override;
|
|
int Message(int code, float value) override;
|
|
void Reset() override;
|
|
|
|
static void BargraphTimerExpired(int timerId, void* caller);
|
|
|
|
float* TimerTimeArray;
|
|
int TimerBargraph{};
|
|
int TimeIndex{};
|
|
int PlayerTimerIndexBackup[4]{};
|
|
};
|