2014-10-31 22:20:21 -07:00
|
|
|
#pragma once
|
2014-10-26 18:47:14 -07:00
|
|
|
|
2014-12-10 22:24:26 -08:00
|
|
|
#include <string>
|
2014-10-26 18:47:14 -07:00
|
|
|
|
2014-12-14 02:37:52 -08:00
|
|
|
#include <3ds.h>
|
|
|
|
|
|
|
|
void InitOutput();
|
|
|
|
|
|
|
|
/// Prints `text` to `screen`.
|
2015-03-10 01:56:54 +01:00
|
|
|
void Print(const std::string& text);
|
2014-12-14 02:37:52 -08:00
|
|
|
|
|
|
|
/// Prints `text` to `screen`, and logs it in the log file.
|
2015-03-10 01:56:54 +01:00
|
|
|
void Log(const std::string& text);
|
2014-12-14 02:37:52 -08:00
|
|
|
|
|
|
|
/// Logs `text` to the log file.
|
|
|
|
void LogToFile(const std::string& text);
|
|
|
|
|
|
|
|
void DeinitOutput();
|