17 lines
313 B
C#
17 lines
313 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace ReadmeSystem
|
||
|
|
{
|
||
|
|
[AddComponentMenu("Readme")]
|
||
|
|
public class ReadmeBehaviour : MonoBehaviour
|
||
|
|
{
|
||
|
|
|
||
|
|
public Readme readme;
|
||
|
|
|
||
|
|
[HideInInspector]
|
||
|
|
public bool showIconInHierarchy = true;
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|