mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-03 05:34:07 +02:00
18 lines
394 B
C#
18 lines
394 B
C#
namespace TweetDick.Core.Handling{
|
|
class TweetDeckBridge{
|
|
private readonly FormBrowser form;
|
|
|
|
public TweetDeckBridge(FormBrowser form){
|
|
this.form = form;
|
|
}
|
|
|
|
public void OpenSettingsMenu(){
|
|
form.OpenSettings();
|
|
}
|
|
|
|
public void Log(string data){
|
|
System.Diagnostics.Debug.WriteLine(data);
|
|
}
|
|
}
|
|
}
|