mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
17 lines
436 B
C++
17 lines
436 B
C++
#ifndef __ACHIEVEMENTVENDORCOMPONENT__H__
|
|
#define __ACHIEVEMENTVENDORCOMPONENT__H__
|
|
|
|
#include "VendorComponent.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
class Entity;
|
|
|
|
class AchievementVendorComponent final : public VendorComponent {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::ACHIEVEMENT_VENDOR;
|
|
AchievementVendorComponent(Entity* parent);
|
|
};
|
|
|
|
|
|
#endif //!__ACHIEVEMENTVENDORCOMPONENT__H__
|