Files
Cielonos/Assets/External VFXs/Piloto Studio/Readme/Scripts/ReadmeBehaviour.cs

17 lines
313 B
C#
Raw Normal View History

2026-02-13 09:22:11 -05:00
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;
}
}