blob: dfb9cc727cb430a3ea50d1c87495c3d44f0224a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|