Block.h 277 B

12345678910111213141516
  1. #ifndef BLOCK_H
  2. #define BLOCK_H
  3. #include "common/Box.h"
  4. #include "utils/List.h"
  5. #include "utils/Types.h"
  6. namespace Block {
  7. static constexpr int MAX = 256;
  8. typedef uint16 Id;
  9. void init();
  10. void addBoxes(Id block, List<Box>& list, const Vector3& pos);
  11. }
  12. #endif