mirror of
https://github.com/zeldaret/ss
synced 2026-05-26 23:47:22 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
19 lines
343 B
C++
19 lines
343 B
C++
#ifndef NW4R_SND_SOUND_MEMORY_ALLOCATABLE_H
|
|
#define NW4R_SND_SOUND_MEMORY_ALLOCATABLE_H
|
|
#include "nw4r/types_nw4r.h"
|
|
|
|
namespace nw4r {
|
|
namespace snd {
|
|
|
|
class SoundMemoryAllocatable {
|
|
public:
|
|
virtual ~SoundMemoryAllocatable() {} // at 0x8
|
|
|
|
virtual void *Alloc(u32 size) = 0; // at 0xC
|
|
};
|
|
|
|
} // namespace snd
|
|
} // namespace nw4r
|
|
|
|
#endif
|