SpaceCadetPinball/SpaceCadetPinball/TLightBargraph.h

12 lines
188 B
C++

#pragma once
#include "TLightGroup.h"
class TLightBargraph :
public TLightGroup
{
public:
TLightBargraph(TPinballTable* table, int groupIndex) : TLightGroup(table, groupIndex)
{
}
};