1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-22 09:38:56 +08:00
hl2sdk/public/idedicatedexports.h
2013-06-26 15:22:04 -07:00

29 lines
639 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef IDEDICATEDEXPORTS_H
#define IDEDICATEDEXPORTS_H
#ifdef _WIN32
#pragma once
#endif
#include "interface.h"
#include "appframework/IAppSystem.h"
abstract_class IDedicatedExports : public IAppSystem
{
public:
virtual void Sys_Printf( char *text ) = 0;
virtual void RunServer() = 0;
};
#define VENGINE_DEDICATEDEXPORTS_API_VERSION "VENGINE_DEDICATEDEXPORTS_API_VERSION003"
#endif // IDEDICATEDEXPORTS_H