Skip to content

Commit 5e888c7

Browse files
committed
added asset store integration
1 parent 6484482 commit 5e888c7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using Sentry.Integrations;
2+
3+
namespace Sentry.Unity.Integrations;
4+
5+
public class SentryUnityAssetStoreIntegration : ISdkIntegration
6+
{
7+
public void Register(IHub hub, SentryOptions options)
8+
{
9+
if (options is SentryUnityOptions unityOptions)
10+
{
11+
unityOptions.SdkIntegrationNames.Add("IL2CPPLineNumbers");
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)