Added tilemap plugin and tilemap

This commit is contained in:
2025-09-01 15:07:27 +02:00
parent 1a5126a259
commit 8b0f6b9376
103 changed files with 17369 additions and 269 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;
}
}