lolautoaccept/include/arg.h

9 lines
129 B
C
Raw Permalink Normal View History

2022-04-26 19:36:15 +02:00
#pragma once
struct Args {
int debugLog = 0; // cast to bool later
2023-09-02 11:52:18 +02:00
int access = 0;
2022-04-26 19:36:15 +02:00
};
Args parseArgs(int argc, char** argv);