mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-10 08:29:29 +01:00
11 lines
221 B
C++
11 lines
221 B
C++
#pragma once
|
|
#include "logger/IOutputStream.h"
|
|
|
|
class NitroEmulatorOutputStream : public IOutputStream
|
|
{
|
|
public:
|
|
NitroEmulatorOutputStream();
|
|
|
|
void Write(const char* str) override;
|
|
void Flush() override { }
|
|
}; |