Tesseract-Engine/src/Windows/LoggerWindow.h
OusmBlueNinja d81fa19bc4 Remade everything again.
Added 3d OpenGL baced rendere instead of 2D rendering
2024-12-25 15:44:33 -06:00

19 lines
276 B
C++

// src/Windows/LoggerWindow.h
#pragma once
#include <vector>
#include <string>
class LoggerWindow
{
public:
// Add logs from anywhere
void AddLog(const char* fmt, ...);
// Show the ImGui window
void Show();
private:
std::vector<std::string> m_Logs;
};