Skip to content

Commit 69941d8

Browse files
authored
remove unused includes
1 parent c334091 commit 69941d8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

SingleFile/main.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,6 @@ int* Cursor() {
423423
bool IsMouseInRegion(int x, int y, int w, int h) {
424424
return Cursor()[0] > x && Cursor()[1] > y && Cursor()[0] < w + x && Cursor()[1] < h + y;
425425
}
426-
#include <iostream>
427-
#include <fstream>
428426
void load() { // not proud of using cpp here, but line count matters...
429427
FILE* cfg = fopen("singlefile.cfg", "r");
430428
fread(&config, sizeof(config), 1, cfg);

0 commit comments

Comments
 (0)