SpaceCadetPinball/SpaceCadetPinball/TLight.h

12 lines
199 B
C
Raw Normal View History

#pragma once
#include "TPinballComponent.h"
class TLight :
public TPinballComponent
{
public:
2020-11-08 16:37:59 +01:00
TLight(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
{
}
};