NBTExplorer/Mac/CreateNodeWindow.cs

36 lines
620 B
C#
Raw Permalink Normal View History

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
}
}