/*** Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: IAsyncTimer.hpp Date: 2023-12-06 Author: Reece ***/ #pragma once namespace Aurora::Async { struct IAsyncTimer { virtual void CancelTimer() = 0; virtual AuUInt64 GetLastTime() = 0; virtual AuUInt64 GetTicks() = 0; }; }