office asset hinzugefügt

This commit is contained in:
2024-04-03 11:48:09 +02:00
parent 5a6557bdd6
commit ed7b585371
246 changed files with 25607 additions and 11334 deletions

View File

@ -0,0 +1,15 @@
using System;
using UnityEngine;
public class Readme : ScriptableObject {
public Texture2D icon;
public float iconMaxWidth = 128f;
public string title;
public Section[] sections;
public bool loadedLayout;
[Serializable]
public class Section {
public string heading, text, linkText, url;
}
}