少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once
 
#include <stdint.h>
#include "il2cpp-config.h"
struct Il2CppArray;
struct Il2CppReflectionType;
struct Il2CppObject;
 
namespace il2cpp
{
namespace icalls
{
namespace mscorlib
{
namespace System
{
    class LIBIL2CPP_CODEGEN_API Array
    {
    public:
        static void ClearInternal(Il2CppArray* arr, int32_t idx, int32_t length);
        static Il2CppArray* Clone(Il2CppArray* arr);
        static Il2CppArray* CreateInstanceImpl(Il2CppReflectionType* elementType, Il2CppArray* lengths, Il2CppArray* bounds);
        static bool FastCopy(Il2CppArray* source, int32_t source_idx, Il2CppArray* dest, int32_t dest_idx, int32_t length);
        static int32_t GetLength(Il2CppArray* thisPtr, int dimension);
        static int32_t GetLowerBound(Il2CppArray* , int32_t);
        static Il2CppObject* GetValue(Il2CppArray* thisPtr, Il2CppArray* indices);
        static Il2CppObject* GetValueImpl(Il2CppArray* thisPtr, int32_t pos);
        static void SetValue(Il2CppArray* , Il2CppObject* , Il2CppArray*);
        static void SetValueImpl(Il2CppArray* thisPtr, Il2CppObject* value, int index);
        static int GetRank(Il2CppArray* array);
    };
} /* namespace System */
} /* namespace mscorlib */
} /* namespace icalls */
} /* namespace il2cpp */