Files
ss/include/lib/nw4r/snd/snd_SoundSystem.h
T
2023-08-12 10:47:25 -04:00

24 lines
335 B
C++

#pragma once
#include <lib/nw4r/nw4r_types.h>
namespace nw4r
{
namespace snd
{
class SoundSystem {
public:
struct SoundSystemParam {
int soundThreadPriority;
int soundThreadStackSize;
int dvdThreadPriority;
int dvdThreadStackSize;
};
};
} // namespace snd
} // namespace nw4r