second initial commit

This commit is contained in:
Emil Shanaty
2025-03-01 16:50:40 +03:00
parent 07130c5543
commit 5025e2485f
64 changed files with 15983 additions and 0 deletions
+16
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;
}
}