mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2026-09-06 23:28:49 +02:00
Correct inheritance for TPinballComponent, TCollisionComponent.
This commit is contained in:
parent
a1678120f8
commit
62a63bbf2e
33 changed files with 282 additions and 252 deletions
11
SpaceCadetPinball/TWall.h
Normal file
11
SpaceCadetPinball/TWall.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#pragma once
|
||||
#include "TCollisionComponent.h"
|
||||
|
||||
class TWall :
|
||||
public TCollisionComponent
|
||||
{
|
||||
public:
|
||||
TWall(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, true)
|
||||
{
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue