12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using MonoMac.Foundation;
- using MonoMac.AppKit;
- namespace BlackJack.MacOS
- {
- public partial class MainWindow : MonoMac.AppKit.NSWindow
- {
- #region Constructors
-
- // Called when created from unmanaged code
- public MainWindow (IntPtr handle) : base (handle)
- {
- Initialize ();
- }
-
- // Called when created directly from a XIB file
- [Export ("initWithCoder:")]
- public MainWindow (NSCoder coder) : base (coder)
- {
- Initialize ();
- }
-
- // Shared initialization code
- void Initialize ()
- {
- }
-
- #endregion
- }
- }
|