少年修仙传客户端基础资源
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
36
37
#pragma once
 
#include <stdint.h>
#include "il2cpp-config.h"
 
struct Il2CppString;
struct mscorlib_System_Decimal;
 
namespace il2cpp
{
namespace icalls
{
namespace mscorlib
{
namespace System
{
    class LIBIL2CPP_CODEGEN_API Decimal
    {
    public:
        static double ToDouble(Il2CppDecimal d);
        static int32_t FCallCompare(Il2CppDecimal* left, Il2CppDecimal* right);
        static int32_t FCallToInt32(Il2CppDecimal d);
        static int32_t GetHashCode(Il2CppDecimal* _this);
        static float ToSingle(Il2CppDecimal d);
        static void ConstructorDouble(Il2CppDecimal* _this, double value);
        static void ConstructorFloat(Il2CppDecimal* _this, float value);
        static void FCallAddSub(Il2CppDecimal* left, Il2CppDecimal* right, uint8_t sign);
        static void FCallDivide(Il2CppDecimal* left, Il2CppDecimal* right);
        static void FCallFloor(Il2CppDecimal* d);
        static void FCallMultiply(Il2CppDecimal* d1, Il2CppDecimal* d2);
        static void FCallRound(Il2CppDecimal* d, int32_t decimals);
        static void FCallTruncate(Il2CppDecimal* d);
    };
} /* namespace System */
} /* namespace mscorlib */
} /* namespace icalls */
} /* namespace il2cpp */