Initial Upload

This commit is contained in:
iDunnoDev
2022-02-23 12:07:57 +00:00
committed by iDunnoDev
parent 1eddb9d36e
commit 6bdfe4569f
19 changed files with 1017 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#pragma once
// Various helper functions
using namespace std;
inline void ThrowIfFailed(HRESULT hr)
{
if (FAILED(hr))
{
throw exception();
}
}