FateViewer/Assets/AmplifyShaderEditor/Plugins/Editor/Nodes/ISignalGenerator.cs

12 lines
250 B
C#
Raw Permalink Normal View History

2023-10-09 00:51:40 +08:00
// Amplify Shader Editor - Visual Shader Editing Tool
// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
namespace AmplifyShaderEditor
{
interface ISignalGenerator
{
void GenerateSignalPropagation();
void GenerateSignalInibitor();
}
}