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