mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
16 lines
338 B
C
16 lines
338 B
C
|
#ifndef __ITEMCOMPONENT__H__
|
||
|
#define __ITEMCOMPONENT__H__
|
||
|
|
||
|
#include "Component.h"
|
||
|
#include "eReplicaComponentType.h"
|
||
|
|
||
|
class Entity;
|
||
|
|
||
|
class ItemComponent : public Component {
|
||
|
public:
|
||
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::ITEM;
|
||
|
ItemComponent(Entity* parent);
|
||
|
};
|
||
|
|
||
|
#endif //!__ITEMCOMPONENT__H__
|