mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-26 15:33:34 +00:00
9655f0ee45
fix compile issues
20 lines
401 B
C++
20 lines
401 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
|