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

#include "entity.h"

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

#endif