CmVector2.cpp 232 B

12345678910
  1. #include "CmVector2.h"
  2. #include "CmMath.h"
  3. namespace BansheeEngine
  4. {
  5. const Vector2 Vector2::ZERO(0, 0);
  6. const Vector2 Vector2::ONE(1, 1);
  7. const Vector2 Vector2::UNIT_X(1, 0);
  8. const Vector2 Vector2::UNIT_Y(0, 1);
  9. }