Guest User

bool BlackBoard<Subject>::IsBaseNodeAccessible(sf::Vector2f

a guest
Apr 6th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. template<class Subject>
  2. bool BlackBoard<Subject>::IsBaseNodeAccessible(sf::Vector2f point)
  3. {
  4.     if (gameWorld->graph->GetNodeFromPosition(point)->accessible == true)
  5.     {
  6.         return true;
  7.     }
  8.     else {
  9.         return false;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment