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,17 @@
using System;
namespace Misaki.GraphView
{
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
public class NodeInfoAttribute : System.Attribute
{
public string Name { get; }
public string Category { get; }
public NodeInfoAttribute(string name, string category)
{
Name = name;
Category = category;
}
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 7a9f3e860ebb49e083daff93281df251
timeCreated: 1730110191

View File

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

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 0ddc12f5058549659c8bea889e611e9e
timeCreated: 1730110839

View File

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

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 3ba195a0a6e14defaa983ac85c44998c
timeCreated: 1730110931