Added Event Pipeline System

This commit is contained in:
Mueller Wayan
2025-04-18 21:54:07 +02:00
parent b4d5afc4ba
commit 08f66af16e
52 changed files with 1368 additions and 197 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Firebird2D.EventPipelines
{
public interface I_Pipeline
{
object PipelineMaster { get; }
bool IsEventEmpty { get; }
void Subscribe(Delegate handler);
void Unsubscribe(Delegate handler);
}
}