DarkflameServer/dDatabase/GameDatabase/ITables/ICommandLog.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

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