diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
commit | 00f84e3b984904e36cbee502a470003ecd7d09cf (patch) | |
tree | 48836b7af6dc55724f789a75ebed4a7ce01be5fc /attr/ondraw.hpp | |
parent | e6dfad81f8c893f95fe2922a075b82e2d262bde2 (diff) |
initial upload
Diffstat (limited to 'attr/ondraw.hpp')
-rw-r--r-- | attr/ondraw.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/attr/ondraw.hpp b/attr/ondraw.hpp new file mode 100644 index 0000000..d0932ef --- /dev/null +++ b/attr/ondraw.hpp @@ -0,0 +1,21 @@ +#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 + |