summaryrefslogtreecommitdiff
path: root/utils.h
blob: a01491694e5a992cae0edcbbbef63357ca502ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _UTILS
#define _UTILS
#include <raylib.h>
typedef struct _Point3d{
    double x, y, z;
}point3d;

typedef struct _Point2d{
    double x, y;
}point2d;

typedef struct _Display{
	point3d p;
	Color c;
}display;

#endif