mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-05-15 18:55:50 +00:00
11 lines
245 B
C
11 lines
245 B
C
![]() |
#pragma once
|
||
|
#include "recompiler.h"
|
||
|
|
||
|
struct TestRecompiler : Recompiler
|
||
|
{
|
||
|
void Analyse(const std::string_view& testName);
|
||
|
void Reset();
|
||
|
|
||
|
static void RecompileTests(const char* srcDirectoryPath, const char* dstDirectoryPath);
|
||
|
};
|