Audio Abstrakcija - WIP

This commit is contained in:
2026-03-13 14:28:08 +01:00
parent 8ae713ba8a
commit 52df67da09
13 changed files with 324 additions and 43 deletions

View File

@@ -3,6 +3,7 @@
#include <object/entity.hpp>
#include <renderer/texture.hpp>
#include <renderer/font.hpp>
#include <object/sound.hpp>
namespace Game::AGame {
class Player : public Object::Entity {
@@ -12,5 +13,8 @@ namespace Game::AGame {
~Player() override = default;
void start() override;
void update(float deltaTime) override;
private:
Object::Sound mSound;
};
}