00001 #include "cvideo.h" 00002 00003 /* The statically allocated pointer to the CVideoSystem singleton. */ 00004 CVideoSystem *CSingletonManager<CVideoSystem>::unique_instance = 0; 00005 00006 const CPoint operator+(const CPoint &left, const CPoint &right) { 00007 return CPoint(left.x + right.x, left.y + right.y); 00008 }
1.3.3