Files
Webber Takken fd4f2e502a 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
2021-05-20 23:58:14 +02:00

15 lines
272 B
C#

using System;
using UnityEngine;
public class Readme : ScriptableObject {
public Texture2D icon;
public string title;
public Section[] sections;
public bool loadedLayout;
[Serializable]
public class Section {
public string heading, text, linkText, url;
}
}