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
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@

namespace AppodealInc.Mediation.DependencyManager.Editor
{
internal class SdkCardShell : VisualElement
#if UNITY_6000_0_OR_NEWER
[UxmlElement]
#else
// ReSharper disable once PartialTypeWithSinglePart
#endif
internal partial class SdkCardShell : VisualElement
{
private const string CommonStyleSheetPath = "Appodeal/DependencyManager/SdkCards/SdkCardsCommon";

#pragma warning disable CS0618 // Type or member is obsolete
#if !UNITY_6000_0_OR_NEWER
public new class UxmlFactory : UxmlFactory<SdkCardShell> { }
#pragma warning restore CS0618 // Type or member is obsolete
#endif

public SdkCardShellView View { get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@

namespace AppodealInc.Mediation.DependencyManager.Editor
{
internal class SdkVersionDropdown : VisualElement, IDisposable
#if UNITY_6000_0_OR_NEWER
[UxmlElement]
#else
// ReSharper disable once PartialTypeWithSinglePart
#endif
internal partial class SdkVersionDropdown : VisualElement, IDisposable
{
#pragma warning disable CS0618 // Type or member is obsolete
#if !UNITY_6000_0_OR_NEWER
public new class UxmlFactory : UxmlFactory<SdkVersionDropdown> { }
#pragma warning restore CS0618 // Type or member is obsolete
#endif

private readonly DropdownButtonController _buttonController;
private readonly DropdownPopupController _popupController;
Expand Down