R-TYPE
Ecs
Component
include
Sound.hpp
Go to the documentation of this file.
1
#ifndef _SOUND
2
#define _SOUND
3
4
#include "
IComp.hpp
"
5
6
namespace
ECS
{
7
8
class
Sound
:
public
IComp
{
9
public
:
10
explicit
Sound
() noexcept = default;
11
Sound
(const
Sound
& bonus) noexcept = default;
12
explicit
Sound
(
Sound
&&) noexcept = delete;
13
~
Sound
() noexcept override = default;
14
15
Sound
& operator=(const
Sound
&) const noexcept = delete;
16
Sound
& operator=(
Sound
&&) const noexcept = delete;
17
};
18
19
};
20
21
#endif
IComp.hpp
ECS::IComp
Definition:
IComp.hpp:7
ECS::Sound
Definition:
Sound.hpp:8
ECS::Sound::Sound
Sound() noexcept=default
ECS
Definition:
ComponentManager.hpp:14
Generated by
1.9.1