mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-12-21 04:42:47 +01:00
12 lines
299 B
C#
12 lines
299 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace BrotliBuilder.Blocks{
|
|
interface IBuildingBlockContext{
|
|
event EventHandler<EventArgs> Notified;
|
|
|
|
void SetChildBlock(Func<IBuildingBlockContext, UserControl>? blockFactory);
|
|
void NotifyParent(EventArgs args);
|
|
}
|
|
}
|