mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
34 lines
297 B
C++
34 lines
297 B
C++
#include "Bloat.cpp"
|
|
|
|
|
|
#ifdef gen_time
|
|
#include "gen.cpp"
|
|
|
|
using namespace gen;
|
|
|
|
|
|
|
|
|
|
|
|
int gen_main()
|
|
{
|
|
Memory::setup();
|
|
|
|
log_fmt("\nPress any key after attaching to process\n");
|
|
getchar();
|
|
|
|
gen::init();
|
|
|
|
Memory::cleanup();
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifdef runtime
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|