Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
etorth committed Apr 11, 2022
1 parent 7f84a6e commit f1b17ff
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions client/src/sdldevice.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit f1b17ff

Please sign in to comment.