00001 /* -*- mode: c++ -*- */ 00010 #ifndef _BOARD_POINT_H_ 00011 #define _BOARD_POINT_H_ 00012 00013 namespace BoardLib { 00014 00019 struct Point { 00020 float x; 00021 float y; 00028 Point( float x, float y):x(x),y(y) { } 00029 }; 00030 00031 } // mamespace BoardLib 00032 00033 #endif // _POINT_H_ 00034