mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-28 17:34:06 +02:00
20 lines
431 B
C#
20 lines
431 B
C#
using System.Windows.Forms;
|
|
|
|
namespace TweetDick.Core.Handling{
|
|
class TweetDeckBridge{
|
|
private readonly FormBrowser form;
|
|
|
|
public TweetDeckBridge(FormBrowser form){
|
|
this.form = form;
|
|
}
|
|
|
|
public void OpenSettingsMenu(){
|
|
MessageBox.Show("Settings");
|
|
}
|
|
|
|
public void Log(string data){
|
|
System.Diagnostics.Debug.WriteLine(data);
|
|
}
|
|
}
|
|
}
|