summaryrefslogtreecommitdiff
path: root/inc/resource.hpp
blob: 89f6c454b01ce819840801e1357968b0b1ff1243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef resource_h
#define resource_h

#include "entity.hpp"
#include "functions.hpp"

class Resource: public Entity
{
  public:
    Resource(Window m, SDL_Rect R);
    int getAmount(){return amount;};
    void grow();
    void eat(int bite);

  private:
    int amount;
    int growAmount;
};

#endif