mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
090beefd07
winmain uninit. message_handler tweaks.
14 lines
230 B
C++
14 lines
230 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TRamp :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TRamp(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, false)
|
|
{
|
|
}
|
|
|
|
void port_draw() override;
|
|
};
|