Add Common.h for general stuff

This commit is contained in:
DankParrot 2020-07-27 16:06:35 -07:00
parent 6e86728d89
commit a923dd07a2
1 changed files with 6 additions and 0 deletions

6
src/Common.h Normal file
View File

@ -0,0 +1,6 @@
#pragma once
constexpr unsigned long long operator"" KB(unsigned long long l)
{
return l * 1024;
}