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

#include "entity.hpp"
#include "location.hpp"

class Resource: public Entity
{
  public:
    Resource(Window m, int size);
    Resource(Window m, int size, Location z);
    void eat();

    Location getLocation(){return L;};
    int getAmount(){return amount;};

  private:
    int amount;
};

#endif