Files
AR-Menu/Library/PackageCache/com.unity.cloud.ktx@77813424dbfd/Tests/Runtime/PlatformTest.cs
2025-11-30 08:35:03 +02:00

18 lines
368 B
C#

// SPDX-FileCopyrightText: 2024 Unity Technologies and the KTX for Unity authors
// SPDX-License-Identifier: Apache-2.0
using NUnit.Framework;
using UnityEngine;
namespace KtxUnity.Tests
{
class PlatformTest
{
[Test]
public void CertifySupportedPlatform()
{
KtxNativeInstance.CertifySupportedPlatform();
}
}
}