SpaceCadetPinballPPC/SpaceCadetPinball/TTimer.h
2020-11-08 18:37:59 +03:00

12 lines
199 B
C++

#pragma once
#include "TPinballComponent.h"
class TTimer :
public TPinballComponent
{
public:
TTimer(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
{
}
};