// Copyright (c) Jon Thysell // Licensed under the MIT License. #ifndef LEVELS_H #define LEVELS_H #include "stdint.h" #include "stdbool.h" extern const int8_t LevelCount; int8_t Levels_BoundLevel(const int8_t level); uint32_t Levels_GetLightsForLevel(const int8_t level, const bool setB); uint16_t Levels_GetParForLevel(const int8_t level); #endif