FastColor/RemoveFPSCheat/LLVM-Style

This commit is contained in:
2023-03-07 18:09:48 +01:00
parent 2f7a266dc5
commit 66a35f28e6
22 changed files with 18350 additions and 15235 deletions

View File

@ -1,11 +1,10 @@
//rd7cc
#include <iostream>
// rd7cc
#include <fstream>
int main(int argc, char* argv[])
{
std::ofstream result ("result.hpp");
#include <iostream>
int main(int argc, char *argv[]) {
std::ofstream result("result.hpp");
result << "//Result" << std::endl;
result << "//Result" << std::endl;
result.close();
result.close();
}