summaryrefslogtreecommitdiffstats
path: root/koh.h
blob: 9c8208e88236e74724e7e5770241e933349f44f8 (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
#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 
{
    int k;
    int levels;
} koh_config;

typedef struct 
{
    int x,y;
    int generaton;
    int size;
} koh_node;

#endif