ServerCore/Object.h

19 lines
178 B
C
Raw Normal View History

2019-02-07 13:28:21 -08:00
#ifndef __Object_h__
#define __Object_h__
#include "includes"
namespace core {
2021-09-23 16:28:32 -07:00
2019-02-07 13:28:21 -08:00
class Object {
2021-09-23 16:28:32 -07:00
2019-02-07 13:28:21 -08:00
public:
2021-09-23 16:28:32 -07:00
2019-02-07 13:28:21 -08:00
std::string name;
std::string tag;
2021-09-23 16:28:32 -07:00
2019-02-07 13:28:21 -08:00
};
}
#endif