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 };