mirror of
https://github.com/rehlds/rechecker.git
synced 2024-12-26 20:35:28 +03:00
16 lines
345 B
C++
16 lines
345 B
C++
#pragma once
|
|
|
|
#include "maintypes.h"
|
|
#include "interface.h"
|
|
|
|
class IGameServerData : public IBaseInterface {
|
|
public:
|
|
virtual ~IGameServerData() { };
|
|
|
|
virtual void WriteDataRequest(const void *buffer, int bufferSize) = 0;
|
|
|
|
virtual int ReadDataResponse(void *data, int len) = 0;
|
|
};
|
|
|
|
#define GAMESERVERDATA_INTERFACE_VERSION "GameServerData001"
|