Forgot a ton of files in the last commit.

This commit is contained in:
Zed A. Shaw 2025-05-05 12:11:51 -04:00
parent f5f5ca6431
commit df024adccd
24 changed files with 560 additions and 0 deletions

14
tests/sound.cpp Normal file
View file

@ -0,0 +1,14 @@
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include <string>
#include "sound.hpp"
using namespace fmt;
TEST_CASE("test sound manager", "[sound]") {
sound::init();
sound::play("blank");
sound::play_at("blank", 0.1, 0.1, 0.1);
}