12 lines
171 B
C++
Executable file
12 lines
171 B
C++
Executable file
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
struct AudioAsset {
|
|
int16_t* data = nullptr;
|
|
size_t size = 0;
|
|
|
|
int numChannels = 1;
|
|
|
|
unsigned int buffer = 0;
|
|
};
|