2
0
mirror of https://github.com/rehlds/revoice.git synced 2025-01-05 19:45:41 +03:00
revoice/dep/rehlsdk/common/IGameServerData.h
2015-12-13 15:02:22 +04:00

16 lines
360 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"