/src/misc.h
#ifndef _MISC_H
#define _MISC_H

typedef struct color {
	float r;
	float g;
	float b;
	float a;
} Color;

#endif //_MISC_H