/****************************************************************************** * File - helpers.h * Author - Joey Pollack * Date - 2021/08/30 (y/m/d) * Mod Date - 2021/08/30 (y/m/d) * Description - Defines some helper methods for use through out the engine. ******************************************************************************/ #ifndef HELPERS_H_ #define HELPERS_H_ #include "types.h" #include namespace lunarium { Sizei GetScreenResolution(); //template std::string AsString(int value); std::string AsString(bool value); std::string AsString(float value); } #endif // HELPERS_H_