mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 13:20:54 +00:00
Initial commit of existing code.
* All renderdoc code up to this point was written by me, history is available by request
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace WeifenLuo.WinFormsUI.Docking
|
||||
{
|
||||
public class DockContentEventArgs : EventArgs
|
||||
{
|
||||
private IDockContent m_content;
|
||||
|
||||
public DockContentEventArgs(IDockContent content)
|
||||
{
|
||||
m_content = content;
|
||||
}
|
||||
|
||||
public IDockContent Content
|
||||
{
|
||||
get { return m_content; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user