summaryrefslogtreecommitdiff
path: root/inc/resource.hpp
blob: 968c208c95382f936f890177747c75285db67e22 (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, std::string s);
    Resource(Window m, std::string s, Location z);
    void eat();

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

  private:
    int amount;
};

#endif