SpaceCadetPinball/SpaceCadetPinball/TTableLayer.h

12 lines
189 B
C++

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