BsVector4.cpp 470 B

12345678910
  1. //__________________________ Banshee Project - A modern game development toolkit _________________________________//
  2. //_____________________________________ www.banshee-project.com __________________________________________________//
  3. //________________________ Copyright (c) 2014 Marko Pintera. All rights reserved. ________________________________//
  4. #include "BsVector4.h"
  5. #include "BsMath.h"
  6. namespace BansheeEngine
  7. {
  8. const Vector4 Vector4::ZERO( 0, 0, 0, 0 );
  9. }