AuroraRuntime/Include/Aurora/Console/Commands/ITextLineSubscriber.hpp

15 lines
333 B
C++
Raw Normal View History

2021-10-23 20:13:40 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: ITextLineSubscriber.hpp
Date: 2021-10-23
Author: Reece
***/
#pragma once
namespace Aurora::Console::Commands
{
AUKN_INTERFACE(ITextLineSubscriber,
AUI_METHOD(void, OnProcessedLineUTF8, (const AuString &, line))
);
}