SpaceCadetPinball/SpaceCadetPinball/TSound.h

12 lines
199 B
C++

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