ServerCore/Object.h
2021-09-23 16:28:32 -07:00

19 lines
178 B
C++

#ifndef __Object_h__
#define __Object_h__
#include "includes"
namespace core {
class Object {
public:
std::string name;
std::string tag;
};
}
#endif