From f1b17ffa5cc1b9cc0cbc2ddaeb9d9ae473269fc7 Mon Sep 17 00:00:00 2001 From: etorth Date: Sun, 10 Apr 2022 19:44:42 -0700 Subject: [PATCH] f --- client/src/sdldevice.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/src/sdldevice.hpp b/client/src/sdldevice.hpp index 3773cb4e5..4993ce557 100644 --- a/client/src/sdldevice.hpp +++ b/client/src/sdldevice.hpp @@ -119,6 +119,12 @@ class SDLSoundEffectChannel // controller of sound effect and channl playing it private: SDLSoundEffectChannel(SDLDevice *, int); + private: + SDLSoundEffectChannel ( SDLSoundEffectChannel &&) = delete; + SDLSoundEffectChannel (const SDLSoundEffectChannel &) = delete; + SDLSoundEffectChannel & operator = ( SDLSoundEffectChannel &&) = delete; + SDLSoundEffectChannel & operator = (const SDLSoundEffectChannel &) = delete; + public: virtual ~SDLSoundEffectChannel();