12 lines
No EOL
304 B
C#
12 lines
No EOL
304 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Module.NavigationTool.Editor.History
|
|
{
|
|
[Serializable]
|
|
internal abstract class AbstractEditorHistoryView
|
|
{
|
|
public abstract void Initialize();
|
|
public abstract void Draw(EditorHistoryWindow window, Rect rect, Styles styles);
|
|
}
|
|
} |