working types and random

This commit is contained in:
2025-06-04 11:45:02 +02:00
parent 7adfcc7b23
commit 78a97c16dd
8 changed files with 186 additions and 118 deletions
+5 -4
View File
@@ -5,10 +5,11 @@
struct Parameters {
bool quiet;
unsigned long width;
unsigned long height;
unsigned long seed;
unsigned short width;
unsigned short height;
char *file_path;
unsigned char size;
unsigned short size;
unsigned char slope;
unsigned char start[3];
unsigned char var[3];
@@ -16,6 +17,6 @@ struct Parameters {
typedef struct Parameters parameters;
typedef void line_fn(unsigned long y, char *data_buffer);
typedef void line_fn(unsigned short y, unsigned char *data_buffer);
#endif