Advertisement
Guest User

Untitled

a guest
Dec 27th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include "Entity.h"
  2.  
  3. using namespace std;
  4.  
  5. int Entity::getX() const
  6. {
  7.     return x;
  8. }
  9.  
  10. int Entity::getY() const
  11. {
  12.     return y;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement