mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-18 00:22:24 -04:00
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
|