1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.ComponentModel; |
4 |
using System.Data; |
5 |
using System.Drawing; |
6 |
using System.Linq; |
7 |
using System.Text; |
8 |
using System.Windows.Forms; |
9 |
using WeifenLuo.WinFormsUI.Docking; |
10 |
using RomCheater.Logging; |
11 |
|
12 |
namespace RomCheater.Docking |
13 |
{ |
14 |
public partial class FloatingLogWindow : DockContent |
15 |
{ |
16 |
public FloatingLogWindow() |
17 |
{ |
18 |
InitializeComponent(); |
19 |
} |
20 |
|
21 |
public LogWriter Logwriter |
22 |
{ |
23 |
get { return logwriter; } |
24 |
} |
25 |
} |
26 |
} |