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

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

class Resource: public Entity
{
  public:
    Resource(Window m, std::string s);
    Location getLocation();

  private:
    int amount;
};

#endif