Skip to content

Commit

Permalink
Add new coroutine types to README
Browse files Browse the repository at this point in the history
  • Loading branch information
Inspiaaa committed Aug 30, 2023
1 parent 2bc3e0b commit 111f1ee
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,18 @@ Features of the `Coroutine` class:

- Waits for a certain delay in seconds

- `WaitWhileCoroutine`

- `Co.WaitWhile( () => x < 5 )`

- Waits while a certain condition is true

- `WaitUntilCoroutine`

- `Co.WaitUntil( () => x < 5 )`

- Waits until a certain condition is true

- `WaitForSignalCoroutine`

- `Co.WaitForSignal(obj, signal)`
Expand Down

0 comments on commit 111f1ee

Please sign in to comment.