summaryrefslogtreecommitdiff
path: root/src/include/data_types.h
blob: 20ac937bef15522252e3c9ec4c50d3399fb8d6dc (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef DATA_TYPES_H
#define DATA_TYPES_H

typedef int tick_t;
typedef unsigned int id_t;
typedef struct {
	unsigned int x,y;
} pos_t;

#endif /*DATA_TYPES_H*/