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

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