Diego Ovalle ce0ef81ec0 Initial commit: Unity Project structure and .gitignore 6 dienas atpakaļ
..
Editor ce0ef81ec0 Initial commit: Unity Project structure and .gitignore 6 dienas atpakaļ
Editor.meta ce0ef81ec0 Initial commit: Unity Project structure and .gitignore 6 dienas atpakaļ
Readme.cs ce0ef81ec0 Initial commit: Unity Project structure and .gitignore 6 dienas atpakaļ
Readme.cs.meta ce0ef81ec0 Initial commit: Unity Project structure and .gitignore 6 dienas atpakaļ

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