@@ -64,33 +64,33 @@ namespace Plugin
64
64
int32_t (*SystemExceptionConstructorSystemString)(int32_t messageHandle);
65
65
int32_t (*BoxPrimitiveType)(UnityEngine::PrimitiveType val);
66
66
UnityEngine::PrimitiveType (*UnboxPrimitiveType)(int32_t valHandle);
67
- System::Single (*UnityEngineTimePropertyGetDeltaTime)();
67
+ float (*UnityEngineTimePropertyGetDeltaTime)();
68
68
void (*ReleaseBaseBallScript)(int32_t handle);
69
69
void (*BaseBallScriptConstructor)(int32_t cppHandle, int32_t * handle);
70
70
int32_t (*BoxBoolean)(uint32_t val);
71
71
int32_t (*UnboxBoolean)(int32_t valHandle);
72
72
int32_t (*BoxSByte)(int8_t val);
73
- System::SByte (*UnboxSByte)(int32_t valHandle);
73
+ int8_t (*UnboxSByte)(int32_t valHandle);
74
74
int32_t (*BoxByte)(uint8_t val);
75
- System::Byte (*UnboxByte)(int32_t valHandle);
75
+ uint8_t (*UnboxByte)(int32_t valHandle);
76
76
int32_t (*BoxInt16)(int16_t val);
77
- System::Int16 (*UnboxInt16)(int32_t valHandle);
77
+ int16_t (*UnboxInt16)(int32_t valHandle);
78
78
int32_t (*BoxUInt16)(uint16_t val);
79
- System::UInt16 (*UnboxUInt16)(int32_t valHandle);
79
+ uint16_t (*UnboxUInt16)(int32_t valHandle);
80
80
int32_t (*BoxInt32)(int32_t val);
81
- System::Int32 (*UnboxInt32)(int32_t valHandle);
81
+ int32_t (*UnboxInt32)(int32_t valHandle);
82
82
int32_t (*BoxUInt32)(uint32_t val);
83
- System::UInt32 (*UnboxUInt32)(int32_t valHandle);
83
+ uint32_t (*UnboxUInt32)(int32_t valHandle);
84
84
int32_t (*BoxInt64)(int64_t val);
85
- System::Int64 (*UnboxInt64)(int32_t valHandle);
85
+ int64_t (*UnboxInt64)(int32_t valHandle);
86
86
int32_t (*BoxUInt64)(uint64_t val);
87
- System::UInt64 (*UnboxUInt64)(int32_t valHandle);
87
+ uint64_t (*UnboxUInt64)(int32_t valHandle);
88
88
int32_t (*BoxChar)(uint16_t val);
89
89
int16_t (*UnboxChar)(int32_t valHandle);
90
90
int32_t (*BoxSingle)(float val);
91
- System::Single (*UnboxSingle)(int32_t valHandle);
91
+ float (*UnboxSingle)(int32_t valHandle);
92
92
int32_t (*BoxDouble)(double val);
93
- System::Double (*UnboxDouble)(int32_t valHandle);
93
+ double (*UnboxDouble)(int32_t valHandle);
94
94
/* END FUNCTION POINTERS*/
95
95
}
96
96
@@ -6209,7 +6209,7 @@ DLLEXPORT void Init(
6209
6209
curMemory += sizeof (Plugin::BoxPrimitiveType);
6210
6210
Plugin::UnboxPrimitiveType = *(UnityEngine::PrimitiveType (**)(int32_t valHandle))curMemory;
6211
6211
curMemory += sizeof (Plugin::UnboxPrimitiveType);
6212
- Plugin::UnityEngineTimePropertyGetDeltaTime = *(System::Single (**)())curMemory;
6212
+ Plugin::UnityEngineTimePropertyGetDeltaTime = *(float (**)())curMemory;
6213
6213
curMemory += sizeof (Plugin::UnityEngineTimePropertyGetDeltaTime);
6214
6214
Plugin::ReleaseBaseBallScript = *(void (**)(int32_t handle))curMemory;
6215
6215
curMemory += sizeof (Plugin::ReleaseBaseBallScript);
@@ -6221,47 +6221,47 @@ DLLEXPORT void Init(
6221
6221
curMemory += sizeof (Plugin::UnboxBoolean);
6222
6222
Plugin::BoxSByte = *(int32_t (**)(int8_t val))curMemory;
6223
6223
curMemory += sizeof (Plugin::BoxSByte);
6224
- Plugin::UnboxSByte = *(System::SByte (**)(int32_t valHandle))curMemory;
6224
+ Plugin::UnboxSByte = *(int8_t (**)(int32_t valHandle))curMemory;
6225
6225
curMemory += sizeof (Plugin::UnboxSByte);
6226
6226
Plugin::BoxByte = *(int32_t (**)(uint8_t val))curMemory;
6227
6227
curMemory += sizeof (Plugin::BoxByte);
6228
- Plugin::UnboxByte = *(System::Byte (**)(int32_t valHandle))curMemory;
6228
+ Plugin::UnboxByte = *(uint8_t (**)(int32_t valHandle))curMemory;
6229
6229
curMemory += sizeof (Plugin::UnboxByte);
6230
6230
Plugin::BoxInt16 = *(int32_t (**)(int16_t val))curMemory;
6231
6231
curMemory += sizeof (Plugin::BoxInt16);
6232
- Plugin::UnboxInt16 = *(System::Int16 (**)(int32_t valHandle))curMemory;
6232
+ Plugin::UnboxInt16 = *(int16_t (**)(int32_t valHandle))curMemory;
6233
6233
curMemory += sizeof (Plugin::UnboxInt16);
6234
6234
Plugin::BoxUInt16 = *(int32_t (**)(uint16_t val))curMemory;
6235
6235
curMemory += sizeof (Plugin::BoxUInt16);
6236
- Plugin::UnboxUInt16 = *(System::UInt16 (**)(int32_t valHandle))curMemory;
6236
+ Plugin::UnboxUInt16 = *(uint16_t (**)(int32_t valHandle))curMemory;
6237
6237
curMemory += sizeof (Plugin::UnboxUInt16);
6238
6238
Plugin::BoxInt32 = *(int32_t (**)(int32_t val))curMemory;
6239
6239
curMemory += sizeof (Plugin::BoxInt32);
6240
- Plugin::UnboxInt32 = *(System::Int32 (**)(int32_t valHandle))curMemory;
6240
+ Plugin::UnboxInt32 = *(int32_t (**)(int32_t valHandle))curMemory;
6241
6241
curMemory += sizeof (Plugin::UnboxInt32);
6242
6242
Plugin::BoxUInt32 = *(int32_t (**)(uint32_t val))curMemory;
6243
6243
curMemory += sizeof (Plugin::BoxUInt32);
6244
- Plugin::UnboxUInt32 = *(System::UInt32 (**)(int32_t valHandle))curMemory;
6244
+ Plugin::UnboxUInt32 = *(uint32_t (**)(int32_t valHandle))curMemory;
6245
6245
curMemory += sizeof (Plugin::UnboxUInt32);
6246
6246
Plugin::BoxInt64 = *(int32_t (**)(int64_t val))curMemory;
6247
6247
curMemory += sizeof (Plugin::BoxInt64);
6248
- Plugin::UnboxInt64 = *(System::Int64 (**)(int32_t valHandle))curMemory;
6248
+ Plugin::UnboxInt64 = *(int64_t (**)(int32_t valHandle))curMemory;
6249
6249
curMemory += sizeof (Plugin::UnboxInt64);
6250
6250
Plugin::BoxUInt64 = *(int32_t (**)(uint64_t val))curMemory;
6251
6251
curMemory += sizeof (Plugin::BoxUInt64);
6252
- Plugin::UnboxUInt64 = *(System::UInt64 (**)(int32_t valHandle))curMemory;
6252
+ Plugin::UnboxUInt64 = *(uint64_t (**)(int32_t valHandle))curMemory;
6253
6253
curMemory += sizeof (Plugin::UnboxUInt64);
6254
6254
Plugin::BoxChar = *(int32_t (**)(uint16_t val))curMemory;
6255
6255
curMemory += sizeof (Plugin::BoxChar);
6256
6256
Plugin::UnboxChar = *(int16_t (**)(int32_t valHandle))curMemory;
6257
6257
curMemory += sizeof (Plugin::UnboxChar);
6258
6258
Plugin::BoxSingle = *(int32_t (**)(float val))curMemory;
6259
6259
curMemory += sizeof (Plugin::BoxSingle);
6260
- Plugin::UnboxSingle = *(System::Single (**)(int32_t valHandle))curMemory;
6260
+ Plugin::UnboxSingle = *(float (**)(int32_t valHandle))curMemory;
6261
6261
curMemory += sizeof (Plugin::UnboxSingle);
6262
6262
Plugin::BoxDouble = *(int32_t (**)(double val))curMemory;
6263
6263
curMemory += sizeof (Plugin::BoxDouble);
6264
- Plugin::UnboxDouble = *(System::Double (**)(int32_t valHandle))curMemory;
6264
+ Plugin::UnboxDouble = *(double (**)(int32_t valHandle))curMemory;
6265
6265
curMemory += sizeof (Plugin::UnboxDouble);
6266
6266
/* END INIT BODY PARAMETER READS*/
6267
6267
0 commit comments