13 lines
140 B
C#
13 lines
140 B
C#
using UnityEngine;
|
|
|
|
public interface KGFICustomGUI
|
|
{
|
|
string GetName();
|
|
|
|
string GetHeaderName();
|
|
|
|
Texture2D GetIcon();
|
|
|
|
void Render();
|
|
}
|