Advertisement
Glenpl

Untitled

Aug 25th, 2015
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. int distance(Coord first, Coord second); // podstawowa
  2. int distance(Hex first, Hex second);
  3. int distance(std::shared_ptr<hex> first, std::shared_ptr<hex> second);
  4. Coord find_neighbour(Hex hex, Coord direction); // podstawowa
  5. Coord find_neighbour(std::shared_ptr<Hex> hex, Coord direction);
  6. std::shared_ptr<hex> find_neighbour_ptr(Hex hex, Coord direction); // podstawowa
  7. std::shared_ptr<hex> find_neighbour_ptr(std::shared_ptr<Hex> hex, Coord direction);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement