From 18e8173233d7678cead6c3c73f5b9965b5c77fa9 Mon Sep 17 00:00:00 2001 From: Ivan Hernandez Date: Sun, 7 Aug 2011 23:57:38 -0500 Subject: [PATCH] Fixed error --- Level.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Level.h b/Level.h index c13ddc1..9533397 100644 --- a/Level.h +++ b/Level.h @@ -44,7 +44,7 @@ public: Sprite* getSprite(string name);/**< gets the first sprite with the given name \param name Name of the sprite \return Pointer to the requested Sprite */ void removeSprite(Sprite* sp);/**< remove the Sprite sp from the list of sprites \param ps Sprite to remove */ void addAnimation(Animation anim);/**< add a Actor to the list of sprites \param anim The actor to add */ - Animation* Level::getAnimation(string name);/**< get a Actor* to the list of sprites \param name Name of the actor \return Pointer to the actor we requested or null */ + Animation* getAnimation(string name);/**< get a Actor* to the list of sprites \param name Name of the actor \return Pointer to the actor we requested or null */ void removeAnimation(Animation anim);/**< remove an Actor to the list of sprites \param anim The actor to add */ void addActor(string name, Actor actor);/**< add a Actor to the list of sprites \param name Name of the actor \param actor The actor to add */ void removeActor(string name);/**< remove the Actor sp from the list of sprites \param name Name of the actor to remove */ -- 2.11.0