13 lines
318 B
C#
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
|
|
{
|
|
}
|
|
}
|