mourne_rcpp_fw/app/village/village.h

16 lines
202 B
C
Raw Normal View History

2021-11-14 11:45:34 +01:00
#ifndef VILLAGE_H
#define VILLAGE_H
#include "core/string.h"
#include "core/resource.h"
class Village : public Resource {
RCPP_OBJECT(Village, Resource);
public:
Village();
~Village();
};
#endif