Creating Unity project

This commit is contained in:
Max 2025-01-17 13:38:27 +01:00
parent 44d8d6a8d8
commit 9d0ada54e0
72 changed files with 7531 additions and 9 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;
}
}