Nim-XD 2ce1d098b6 initial commit před 4 týdny
..
Editor 2ce1d098b6 initial commit před 4 týdny
Editor.meta 2ce1d098b6 initial commit před 4 týdny
Readme.cs 2ce1d098b6 initial commit před 4 týdny
Readme.cs.meta 2ce1d098b6 initial commit před 4 týdny

Readme.cs

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;
}
}