mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-16 14:50:19 +01:00
11 lines
199 B
C++
11 lines
199 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
class TSound :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TSound(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
|
|
{
|
|
}
|
|
};
|
|
|