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