AuroraRuntime/Include/Aurora/Threading/Threads/IThreadFeature.hpp

16 lines
326 B
C++
Raw Normal View History

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IThreadFeature.hpp
Date: 2021-6-25
Author: Reece
***/
2021-06-27 21:25:29 +00:00
#pragma once
namespace Aurora::Threading::Threads
{
AUKN_INTERFACE(IThreadFeature,
AUI_METHOD(void, Init, ()),
AUI_METHOD(void, Cleanup, ())
);
2021-06-27 21:25:29 +00:00
}