Advertisement
zCool

Entity.cpp

May 20th, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include "Entity.h"
  2. #include <string>
  3.  
  4.  
  5. Entity::Entity(int X, int Y, std::string sprite)
  6. {
  7.     m_X = X;
  8.     m_Y = Y;
  9.     m_sprite = sprite;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement