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

#include "System.h"

namespace crepe {

class CollisionSystem : public System {
public:
	using System::System;
	void update() override;
};

} // namespace crepe