Initial commit

This commit is contained in:
Simon Lübeß
2023-09-02 13:26:21 +02:00
commit 31fedd476c
303 changed files with 39688 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;
}
}