You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 line
140 B

  1. #ifndef VECTORS_H
  2. #define VECTORS_H
  3. struct Vector2
  4. {
  5. float X;
  6. float Y;
  7. Vector2(float x = 0, float y = 0);
  8. void Normalize();
  9. };
  10. #endif