mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
27 lines
638 B
C#
27 lines
638 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace Artemis.Core.VisualScripting
|
|
{
|
|
public interface INode : INotifyPropertyChanged
|
|
{
|
|
string Name { get; }
|
|
string Description { get; }
|
|
|
|
public double X { get; set; }
|
|
public double Y { get; set; }
|
|
|
|
public IReadOnlyCollection<IPin> Pins { get; }
|
|
public IReadOnlyCollection<IPinCollection> PinCollections { get; }
|
|
|
|
public object CustomView { get; }
|
|
public object CustomViewModel { get; }
|
|
|
|
event EventHandler Resetting;
|
|
|
|
void Evaluate();
|
|
void Reset();
|
|
}
|
|
}
|