mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-06 11:45:04 +00:00
26 lines
404 B
C
26 lines
404 B
C
|
/**
|
||
|
* @file StreamSoundRuntime.h
|
||
|
* @brief Stream sound runtime information.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace atk
|
||
|
{
|
||
|
namespace detail
|
||
|
{
|
||
|
class StreamSoundRuntime
|
||
|
{
|
||
|
public:
|
||
|
StreamSoundRuntime();
|
||
|
~StreamSoundRuntime();
|
||
|
|
||
|
u8 _0[0xB0];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|