Compare commits

..

No commits in common. "9e57c0250a9a2d38f0b4e3fcfb4eaa3926f6f4cd" and "f71426321f9ccaf9afc7cc1be91119bd2b8b3ac3" have entirely different histories.

3 changed files with 5 additions and 13 deletions

View file

@ -10,14 +10,7 @@
<PackageTags>coroutine utility unity</PackageTags> <PackageTags>coroutine utility unity</PackageTags>
<PackageProjectUrl>https://github.com/Ellpeck/Coroutine</PackageProjectUrl> <PackageProjectUrl>https://github.com/Ellpeck/Coroutine</PackageProjectUrl>
<RepositoryUrl>https://github.com/Ellpeck/Coroutine</RepositoryUrl> <RepositoryUrl>https://github.com/Ellpeck/Coroutine</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseUrl>https://github.com/Ellpeck/Coroutine/blob/main/LICENSE.md</PackageLicenseUrl>
<PackageReadmeFile>README.md</PackageReadmeFile> <VersionPrefix>2.1.1</VersionPrefix>
<PackageIcon>Logo.png</PackageIcon>
<VersionPrefix>2.1.2</VersionPrefix>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" />
<None Include="../Logo.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project> </Project>

BIN
Logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,6 +1,5 @@
![The Coroutine logo](https://raw.githubusercontent.com/Ellpeck/Coroutine/main/Logo.png) # Coroutine
A simple implementation of Unity's Coroutines to be used for any C# project
**Coroutine** is a simple implementation of Unity's Coroutines to be used for any C# project
# Features # 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. 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.