DarkflameServer/dScripts/MinigameTreasureChestServer.h

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

12 lines
331 B
C
Raw Normal View History

#pragma once
#include "ActivityManager.h"
class MinigameTreasureChestServer : public ActivityManager {
2021-12-24 01:14:15 +00:00
public:
void OnStartup(Entity* self) override;
void OnUse(Entity* self, Entity* user) override;
uint32_t CalculateActivityRating(Entity* self, LWOOBJID playerID) override;
2021-12-24 01:14:15 +00:00
private:
const uint32_t frakjawChestId = 16486;
};