Created
January 29, 2017 17:18
-
-
Save PoetaKodu/401d49755a1803ec41088b5657b667a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////////////////////////////////////////////////////////// | |
IPawnController::IPawnController() | |
: m_owner(nullptr) | |
{ | |
} | |
///////////////////////////////////////////////////////////////////////// | |
IPawnController::~IPawnController() | |
{ | |
} | |
///////////////////////////////////////////////////////////////////////// | |
bool IPawnController::Possess(IPawn * owner) | |
{ | |
if (!m_owner) | |
{ | |
m_owner = owner; | |
return true; | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment