summaryrefslogtreecommitdiffstats
path: root/koh.h
blob: 6018fb91e6c8323145c3b9c535c6700c84e8ec9a (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
#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 x1,y1,x2,y2;
    int level;
    int r,g,b,a;
    int invisible;
} koh_node;

#endif