Update README.md

This commit is contained in:
Elijah R 2023-03-08 19:45:55 -05:00 committed by GitHub
parent 3e9c25b72c
commit af6e22f803
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,6 +8,7 @@ The API is well documented with XML documentation, meaning hovering over a metho
### Example
```cs
using System.Console;
using CollabVMSharp;
// Instantiate the client
var cvm = new CollabVMClient("wss://computernewb.com/collab-vm/vm0", "cvmsharptest", "vm0b0t");
@ -22,7 +23,7 @@ await cvm.TypeString("hey sexies");
// Login as an admin or mod
await cvm.Login("hunter2");
// Run a command in the QEMU monitor and get a response
await cvm.QEMUMonitor("info block");
Console.WriteLine(await cvm.QEMUMonitor("info block"));
// Send a message when someone takes a turn
cvm.TurnUpdate += async (_, e) => {
await cvm.SendChat($"You have the turn, {e.Queue[0].Username}!");