Update README.md
This commit is contained in:
parent
c793b9f1d8
commit
d72094a68b
1 changed files with 4 additions and 0 deletions
|
@ -16,6 +16,10 @@ var cvm = new CollabVMClient("wss://computernewb.com/collab-vm/vm0", "cvmsharpte
|
||||||
await cvm.Connect();
|
await cvm.Connect();
|
||||||
// Send a chat
|
// Send a chat
|
||||||
await cvm.SendChat("What hath god wrought?");
|
await cvm.SendChat("What hath god wrought?");
|
||||||
|
// Add a command
|
||||||
|
cvm.RegisterCommand("!test", (username, args) => {
|
||||||
|
Console.WriteLine($"You said {String.Join(", ", args)}, {username}!");
|
||||||
|
});
|
||||||
// Queue a turn, wait until we get the turn
|
// Queue a turn, wait until we get the turn
|
||||||
await cvm.GetTurn();
|
await cvm.GetTurn();
|
||||||
// Type a string into the VM
|
// Type a string into the VM
|
||||||
|
|
Loading…
Reference in a new issue