Files
ss/include/nw4r/snd/snd_SoundMemoryAllocatable.h
T
2023-12-24 11:35:03 -05:00

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