summaryrefslogtreecommitdiff
path: root/inc/resource.hpp
blob: 252b08688d7246e673373c5c1dc0f65fea638a55 (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(Rectangle t);
    int getAmount(){return amount;};
    void grow();
    void eat(int bite);

  private:
    int amount;
    int growAmount;
};

#endif