You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
640 B
C
25 lines
640 B
C
|
4 years ago
|
/******************************************************************************
|
||
|
|
* 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 <string>
|
||
|
|
|
||
|
|
namespace lunarium
|
||
|
|
{
|
||
|
|
Sizei GetScreenResolution();
|
||
|
|
|
||
|
|
//template <typename T>
|
||
|
|
std::string AsString(int value);
|
||
|
|
std::string AsString(bool value);
|
||
|
|
std::string AsString(float value);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif // HELPERS_H_
|