Files
Seele/test/Engine/EngineTest.h
T

20 lines
318 B
C++

#pragma once
#include <vld.h>
namespace Seele
{
struct GlobalFixture
{
GlobalFixture()
{
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
}
~GlobalFixture();
void setup()
{
}
void teardown()
{
}
};
};