mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
20 lines
416 B
C
20 lines
416 B
C
|
#ifndef __IACTIVITYLOG__H__
|
||
|
#define __IACTIVITYLOG__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
#include "dCommonVars.h"
|
||
|
|
||
|
enum class eActivityType : uint32_t {
|
||
|
PlayerLoggedIn,
|
||
|
PlayerLoggedOut,
|
||
|
};
|
||
|
|
||
|
class IActivityLog {
|
||
|
public:
|
||
|
// Update the activity log for the given account.
|
||
|
virtual void UpdateActivityLog(const uint32_t characterId, const eActivityType activityType, const LWOMAPID mapId) = 0;
|
||
|
};
|
||
|
|
||
|
#endif //!__IACTIVITYLOG__H__
|