Files
ss/include/nw4r/snd/snd_SoundMemoryAllocatable.h
T
elijah-thomas774 fa9a9ce949 lyt_common match
2024-05-12 20:23:22 -04:00

15 lines
318 B
C++

#ifndef NW4R_SOUND_MEMORY_ALLOCATABLE_H
#define NW4R_SOUND_MEMORY_ALLOCATABLE_H
#include "common.h"
namespace nw4r {
namespace snd {
struct SoundMemoryAllocatable {
virtual ~SoundMemoryAllocatable() {} // at 0x8
virtual void *Alloc(u32) = 0; // at 0xc
};
} // namespace snd
} // namespace nw4r
#endif