SquareDash/Library/PackageCache/com.unity.services.mediation@1.0.5/Editor/Settings/Adapters/GenericAdapterSettings.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

13 lines
333 B
C#

namespace Unity.Services.Mediation.Settings.Editor
{
class GenericAdapterSettings : BaseAdapterSettings
{
public GenericAdapterSettings(string adapterId, bool enabled = false) : base(adapterId, enabled)
{
AdapterId = adapterId;
}
public override string AdapterId { get; }
}
}