mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
0545adfac3
Have fun!
9 lines
283 B
C++
9 lines
283 B
C++
#pragma once
|
|
#include "ActivityManager.h"
|
|
|
|
class MinigameTreasureChestServer : public ActivityManager {
|
|
void OnStartup(Entity* self) override;
|
|
void OnUse(Entity* self, Entity* user) override;
|
|
uint32_t CalculateActivityRating(Entity *self, LWOOBJID playerID) override;
|
|
};
|