Vec2.h 253 B

12345678910111213141516171819
  1. #pragma once
  2. namespace TLAC::Utilities
  3. {
  4. struct Vec2
  5. {
  6. float X, Y;
  7. Vec2();
  8. Vec2(float x, float y);
  9. Vec2 operator+(Vec2 value);
  10. void operator+=(const Vec2 &value);
  11. Vec2 operator-(Vec2 value);
  12. void operator-=(const Vec2 &value);
  13. };
  14. }