mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-18 14:34:09 +02:00
10 lines
267 B
C#
10 lines
267 B
C#
using System;
|
|
using TweetLib.Core.Features.Plugins.Events;
|
|
|
|
namespace TweetLib.Core.Features.Plugins{
|
|
public interface IPluginDispatcher{
|
|
event EventHandler<PluginDispatchEventArgs> Ready;
|
|
void AttachBridge(string name, object bridge);
|
|
}
|
|
}
|