blob: 817401f7e4c9f5d73f3ff5c465241ab6889c53f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//========= 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
|