cell_ptrHa.h 136 B

12345678910
  1. #ifndef CELL_PTRHA_H
  2. #define CELL_PTRHA_H
  3. struct cell_ptrHa
  4. {
  5. float angle;
  6. int row, col;
  7. struct cell_ptrHa *next;
  8. };
  9. #endif