mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
16 lines
202 B
C++
16 lines
202 B
C++
#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 |