First commit + gitignore

This commit is contained in:
Crizomb 2024-12-03 10:55:10 +01:00
commit 57a40d426b
74 changed files with 8345 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;
}
}