Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions src/symbols.cs
Original file line number Diff line number Diff line change
Expand Up @@ -379,4 +379,46 @@ interface NSSymbolBreatheEffect {
[DisableDefaultCtor]
interface NSSymbolMagicReplaceContentTransition {
}

[MacCatalyst (26, 0), TV (26, 0), Mac (26, 0), iOS (26, 0)]
[BaseType (typeof (NSSymbolEffect))]
[DisableDefaultCtor]
interface NSSymbolDrawOnEffect {
[Static]
[Export ("effect")]
NSSymbolDrawOnEffect Create ();

[Export ("effectWithByLayer")]
NSSymbolDrawOnEffect CreateWithByLayer ();

[Export ("effectWithWholeSymbol")]
NSSymbolDrawOnEffect CreateWithWholeSymbol ();

[Export ("effectWithIndividually")]
NSSymbolDrawOnEffect CreateWithIndividually ();
}

[MacCatalyst (26, 0), TV (26, 0), Mac (26, 0), iOS (26, 0)]
[BaseType (typeof (NSSymbolEffect))]
[DisableDefaultCtor]
interface NSSymbolDrawOffEffect {
[Static]
[Export ("effect")]
NSSymbolDrawOffEffect Create ();

[Export ("effectWithByLayer")]
NSSymbolDrawOffEffect CreateWithByLayer ();

[Export ("effectWithWholeSymbol")]
NSSymbolDrawOffEffect CreateWithWholeSymbol ();

[Export ("effectWithIndividually")]
NSSymbolDrawOffEffect CreateWithIndividually ();

[Export ("effectWithReversed")]
NSSymbolDrawOffEffect CreateWithReversed ();

[Export ("effectWithNonReversed")]
NSSymbolDrawOffEffect CreateWithNonReversed ();
}
}
12 changes: 0 additions & 12 deletions tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-Symbols.todo

This file was deleted.

12 changes: 0 additions & 12 deletions tests/xtro-sharpie/api-annotations-dotnet/iOS-Symbols.todo

This file was deleted.

12 changes: 0 additions & 12 deletions tests/xtro-sharpie/api-annotations-dotnet/macOS-Symbols.todo

This file was deleted.

12 changes: 0 additions & 12 deletions tests/xtro-sharpie/api-annotations-dotnet/tvOS-Symbols.todo

This file was deleted.

Loading