blocks.h 284 B

1234567891011121314151617
  1. #pragma once
  2. #include <stdint.h>
  3. #include "types.h"
  4. #define HOUSE_LINE_CO 11
  5. #define CRANE_LINE_CO 1
  6. #define GROUND_LINE_CO 2
  7. typedef struct {
  8. uint8_t count;
  9. // We have to free this later!
  10. Line* lines;
  11. } Block;
  12. Block get_house();
  13. Block get_crane();
  14. Block get_ground();