Projekterstellung + MainMenue erste Arbeiten

This commit is contained in:
2025-12-15 10:18:40 +01:00
parent b5b2912903
commit 98ad8ae728
177 changed files with 70470 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;
}
}