mirror of
https://github.com/Ellpeck/Coroutine.git
synced 2024-11-24 22:28:34 +01:00
Compare commits
3 commits
f71426321f
...
9e57c0250a
Author | SHA1 | Date | |
---|---|---|---|
9e57c0250a | |||
a73c3f7843 | |||
02d16ee81d |
3 changed files with 13 additions and 5 deletions
|
@ -3,14 +3,21 @@
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Authors>Ellpeck</Authors>
|
<Authors>Ellpeck</Authors>
|
||||||
<Description>A simple implementation of Unity's Coroutines to be used for any C# project</Description>
|
<Description>A simple implementation of Unity's Coroutines to be used for any C# project</Description>
|
||||||
<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>
|
||||||
<PackageLicenseUrl>https://github.com/Ellpeck/Coroutine/blob/main/LICENSE.md</PackageLicenseUrl>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
<VersionPrefix>2.1.1</VersionPrefix>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
|
<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
Normal file
BIN
Logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
|
@ -1,5 +1,6 @@
|
||||||
# Coroutine
|
![The Coroutine logo](https://raw.githubusercontent.com/Ellpeck/Coroutine/main/Logo.png)
|
||||||
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.
|
||||||
|
|
Loading…
Reference in a new issue