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

namespace crepe {

class PhysicsSystem {
private:
	/* data */

public:
	PhysicsSystem(/* args */);
	void update();
};

} // namespace crepe