#ifndef __IPLAYERCHEATDETECTIONS__H__ #define __IPLAYERCHEATDETECTIONS__H__ #include #include class IPlayerCheatDetections { public: struct Info { std::optional userId = std::nullopt; std::string username; std::string systemAddress; std::string extraMessage; }; // Insert a new cheat detection. virtual void InsertCheatDetection(const IPlayerCheatDetections::Info& info) = 0; }; #endif //!__IPLAYERCHEATDETECTIONS__H__