diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 7cb18b2..cb60047 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ github: Ellpeck +ko_fi: Ellpeck diff --git a/Coroutine/Coroutine.csproj b/Coroutine/Coroutine.csproj index 6e1e892..1fbecdd 100644 --- a/Coroutine/Coroutine.csproj +++ b/Coroutine/Coroutine.csproj @@ -3,14 +3,21 @@ netstandard2.0 true - + Ellpeck A simple implementation of Unity's Coroutines to be used for any C# project coroutine utility unity https://github.com/Ellpeck/Coroutine https://github.com/Ellpeck/Coroutine - https://github.com/Ellpeck/Coroutine/blob/main/LICENSE.md - 2.1.1 + MIT + README.md + Logo.png + 2.1.2 + + + + + \ No newline at end of file diff --git a/Logo.png b/Logo.png new file mode 100644 index 0000000..93a25fa Binary files /dev/null and b/Logo.png differ diff --git a/README.md b/README.md index 3626df5..1315aae 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -# Coroutine -A simple implementation of Unity's Coroutines to be used for any C# project +![The Coroutine logo](https://raw.githubusercontent.com/Ellpeck/Coroutine/main/Logo.png) + +**Coroutine** is a simple implementation of Unity's Coroutines to be used for any C# project # Features Coroutine adds the ability to run coroutines. Coroutines are methods that run in parallel to the rest of the application through the use of an `Enumerator`. This allows for the coroutine to pause execution using the `yield return` statement.