diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-03 19:17:48 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:54 +0200 |
commit | 70b21e90d7be4d892b7d17440d64630e7ee1a575 (patch) | |
tree | 429e9038df3263b31e98df301d0a0c85671057fa /src/interfaces/vector2.hpp | |
parent | c2f41a5b278df2837f4cc5617df07248a048d93c (diff) |
refactor: improve factories
Diffstat (limited to 'src/interfaces/vector2.hpp')
-rw-r--r-- | src/interfaces/vector2.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/interfaces/vector2.hpp b/src/interfaces/vector2.hpp index 569dc30..dfd369f 100644 --- a/src/interfaces/vector2.hpp +++ b/src/interfaces/vector2.hpp @@ -1,6 +1,5 @@ #pragma once -#include <functional> #include <memory> class IVector2 @@ -42,5 +41,4 @@ struct IVector2Options unsigned int y; }; -using IVector2Factory = - std::function<std::shared_ptr<IVector2>(const IVector2Options &options)>; +using IVector2Factory = std::shared_ptr<IVector2> (*)(const IVector2Options &options); |