Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/KGFCustomGUITutorial.cs
2026-02-21 16:45:37 +08:00

24 lines
298 B
C#

using UnityEngine;
public class KGFCustomGUITutorial : KGFObject, KGFICustomGUI
{
public string GetName()
{
return "KGFCustomGUITutorial";
}
public string GetHeaderName()
{
return "Custom GUI Tutorial";
}
public Texture2D GetIcon()
{
return null;
}
public void Render()
{
}
}