mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-25 08:19:46 -04:00
34 lines
695 B
C#
34 lines
695 B
C#
using AppKit;
|
|
using Foundation;
|
|
using System;
|
|
|
|
namespace WowUp.Mac
|
|
{
|
|
public partial class ViewController : NSViewController
|
|
{
|
|
public ViewController(IntPtr handle) : base(handle)
|
|
{
|
|
}
|
|
|
|
public override void ViewDidLoad()
|
|
{
|
|
base.ViewDidLoad();
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
public override NSObject RepresentedObject
|
|
{
|
|
get
|
|
{
|
|
return base.RepresentedObject;
|
|
}
|
|
set
|
|
{
|
|
base.RepresentedObject = value;
|
|
// Update the view, if already loaded.
|
|
}
|
|
}
|
|
}
|
|
}
|