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

#include "System.h"

namespace crepe {

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

} // namespace crepe