FeatherMC/src/Common.h

12 lines
188 B
C++

#pragma once
constexpr unsigned long long operator"" KB(unsigned long long l)
{
return l * 1024;
}
#ifdef _MSC_VER
#define abstract __declspec(novtable)
#else
#define abstract
#endif