mirror of
https://github.com/Ellpeck/Coroutine.git
synced 2024-11-21 13:23:29 +01:00
Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
8a3e55b8f4
4 changed files with 14 additions and 5 deletions
1
.github/FUNDING.yml
vendored
1
.github/FUNDING.yml
vendored
|
@ -1 +1,2 @@
|
|||
github: Ellpeck
|
||||
ko_fi: Ellpeck
|
||||
|
|
|
@ -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
BIN
Logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue