metaforce/Runtime/CBasics.hpp

22 lines
291 B
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CBASICS_HPP__
#define __PSHAG_CBASICS_HPP__
2015-08-17 05:26:58 +00:00
#include <stdint.h>
#include <stdlib.h>
2015-08-19 05:48:57 +00:00
#include "RetroTypes.hpp"
2015-08-17 20:33:58 +00:00
2016-02-13 09:02:47 +00:00
namespace pshag
{
2015-08-17 05:26:58 +00:00
class CBasics
{
public:
static void Init();
static const char* Stringize(const char* fmt, ...);
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CBASICS_HPP__