mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-06 03:35:04 +00:00
28 lines
No EOL
587 B
C++
28 lines
No EOL
587 B
C++
/**
|
|
* @file SoundDataManager.h
|
|
* @brief Sound data management implementation.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace atk
|
|
{
|
|
class SoundDataManager
|
|
{
|
|
public:
|
|
SoundDataManager();
|
|
virtual ~SoundDataManager();
|
|
|
|
virtual void InvalidateData(void const *, void const *);
|
|
virtual void SetFileAddressToTable(u32, void const *);
|
|
virtual u64 GetFileAddressFromTable(u32) const;
|
|
virtual u32 GetFileAddressImpl(u32) const;
|
|
|
|
u8 _0[0x240];
|
|
};
|
|
};
|
|
}; |