Files
dnf-utils/ace_test/aServer/AceReportInterface.h
T
2025-12-31 12:02:58 +08:00

14 lines
200 B
C++

#pragma once
struct GameClient;
namespace Game
{
class GameReportReq;
}
class AceReportInterface
{
public:
static bool onReceiveReportRequest(GameClient* client, Game::GameReportReq* request);
};