Files
letnik3koncni-prap/include/game/agame/background.hpp
2026-03-16 14:56:32 +01:00

13 lines
251 B
C++

#pragma once
#include <object/entity.hpp>
#include <renderer/texture.hpp>
#include <renderer/font.hpp>
#include <object/sound.hpp>
namespace Game::AGame {
GAME_ENTITY(Background)
private:
Object::Sound mSound;
END_GAME_ENTITY()
}