File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 842
842
<type fullname =" Mono.RuntimeStructs/HandleStackMark" />
843
843
<!-- marshal.c (mono_marshal_get_native_wrapper) -->
844
844
<type fullname =" Mono.RuntimeStructs/MonoError" />
845
+
846
+ <!-- IL2CPP enum sharing -->
847
+ <type fullname =" System.SByteEnum" />
848
+ <type fullname =" System.Int16Enum" />
849
+ <type fullname =" System.Int32Enum" />
850
+ <type fullname =" System.Int64Enum" />
851
+
852
+ <type fullname =" System.ByteEnum" />
853
+ <type fullname =" System.UInt16Enum" />
854
+ <type fullname =" System.UInt32Enum" />
855
+ <type fullname =" System.UInt64Enum" />
845
856
</assembly >
846
857
</linker >
Original file line number Diff line number Diff line change
1
+ using System ;
2
+
3
+ #if UNITY_AOT
4
+
5
+ namespace System
6
+ {
7
+ enum SByteEnum : sbyte { }
8
+ enum Int16Enum : short { }
9
+ enum Int32Enum : int { }
10
+ enum Int64Enum : long { }
11
+
12
+ enum ByteEnum : byte { }
13
+ enum UInt16Enum : ushort { }
14
+ enum UInt32Enum : uint { }
15
+ enum UInt64Enum : ulong { }
16
+ }
17
+
18
+ #endif
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ System/Delegate.cs
104
104
System/DelegateSerializationHolder.cs
105
105
System/DomainManagerInitializationFlags.cs
106
106
System/EmptyArray.cs
107
+ System/EnumSharing.cs
107
108
System/Environment.cs
108
109
System/EnvironmentVariableTarget.cs
109
110
System/Guid.cs
You can’t perform that action at this time.
0 commit comments