mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-23 14:29:52 +00:00
24 lines
265 B
C++
24 lines
265 B
C++
|
|
#pragma once
|
|
|
|
class CAudioStream // size=1
|
|
{
|
|
private:
|
|
char field_0;
|
|
|
|
public:
|
|
|
|
CAudioStream() {
|
|
field_0 = 0;
|
|
}
|
|
|
|
void Reset();
|
|
void Stop();
|
|
void ConstructInfo();
|
|
void SyncProc();
|
|
void Process();
|
|
void Play();
|
|
void ControlGameRadio();
|
|
void DrawInfo();
|
|
};
|