1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

28 lines
709 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using Artemis.Storage.Entities.Profile.Nodes;
namespace Artemis.Core
{
public interface INode : INotifyPropertyChanged
{
string Name { get; }
string Description { get; }
bool IsExitNode { get; }
public double X { get; set; }
public double Y { get; set; }
public object? Storage { get; set; }
public IReadOnlyCollection<IPin> Pins { get; }
public IReadOnlyCollection<IPinCollection> PinCollections { get; }
event EventHandler Resetting;
void Initialize(INodeScript script);
void Evaluate();
void Reset();
}
}