mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 09:56:25 +00:00
35 lines
620 B
C#
35 lines
620 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using MonoMac.Foundation;
|
|
using MonoMac.AppKit;
|
|
|
|
namespace NBTExplorer.Mac
|
|
{
|
|
public partial class CreateNodeWindow : MonoMac.AppKit.NSWindow
|
|
{
|
|
#region Constructors
|
|
|
|
// Called when created from unmanaged code
|
|
public CreateNodeWindow (IntPtr handle) : base (handle)
|
|
{
|
|
Initialize ();
|
|
}
|
|
|
|
// Called when created directly from a XIB file
|
|
[Export ("initWithCoder:")]
|
|
public CreateNodeWindow (NSCoder coder) : base (coder)
|
|
{
|
|
Initialize ();
|
|
}
|
|
|
|
// Shared initialization code
|
|
void Initialize ()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|
|
|