We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c334091 commit 69941d8Copy full SHA for 69941d8
SingleFile/main.cpp
@@ -423,8 +423,6 @@ int* Cursor() {
423
bool IsMouseInRegion(int x, int y, int w, int h) {
424
return Cursor()[0] > x && Cursor()[1] > y && Cursor()[0] < w + x && Cursor()[1] < h + y;
425
}
426
-#include <iostream>
427
-#include <fstream>
428
void load() { // not proud of using cpp here, but line count matters...
429
FILE* cfg = fopen("singlefile.cfg", "r");
430
fread(&config, sizeof(config), 1, cfg);
0 commit comments