AuroraRuntime/Source/Async/Async.cpp
2021-06-30 13:07:54 +01:00

23 lines
366 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Async.cpp
Date: 2021-6-26
Author: Reece
***/
#include <RuntimeInternal.hpp>
#include "Async.hpp"
#include "Schedular.hpp"
namespace Aurora::Async
{
void InitAsync()
{
InitSched();
}
void ShutdownSync()
{
ShutdownSched();
}
}