mirror of
https://github.com/rehlds/rechecker.git
synced 2024-12-28 21:25:29 +03:00
26 lines
562 B
C
26 lines
562 B
C
|
//========= Copyright 1996-2001, Valve LLC, All rights reserved. ============
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================
|
||
|
|
||
|
#ifndef IDEDICATEDEXPORTS_H
|
||
|
#define IDEDICATEDEXPORTS_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "interface.h"
|
||
|
|
||
|
class IDedicatedExports : IBaseInterface
|
||
|
{
|
||
|
public:
|
||
|
virtual ~IDedicatedExports() { };
|
||
|
virtual void Sys_Printf(char *text) = 0;
|
||
|
};
|
||
|
|
||
|
#define VENGINE_DEDICATEDEXPORTS_API_VERSION "VENGINE_DEDICATEDEXPORTS_API_VERSION001"
|
||
|
|
||
|
#endif // IDEDICATEDEXPORTS_H
|