Birb2D/include/Logger.hpp

18 lines
252 B
C++

#pragma once
#include <vector>
#include <iostream>
#include <string.h>
namespace Birb
{
namespace Debug
{
enum Type
{
log, warning, error
};
void Log(std::string text, Type type = Type::log);
static std::vector<std::string> lines;
}
}