mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
8b6fb8fb44
will be used to migrate other Player functionality in a future PR. Tested that I can login still.
14 lines
329 B
C++
14 lines
329 B
C++
#ifndef __GHOSTCOMPONENT__H__
|
|
#define __GHOSTCOMPONENT__H__
|
|
|
|
#include "Component.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class GhostComponent : public Component {
|
|
public:
|
|
static inline const eReplicaComponentType ComponentType = eReplicaComponentType::GHOST;
|
|
GhostComponent(Entity* parent);
|
|
};
|
|
|
|
#endif //!__GHOSTCOMPONENT__H__
|