ServerCore/Object.h
2019-02-07 13:28:21 -08:00

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