From 59edd60ebec61bf24dd27063f85bcd049fd0af13 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 19 Jan 2017 16:20:13 -0500 Subject: killed common, more inventory, other random stuff --- include/config.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'include/config.hpp') diff --git a/include/config.hpp b/include/config.hpp index e17df24..13596ff 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -71,4 +71,26 @@ namespace game { } } +/** + * The amount of game ticks that should occur each second. + */ +constexpr unsigned int TICKS_PER_SEC = 20; + +/** + * The amount of milliseconds it takes for a game tick to fire. + */ +constexpr float MSEC_PER_TICK = 1000.0f / TICKS_PER_SEC; + +/** + * Returns a measurement in HLINEs + * + * @param the number of HLINEs, integer or decimal + * @return the number in HLINEs + */ +template +inline T HLINES(const T &n) +{ + return (static_cast(game::HLINE) * n); +} + #endif //CONFIG_H -- cgit v1.2.3