mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 01:05:13 +00:00
32 lines
No EOL
639 B
C++
32 lines
No EOL
639 B
C++
/**
|
|
* @file AdvancedWaveSoundRuntime.h
|
|
* @brief Runtime wave sound api.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace atk
|
|
{
|
|
namespace detail
|
|
{
|
|
class AdvancedWaveSoundRuntime
|
|
{
|
|
public:
|
|
AdvancedWaveSoundRuntime();
|
|
~AdvancedWaveSoundRuntime();
|
|
|
|
void Initialize(s32, void **, void const *);
|
|
void Finalize();
|
|
s32 GetActiveCount() const;
|
|
void SetupUserParam(void **, u64);
|
|
void Update();
|
|
|
|
u8 _0[0x30];
|
|
};
|
|
};
|
|
};
|
|
}; |