mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-17 17:34:36 +08:00
fix
This commit is contained in:
parent
a5aadb7666
commit
afbc2fcaac
@ -81,14 +81,14 @@
|
|||||||
namespace Unity.IL2CPP.CompilerServices
|
namespace Unity.IL2CPP.CompilerServices
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
public enum Option
|
internal enum Option
|
||||||
{
|
{
|
||||||
NullChecks = 1,
|
NullChecks = 1,
|
||||||
ArrayBoundsChecks = 2,
|
ArrayBoundsChecks = 2,
|
||||||
DivideByZeroChecks = 3,
|
DivideByZeroChecks = 3,
|
||||||
}
|
}
|
||||||
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Struct | AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Delegate, Inherited = false, AllowMultiple = true)]
|
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Struct | AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Delegate, Inherited = false, AllowMultiple = true)]
|
||||||
public class Il2CppSetOptionAttribute : Attribute
|
internal class Il2CppSetOptionAttribute : Attribute
|
||||||
{
|
{
|
||||||
public Option Option { get; private set; }
|
public Option Option { get; private set; }
|
||||||
public object Value { get; private set; }
|
public object Value { get; private set; }
|
||||||
|
Loading…
Reference in New Issue
Block a user