verus/Verus/src/Global/Global.cpp

16 lines
152 B
C++

#include "verus.h"
int g_numSingletonAlloc;
namespace verus
{
void Make_Global()
{
Timer::Make();
}
void Free_Global()
{
Timer::Free();
}
}