#ifndef IZ_OBJECT_H #define IZ_OBJECT_H #include "../geometry/IZ_vector2d.h" #include "../geometry/IZ_rect.h" #include "IZ_entity.h" typedef struct { IZ_Entity as_entity; IZ_Rect collision_rect; } IZ_Object; #endif