mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2025-09-08 09:10:14 +02:00
12 lines
227 B
C++
12 lines
227 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
|
|
class TSound :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TSound(TPinballTable* table, int groupIndex);
|
|
float Play(TPinballComponent *soundSource, const char* info);
|
|
|
|
int SoundIndex;
|
|
};
|