dino/collisionbox.h
2024-03-07 02:02:03 +03:00

12 lines
141 B
C

#ifndef COLLISIONBOX_H
#define COLLISIONBOX_H
typedef struct {
int x;
int y;
int width;
int height;
} CollisionBox;
#endif