This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2020-08-04 13:13:01 -04:00

27 lines
622 B
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef IDEDICATEDEXPORTS_H
#define IDEDICATEDEXPORTS_H
#ifdef _WIN32
#pragma once
#endif
#include "appframework/IAppSystem.h"
#include "interface.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