diff --git a/Coroutine/Coroutine.csproj b/Coroutine/Coroutine.csproj index 5ffd8d6..eaf14d1 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/master/LICENSE.md + MIT + README.md + Logo.png 2.1.0 + + + + + \ 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 d8edcf9..bbe49f5 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.