summaryrefslogtreecommitdiff
path: root/inc/resource.hpp
blob: 986a03d2ea22884b815bb7e705a83f193c4b6ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef resource_h
#define resource_h

#include "entity.hpp"

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

#endif