Skip to content
Snippets Groups Projects
Commit 7e3436fa authored by Pelech, Ondřej's avatar Pelech, Ondřej
Browse files

added comments

parent c79c4274
No related branches found
No related tags found
No related merge requests found
/*******************************************************************
Header for collision_rect.c
File representing collision rectangle
authors: Pelech Ondrej, Pham Thi Thien Trang
date: May 2023
*******************************************************************/
#ifndef __COLLISION_RECT_H__
#define __COLLISION_RECT_H__
......@@ -11,6 +18,7 @@ typedef struct collision_rect{
int16_t height;
} collision_rect_t;
// checks for object collisions
bool check_collision_rect(collision_rect_t* rect1, collision_rect_t* rect2);
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment