mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 23:20:19 +01: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)
|
|
{
|
|
}
|
|
};
|