You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
11 lines
219 B
C
11 lines
219 B
C
|
|
#pragma once
|
||
|
|
#include "IOutputStream.h"
|
||
|
|
|
||
|
|
class PicoAgbAdapterOutputStream : public IOutputStream
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
PicoAgbAdapterOutputStream() { }
|
||
|
|
|
||
|
|
void Write(const char* str) override;
|
||
|
|
void Flush() override { }
|
||
|
|
};
|