added commandline arguments and deleted target

This commit is contained in:
2025-09-14 20:05:40 +03:00
parent ad5b8beb99
commit 8b8160dcd7
6 changed files with 107 additions and 73 deletions

12
src/headers/args.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef ARGS_H_
#define ARGS_H_
typedef struct {
int width;
int height;
int sleep_ms;
} Arguments;
Arguments cmd_args(int argc, char** argv);
#endif // ARGS_H_