19 lines
190 B
C++
19 lines
190 B
C++
#ifndef __Object_h__
|
|
#define __Object_h__
|
|
|
|
#include "includes"
|
|
|
|
namespace core {
|
|
|
|
class Object {
|
|
|
|
public:
|
|
|
|
std::string name;
|
|
std::string tag;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif |