blob: 54695b1ba86d13f9e25fec3a84aaea007b77bede (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "Component.h"
#include "api/Vector2.h"
namespace crepe {
class Collider : public Component {
public:
Collider(game_object_id_t id, Vector2 offset);
Vector2 offset;
};
} // namespace crepe
|