Fix typo on engine.inc documentation (#730)

`register_think` first parameter is `Classname[]`, but, it's written `Touched` on its description.
This commit is contained in:
Adam Richard 2019-06-19 17:25:41 -03:00 committed by Arkshine
parent 4ef0a78abd
commit 6cecb34e29

View File

@ -117,8 +117,8 @@ native register_touch(const Touched[], const Toucher[], const function[]);
* blocking the think. To immediately block return PLUGIN_HANDLED_MAIN
* instead.
*
* @param Touched Entity classname to hook
* @param function Name of callback function
* @param Classname Entity classname to hook
* @param function Name of callback function
*
* @return Think forward id
*/