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 647097cb95
commit 6b5b5a103c
64 changed files with 7501 additions and 8 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;
}
}