YAPOG  0.0.1
Yet Another Pokemon Online Game
Vector2.cpp
Go to the documentation of this file.
2 
3 namespace yap
4 {
5  Vector2 Vector2FromVector2u (const sf::Vector2u& vector2u)
6  {
7  return Vector2 (
8  static_cast<float> (vector2u.x),
9  static_cast<float> (vector2u.y));
10  }
11 } // namespace yap