This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,18 @@
using System;
using Cpp2IlInjected;
namespace Unity.Collections
{
// Token: 0x02000025 RID: 37
[Token(Token = "0x2000025")]
public static class NativeSliceExtensions
{
// Token: 0x06000054 RID: 84 RVA: 0x00002280 File Offset: 0x00000480
[Token(Token = "0x6000054")]
[Address(RVA = "0x1E68660", Offset = "0x1E67460", VA = "0x181E68660")]
public static NativeSlice<T> Slice<T>(this NativeArray<T> thisArray, int start, int length) where T : struct
{
return default(NativeSlice<T>);
}
}
}