feat: add Unity project (Assets, ProjectSettings)

This commit is contained in:
2026-05-15 09:13:39 +02:00
parent 19f5d70752
commit c322793b0d
253 changed files with 86009 additions and 1 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;
}
}