====== Plugin:OnPlayerMove ======
The OnPlayerMove function is called any time any player moves but no more than once per tick.
The function will not be called for players who are standing still.

===== Parameters =====
OnPlayerMove has one parameter: [[api:cPlayer | cPlayer ]]
<code lua>
function OnPlayerMove( Player )
	Log( type(Player) )
end
</code>
This should output (untested)
<code>
cPlayer
</code>
===== Register Callback =====
To register your plugin for a callback on this function use the hook [[api:plugin:hooks | HOOK_PLAYER_MOVE]]
<code lua>
PluginManager = cPluginManager:GetPluginManager()
PluginManager:AddHook( Plugin, cPluginManager.HOOK_PLAYER_MOVE )
</code>