mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
15 lines
307 B
C
15 lines
307 B
C
|
#ifndef __ICOMMANDLOG__H__
|
||
|
#define __ICOMMANDLOG__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <string_view>
|
||
|
|
||
|
class ICommandLog {
|
||
|
public:
|
||
|
|
||
|
// Insert a new slash command log entry.
|
||
|
virtual void InsertSlashCommandUsage(const uint32_t characterId, const std::string_view command) = 0;
|
||
|
};
|
||
|
|
||
|
#endif //!__ICOMMANDLOG__H__
|