mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-14 13:58:04 +01:00
12 lines
179 B
C++
12 lines
179 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
|
|
class TSound :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TSound(TPinballTable* table, int groupIndex);
|
|
float Play();
|
|
|
|
int SoundIndex;
|
|
};
|