adding project

This commit is contained in:
Sam Vermeir
2025-08-25 15:39:32 +02:00
parent c20ddcd425
commit f183063a85
67 changed files with 7332 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;
}
}