Can I get a link to properties in the BasePlayer class. I could not find anything inside of Assembly-CSharp and honestly if someone could also explain the difference to me between IPlayer and BasePlayer that would be very nice <3
BasePlayer classSolved
IPlayer is universal while BasePlayer is rust only
Use Visual Studios and reference all dlls so you can know what you can use
Unfortunately, there is no link to properties in the baseplayer class
Use Visual Studios and reference all dlls so you can know what you can use
Unfortunately, there is no link to properties in the baseplayer class
In response to ():Can I get a link to properties in the BasePlayer class. I could not find anything inside of Assembly...
IPlayer is interface, that used to make some of function universal
Ex:
Calling IPlayer.Hurt(10f) will call that function in any game that will hurt you by 10 damage
BasePlayer - only Rust gameobject
Ex:
Calling IPlayer.Hurt(10f) will call that function in any game that will hurt you by 10 damage
BasePlayer - only Rust gameobject
Ok, ty will look l8r
Locked automatically