15 lines
355 B
C++
15 lines
355 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Commands.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console::Commands
|
|
{
|
|
void UpdateDispatcher(AuOptionalEx<Async::WorkerPId_t> target);
|
|
void PumpCommands();
|
|
void RunCommandFunction(const AuFunction<void()> &func);
|
|
} |