css_enhanced_waf/public/idedicatedexports.h
FluorescentCIAAfricanAmerican 3bf9df6b27 1
2020-04-22 12:56:21 -04:00

28 lines
611 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