First commit

This commit is contained in:
Misaki
2024-11-02 17:58:52 +09:00
commit e645a5327b
153 changed files with 3729 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace Misaki.GraphView
{
public interface IValueConverterManager
{
public void AddConverter<TSource, TTarget>(IValueConverter<TSource, TTarget> converter);
public bool CanConvert<TSource, TTarget>();
public bool CanConvert(Type sourceType, Type targetType);
public bool TryConvert<TSource, TTarget>(TSource source, out TTarget target);
public bool TryConvert(Type sourceType, Type targetType, object source, out object target);
}
}