added audio stuff

This commit is contained in:
2026-01-18 19:42:25 +01:00
parent 5fdcb6989f
commit f9185e7b26
13 changed files with 471 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "miniaudio.h"
namespace TSE
{
class AudioEngine
{
public:
static ma_engine* engine;
static void Init();
static void Destroy();
};
} // namespace TSE