Advertisement
575

4 - target

575
Apr 22nd, 2023 (edited)
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #pragma once
  2. #ifndef TARGET_H
  3. #define TARGET_H
  4.  
  5. #include "file_structs.h"
  6. #include "data_making.h"
  7. #include "functions.h"
  8. #include "missile.h"
  9.  
  10.  
  11. struct target_data {
  12.     coordinates coord_n_obj;
  13.     coordinates basis_x, basis_y, basis_z;
  14.  
  15.     double v_obj;
  16.     double path_obj;
  17.     double pitch_obj;
  18.  
  19.     target_data(double v_obj = 0.0, double path_obj = 0.0, double pitch_obj = 0.0)
  20.         : v_obj(v_obj), path_obj(path_obj), pitch_obj(pitch_obj)
  21.     {}
  22. };
  23.  
  24. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement