19 lines
379 B
C++
19 lines
379 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: IIOProcessorManualInvoker.hpp
|
|
Date: 2022-6-6
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO
|
|
{
|
|
struct IIOProcessorManualInvoker
|
|
{
|
|
/**
|
|
* @brief Used to invoke a tick on an IIOProcessor
|
|
*/
|
|
virtual void InvokeManualTick() = 0;
|
|
};
|
|
} |