]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/CapsuleFeedMenu.h
removed useless comments
[l2e.git] / src / menu / CapsuleFeedMenu.h
index 8c75edd11e1d22712190458bc1c316971af90839..2a459e7fc14d867767049ffe67eea3b3680f72f6 100644 (file)
@@ -1,10 +1,19 @@
 #ifndef MENU_CAPSULEFEEDMENU_H_
 #define MENU_CAPSULEFEEDMENU_H_
 
-#include "fwd.h"
+namespace common {
+       class Capsule;
+       class Item;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
+namespace menu {
+       class CapsuleMenu;
+}
+
 #include "../app/State.h"
-#include "../common/fwd.h"
-#include "../geometry/Vector.h"
 #include "../graphics/Menu.h"
 
 namespace menu {
@@ -19,7 +28,7 @@ public:
 
 public:
        virtual void HandleEvents(const app::Input &);
-       virtual void UpdateWorld(float deltaT);
+       virtual void UpdateWorld(Uint32 deltaT);
        virtual void Render(SDL_Surface *);
 
 public:
@@ -34,15 +43,18 @@ private:
 
        virtual void OnResize(int width, int height);
 
+       common::Capsule &GetCapsule();
        const common::Capsule &GetCapsule() const;
 
        void LoadInventory();
+       void FeedSelected();
 
-       void RenderName(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderSprite(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderHunger(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderItems(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderName(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderSprite(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderGrowth(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderHunger(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderMenu(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderItems(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
 private:
        CapsuleMenu *parent;
@@ -57,4 +69,4 @@ private:
 
 }
 
-#endif /* MENU_CAPSULEFEEDMENU_H_ */
+#endif