Sorry to bother but I simply get some trouble reading the docs.
I'm trying to make my own Rust plugin but I cannot find a documentation for classes.
For example, in the hooks doc we can learn something like this:
object OnMeleeAttack(BasePlayer player, HitInfo info)
{
Puts("OnMeleeAttack works!");
return null;
}But what can I get from a "BasePlayer" or "HitInfo"? What can I do with them? In some plugins they use methods like Item.MoveToContainer, but where can I learn more about it and other things I can do with Item?
This may sound stupid but I did try to find it, getting nothing like that or something saying there're no such docs.