mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-04 17:34:07 +02:00
15 lines
329 B
C#
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);
|
|
}
|
|
}
|
|
}
|