blob: a169f00c2ac490b405889a475f4c8cd177f628a7 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Namespace for functions having to do with WC Edit mode
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#ifndef WCEDIT_H
#define WCEDIT_H
#pragma once
class CBaseEntity;
//=============================================================================
// >> NWCEdit
//=============================================================================
namespace NWCEdit
{
Vector AirNodePlacementPosition( void );
bool IsWCVersionValid(void);
void CreateAINode( CBasePlayer *pPlayer );
void DestroyAINode( CBasePlayer *pPlayer );
void CreateAILink( CBasePlayer *pPlayer );
void DestroyAILink( CBasePlayer *pPlayer );
void UndoDestroyAINode(void);
void RememberEntityPosition( CBaseEntity *pEntity );
void UpdateEntityPosition( CBaseEntity *pEntity );
};
#endif // WCEDIT_H
|