12 lines
206 B
C++
12 lines
206 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TBlocker :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TBlocker(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, true)
|
|
{
|
|
}
|
|
};
|