14 lines
200 B
C++
14 lines
200 B
C++
#pragma once
|
|
|
|
struct GameClient;
|
|
namespace Game
|
|
{
|
|
class GameReportReq;
|
|
}
|
|
|
|
class AceReportInterface
|
|
{
|
|
public:
|
|
static bool onReceiveReportRequest(GameClient* client, Game::GameReportReq* request);
|
|
};
|