/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: SysPanic.hpp Date: 2021-6-10 Author: Reece ***/ #pragma once #if defined(_AUHAS_FMT) template static inline void __declspec(noreturn) SysPanic(T... args) { Aurora::Console::Logging::WriteLinef(Aurora::Console::EAnsiColor::eBoldRed, "Fatal", std::forward(args)...); Aurora::Debug::Panic(); } #endif