Skip to content

Instantly share code, notes, and snippets.

@rolfbjarne
Created February 22, 2017 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rolfbjarne/194849f75ce19c64afb1a9ac1ad1fa33 to your computer and use it in GitHub Desktop.
Save rolfbjarne/194849f75ce19c64afb1a9ac1ad1fa33 to your computer and use it in GitHub Desktop.
//
// Auto-generated from generator.cs, do not edit
//
// We keep references to objects, so warning 414 is expected
#pragma warning disable 414
using System;
using System.Drawing;
using System.Diagnostics;
using System.ComponentModel;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using UIKit;
using GLKit;
using Metal;
using MapKit;
using ModelIO;
using SceneKit;
using Security;
using AudioUnit;
using CoreVideo;
using CoreMedia;
using QuickLook;
using Foundation;
using CoreMotion;
using ObjCRuntime;
using AddressBook;
using CoreGraphics;
using CoreLocation;
using AVFoundation;
using NewsstandKit;
using CoreAnimation;
using CoreFoundation;
namespace X {
[Protocol (Name = "C15", WrapperType = typeof (C15Wrapper))]
public interface IC15 : INativeObject, IDisposable,
SpriteKit.ISKWarpable
{
}
internal sealed class C15Wrapper : BaseWrapper, IC15 {
[Preserve (Conditional = true)]
public C15Wrapper (IntPtr handle, bool owns)
: base (handle, owns)
{
}
[CompilerGenerated]
[Introduced (PlatformName.WatchOS, 3,0)]
[Introduced (PlatformName.iOS, 10,0)]
[Introduced (PlatformName.MacOSX, 10,12, PlatformArchitecture.Arch64)]
[Introduced (PlatformName.TvOS, 10,0)]
[Preserve (Conditional = true)]
public SKWarpGeometry WarpGeometry {
[Export ("warpGeometry", ArgumentSemantic.UnsafeUnretained)]
get {
return Runtime.GetNSObject<SKWarpGeometry> (global::t.Messaging.IntPtr_objc_msgSend (this.Handle, Selector.GetHandle ("warpGeometry")));
}
[Export ("setWarpGeometry:", ArgumentSemantic.UnsafeUnretained)]
set {
if (value == null)
throw new ArgumentNullException ("value");
global::t.Messaging.void_objc_msgSend_IntPtr (this.Handle, Selector.GetHandle ("setWarpGeometry:"), value.Handle);
}
}
[CompilerGenerated]
[Introduced (PlatformName.WatchOS, 3,0)]
[Introduced (PlatformName.iOS, 10,0)]
[Introduced (PlatformName.MacOSX, 10,12, PlatformArchitecture.Arch64)]
[Introduced (PlatformName.TvOS, 10,0)]
[Preserve (Conditional = true)]
public global::System.nint SubdivisionLevels {
[Export ("subdivisionLevels")]
get {
return global::t.Messaging.nint_objc_msgSend (this.Handle, Selector.GetHandle ("subdivisionLevels"));
}
[Export ("setSubdivisionLevels:")]
set {
global::t.Messaging.void_objc_msgSend_nint (this.Handle, Selector.GetHandle ("setSubdivisionLevels:"), value);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment