aboutsummaryrefslogtreecommitdiffstats
path: root/attr/ondraw.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:50:47 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:50:47 -0400
commitcd96a31b3ea11edf26512c33ca599258601c31a0 (patch)
treed5cfbb9b3c936f36a4d30f9b8024e3ef7e27bcd7 /attr/ondraw.hpp
parent00f84e3b984904e36cbee502a470003ecd7d09cf (diff)
move library to a folder
Diffstat (limited to 'attr/ondraw.hpp')
-rw-r--r--attr/ondraw.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/attr/ondraw.hpp b/attr/ondraw.hpp
deleted file mode 100644
index d0932ef..0000000
--- a/attr/ondraw.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef MBUOY_ATTR_ONDRAW_HPP
-#define MBUOY_ATTR_ONDRAW_HPP
-
-#include "position.hpp"
-#include "dimensions.hpp"
-
-namespace mbuoy {
-
-struct ondraw
-{
- void (*func)(const position&, const dimensions&);
-
- void operator()(const position& pos, const dimensions& dim) const noexcept {
- func(pos, dim);
- }
-};
-
-} // namespace mbuoy
-
-#endif // MBUOY_ATTR_ONDRAW_HPP
-