mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2025-09-06 00:10:15 +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
|
@ -1,11 +1,11 @@
|
|||
#pragma once
|
||||
#include "TPinballComponent.h"
|
||||
#include "TCollisionComponent.h"
|
||||
|
||||
class TKickout :
|
||||
public TPinballComponent
|
||||
public TCollisionComponent
|
||||
{
|
||||
public:
|
||||
TKickout(TPinballTable* table, int groupIndex,int vectorType) : TPinballComponent(table, groupIndex, false)
|
||||
TKickout(TPinballTable* table, int groupIndex, int vectorType) : TCollisionComponent(table, groupIndex, false)
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue