Play-/tools/GsAreaTest/Test.h

16 lines
208 B
C
Raw Permalink Normal View History

2020-04-29 13:54:38 -04:00
#pragma once
#define TEST_VERIFY(a) \
if(!(a)) \
{ \
int* p = 0; \
(*p) = 0; \
}
2020-04-30 13:28:16 -04:00
class CTest
{
public:
virtual ~CTest() = default;
virtual void Execute() = 0;
};