15 lines
337 B
C++
15 lines
337 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: ICommandSubscriber.hpp
|
|
Date: 2021-10-23
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console::Commands
|
|
{
|
|
AUKN_INTERFACE(ICommandSubscriber,
|
|
AUI_METHOD(void, OnCommand, (const Parse::ParsedObject &, parseList))
|
|
);
|
|
} |