Skip to content

Instantly share code, notes, and snippets.

@PoetaKodu
Created January 29, 2017 17:18
Show Gist options
  • Save PoetaKodu/401d49755a1803ec41088b5657b667a5 to your computer and use it in GitHub Desktop.
Save PoetaKodu/401d49755a1803ec41088b5657b667a5 to your computer and use it in GitHub Desktop.
/////////////////////////////////////////////////////////////////////////
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