mirror of
https://github.com/zeldaret/ss
synced 2026-05-30 00:46:41 -04:00
24 lines
335 B
C++
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
|
|
|