mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 12:10:10 +00:00
20 lines
405 B
C++
20 lines
405 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];
|
|
};
|