Added RelayNodeView;
Chnaged GraphView to multiple files for better organization;
This commit is contained in:
@@ -1,16 +1,18 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Misaki.GraphView
|
||||
{
|
||||
public interface ILogger
|
||||
{
|
||||
public Action<ExecutableNode, string, LogType> OnLog { get; set; }
|
||||
|
||||
public void LogInfo(ExecutableNode node, string message);
|
||||
public void LogWarning(ExecutableNode node, string message);
|
||||
public void LogError(ExecutableNode node, string message);
|
||||
|
||||
public Action<DataNode, string, LogType> OnLog
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
public void LogInfo(DataNode node, string message);
|
||||
public void LogWarning(DataNode node, string message);
|
||||
public void LogError(DataNode node, string message);
|
||||
|
||||
public void ClearLogs();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user