diff options
Diffstat (limited to 'attr/dimensions.hpp')
-rw-r--r-- | attr/dimensions.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/attr/dimensions.hpp b/attr/dimensions.hpp new file mode 100644 index 0000000..9c1fda9 --- /dev/null +++ b/attr/dimensions.hpp @@ -0,0 +1,14 @@ +#ifndef MBUOY_ATTR_DIMENSIONS_HPP +#define MBUOY_ATTR_DIMENSIONS_HPP + +namespace mbuoy { + +struct dimensions +{ + int width, height; +}; + +} // namespace mbuoy + +#endif // MBUOY_ATTR_DIMENSIONS_HPP + |