aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Transform.h
blob: 96da1a49d3715be02aafab7b6c2ca9b727fa7b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "Component.h"

namespace crepe {

class Transform : public Component {
public:
	Transform(uint32_t gameObjectId,int mass, int gravityScale, int bodyType);

	int mass;
	int gravity_scale;
	int body_type;
};

} // namespace crepe