unity starter asset package importiert

This commit is contained in:
GodGodGod20081
2026-06-19 12:21:09 +02:00
parent ce681510ea
commit 8d4ffbf9ed
285 changed files with 37168 additions and 568 deletions
+10 -12
View File
@@ -1,16 +1,14 @@
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;
}
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;
}
}