diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-05 13:26:55 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:54 +0200 |
commit | 6119f1428b3615e4738a121c6acf343942107fd9 (patch) | |
tree | 47eb5537674fe58ae8ad388521203b92bfb43529 /src/interfaces | |
parent | d27f1a89266e141a944f88e9080bdeca95c49da3 (diff) |
refactor: move input config to own file & improve cleanup
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/input_configurator.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/interfaces/input_configurator.hpp b/src/interfaces/input_configurator.hpp new file mode 100644 index 0000000..2bfe51e --- /dev/null +++ b/src/interfaces/input_configurator.hpp @@ -0,0 +1,9 @@ +#pragma once + +#include "interfaces/input.hpp" + +class IInputConfigurator +{ +public: + virtual void configure(IInputHandler &input_handler) = 0; +}; |