mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
11 lines
135 B
C++
11 lines
135 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ILogger
|
|
{
|
|
|
|
public:
|
|
virtual void Log(const std::string &txt, bool critical = false) = 0;
|
|
};
|