Main Page | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals

/Users/blackie/Documents/myRepository/phobosengine-vc2005/phobosengine/phobosengine/Vector2i.cpp

Go to the documentation of this file.
00001 
00002 
00003 #include "Vector2i.h"
00004 
00005 
00006 namespace pge {
00007 
00008 
00009         Vector2i::Vector2i(void) {
00010                 m_v[0] = 0;
00011                 m_v[1] = 0;
00012         }
00013 
00014 
00015         Vector2i::Vector2i(int x, int y) {
00016                 m_v[0] = x;
00017                 m_v[1] = y;
00018         }
00019 
00020 
00021         Vector2i::~Vector2i(void) {
00022         }
00023 };

Generated on Mon Oct 16 12:08:11 2006 for Phobosengine by doxygen 1.3.4