mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
22 lines
359 B
C++
22 lines
359 B
C++
#ifndef EGG_AUDIO_AUDIOSYSTEM_H
|
|
#define EGG_AUDIO_AUDIOSYSTEM_H
|
|
#include "types_egg.h"
|
|
|
|
namespace EGG
|
|
{
|
|
struct AudioSystem
|
|
{
|
|
AudioSystem();
|
|
~AudioSystem();
|
|
void calc();
|
|
|
|
f32 FLOAT_0x0;
|
|
UNKWORD WORD_0x4;
|
|
UNKWORD WORD_0x8;
|
|
UNKWORD WORD_0xC;
|
|
|
|
static AudioSystem *sInstance;
|
|
};
|
|
}
|
|
|
|
#endif |