aboutsummaryrefslogtreecommitdiff
path: root/mp/src/game/server/movehelper_server.h
blob: a203f77a261f1f01510e3981c57721f9d001ab18 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//

#ifndef MOVEHELPER_SERVER_H
#define MOVEHELPER_SERVER_H

#ifdef _WIN32
#pragma once
#endif

#include "imovehelper.h"


//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------

class CBasePlayer;
class CBaseEntity;


//-----------------------------------------------------------------------------
// Implementation of the movehelper on the server
//-----------------------------------------------------------------------------

abstract_class IMoveHelperServer : public IMoveHelper
{
public:
	virtual void SetHost( CBasePlayer *host ) = 0;
};

//-----------------------------------------------------------------------------
// Singleton access
//-----------------------------------------------------------------------------

IMoveHelperServer* MoveHelperServer();


#endif // MOVEHELPER_SERVER_H