From 126b1470842302537b0bc5e4527cf7fd540a9125 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 5 Feb 2013 12:33:10 +0300 Subject: Add checks and const to animatedsprites and related classes. --- src/sprite.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/sprite.h') diff --git a/src/sprite.h b/src/sprite.h index 79cad1125..d8b5d989d 100644 --- a/src/sprite.h +++ b/src/sprite.h @@ -47,7 +47,7 @@ class Sprite * * @returns true if the sprite changed, false otherwise */ - virtual bool play(std::string action) = 0; + virtual bool play(const std::string &action) = 0; /** * Inform the animation of the passed time so that it can output the @@ -55,13 +55,14 @@ class Sprite * * @returns true if the sprite changed, false otherwise */ - virtual bool update(int time) = 0; + virtual bool update(const int time) = 0; /** * Draw the current animation frame at the coordinates given in screen * pixels. */ - virtual bool draw(Graphics* graphics, int posX, int posY) const = 0; + virtual bool draw(Graphics *const graphics, + const int posX, const int posY) const = 0; /** * Gets the width in pixels of the image of the current frame -- cgit v1.2.3-60-g2f50