mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-26 15:33:34 +00:00
9655f0ee45
fix compile issues
21 lines
389 B
C++
21 lines
389 B
C++
#ifndef IBUGREPORTS_H
|
|
#define IBUGREPORTS_H
|
|
|
|
#include <cstdint>
|
|
#include <string_view>
|
|
|
|
class IBugReports {
|
|
public:
|
|
struct Info {
|
|
std::string body;
|
|
std::string clientVersion;
|
|
std::string otherPlayer;
|
|
std::string selection;
|
|
uint32_t characterId{};
|
|
};
|
|
|
|
// Add a new bug report to the database.
|
|
virtual void InsertNewBugReport(const Info& info) = 0;
|
|
};
|
|
#endif //!IBUGREPORTS_H
|