SafeNameAndChat/hlsdk/common/IGameServerData.h
Artem Golubikhin b7e2e97111 Initial commit
2016-01-25 02:09:11 +00: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"