AxibugEmuOnline/AxibugEmuOnline.Client/Assets/MyNes.Core/WithExternalSoundAttribute.cs
2024-07-22 13:09:27 +08:00

13 lines
318 B
C#

using System;
using Unity.IL2CPP.CompilerServices;
namespace MyNes.Core
{
[Il2CppSetOption(Option.NullChecks, false)]
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
internal class WithExternalSoundAttribute : Attribute
{
}
}