FeatherMC/src/Common.h

15 lines
218 B
C
Raw Normal View History

2020-07-28 00:06:35 +01:00
#pragma once
2020-07-29 02:43:59 +01:00
#include "logging/Logger.h"
2020-07-28 00:06:35 +01:00
constexpr unsigned long long operator"" KB(unsigned long long l)
{
return l * 1024;
}
2020-07-29 01:46:31 +01:00
#ifdef _MSC_VER
#define abstract __declspec(novtable)
#else
#define abstract
2020-08-01 00:57:33 +01:00
#endif