diff options
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/graphics.h b/src/graphics.h index efe5d56b5..076633269 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -55,6 +55,11 @@ static const int defaultScreenHeight = 600; class ImageRect final { public: + ImageRect() + { } + + A_DELETE_COPY(ImageRect); + enum ImagePosition { UPPER_LEFT = 0, @@ -88,6 +93,8 @@ class Graphics : public gcn::SDLGraphics */ Graphics(); + A_DELETE_COPY(Graphics); + /** * Destructor. */ |