NBTExplorer/NBTExplorerMac/Mac/EditValue.cs

36 lines
599 B
C#
Raw Normal View History

2012-11-05 04:12:15 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using MonoMac.Foundation;
using MonoMac.AppKit;
namespace NBTExplorer.Mac
{
public partial class EditValue : MonoMac.AppKit.NSWindow
{
#region Constructors
// Called when created from unmanaged code
public EditValue (IntPtr handle) : base (handle)
{
Initialize ();
}
// Called when created directly from a XIB file
[Export ("initWithCoder:")]
public EditValue (NSCoder coder) : base (coder)
{
Initialize ();
}
// Shared initialization code
void Initialize ()
{
}
#endregion
}
}