2
0
mirror of https://github.com/rehlds/revoice.git synced 2025-01-07 12:35:38 +03:00
revoice/dep/rehlsdk/common/IGameServerData.h

16 lines
360 B
C
Raw Normal View History

2015-12-13 13:55:07 +03:00
#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"