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