summaryrefslogtreecommitdiffstats
path: root/koh.h
blob: b003b0b25f8769fdf7eb8148b0699edcf9c2d4b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __KOH_H
#define __KOH_H

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include <string.h>
#include <stdint.h>
#include <time.h>


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