mirror of
https://github.com/zeldaret/ss
synced 2026-06-14 14:18:00 -04:00
24 lines
331 B
C++
24 lines
331 B
C++
#pragma once
|
|
|
|
#include "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
|
|
|