Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
Ell 2021-11-29 11:37:39 +01:00
commit 8a3e55b8f4
4 changed files with 14 additions and 5 deletions

1
.github/FUNDING.yml vendored
View File

@ -1 +1,2 @@
github: Ellpeck
ko_fi: Ellpeck

View File

@ -3,14 +3,21 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<Authors>Ellpeck</Authors>
<Description>A simple implementation of Unity's Coroutines to be used for any C# project</Description>
<PackageTags>coroutine utility unity</PackageTags>
<PackageProjectUrl>https://github.com/Ellpeck/Coroutine</PackageProjectUrl>
<RepositoryUrl>https://github.com/Ellpeck/Coroutine</RepositoryUrl>
<PackageLicenseUrl>https://github.com/Ellpeck/Coroutine/blob/main/LICENSE.md</PackageLicenseUrl>
<VersionPrefix>2.1.1</VersionPrefix>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Logo.png</PackageIcon>
<VersionPrefix>2.1.2</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" />
<None Include="../Logo.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>

BIN
Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -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.