DarkflameServer/dGame/dComponents/AchievementVendorComponent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
436 B
C
Raw Normal View History

2023-06-23 15:56:05 +00:00
#ifndef __ACHIEVEMENTVENDORCOMPONENT__H__
#define __ACHIEVEMENTVENDORCOMPONENT__H__
#include "VendorComponent.h"
#include "eReplicaComponentType.h"
class Entity;
2023-06-26 08:23:22 +00:00
class AchievementVendorComponent final : public VendorComponent {
2023-06-23 15:56:05 +00:00
public:
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::ACHIEVEMENT_VENDOR;
AchievementVendorComponent(Entity* parent);
};
#endif //!__ACHIEVEMENTVENDORCOMPONENT__H__