mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-11-24 22:42:50 +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);
|
|
}
|
|
}
|