Skip to content

Commit

Permalink
syntax and name change
Browse files Browse the repository at this point in the history
  • Loading branch information
tj_devel709 committed Jun 24, 2021
1 parent 027710a commit fa9e0b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gamecontroller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2000,7 +2000,7 @@ enum GCInputDirectional {
delegate GCVirtualControllerElementConfiguration GCVirtualControllerElementUpdateBlock (GCVirtualControllerElementConfiguration configuration);

[NoTV, NoMac, NoWatch, iOS (15,0), MacCatalyst (15,0)]
[BaseType (typeof(NSObject))]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface GCVirtualController
{
Expand All @@ -2018,19 +2018,19 @@ interface GCVirtualController
GCController Controller { get; }

[Export ("changeElement:configuration:")]
void Change (string element, GCVirtualControllerElementUpdateBlock config);
void Change (string element, GCVirtualControllerElementUpdateBlock configuration);
}

[NoTV, NoMac, NoWatch, iOS (15,0), MacCatalyst (15,0)]
[BaseType (typeof(NSObject))]
[BaseType (typeof (NSObject))]
interface GCVirtualControllerConfiguration
{
[Export ("elements", ArgumentSemantic.Strong)]
NSSet<NSString> Elements { get; set; }
}

[NoTV, NoMac, NoWatch, iOS (15,0), MacCatalyst (15,0)]
[BaseType (typeof(NSObject))]
[BaseType (typeof (NSObject))]
interface GCVirtualControllerElementConfiguration
{
[Export ("hidden")]
Expand Down

0 comments on commit fa9e0b4

Please sign in to comment.