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

// some basic types
typedef int tick_t;
typedef unsigned int id_t;
typedef struct {
	unsigned int x,y;
} pos_t;

#endif /*DATA_TYPES_H*/