#ifndef _COMMON_H
#define _COMMON_H
#include "types.h"

//For some strange reason there was no round defined in math.h
#define round(a) (a<0)?(int)(a - 0.5f):(int)(a + 0.5f)


#endif
