mirror of
https://github.com/zeldaret/ss
synced 2026-06-17 23:20:59 -04:00
17 lines
287 B
C++
17 lines
287 B
C++
#ifndef NW4R_SOUND_MEMORY_ALLOCATABLE_H
|
|
#define NW4R_SOUND_MEMORY_ALLOCATABLE_H
|
|
#include "types_nw4r.h"
|
|
|
|
namespace nw4r
|
|
{
|
|
namespace snd
|
|
{
|
|
struct SoundMemoryAllocatable
|
|
{
|
|
virtual ~SoundMemoryAllocatable() {} // at 0x8
|
|
virtual void * Alloc(u32) = 0; // at 0xc
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif |