R-TYPE
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
Definition: IComp.hpp:7
Definition: Sound.hpp:8
Sound() noexcept=default
Definition: ComponentManager.hpp:14