SpaceCadetPinball/SpaceCadetPinball/TLightBargraph.h

12 lines
216 B
C
Raw Normal View History

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