mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2026-08-16 06:50:09 +02:00
11 lines
200 B
C
11 lines
200 B
C
|
|
#pragma once
|
||
|
|
#include "TCollisionComponent.h"
|
||
|
|
|
||
|
|
class TWall :
|
||
|
|
public TCollisionComponent
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
TWall(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, true)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
};
|