1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-04 17:34:07 +02:00
TweetDuck/Core/TweetDeckBridge.cs

15 lines
329 B
C#

using System.Windows.Forms;
namespace TweetDick.Core{
class TweetDeckBridge{
private readonly FormBrowser form;
public TweetDeckBridge(FormBrowser form){
this.form = form;
}
public void Log(string data){
System.Diagnostics.Debug.WriteLine(data);
}
}
}