]> icculus.org git repositories - taylor/freespace2.git/blob - include/helpedline.h
rendering functions mostly done; more complete shader setup
[taylor/freespace2.git] / include / helpedline.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 // HelpEdLine.h: interface for the HelpEdLine class.
10 //
11 //////////////////////////////////////////////////////////////////////
12
13 #if !defined(AFX_HELPEDLINE_H__159085D7_C1B5_11D2_9904_00A0CC39C0BE__INCLUDED_)
14 #define AFX_HELPEDLINE_H__159085D7_C1B5_11D2_9904_00A0CC39C0BE__INCLUDED_
15
16 #if _MSC_VER > 1000
17 #pragma once
18 #endif // _MSC_VER > 1000
19
20 class HelpEdLine : public CObject  
21 {
22 public:
23         void Draw(CDC *pDC);
24         HelpEdLine(CPoint point_from, CPoint point_to);
25         HelpEdLine();
26         virtual ~HelpEdLine();
27
28 private:
29         CPoint line_end;
30         CPoint line_start;
31 };
32
33 #endif // !defined(AFX_HELPEDLINE_H__159085D7_C1B5_11D2_9904_00A0CC39C0BE__INCLUDED_)
34