#ifndef __KOH_H #define __KOH_H #include #include #include #include #include #include #include typedef struct { double k; int max_generations; int x,y; double size; int color_pattern; } koh_config; typedef struct { int x,y; int generaton; int size; } koh_node; #endif