summaryrefslogtreecommitdiff
path: root/hammer/mappoint.h
blob: 3c3bf1556155ec591df21c88d5ff47feb7322ab0 (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $Workfile:     $
// $Date:         $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//

#ifndef MAPPOINT_H
#define MAPPOINT_H
#pragma once


#include "MapAtom.h"


class CMapPoint : public CMapAtom
{
	typedef CMapAtom BaseClass;

	public:

		CMapPoint(void);

		virtual void GetOrigin(Vector& pfOrigin);
		virtual void SetOrigin(Vector& pfOrigin);
		
	protected:

		void DoTransform(const VMatrix &matrix);
		
		Vector m_Origin;
};


#endif // MAPPOINT_H