mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-08 09:05:54 +01:00
21 lines
309 B
C++
21 lines
309 B
C++
#ifndef LOGGER_BACKEND_H
|
|
#define LOGGER_BACKEND_H
|
|
|
|
#include "core/ustring.h"
|
|
#include "core/variant.h"
|
|
|
|
#include "core/reference.h"
|
|
|
|
class LoggerBackend : public Reference {
|
|
GDCLASS(LoggerBackend, Reference);
|
|
|
|
public:
|
|
LoggerBackend();
|
|
~LoggerBackend();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|