Created project, switched target platform to windows

This commit is contained in:
2025-10-18 10:37:05 +02:00
parent 06a89ccd8f
commit 5606c2474e
40 changed files with 7073 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;
}
}