mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-12-20 21:02:21 -05:00
11 lines
201 B
C++
11 lines
201 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class THole :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
THole(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
};
|