00001 /* 00002 $Id: point.h,v 1.4 2001/03/04 17:54:47 mbn Exp $ 00003 00004 ------------------------------------------------------------------------ 00005 ClanLib, the platform independent game SDK. 00006 00007 This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE 00008 version 2. See COPYING for details. 00009 00010 For a total list of contributers see CREDITS. 00011 00012 ------------------------------------------------------------------------ 00013 00014 File purpose: 00015 Point class. 00016 00017 */ 00018 00020 00021 #ifndef header_point 00022 #define header_point 00023 00024 class CL_Point 00025 { 00026 public: 00027 CL_Point() : x(0), y(0) { } 00028 CL_Point(int x1, int y1) : x(x1), y(y1) { } 00029 00030 int x, y; 00031 }; 00032 00033 #endif
1.2.6 written by Dimitri van Heesch,
© 1997-2001