SpaceCadetPinball/SpaceCadetPinball/TLightGroup.h

12 lines
194 B
C
Raw Normal View History

#pragma once
#include "TPinballComponent.h"
class TLightGroup :
public TPinballComponent
{
public:
TLightGroup(TPinballTable* table,int ind) : TPinballComponent(table, -1, false)
{
}
};