open-story-teller/core/interfaces/i_logger.h
anthony@rabine.fr f538148a9a
Some checks failed
build-story-editor / build_linux (push) Has been cancelled
build-story-editor / build_win32 (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Create separated core (WIP) GUI agnostic, new sub pages for functions
2024-08-30 13:25:40 +02:00

12 lines
161 B
C++

#pragma once
#include <string>
class ILogger
{
public:
virtual void Log(const std::string &txt, bool critical = false) = 0;
virtual ~ILogger() {}
};