Returns the human interpretable facing of this org.
| 113 | int GetFacing(); // Returns the facing of this cell. |
| 114 | int GetFacedDir(); // Returns the human interpretable facing of this org. |
| 115 | inline void GetPosition(int& x, int& y) const { x = m_x; y = m_y; } // Retrieves the position (x,y) coordinates of this cell. |
| 116 | inline std::pair<int,int> GetPosition() const { return std::make_pair(m_x,m_y); } |
| 117 | inline int GetVisits() { return m_visits; } // @WRE: Retrieves the number of visits for this cell. |
| 118 | inline void IncVisits() { m_visits++; } // @WRE: Increments the visit count for a cell |
no outgoing calls
no test coverage detected