xenia/src/Xenia.Debug.UI/Controls/BasePanel.cs

19 lines
405 B
C#
Raw Normal View History

2015-05-03 19:25:16 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
2015-05-22 23:58:56 +02:00
using WeifenLuo.WinFormsUI.Docking;
2015-05-03 19:25:16 +02:00
2015-05-22 23:58:56 +02:00
namespace Xenia.Debug.UI.Controls {
public partial class BasePanel : DockContent {
public BasePanel() {
InitializeComponent();
2015-05-03 19:25:16 +02:00
}
}
2015-05-03 19:25:16 +02:00
}