Updated ReadMe

This commit is contained in:
MrGadget1024 2023-03-11 14:29:14 -05:00
parent 5d324d35f1
commit 3535728786

View File

@ -56,7 +56,7 @@ public class Player : NetworkBehaviour
// zero overhead remote calls // zero overhead remote calls
[Command] void CmdUseItem(int slot) {} // client to server [Command] void CmdUseItem(int slot) {} // client to server
[Rpc] void RpcRespawn() {} // server to all clients [ClientRpc] void RpcRespawn() {} // server to all clients
[TargetRpc] void Hello() {} // server to one client [TargetRpc] void Hello() {} // server to one client
} }
``` ```