project update

This commit is contained in:
h z
2024-06-30 01:52:44 +08:00
parent 117835b503
commit 59d257c06a
67 changed files with 2268 additions and 92 deletions

View File

@@ -0,0 +1,20 @@
using Enigmos.Ports;
using Enigmos.Ports.DataPorts;
namespace Enigmos.Modules.Other;
public partial class IndicateInputModule : BaseModule
{
public DataInPort Input { get; set; }
protected override bool Draggable => false;
protected override bool HasManual => false;
public override IEnumerable<BasePort> Ports => new[] { Input };
public override void Init()
{
base.Init();
Input = GetPort<DataInPort>("Input");
PostInit();
}
}