Update workflow to latest standards + add test projects (#102)

* Move test-project to subfolder

* Update workflow to target test-project

* Add 2018.3-legacy test-project

* Rename to legacy-render-pipeline

* Add test project for URP

* Cache LFS

* Update license

* Ignore artifacts

* Add test project for HDRP

* Avoid ambiguity in cache key
This commit is contained in:
Webber Takken
2021-05-20 23:58:14 +02:00
committed by GitHub
parent 145ace7863
commit fd4f2e502a
628 changed files with 53871 additions and 160 deletions

View File

@@ -0,0 +1,18 @@
using System;
public class BasicCounter
{
public const int MaxCount = 10;
public BasicCounter(int count = 0)
{
Count = count;
}
public void Increment()
{
Count = Math.Min(MaxCount, Count + 1);
}
public int Count { get; private set; }
}