12 lines
141 B
C
12 lines
141 B
C
#ifndef COLLISIONBOX_H
|
|
#define COLLISIONBOX_H
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
int width;
|
|
int height;
|
|
} CollisionBox;
|
|
|
|
#endif
|