1
0

SectionManager.h 221 B

123456789101112131415
  1. #pragma once
  2. #ifndef SECTIONMANAGER_H
  3. #define SECTIONMANAGER_H
  4. #include "QueueManager.h"
  5. class SectionManager
  6. {
  7. public:
  8. SectionManager(void);
  9. int getNextLevel(double chunkWidth);
  10. };
  11. #endif // SECTIONMANAGER_H