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;
namespace Misaki.GraphView.Editor
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public class CustomInspectorAttribute : Attribute
{
public Type InspectorType { get; }
public CustomInspectorAttribute(Type inspectorType)
{
InspectorType = inspectorType;
}
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: d9bb267f78e74942913e36a305e204e4
timeCreated: 1730383976

View File

@@ -0,0 +1,15 @@
using System;
namespace Misaki.GraphView.Editor
{
[AttributeUsage(AttributeTargets.Field)]
public class InspectorInputAttribute : Attribute
{
public string Name { get; }
public InspectorInputAttribute(string name = null)
{
Name = name;
}
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 8b4c3a04f1064d838c6e1adc07fcb48d
timeCreated: 1730111403