13 строки
347 B
C#
13 строки
347 B
C#
using Xamarin.Interactive;
|
|
|
|
[assembly: AgentIntegration (typeof (SkiaSharp.Workbooks.SkiaWorkbooksIntegration))]
|
|
|
|
namespace SkiaSharp.Workbooks
|
|
{
|
|
sealed class SkiaWorkbooksIntegration : IAgentIntegration
|
|
{
|
|
public void IntegrateWith (IAgent agent)
|
|
=> agent.RepresentationManager.AddProvider (new SkiaSharpRepresentationProvider ());
|
|
}
|
|
}
|