aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Collider.h
blob: 68a7d1d9c0c9a8b987b4b5e4a5e32a66637144ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "Component.h"

namespace crepe {

class Collider : public Component {
public:
	Collider(uint32_t game_object_id);

	int size;
};

} // namespace crepe