MacLO/src/Levels.h

1 line
379 B
C
Raw Normal View History

// Copyright (c) Jon Thysell <http://jonthysell.com> // 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