You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
288 B
16 lines
288 B
2 weeks ago
|
#include <catch2/catch_test_macros.hpp>
|
||
|
#include <fmt/core.h>
|
||
|
#include <string>
|
||
|
#include "sound.hpp"
|
||
|
#include "levelmanager.hpp"
|
||
|
|
||
|
using namespace fmt;
|
||
|
|
||
|
TEST_CASE("test sound manager", "[sound]") {
|
||
|
sound::init();
|
||
|
|
||
|
sound::play("sword_1");
|
||
|
|
||
|
sound::play_at("sword_1", 0.1, 0.1, 0.1);
|
||
|
}
|