Rename JANKENSTEIN->JANKENBOTS; unify repo into Unity project folder + add Unity project (URP/Input System template)

This commit is contained in:
megaproxy 2026-07-10 22:44:44 +01:00
parent e59ce64eae
commit 6ae68d3671
62 changed files with 7492 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;
}
}