SpaceCadetPinball/SpaceCadetPinball/TTableLayer.h

12 lines
186 B
C
Raw Normal View History

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