9 lines
167 B
C#
9 lines
167 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Stary.Evo.InformationSave
|
||
|
|
{
|
||
|
|
public abstract class CustomEditorBase : MonoBehaviour
|
||
|
|
{
|
||
|
|
public abstract void Draw();
|
||
|
|
}
|
||
|
|
}
|