mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
16 lines
208 B
C
16 lines
208 B
C
|
#ifndef BUILDING_H
|
||
|
#define BUILDING_H
|
||
|
|
||
|
#include "core/string.h"
|
||
|
|
||
|
#include "core/resource.h"
|
||
|
|
||
|
class Building : public Resource {
|
||
|
RCPP_OBJECT(Building, Resource);
|
||
|
|
||
|
public:
|
||
|
Building();
|
||
|
~Building();
|
||
|
};
|
||
|
|
||
|
#endif
|