2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 08:27:42 +00:00

Work on options portion of CFrontEndUI

This commit is contained in:
Jack Andersen
2017-01-09 21:15:49 -10:00
parent 1ed4949476
commit f16c61cce8
7 changed files with 510 additions and 51 deletions

View File

@@ -15,6 +15,13 @@ class CAudioSys
boo::IAudioVoiceEngine* m_voiceEngine;
amuse::Engine m_engine;
public:
enum class ESurroundModes
{
Mono,
Stereo,
Surround
};
struct C3DEmitterParmData
{
zeus::CVector3f x0_pos;
@@ -54,6 +61,10 @@ public:
{
return g_SharedSys->m_engine;
}
static void SetSurroundMode(ESurroundModes mode)
{
}
};
}