Initial commit
Some checks failed
Create tag, test, build and upload / BumpTag (push) Successful in 11s
Create tag, test, build and upload / Test (editmode) (push) Failing after 2m29s
Create tag, test, build and upload / Test (playmode) (push) Failing after 2m24s
Create tag, test, build and upload / Test (standalone) (push) Failing after 2m24s
Create tag, test, build and upload / Build (StandaloneLinux64) (push) Has been skipped
Create tag, test, build and upload / Build (StandaloneWindows) (push) Has been skipped
Create tag, test, build and upload / Build (WebGL) (push) Has been skipped

This commit is contained in:
2025-06-18 23:27:10 +02:00
commit 19dde4bbb7
65 changed files with 7631 additions and 0 deletions

View File

@ -0,0 +1,16 @@
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;
}
}