mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2025-02-18 07:40:07 +00:00
12 lines
199 B
C++
12 lines
199 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
class TTimer :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TTimer(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
|
|
{
|
|
}
|
|
};
|
|
|