| 12345678910111213 |
- //__________________________ Banshee Project - A modern game development toolkit _________________________________//
- //_____________________________________ www.banshee-project.com __________________________________________________//
- //________________________ Copyright (c) 2014 Marko Pintera. All rights reserved. ________________________________//
- #include "BsVector2.h"
- #include "BsMath.h"
- namespace BansheeEngine
- {
- const Vector2 Vector2::ZERO(0, 0);
- const Vector2 Vector2::ONE(1, 1);
- const Vector2 Vector2::UNIT_X(1, 0);
- const Vector2 Vector2::UNIT_Y(0, 1);
- }
|