mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-25 00:36:26 +00:00
17 lines
311 B
C#
17 lines
311 B
C#
|
|
namespace Test
|
|
{
|
|
|
|
// Should subclass MonoMac.AppKit.NSWindow
|
|
[MonoMac.Foundation.Register("MainWindow")]
|
|
public partial class MainWindow
|
|
{
|
|
}
|
|
|
|
// Should subclass MonoMac.AppKit.NSWindowController
|
|
[MonoMac.Foundation.Register("MainWindowController")]
|
|
public partial class MainWindowController
|
|
{
|
|
}
|
|
}
|
|
|