BsVector2.cpp 441 B

1234567891011
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "BsVector2.h"
  4. namespace bs
  5. {
  6. const Vector2 Vector2::ZERO(0, 0);
  7. const Vector2 Vector2::ONE(1, 1);
  8. const Vector2 Vector2::UNIT_X(1, 0);
  9. const Vector2 Vector2::UNIT_Y(0, 1);
  10. }