aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/PhysicsSystem.h
blob: 5433a0f0d7b1b5116803cf7f4ac3b0a387a4dc41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include "System.h"

namespace crepe {

/**
 * \brief System that controls all physics
 * 
 * This class is a physics system that uses a rigidbody and transform
 * to add physics to a game object.
 */
class PhysicsSystem : public System {
public:
	using System::System;
	/**
	 * \brief updates the physics system.
	 * 
	 * It calculates new velocties and changes the postion in the transform.
	 */
	void update() override;
};

} // namespace crepe