blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
โŒ€
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
โŒ€
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
โŒ€
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
46254afdd7ec6ec019316ab7962fc4ac973f11d4
b9d222a03a3362ec9a231aaebf303c6bc0a1c864
/C็ปๅ…ธ100้ข˜/45/45/45.cpp
0409b9412da7c2babad233fcc7f42133997d8031
[]
no_license
2736661257/C-language-demo.com
625a078f328eedb4b71ad28deda6eb4acfaeaced
0f06a24b130062c865505805e2b2ec305e438e55
refs/heads/master
2022-11-07T19:10:56.534972
2020-06-19T09:17:17
2020-06-19T09:17:17
273,175,618
0
0
null
null
null
null
UTF-8
C++
false
false
153
cpp
45.cpp
#include<stdio.h> void main() { register int i; int tmp = 0; for (i = 1; i <= 100; i++) { tmp += i; } printf("the sum is %d\n", tmp); }
ac47ef5e4c41f6fbc8cc2ac2b30d69369e3c65af
297089926a913d8709be5aaa8515737030373d33
/android/sdk/src/main/jni/include/jni/jni_utils.h
6163444b15dd7685dc68ea80ab348fa846cc872f
[ "Apache-2.0", "MIT" ]
permissive
peterchenlc/Hippy
bdcc4ef4900fb21ee1de47249be150e2c2549c74
b04f4f34e2daa89ae82794e9031ee9c5d121dc73
refs/heads/master
2023-06-02T22:10:41.266225
2021-05-10T12:13:24
2021-05-10T12:13:24
330,980,993
0
0
Apache-2.0
2021-01-19T13:01:10
2021-01-19T13:01:08
null
UTF-8
C++
false
false
1,752
h
jni_utils.h
/* * * Tencent is pleased to support the open source community by making * Hippy available. * * Copyright (C) 2019 THL A29 Limited, a Tencent company. * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ #pragma once #include <jni.h> #include "v8/v8.h" struct HippyBuffer; class JniUtils { public: JniUtils() = default; ~JniUtils() = default; public: static std::string AppendJavaByteArrayToString(JNIEnv* env, jbyteArray byte_array, jsize j_offset = 0); static std::string AppendJavaByteArrayToString(JNIEnv* env, jbyteArray byte_array, jsize j_offset, jsize j_length); static std::string CovertJavaStringToString(JNIEnv* env, jstring str); static HippyBuffer* WriteToBuffer(v8::Isolate* isolate, v8::Local<v8::Object> value); static inline const char* ToCString(const v8::String::Utf8Value& value) { return *value ? *value : "<string conversion failed>"; } static void printCurrentThreadID(); };
1e945f8ad71aeb477f612332f60006602e1fbca5
bd01f7cd8404406e01717dd00e71569978fdbd9c
/AGain/AGain.cpp
77ce49c01de86c43ea2cde099ce8e92d01ec5be2
[]
no_license
JeffMcClintock/SynthEdit_SDK
d22174bc891e6f6b4ee45f6f9401f3eed0f91c4c
3a6432983b062642ec97c43fa6860001b7adac11
refs/heads/master
2023-04-14T00:02:36.263255
2023-04-10T01:02:19
2023-04-10T01:07:43
165,553,934
8
1
null
null
null
null
UTF-8
C++
false
false
1,004
cpp
AGain.cpp
#include "mp_sdk_audio.h" using namespace gmpi; using namespace GmpiSdk; class AGain final : public MpBase2 { AudioInPin pinInput1; AudioInPin pinInput2; AudioOutPin pinOutput1; AudioOutPin pinOutput2; FloatInPin pinGain; public: AGain() { initializePin(pinInput1); initializePin(pinInput2); initializePin(pinOutput1); initializePin(pinOutput2); initializePin(pinGain); } void subProcess(int sampleFrames) { // get parameter value. const float gain = pinGain; // get pointers to in/output buffers. auto input1 = getBuffer(pinInput1); auto input2 = getBuffer(pinInput2); auto output1 = getBuffer(pinOutput1); auto output2 = getBuffer(pinOutput2); // Apply audio processing. while( --sampleFrames >= 0 ) { *output1++ = gain * *input1++; *output2++ = gain * *input2++; } } void onSetPins() override { // Specify which function is used to process audio. setSubProcess(&AGain::subProcess); } }; namespace { auto r = Register<AGain>::withId(L"JM Gain"); }
46f1150df7cbd4a50aedd91c5b0aa9e9ea6b10f3
16ea0b735123e5f14fd6aa54ef49837a6988f534
/c++/test7/ThreadClass.h
8b45a16049a3d2643ccfdf058ace78a0225cb0c4
[]
no_license
Ron2014/issue-test
9d661541218487b9abaf478871725895293a2c30
2e2b8be62777eff888b731c3fc1d4859e68e5e3a
refs/heads/master
2023-05-30T05:20:43.322827
2023-05-17T05:03:21
2023-05-17T05:03:21
227,989,172
0
0
null
null
null
null
UTF-8
C++
false
false
225
h
ThreadClass.h
#include <iostream> #include <thread> using namespace std; class ThreadClass { thread m_thread; public: ThreadClass(); ~ThreadClass(); void Start(); static void ThreadMain(ThreadClass*); };
23f602686d2f51753533b0e29f8c3e8f269cdd7e
380f9b159c7a0c9b00b178055c39147ec55c4a1b
/Project/States.h
9f7ab7e16edfd34d6cef58334026cb94ed57abb0
[]
no_license
hotdogu/GAME1017_A2_ProctorAshley
40f7b7fe8b1e83d52f7cf76403b1dac3d8e39e09
f64ce7ac452af779e585c57debd54636f09aa19d
refs/heads/main
2023-07-11T09:07:32.268233
2021-08-10T02:33:44
2021-08-10T02:33:44
394,502,212
0
0
null
null
null
null
UTF-8
C++
false
false
3,770
h
States.h
#pragma once #include <SDL.h> #include "Sprites.h" #include "PlayButton.h" class State { public: virtual void Enter() = 0; virtual void Update(float deltaTime); virtual void Render() = 0; virtual void Exit() = 0; virtual void Pause() { } virtual void Resume() { } }; class TitleState : public State { public: virtual void Enter() override; virtual void Update(float deltaTime) override; virtual void Render() override; virtual void Exit() override; SDL_Texture* m_pBGText; // For the bg. SDL_Texture* m_pPlayText; // For the play button PlayButton* playButton; }; class GameState : public State { public: static const int kWidth = 1880; //Take these out static const int kHeight = 950; static const int kPlayerSpeed = 400; private: static const int kPlayerSourceXPosition = 0; static const int kPlayerSourceYPosition = 0; static const int kPlayerWidth = 94; static const int kPlayerHeight = 100; static const int kEnemySourceXPosition = 0; static const int kEnemySourceYPosition = 100; static const int kEnemyWidth = 40; static const int kEnemyHeight = 46; // BG Stuff static const int kBackgroundScrollSpeed = 30; static const int kBackgroundScrollSpeed2 = 70; static const int kBackgroundScrollSpeed3 = 0; static const int kBackgroundScrollSpeed4 = 100; static const int kNumberOfBackgrounds = 2; // These three flags check if we need to clear the respective vectors of nullptrs. bool m_shouldClearEnemies; bool m_shouldClearPlayerBullets; bool m_shouldClearEnemyBullets; bool m_canShoot; // This restricts the player from firing again unless they release the Spacebar. SDL_Texture* m_pBGText; // For the bg. Sprite m_bgArray[kNumberOfBackgrounds]; SDL_Texture* m_pBGText2; // For the bg2. Sprite m_bgArray2[kNumberOfBackgrounds]; SDL_Texture* m_pBGText3; // For the bg3. Sprite m_bgArray3[kNumberOfBackgrounds]; SDL_Texture* m_pBGText4; // For the bg4. Sprite m_bgArray4[kNumberOfBackgrounds]; SDL_Texture* m_pBGText5; // For the bg5. Sprite m_bgArray5[kNumberOfBackgrounds]; SDL_Texture* m_pBGText6; // For the bg6. Sprite m_bgArray6[kNumberOfBackgrounds]; SDL_Texture* m_pSpriteTexture; // For the sprites. Player* m_pPlayer; // The enemy spawn frame timer properties. float m_enemySpawnTime; float m_enemySpawnMaxTime; SDL_FPoint m_pivot; Mix_Music* m_pMusic; std::vector<Mix_Chunk*> m_sounds; std::vector<Enemy*> m_enemies; std::vector<Bullet*> m_playerBullets; std::vector<Bullet*> m_enemyBullets; public: virtual void Enter() override; virtual void Update(float deltaTime) override; virtual void Render() override; virtual void Exit() override; virtual void Pause() override; virtual void Resume() override; void CheckCollision(); bool dying = false; float dyingTimer = 0.0f; float maxDie = 1.0f; void DiePause(float deltaTime); }; class PauseState : public State { public: virtual void Enter() override; virtual void Update(float deltaTime) override; virtual void Render() override; virtual void Exit() override; SDL_Texture* m_pPText; // For the resume butt PButton* pButton; SDL_Texture* m_pMMText; // For the main menu button MMButton* mmButton; SDL_Texture* m_pBGText; }; class LoseState : public State { public: virtual void Enter() override; virtual void Update(float deltaTime) override; virtual void Render() override; virtual void Exit() override; SDL_Texture* m_pMMText; // For the main menu button MMButton* mmButton; SDL_Texture* m_pBGText; }; class WinState : public State { public: virtual void Enter() override; virtual void Update(float deltaTime) override; virtual void Render() override; virtual void Exit() override; SDL_Texture* m_pMMText; // For the main menu button MMButton* mmButton; SDL_Texture* m_pBGText; };
648144bbaf3cf6af222dad6e44bcbfcd0c6e7b1d
60febbdf0bb74f800b48d5efd0de73bdd264ddfa
/lib/XBeeLib/Frames/ApiFrame.h
8e0e67633e138f424afcf2749b27b467bbfb3eda
[ "MIT" ]
permissive
PEQUI-MEC/VSSS-Robot
5291514b08c3d324cba4b3a93e658d7a48fb6b93
7489e1ffaa850403983bfdf4c8cb773c73b06c11
refs/heads/master
2022-11-05T06:23:23.410894
2018-06-05T11:30:48
2018-06-05T11:30:48
124,314,089
4
1
null
null
null
null
UTF-8
C++
false
false
6,753
h
ApiFrame.h
/** * Copyright (c) 2015 Digi International Inc., * All rights not expressly granted are reserved. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. * * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343 * ======================================================================= */ #if !defined(__API_FRAME_H_) #define __API_FRAME_H_ #include "XBee/Addresses.h" /** Class for XBee API frames */ class ApiFrame { /** Static variable that contains the last frame ID value assigned */ static uint8_t last_frame_id; public: /** List of API frames. Note that not all frames are supported by all radios */ enum ApiFrameType { TxReq64Bit = 0x00, /**< TxReq64Bit: Only for 802.15.4 modules */ TxReq16Bit = 0x01, /**< TxReq16Bit: Only for 802.15.4 modules */ AtCmd = 0x08, /**< AtCmd */ AtCmdQueuePV = 0x09, /**< AtCmdQueuePV */ TxReqZBDM = 0x10, /**< TxReqZBDM: Only for ZigBee and DigiMesh modules */ ExpAddrCmd = 0x11, /**< ExpAddrCmd: Only for ZigBee modules and DigiMesh */ RemoteCmdReq = 0x17, /**< RemoteCmdReq */ CreateSrcRoute = 0x21, /**< CreateSrcRoute */ RxPacket64Bit = 0x80, /**< RxPacket64Bit: Only for 802.15.4 modules */ RxPacket16Bit = 0x81, /**< RxPacket16Bit: Only for 802.15.4 modules */ Io64Bit = 0x82, /**< Io64Bit: Only for 802.15.4 modules */ Io16Bit = 0x83, /**< Io16Bit */ AtCmdResp = 0x88, /**< AtCmdResp */ TxStatus = 0x89, /**< TxStatus */ AtModemStatus = 0x8A, /**< AtModemStatus */ TxStatusZBDM = 0x8B, /**< TxStatusZBDM: Only for ZigBee and DigiMesh modules */ RouteInfo = 0x8D, /**< RouteInfo: Only for DigiMesh modules */ AggregateAddr = 0x8E, /**< AggregateAddr: Only for DigiMesh modules */ RxPacketAO0 = 0x90, /**< RxPacketAO0: Only for ZigBee and DigiMesh modules */ RxPacketAO1 = 0x91, /**< RxPacketAO1: Only for ZigBee and DigiMesh modules */ IoSampleRxZBDM = 0x92, /**< IoSampleRxZBDM: Only for ZigBee and DigiMesh modules */ SensorRxIndAO0 = 0x94, /**< SensorRxIndAO0: Only for ZigBee modules */ NodeIdentIndAO0 = 0x95, /**< NodeIdentIndAO0: Only for ZigBee and DigiMesh modules */ RemoteCmdResp = 0x97, /**< RemoteCmdResp */ OtaFwUpStatus = 0xA0, /**< OtaFwUpStatus */ RouteRecInd = 0xA1, /**< RouteRecInd */ Many2OneRRInd = 0xA3, /**< Many2OneRRInd */ Invalid = ~0, /**< Invalid */ }; /** Default constructor */ ApiFrame(); /** Constructor * * @param len length of the API frame (will allocate len bytes). */ ApiFrame(uint16_t len); /** Constructor * * @param type frame type of this api frame. * @param data pointer to frame data payload. * @param len length of the payload. */ ApiFrame(ApiFrameType type, const uint8_t *data, uint16_t len); /** Destructor */ ~ApiFrame(); ApiFrame(const ApiFrame& other); /* Intentionally not implemented */ /** get_frame_type gets the type of the frame * * @returns the type of this frame. */ ApiFrameType get_frame_type() const; /** dump dumps the information of this frame */ void dump() const; /** dump_if dumps the information of the frame if the frame type matches * with the parameter. * * @param type dump the frame info/data if the frame type matches with type. */ void dump_if(ApiFrameType type); /** set_frame_type sets the type of the frame to type. * * @param type the type we want to set on the frame. */ void set_frame_type(ApiFrameType type); /** get_data_len gets the length of the frame data payload. * * @returns the length of the data payload. */ uint16_t get_data_len() const; /** set_data_len sets the length of the frame data payload. * * @param len the length of the data payload will be set on this frame. */ void set_data_len(uint16_t len); /** get_data returns a pointer to the frame data payload. * * @returns a pointer to the frame data payload. */ const uint8_t *get_data() const; /** get_data_at returns the byte at index offset. * * @param index offset of the byte we want to get. * @returns the byte at index offset. */ uint8_t get_data_at(uint16_t index) const; /** set_data sets data byte at the specified index or offset. * * @param data byte that will be set at index position. * @param index offset of the byte we want to set. */ void set_data(uint8_t data, uint16_t index); /** get_frame_id returns the frame id of this frame. * * @returns the frame id of this frame. */ uint8_t get_frame_id() const; static uint8_t get_current_frame_id() { return last_frame_id; } protected: /** Type of this frame */ ApiFrameType _type; /** length of the payload, excluding the frame type */ uint16_t _data_frame_len; /** pointer to the frame data */ uint8_t *_data; /** True if the constructor allocates the data. Needed to delete it on the destructor */ bool _alloc_data; /** Frame ID of this frame */ uint8_t _frame_id; /** get_next_frame_id - returns the next frame ID secuentially, skipping the value 0 * * @returns the next frame ID that should be assigned to a frame */ uint8_t get_next_frame_id(); /** set_api_frame sets several members * * @param type frame type of this api frame. * @param data pointer to frame data payload. * @param len length of the payload. */ void set_api_frame(ApiFrameType type, const uint8_t *data, uint16_t len); }; #endif /* __API_FRAME_H_ */
058b03167b8398585ca1137d2f66c77552926cdc
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/squid/gumtree/squid_repos_function_5942_last_repos.cpp
8a82d2f3a8a1d0927668d272f6641611936940a8
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
83
cpp
squid_repos_function_5942_last_repos.cpp
void Auth::Digest::User::addToNameCache() { Cache()->insert(userKey(), this); }
2e8c22bfae64456ad40850a64861e94fdc084402
b1bcae7f29832021e95bc261f1b9cf3a585d0f66
/CodeBlocks/ACM/Facebook HackerCup/SquareDetectorQualify1.cpp
ba31f6d355c8749e3878d1597f265c8eecb8f4b8
[]
no_license
ABHINAVKR/ACM
9ec9427d94dab001b35b4300101ef36f1631ec9d
ed8877fe0bd57f0c48f19a375b7b3a19a782b1c7
refs/heads/master
2021-05-01T10:18:22.763203
2014-08-21T17:12:44
2014-08-21T17:12:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,397
cpp
SquareDetectorQualify1.cpp
#include <stdio.h> #include <string.h> #include <math.h> using namespace std; char grid[100][100]; int main(){ freopen("sq.in", "r", stdin); freopen("sq.out", "w", stdout); int t, n, i,j,k, startx, starty, endx, endy, w, kase=1, f; scanf("%d", &t); while(t--){ scanf("%d", &n); startx=-1; for(i=0; i<n; i++) { scanf("%s", grid[i]); if(startx==-1) for(j=0; j<n; j++) if(grid[i][j]=='#') { startx=i, starty=j; break; } } if(startx==-1) { printf("Case #%d: NO\n", kase++); continue; } endx=-1; for(i=n-1; i>=0; i--) { for(j=n-1; j>=0; j--) if(grid[i][j]=='#') { endx=i, endy=j; break;} if(endx!=-1) break; } f=0; if(endy-starty!=endx-startx) f=1; if(!f) for(i=0; i<startx; i++) for(j=0; j<n; j++) if(grid[i][j]=='#') { f=1; break;} if(!f) for(i=endx+1; i<n; i++) for(j=0; j<n; j++) if(grid[i][j]=='#') { f=1; break;} if(!f) for(i=0; i<n; i++) for(j=0; j<starty; j++) if(grid[i][j]=='#') { f=1; break;} if(!f) for(i=0; i<n; i++) for(j=endy+1; j<n; j++) if(grid[i][j]=='#') { f=1; break;} if(!f) for(i=startx; i<=endx; i++) for(j=starty; j<=endy; j++) if(grid[i][j]=='.') { f=1; break;} if(f) printf("Case #%d: NO\n", kase++); else printf("Case #%d: YES\n", kase++); } return 0; }
32b89fc7bf21e89c00c371af7623d1b6528439ed
b84d7b32f512cece9d7af3b7f090630425d04bde
/source/22.cpp
5b54104a94d02187fb850dc83bb14bdd0a894529
[]
no_license
banjowabble/BT01
42f553e5f0cf59ef85a381be1462642fcb524af1
23d460e3b615c416515364097e829e40692c9a9f
refs/heads/main
2023-03-10T09:22:06.344034
2021-02-24T10:10:47
2021-02-24T10:10:47
335,365,823
0
0
null
null
null
null
UTF-8
C++
false
false
205
cpp
22.cpp
#include <iostream> using namespace std; int main () { double mass, height; cin >> mass >> height; double bmi_index = mass / (height * height); cout << bmi_index; return 0; }
280fe691f7a22a0822f29f2f591f5bd58662ca56
a3ebaa86fa80415cf4c528b7d8e21550c0f9a399
/tests/test_type_erasure.cc
8545dc01647d12a69159f4f5a78b7549dfc5f84e
[]
no_license
lichray/fileio
d7304bb2f39788fff86b4df49cfd8d90da06e8f8
45540f48d6cbf948948c38dedd186ee3f6941cd5
refs/heads/master
2021-01-21T06:06:22.051864
2016-03-20T22:48:46
2016-03-22T19:13:08
48,633,242
0
0
null
null
null
null
UTF-8
C++
false
false
3,474
cc
test_type_erasure.cc
#include <fileio.h> #include <fileio/functional.h> #define CATCH_CONFIG_MAIN #include "catch.hpp" #include <array> using stdex::file; using stdex::whence; using stdex::opening; TEST_CASE("is_readable and is_seekable") { struct fake_reader { int read(char*, unsigned int x) { return x; } int seek(int x, whence) { return x; } }; file fh{fake_reader(), opening::for_read | opening::for_write}; std::array<char, 80> buf; auto r = fh.read(buf.data(), buf.size()); REQUIRE(fh.readable()); REQUIRE_FALSE(fh.writable()); REQUIRE(r); REQUIRE(r.count() == buf.size()); auto x = fh.seek(3, whence::beginning); REQUIRE(x == 3); } TEST_CASE("is_writable and fileno") { struct fake_writer { ptrdiff_t write(char const*, size_t x) { return x; } }; file fh{fake_writer(), opening::for_read | opening::for_write}; std::array<char, 80> const buf = {}; auto r = fh.write(buf.data(), buf.size()); REQUIRE(fh.writable()); REQUIRE_FALSE(fh.readable()); REQUIRE(r); REQUIRE(r.count() == buf.size()); REQUIRE(fh.fileno() == -1); REQUIRE_FALSE(fh.isatty()); } TEST_CASE("error handling") { struct faulty_stream { int read(char const*, int) { errno = EBUSY; return -1; } int write(char const*, int) { errno = EPERM; return -1; } int seek(int, whence) { errno = ENOTSUP; return -1; } int close() noexcept { errno = EAGAIN; return -1; } int resize(size_t) { errno = ERANGE; return -1; } }; file fh{faulty_stream(), opening::for_read | opening::for_write}; std::array<char, 80> buf = {}; REQUIRE(fh.readable()); REQUIRE(fh.writable()); REQUIRE_SYSTEM_ERROR(fh.read(buf.data(), buf.size()), std::errc::device_or_resource_busy); REQUIRE_SYSTEM_ERROR(fh.write(buf.data(), buf.size()), std::errc::operation_not_permitted); REQUIRE_SYSTEM_ERROR(fh.rewind(), std::errc::not_supported); REQUIRE_SYSTEM_ERROR(fh.resize(0), std::errc::result_out_of_range); REQUIRE_SYSTEM_ERROR(fh.truncate(), std::errc::not_supported); REQUIRE_FALSE(fh.closed()); REQUIRE_SYSTEM_ERROR(fh.close(), std::errc::resource_unavailable_try_again); REQUIRE(fh.closed()); // truncate is tell + resize, stops at the first error auto ec = make_error_code(std::errc::device_or_resource_busy); fh.truncate(ec); REQUIRE(ec == std::errc::not_supported); } using stdex::signature; void do_f1(signature<void(char const*)> f) { auto f2 = f; f = std::move(f2); f(""); } void do_f1(signature<void(int*)> f) { f(nullptr); } enum be_called { no_qs, const_qs, rvref_qs, }; struct F2 { int operator()() & { return no_qs; } int operator()() const & { return const_qs; } int operator()() && { return rvref_qs; } int operator()() const && { return const_qs | rvref_qs; } }; auto do_f2(signature<int()> f) { return f(); } struct F3 { F3 next() { return { char(c + 1) }; } char c; }; auto do_f3(signature<F3(F3)> f, F3 obj) { return f(obj); }; auto do_f3(signature<char(F3)> f, F3 obj) { return f(obj); }; TEST_CASE("signature") { // overloading and void-discarding do_f1([](char const*) { return 3; }); // forwarding F2 f2; F2 const f2c; REQUIRE(do_f2(f2) == no_qs); REQUIRE(do_f2(f2c) == const_qs); REQUIRE(do_f2(F2()) == rvref_qs); REQUIRE(do_f2((F2 const)f2) == (const_qs | rvref_qs)); // more overloading plus INVOKE support F3 f3 = { 'a' }; REQUIRE(do_f3(&F3::c, f3) == 'a'); REQUIRE(do_f3(&F3::next, f3).c == 'b'); }
ecab9f2ae9ea415e07c312ebd44af5f9e6d8c34e
1901bdbaf57584e7c5ec21643db340f9d98d6807
/compute/tensor/src/gpu/mali/gather.cpp
5e7987b1b4af60d90679458fd17cbe1708d21a05
[ "MIT" ]
permissive
huawei-noah/bolt
2a4febe5f5cce64e3589c2782c489d59975eb6a3
cf4ca8f8646a8e30ddf91c29a18743d75ac1c172
refs/heads/master
2023-08-28T13:36:34.815244
2023-06-12T01:24:41
2023-06-12T01:24:41
225,365,905
889
168
MIT
2023-06-12T01:24:42
2019-12-02T12:06:12
C++
UTF-8
C++
false
false
3,694
cpp
gather.cpp
// Copyright (C) 2019. Huawei Technologies Co., Ltd. All rights reserved. // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE // WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "sys.h" #include "tensor_desc.h" #include "error.h" #include "gpu/mali/tensor_computing_mali.h" #include "gpu/mali/fp16/gather_mali_fp16.h" inline EE gather_checkpara_mali(GCLHandle_t handle, TensorDesc inputDesc, GCLMem_t input, TensorDesc indexDesc, GCLMem_t index, GatherParamSpec p, TensorDesc outputDesc, GCLMem_t output) { if (nullptr == handle || nullptr == input || nullptr == output || nullptr == index) { return NULL_POINTER; } int mode = getGatherMode(p); if (mode == 0) { CHECK_STATUS(NOT_SUPPORTED); } else if (mode == 1) { CHECK_STATUS(NOT_SUPPORTED); } else { U32 nDims = inputDesc.nDims; U32 axis = (p.axis + nDims) % nDims; axis = nDims - 1 - axis; if (tensorNumElements(indexDesc) == 1 && indexDesc.df == DF_SCALAR) { //if (outputDesc.nDims != inputDesc.nDims - 1) { // CHECK_STATUS(NOT_MATCH); //} } else { if (outputDesc.nDims != inputDesc.nDims + indexDesc.nDims - 1) { CHECK_STATUS(NOT_MATCH); } for (U32 i = 0, j = axis; i < indexDesc.nDims; i++, j++) { if (indexDesc.dims[i] != outputDesc.dims[j]) { CHECK_STATUS(NOT_MATCH); } } } for (U32 i = 0; i < axis; i++) { if (inputDesc.dims[i] != outputDesc.dims[i]) { CHECK_STATUS(NOT_MATCH); } } for (U32 i = inputDesc.nDims - 1, j = outputDesc.nDims - 1; i > axis; i--, j--) { if (inputDesc.dims[i] != outputDesc.dims[j]) { CHECK_STATUS(NOT_MATCH); } } } return SUCCESS; } EE gather_infer_forward_tmp_bytes_mali(TensorDesc inputDesc, GCLMemDesc gclmemInputDesc, TensorDesc indexDesc, GatherParamSpec p, TensorDesc outputDesc, GCLMemDesc gclmemOutputDesc, U32 *bytes) { return gather_infer_forward_tmp_bytes_mali_fp16( inputDesc, gclmemInputDesc, indexDesc, p, outputDesc, gclmemOutputDesc, bytes); } EE gather_mali(GCLHandle_t handle, TensorDesc inputDesc, GCLMem_t input, TensorDesc indexDesc, GCLMem_t index, GatherParamSpec p, GCLMem_t tmpbuf, TensorDesc outputDesc, GCLMem_t output) { CHECK_STATUS( gather_checkpara_mali(handle, inputDesc, input, indexDesc, index, p, outputDesc, output)); return gather_mali_fp16( handle, inputDesc, input, indexDesc, index, p, tmpbuf, outputDesc, output); }
d0cc750ed831b0bb7d16ed90883698bdd3c1cc18
724b9a2fa9c3eaaf6dae79a75361e272940feece
/case4/TemplateCase_4side/0/Cy
fe8fce20a5592196f7f375fa30f61a0f6e6739dd
[]
no_license
weich97/phygeonet
848ced7a86631123a77c5f0fce9ffa940867648a
cb146bcf25dd161d89046281217087c139cba632
refs/heads/master
2023-03-22T09:27:02.570474
2021-01-24T15:00:46
2021-01-24T15:00:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,856
Cy
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0"; object Cy; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 0 0 0 0 0]; internalField nonuniform List<scalar> 841 ( 0.0220837 0.0503096 0.0802564 0.111787 0.144671 0.178718 0.213691 0.249397 0.285769 0.322651 0.359933 0.397564 0.435494 0.473667 0.512016 0.550474 0.588944 0.627266 0.665179 0.70233 0.738393 0.773297 0.807124 0.839974 0.87202 0.903463 0.934512 0.965439 0.996405 0.0376553 0.066254 0.0964842 0.128207 0.161206 0.195317 0.23033 0.266077 0.3025 0.339441 0.37678 0.414461 0.452428 0.490628 0.528995 0.567464 0.605944 0.644281 0.682228 0.719442 0.755609 0.79066 0.824673 0.857745 0.890041 0.921747 0.953033 0.984103 1.01505 0.0495962 0.0782687 0.108484 0.140099 0.172916 0.206793 0.24155 0.277041 0.313219 0.349923 0.387024 0.424458 0.462168 0.500099 0.538187 0.576372 0.614565 0.652621 0.690304 0.727283 0.763258 0.798159 0.83206 0.865056 0.897306 0.928978 0.960203 0.991121 1.02176 0.0580367 0.0865043 0.116425 0.147655 0.180011 0.213375 0.247597 0.282555 0.31821 0.3544 0.390985 0.427895 0.46507 0.502454 0.539986 0.577608 0.615237 0.652735 0.689875 0.726343 0.761847 0.79632 0.829831 0.862472 0.894395 0.925752 0.956636 0.987118 1.01716 0.0634284 0.091583 0.121102 0.151839 0.183625 0.216369 0.249947 0.284263 0.319287 0.354854 0.390815 0.427093 0.463625 0.500354 0.537221 0.574173 0.611128 0.64796 0.68445 0.720298 0.755224 0.78916 0.822172 0.85435 0.885837 0.916768 0.947198 0.977132 1.00647 0.0664547 0.0943439 0.123508 0.153799 0.185064 0.217234 0.250216 0.283938 0.318379 0.35337 0.388754 0.424447 0.460382 0.496503 0.532753 0.56908 0.605411 0.641623 0.677511 0.712786 0.747181 0.780628 0.813188 0.844948 0.876045 0.906595 0.936617 0.966048 0.994725 0.067845 0.0956651 0.124672 0.154712 0.185651 0.217445 0.250028 0.283351 0.317405 0.352016 0.387019 0.422323 0.457858 0.493567 0.529396 0.565296 0.601197 0.636987 0.672469 0.707368 0.741428 0.774582 0.806887 0.838425 0.869326 0.899691 0.929498 0.95862 0.98683 0.0682094 0.0962845 0.125457 0.155572 0.186509 0.21825 0.250756 0.284006 0.317996 0.352551 0.387498 0.422737 0.458196 0.493818 0.52955 0.565347 0.601144 0.636835 0.672236 0.707084 0.741133 0.774318 0.806692 0.838331 0.86936 0.899863 0.929778 0.958914 0.986978 0.0681139 0.0967208 0.126336 0.156802 0.188016 0.219981 0.252689 0.286142 0.320346 0.355124 0.390291 0.425743 0.461404 0.497216 0.533129 0.5691 0.60507 0.64094 0.676537 0.71161 0.745925 0.77942 0.812139 0.844158 0.875595 0.906514 0.936818 0.966246 0.994445 0.0680843 0.0973146 0.127465 0.158374 0.189955 0.222237 0.255239 0.288987 0.323498 0.35859 0.394071 0.429828 0.465782 0.501876 0.538061 0.574298 0.610532 0.646672 0.682555 0.717945 0.752618 0.786513 0.81967 0.852162 0.884098 0.915529 0.946315 0.976132 1.00456 0.0684539 0.098219 0.128815 0.160079 0.19194 0.22445 0.257658 0.291615 0.326346 0.361665 0.397371 0.433345 0.469504 0.505792 0.542161 0.578575 0.614985 0.651306 0.687387 0.723004 0.757947 0.792153 0.825661 0.858537 0.890887 0.922741 0.953925 0.984045 1.01262 0.0693089 0.099396 0.130226 0.161632 0.19356 0.226087 0.25929 0.293243 0.327981 0.363315 0.399035 0.435015 0.471168 0.507437 0.543779 0.580158 0.616532 0.652822 0.688888 0.724521 0.759521 0.793827 0.827472 0.860522 0.893073 0.92514 0.956509 0.986722 1.01523 0.0706748 0.100862 0.131702 0.163028 0.194801 0.227123 0.260097 0.293824 0.328347 0.363475 0.398986 0.434748 0.470673 0.506702 0.542793 0.578916 0.615031 0.651069 0.686898 0.722325 0.757159 0.791343 0.824903 0.857903 0.890432 0.922489 0.953819 0.983901 1.01212 0.0725844 0.102713 0.133408 0.164495 0.195955 0.227913 0.2605 0.293844 0.327994 0.362756 0.3979 0.433288 0.468826 0.504457 0.54014 0.575848 0.611547 0.647174 0.682609 0.717671 0.752183 0.786085 0.819404 0.852195 0.884545 0.916432 0.947565 0.977355 1.00513 0.0750698 0.105051 0.13551 0.16627 0.197327 0.228831 0.260942 0.293811 0.327498 0.361805 0.396493 0.431415 0.466476 0.501619 0.536805 0.572008 0.607201 0.642327 0.677279 0.711888 0.745986 0.779519 0.812504 0.844998 0.877077 0.908705 0.939551 0.968959 0.996192 0.0781526 0.107951 0.138136 0.168533 0.199151 0.230165 0.261763 0.294121 0.327308 0.361123 0.395317 0.429738 0.464286 0.498904 0.533555 0.568218 0.602868 0.637458 0.671889 0.706007 0.739657 0.772782 0.805399 0.837559 0.869331 0.900662 0.931184 0.960174 0.98683 0.0818443 0.111461 0.141378 0.171413 0.201594 0.23212 0.263207 0.295057 0.327746 0.36107 0.394773 0.428694 0.462731 0.496827 0.530946 0.56507 0.599179 0.633235 0.667148 0.700778 0.733981 0.766703 0.798953 0.83078 0.862248 0.893285 0.923484 0.952058 0.97814 0.0861204 0.115601 0.145292 0.17501 0.204799 0.234881 0.265501 0.296886 0.32912 0.361998 0.395253 0.428718 0.462288 0.495905 0.529535 0.563164 0.596778 0.630343 0.663782 0.696969 0.729769 0.762131 0.794059 0.825597 0.856804 0.887591 0.917512 0.945713 0.971264 0.0908089 0.120254 0.149819 0.179321 0.208817 0.238555 0.268808 0.299827 0.331706 0.364237 0.397143 0.430252 0.463454 0.496691 0.529933 0.563167 0.596384 0.629558 0.662624 0.695467 0.727965 0.760066 0.791771 0.823121 0.854167 0.884803 0.914545 0.942473 0.967592 0.0954862 0.125067 0.15468 0.184136 0.213511 0.243076 0.273134 0.303958 0.335653 0.368006 0.400735 0.433658 0.466663 0.499692 0.532716 0.565726 0.598718 0.631673 0.664537 0.697207 0.729575 0.761587 0.793242 0.824574 0.85563 0.886286 0.916019 0.943844 0.9687 0.0995377 0.129497 0.159399 0.189053 0.218549 0.248184 0.278287 0.309157 0.340909 0.373327 0.406119 0.439097 0.472147 0.50521 0.538259 0.571287 0.604296 0.637274 0.670177 0.702918 0.735397 0.767563 0.799409 0.830965 0.862272 0.893189 0.923155 0.951116 0.975949 0.102335 0.132921 0.163361 0.193461 0.223327 0.25328 0.283678 0.314844 0.346902 0.379634 0.412739 0.446023 0.479367 0.512713 0.546035 0.57933 0.612605 0.645856 0.679049 0.712109 0.744948 0.777517 0.809802 0.841832 0.87364 0.905067 0.935514 0.963862 0.98892 0.103111 0.134504 0.165661 0.196387 0.226803 0.257256 0.288129 0.319773 0.352319 0.385547 0.419147 0.452917 0.486737 0.520546 0.554323 0.588066 0.621788 0.655492 0.689154 0.722714 0.756094 0.789245 0.822151 0.854836 0.887325 0.919444 0.950555 0.979472 1.00494 0.101007 0.133311 0.165292 0.19675 0.227823 0.258881 0.290337 0.322566 0.355708 0.389539 0.423742 0.458105 0.492507 0.526887 0.561224 0.595523 0.629797 0.66406 0.698298 0.732464 0.766491 0.800332 0.833965 0.86741 0.900688 0.933606 0.965488 0.995083 1.02107 0.0952984 0.128541 0.161371 0.193586 0.225343 0.257033 0.2891 0.321941 0.355707 0.39017 0.425002 0.459987 0.494998 0.529975 0.5649 0.59978 0.634634 0.669482 0.704321 0.739119 0.773819 0.808376 0.842762 0.876995 0.911089 0.944833 0.977512 1.00781 1.03435 0.0854328 0.119522 0.15311 0.185993 0.218341 0.250574 0.283162 0.316527 0.350829 0.385834 0.421207 0.456723 0.492254 0.527739 0.563162 0.598532 0.633875 0.669218 0.704569 0.739907 0.77519 0.810372 0.845422 0.880352 0.915171 0.94965 0.983038 1.01395 1.04095 0.0710871 0.105811 0.139945 0.173282 0.206011 0.238574 0.271472 0.305152 0.339779 0.375117 0.41082 0.446658 0.482498 0.51828 0.553989 0.58964 0.625261 0.660887 0.696537 0.732206 0.76786 0.803455 0.838957 0.874374 0.909707 0.94471 0.978592 1.00991 1.03715 0.052386 0.0875127 0.121961 0.155521 0.188397 0.221058 0.254034 0.287797 0.322521 0.357961 0.393763 0.42969 0.465608 0.501455 0.537221 0.57292 0.608588 0.644266 0.679985 0.715751 0.751545 0.787324 0.823046 0.858718 0.894332 0.929626 0.963771 0.995255 1.02251 0.0299208 0.0653141 0.0999392 0.133582 0.166464 0.199082 0.231999 0.265714 0.3004 0.335806 0.37157 0.40745 0.443308 0.479084 0.514767 0.550378 0.585956 0.621549 0.6572 0.692928 0.728725 0.76455 0.800356 0.836145 0.871904 0.907353 0.941623 0.973139 1.00027 ) ; boundaryField { low { type calculated; value nonuniform List<scalar> 29 ( 0.00853065 0.0238602 0.0357189 0.0442324 0.0497578 0.0528977 0.0543107 0.0545449 0.0541745 0.0538126 0.0538843 0.0545462 0.0558358 0.0577514 0.0602891 0.0634428 0.0672042 0.0715278 0.0762143 0.0808061 0.0846559 0.0871294 0.087491 0.0849155 0.0787171 0.0683996 0.0537051 0.0347749 0.012152 ) ; } up { type calculated; value nonuniform List<scalar> 29 ( 1.01186 1.03042 1.03689 1.03194 1.02084 1.00873 1.00056 1.0006 1.0081 1.01828 1.02636 1.02889 1.02558 1.01832 1.00907 0.999371 0.99035 0.983165 0.979236 0.980176 0.98738 1.00043 1.01661 1.03294 1.04644 1.05323 1.04953 1.03488 1.01255 ) ; } left { type calculated; value nonuniform List<scalar> 29 ( 0.013551 0.0415466 0.0713028 0.102686 0.135455 0.169407 0.204293 0.239901 0.276162 0.312932 0.350102 0.387628 0.42546 0.463544 0.501811 0.540192 0.578586 0.616831 0.65466 0.691712 0.727659 0.762429 0.796102 0.828781 0.860641 0.891894 0.922769 0.953576 0.984504 ) ; } right { type calculated; value nonuniform List<scalar> 29 ( 0.0179133 0.0534381 0.0881492 0.121833 0.154718 0.187306 0.220167 0.253808 0.288419 0.323761 0.359466 0.395287 0.431083 0.466794 0.50241 0.537951 0.573459 0.608986 0.644579 0.680265 0.716042 0.75187 0.787698 0.823527 0.85934 0.894849 0.929171 0.960696 0.987758 ) ; } frontAndBackPlanes { type empty; } } // ************************************************************************* //
bfbd39adb1d0969fe9c0f2db5f3a9e92f1f0be1c
43efb8c60d19d37c2f42805754086f910348a5ae
/Coding/Codechef/Holes in text.cpp
64d16d64909892d10e8523e36cd97d39ae1a40e7
[]
no_license
akshay2742/Coding-Problems
961399752b30b6a17b72b2c1b2afada9e839a326
838be77b707cc82a9453c964ff8cedce1646dfe8
refs/heads/master
2021-06-26T14:08:39.292052
2020-10-08T18:34:19
2020-10-08T18:34:19
151,247,129
0
1
null
2020-10-08T18:34:21
2018-10-02T11:59:38
C++
UTF-8
C++
false
false
835
cpp
Holes in text.cpp
#include<stdio.h> #include<conio.h> int main(){ int t,i,holes; char a[101]; holes=0; for(i=0;a[i]!='\0';i++){ scanf("%c",&a[i]); switch(a[i]){ case 'A': case 'D': case 'O': case 'P': case 'Q': case 'R':holes=holes+1;break; case 'B':holes=holes+2;break; } } printf("%d\n",holes); getch(); return 0; }
324cf0eb2b9990fe7b3eda230bf7bcac57bb5577
a9ed551493afa49386a34899d9cfaafed8a83eb6
/MQTT++/v0/mqtt.hpp
28dc5932ec82de072230f51f3c695754b0097562
[]
no_license
astrocronopio/OOP_IB
cb0ba5b20f7fd4af7e0b6935568b3e8492e6a23a
7d861d826ce5a8cf2523b5650f52d458d762eded
refs/heads/master
2023-02-03T23:02:55.927795
2020-12-15T18:54:45
2020-12-15T18:54:45
288,535,858
0
0
null
null
null
null
UTF-8
C++
false
false
965
hpp
mqtt.hpp
#if !defined(MQTT) #define MQTT #include <iostream> #include <string> namespace mqtt{ //Variables para errores y comunicacion const short CONNECT = 1; //Pedir conectarse const short CONNACK = 2; //Respuesta del broker const short PUBLISH = 3; //Pedir publicar const short PUBACK = 4; //Respuesta del broker const short SUBSCRIBE = 8; //Pedir subscripcion const short SUBACK = 9; // Respuesta del broker const short UNSUBSCRIBE = 10; //Pedir unsubscribe const short UNSUBACK = 11; //Respuesta del broker const short MQTT_MESS_SUCCESS=15; const short MQTT_MESS_N0_SUCCESS=16; // Para simular el prendido y apagado const bool ON=true; const bool OFF=false; // Para indicar que esta conectado si el broker/cliente pregunta const bool CONNECTED=true; // Para indicar que esta desconectado si el broker/cliente pregunta const bool DISCONNECTED=false; // Para indicar la calidad de servicio const short NORMAL=0; const short HIGH=1; } #endif // MQTT
575ed98f44d28828fd2aa425d78af911fdd4e7da
7a7dfb85e292fd047fae105b537509681fc6f715
/AgentsTest/AgentsTest.cpp
41b5de27ea8c42ea2ef90c278c0698fc614cc7e7
[]
no_license
steve-madden/SampleCode
0ebe5868ad58e054838e90aab3ef0dbe28635990
54cb0931e81012e175a6fbee099efe173b293d32
refs/heads/master
2023-04-26T00:10:13.206508
2023-04-13T23:58:00
2023-04-13T23:58:00
104,388,831
0
0
null
2023-04-13T23:58:01
2017-09-21T19:16:41
C++
UTF-8
C++
false
false
3,717
cpp
AgentsTest.cpp
// AgentsTest.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <Windows.h> #include <agents.h> #include <string> #include <sstream> #include <iostream> #include <iomanip> #include <ctime> using namespace std; using namespace concurrency; template<class T> class DataflowAgent : public agent { public: explicit DataflowAgent() : _source(nullptr) {} ISource<T>& Output() { return _outputBuffer; } void Source(ISource<T>* source) { _source = source; } protected: virtual void run() {} ISource<T>* _source; unbounded_buffer<T> _outputBuffer; private: }; /// <summary> /// A <c>DataflowPipeline</c> is a collection of agents of type <c>DataflowAgent</c> that /// process messages of type <c>T</c> in a multithreaded serial pipeline. /// </summary> template< class T> class DataflowPipeline { public: DataflowPipeline(){} void push_back(unique_ptr<DataflowAgent<T>>& theAgent) { if (_agents.empty()) { theAgent->Source(&_inputBuffer); } else { theAgent->Source(&last()->Output()); } _agents.push_back(std::move(theAgent)); } void start_all() { for each(auto& a in _agents) { a->start(); } } DataflowAgent<T>* last() { return _agents.empty() ? nullptr : _agents.back().get(); } agent_status wait() { if (!_agents.empty() && last()->status() != agent_created ) return Concurrency::agent::wait(last()); return agent_created; } bool send(const T& _Data) { return Concurrency::send<T>(_inputBuffer, _Data); } bool enqueue(T const& _Data) { return send(_Data); } ITarget<T>& InputBuffer() { return _inputBuffer; } private: unbounded_buffer<T> _inputBuffer; vector<unique_ptr<DataflowAgent<T>>> _agents; }; class EncryptionAgent : public DataflowAgent<string> { public: explicit EncryptionAgent(string label) : DataflowAgent<string>() , _label(label) { } protected: void run() { string s; while(!(s = receive(_source)).empty()) { //printf("[%d] %s Processing %s\n", GetCurrentThreadId(), _label.c_str(), s.c_str()); //concurrency::wait(1); asend(_outputBuffer, s.append(" " + _label + " ")); } asend(_outputBuffer, s); done(); } private: string _label; }; int main() { event done; atomic<int> count(0); call<string> printMessage([&](string s) { if (s.empty()) { printf("Finished processing %d items\n", count.load()); done.set(); } else { ++count; if (count % 100'000 == 0) { printf("Processed %d items\n", count.load()); } } }); DataflowPipeline<string> pipeline; { unique_ptr<DataflowAgent<string>> a = make_unique<EncryptionAgent>("Pass 1"s); pipeline.push_back(a); a = make_unique<EncryptionAgent>("Pass 2"s); pipeline.push_back(a); a = make_unique<EncryptionAgent>("Pass 3"s); pipeline.push_back(a); pipeline.last()->Output().link_target(&printMessage); } pipeline.start_all(); printf("[%d] Sending messages\n", GetCurrentThreadId()); for (auto i = 0; i < 10'000'000; i++) { auto s = stringstream { }; s << "Message " << i; pipeline.enqueue(s.str()); } pipeline.enqueue(""s); printf("[%d] Finished sending messages\n", GetCurrentThreadId()); done.wait(); //wait(1000); return 0; }
dfaf94bcbb6531b9b5260011e98dc031cd7ac3b0
f7b41f973c4137ecd7dd0ac1482d81b41c499f59
/JianzhiOfferExercises/14_ReorderArray/14_ReorderArray.cpp
a7254abb24ba7e7e497c9c46ab6e6be4a13cfded
[]
no_license
xbjiang/algorithms
3cecc48ed934158fd4009218913818fd08b39852
2109af49a410b8624f74e3960c3ae3ccf71e13ff
refs/heads/master
2021-01-19T00:01:01.762429
2017-01-14T12:03:11
2017-01-14T12:03:11
72,860,585
0
0
null
null
null
null
GB18030
C++
false
false
1,386
cpp
14_ReorderArray.cpp
// 14_ReorderArray.cpp : ๅฎšไน‰ๆŽงๅˆถๅฐๅบ”็”จ็จ‹ๅบ็š„ๅ…ฅๅฃ็‚นใ€‚ // #include "stdafx.h" #include <algorithm> bool isEven(int number) { return (number & 1) == 0; } void Reorder(int arr[], int n, bool (*func)(int)) { if (arr == NULL || n <= 0) { printf("Invalid input!"); exit(1); } int i = -1; for (int j = 0; j < n; j++) if (!func(arr[j])) std::swap(arr[j], arr[++i]); } void ReorderArray2(int arr[], int n) { Reorder(arr, n, isEven); } void ReorderArray(int arr[], int n) { if (arr == NULL || n <= 0) { printf("Invalid input!"); exit(1); } int i = -1; for (int j = 0; j < n; j++) if (arr[j] & 0x1) std::swap(arr[j], arr[++i]); } void test(int arr[], int n) { int* copy = new int[n]; for (int i = 0; i < n; i++) copy[i] = arr[i]; printf("The original array is: "); for (int i = 0; i < n; i++) printf("%d ", arr[i]); printf("\n"); ReorderArray(arr, n); printf("The reordered array using 1st method is: "); for (int i = 0; i < n; i++) printf("%d ", arr[i]); printf("\n"); ReorderArray2(copy, n); printf("The reordered array using 2nd method is: "); for (int i = 0; i < n; i++) printf("%d ", copy[i]); printf("\n"); } int _tmain(int argc, _TCHAR* argv[]) { int arr1[5] = { 1, 2, 3, 4, 5 }; int arr2[5] = { 1, 1, 1, 1, 1 }; int arr3[5] = { 2, 2, 2, 2, 2 }; test(arr1, 5); test(arr2, 5); test(arr3, 5); return 0; }
4afd3dc9b24de3f53e4646d54ace1d86a3a5446b
efb002d9ee15e750e4530f1debb01d557114c190
/StringUtil.h
d8a076b14f96d6134b0409a5d8d62837e2ebd83d
[]
no_license
culiu/IEX
d242a73d37f09756cd81dce48f8f629f5ba015f1
21d409d135a9edfbb7e1355cbe3602f198cb10f9
refs/heads/master
2020-04-22T00:12:19.487787
2019-02-13T08:22:23
2019-02-13T08:22:23
169,971,096
0
0
null
null
null
null
GB18030
C++
false
false
4,090
h
StringUtil.h
#ifndef _STRINGUTIL_ #define _STRINGUTIL_ #include <iostream> #include <sstream> #include <assert.h> #include <string.h> #include <vector> #include "CompStr.h" using namespace std; class StringUtil { public: //ๅฐ†string่ฝฌไธบchar* static char* strToChar(string s) { //const char* c= s.c_str(); //int len = strlen(c); int length = s.length() + 1; char *data = new char[length]; try{ for (int i = 0; i<length - 1; i++) data[i] = s.c_str()[i]; } catch (exception){ cout << "ๅคๅˆถๅ‡บ็Žฐๅผ‚ๅธธ" << endl; } data[length - 1] = '\0'; return data; } //int่ฝฌไธบstring็ฑปๅž‹ static string intToString(const int n) { std::stringstream newstr; newstr << n; return newstr.str(); } //string ่ฝฌint static int stringToInt(const string s) { std::stringstream ss; int n = -1; ss << s; ss >> n; return n; } static int charToInt(const char* c) { return atoi(c); } static char* intToChar(const int n) { return strToChar(intToString(n)); } static char* myStrcpy(char* strDest, const char* strSrc) { assert(strSrc != NULL); assert(strDest != NULL); int i; char * address = strDest; for (i = 0; strSrc[i] != '\0'; i++) { strDest[i] = strSrc[i]; } strDest[i] = '\0'; return address; } /*4-25 split string by delimiter then save elem in to vector */ static void splitString(const std::string& s, std::vector<std::string>& v, const std::string& c) { std::string::size_type pos1, pos2; pos2 = s.find(c); ///*ๅฆ‚ๆžœๆฒกๆœ‰ๅˆ†ๅ‰ฒ็ฌฆ*/ //if (pos2 == std::string::npos){ // v.push_back(s); // return; //} pos1 = 0; while (std::string::npos != pos2) { v.push_back(s.substr(pos1, pos2 - pos1)); pos1 = pos2 + c.size(); pos2 = s.find(c, pos1); } if (pos1 != s.length()) v.push_back(s.substr(pos1)); } /*4-25 ่ฝฌๅ˜VectorToString ้ป˜่ฎค็”จ,ๅˆ†ๅ‰ฒ*/ static string vectorToString(vector<string> vec){ std::ostringstream oss; if (!vec.empty()){ std::copy(vec.begin(), vec.end() - 1, std::ostream_iterator<string>(oss, ",")); oss << vec.back(); } return oss.str(); } /*่ฝฌๅ˜vector to AList*/ static AList<string, CompStr>* vectorToAList(vector<string> vec){ AList <string, CompStr> *result = new AList<string, CompStr>(vec.size()); for (int i = 0; i < vec.size(); i++) result->append(vec[i]); return result; } /*6-24 ็ปŸ่ฎกๅญ—็ฌฆไธฒไธญ๏ผŒๆŸไธชๅญ—็ฌฆ็š„ไธชๆ•ฐ*/ static int spCount(string str, char c){ int result = 0; for (unsigned int i = 0; i < str.length(); i++){ if (str[i] == c){ result++; } } return result; } /*6-14 split string by delimiter then save elem in to Alist */ static void splitStringInAList(const std::string& s, AList<string, CompStr> &list, const std::string& c) { std::string::size_type pos1, pos2; pos2 = s.find(c); pos1 = 0; while (std::string::npos != pos2) { if (!list.append(s.substr(pos1, pos2 - pos1))){ cout << "over maxLength = " << list.getListMaxSize() << endl; abort(); } pos1 = pos2 + c.size(); pos2 = s.find(c, pos1); } if (pos1 != s.length()) if (!list.append(s.substr(pos1))) cout << "over maxLength = " << list.getListMaxSize() << endl; } /*9-20 split string by delimiter then save elem in to AList */ static void splitStringIntoAlist(const std::string& s, AList<string, CompStr> &list, const std::string& c) { std::string::size_type pos1, pos2; pos2 = s.find(c); pos1 = 0; while (std::string::npos != pos2) { //v.push_back(s.substr(pos1, pos2 - pos1)); if (!list.append(s.substr(pos1, pos2 - pos1))) cout << "error happend list full , listMaxSize = " << list.getListMaxSize() << endl; pos1 = pos2 + c.size(); pos2 = s.find(c, pos1); } if (pos1 != s.length()){ //v.push_back(s.substr(pos1)); if (!list.append(s.substr(pos1))) cout << "error happend list full , listMaxSize = " << list.getListMaxSize() << endl; } } }; #endif
d825d759569a950f1061ee452eb54d549e6605b7
9adbef75a8c370a85a528c685d61b377cecc936e
/OS Project/Os Project/HPF.cpp
f160bfbbd61001f42503db2fe4157609902639cc
[]
no_license
khaledsabry97/Os-Project
2839dd006ff66bdeebfbb89795c2f74910bb7a80
692881d18f6bc89f6b6416e1f329e299c834e8e2
refs/heads/master
2020-04-03T21:26:15.490634
2018-12-15T17:05:23
2018-12-15T17:05:23
155,574,502
0
0
null
null
null
null
UTF-8
C++
false
false
2,403
cpp
HPF.cpp
#include "stdafx.h" #include "HPF.h" #include "ProcessStructure.h" #include <vector> HPF::HPF() { } HPF::~HPF() { } void HPF::push(ProcessStructure * process) { processes.push_back(process); // if the processes is less or equal to 2 in the ready state then don't enter //because this is a non preemptive algorithm if (processes.size() <= 2) return; int size = processes.size(); //sort according to the heighest priority but don't sort the first one for (int i = size - 1; i > 1; i--) { if(processes[i]->process->priority > processes[i-1]->process->priority) swap(processes[i], processes[i - 1]); else if (processes[i]->process->priority == processes[i - 1]->process->priority) { if (processes[i]->process->processNumber < processes[i - 1]->process->processNumber) swap(processes[i], processes[i - 1]); } else break; } } //pop it out from the ready state(finished state) void HPF::pop(ProcessStructure *& process) { int size = processes.size(); if (processes.size() != 0) { //this is a vector so move the process in the 0 index to the size -1 index and then remove it for (int i = 0; i < size-1; i++) { swap(processes[i], processes[i + 1]); } processes.pop_back(); if (processes.size() == 0) process == NULL; else process = processes[0]; } else process = NULL; } void HPF::addToReadyList(ProcessStructure * process) { push(process); } bool HPF::schedule() { if (processes.size() > 0) { process = processes[0]; // get the process in the front of the vector run(); return true; } else return false; } void HPF::run() { //if the process is already finished from the last run then remove it and get the next one to process if (process->process->state == finished) { pop(process); if (process == NULL) return; } //if the process was in the ready state which mean that the process need to context switch if (process->process->state == ready) { readingAndWriting->writeOutputArray(timer->time, -1); //write the context switch time timer->time += contextSwitching; process->start(); } //if the process was already running so keep it running if (process->process->state == running) { readingAndWriting->writeOutputArray(timer->time, process->process->processNumber); //write that this time slice was the process no x was running timer->time += quantumTime; process->run(quantumTime); } }
ddbf17fc7c9bca93aca754ad15240c8c24d16add
1b0f29f7ae1f1ab2bbdb2f07e70b41404b7367ef
/ParkingLot/Include/PrintVisitor.h
e21081a7ec379191477a8d6b4a63f217e0aaf57f
[]
no_license
xudongxd/transfer
0452a605b00dd6602294881079ad15cdd61b86e1
53dfe7260436f1c6138c68cf93f311c4ed815bc6
refs/heads/master
2021-01-11T09:09:39.033113
2018-03-14T10:17:51
2018-03-14T10:17:51
77,272,801
0
0
null
null
null
null
UTF-8
C++
false
false
399
h
PrintVisitor.h
#ifndef INCLUDE_PRINTVISITOR_H_ #define INCLUDE_PRINTVISITOR_H_ #include "Visitor.h" #include "Manager.h" #include "ParkedNumVisitor.h" #include "VacantNumVisitor.h" #include "VacantRatioVisitor.h" class PrintVisitor : public Visitor { public: PrintVisitor(); void Visit(ParkingLot *element); void Visit(Admin *element); void Visit(Manager *element); }; #endif /* INCLUDE_PRINTVISITOR_H_ */
5ad9575f8914693840dd51e2ee90e41aeab1734a
b87b70f1c345d51b6b585e97e32fef1ea50fa789
/mainwindow.h
dd6ed4643ba38b894bd735c2f26a065f24324dac
[]
no_license
crawler-john/ECU-RS-PC
d15b427934b6ce197327cbaa2e89cb4f1851204d
0cabf63294beee9417a9ef3266ef6eeca1932940
refs/heads/master
2021-01-02T09:30:42.508571
2017-11-21T01:07:27
2017-11-21T01:07:27
99,230,662
0
0
null
null
null
null
GB18030
C++
false
false
3,142
h
mainwindow.h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include "rsclient.h" #include <QTableWidget> #include "commudp.h" typedef struct { char ID[13]; unsigned char Equipment_Status; unsigned char Mos_Status; unsigned char Function_Status; unsigned char PV1_Protect; unsigned char PV2_Protect; unsigned long Heart_Rate; unsigned short Off_Times; unsigned char Shutdown_Num; unsigned short PV1; unsigned short PV2; unsigned short PI; unsigned short PI2; unsigned short Power1; unsigned short Power2; unsigned short Output_PV; unsigned short PI_Output; unsigned short Power_Output; unsigned char RSSI; unsigned int PV1_ENERGY; //10 -6ๆฌกๆ–นๅบฆ unsigned int PV2_ENERGY; //10 -6ๆฌกๆ–นๅบฆ unsigned int PV_Output_ENERGY; //10 -6ๆฌกๆ–นๅบฆ unsigned char MOS_CLOSE_NUM; unsigned short version; } OPT700_RS; typedef struct { char time[6]; unsigned short PV1; unsigned char PI1; unsigned short Power1; unsigned short PV2; unsigned char PI2; unsigned short Power2; } OPT700_RS_INFO; typedef struct { char time[6]; int power; } PowerData_t; typedef struct { char date[11]; double energy; } EnergyData_t; typedef struct { char SSID[50]; int signalStrength; } SSID_t; namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); void addTableData(QTableWidget *table,QList<OPT700_RS *> &List); private slots: void on_btn_addID_clicked(); void on_btn_AddDevice_clicked(); void on_btn_SetChannel_clicked(); void on_btn_setPasswd_clicked(); void on_btn_SetID_clicked(); void on_btn_getSystem_clicked(); void on_btn_ECUImport_clicked(); void on_btn_setNetwork_clicked(); void on_btn_getNetwork_clicked(); void IPInterfaceSataus(bool status); void on_btn_getFlash_clicked(); void on_btn_getWIFI_clicked(); void on_btn_connect_clicked(); void on_btn_getWIFIStatus_clicked(); void addSSIDData(QTableWidget *table, QList<SSID_t *> &List); void on_tableWidget_SSID_itemClicked(QTableWidgetItem *item); void on_btn_setFunction_clicked(); void on_comboBox_4_activated(int index); void on_btn_getDate_clicked(); void on_btn_getPower_clicked(); void on_btn_getEnergy_clicked(); void addPowerData(QTableWidget *table, QList<PowerData_t *> &List); void addEnergyData(QTableWidget *table, QList<EnergyData_t *> &List); void addINFOTableData(QTableWidget *table, QList<OPT700_RS_INFO *> &List); void on_btn_getDate_2_clicked(); void on_btn_getInfo_clicked(); void on_btn_config_clicked(); private: Ui::MainWindow *ui; RSClient *ECU_RSClient; CommUDP *UDPClient1; CommUDP *UDPClient2; char ECUID[13]; QList<OPT700_RS *> OPT700_RSList; QList<PowerData_t *> PowerData_List; QList<EnergyData_t *> EnergyData_List; QList<SSID_t *> SSID_List; QList<OPT700_RS_INFO *> OPT700_RS_INFOList; }; #endif // MAINWINDOW_H
5afce4aab8d8f24eb73ac208e1d41876b3274459
7b0e3bfeba17738bb78a0442f7b89c1f57556ae3
/generated_src/cpp/CompareResult.hpp
99a9f0e3f6c3fc1c1c4c807f818121bcb0204b6c
[]
no_license
Tuniwutzi/synclib
fbef64a7b20e4761a45347e79de6d751b0b49edb
26d9e2cf919e49e5d9670485760434a7d0457b38
refs/heads/master
2020-03-17T06:33:12.473865
2018-06-05T17:38:07
2018-06-05T17:38:07
133,360,238
0
0
null
null
null
null
UTF-8
C++
false
false
941
hpp
CompareResult.hpp
// AUTOGENERATED FILE - DO NOT MODIFY! // This file generated by Djinni from directory_tree.djinni #pragma once #include "File.hpp" #include <utility> #include <vector> namespace synclib { /** * Represents the differences between two directories * This struct is obtained using the static directory::compare_files(a, b) method */ struct CompareResult final { /** Files that exist in directory a but not in b */ std::vector<File> onlyInA; /** Files that exist in directory b but not in a */ std::vector<File> onlyInB; /** Files that exist in both directories with different hash values */ std::vector<File> conflicting; CompareResult(std::vector<File> onlyInA_, std::vector<File> onlyInB_, std::vector<File> conflicting_) : onlyInA(std::move(onlyInA_)) , onlyInB(std::move(onlyInB_)) , conflicting(std::move(conflicting_)) {} }; } // namespace synclib
d93b5b17aea92dc322e8d6ff03d3969c4396f5cc
c1997c40bd02dc0b38c8f5999d2d60c32b4deed9
/REST_Attempt/REST_Attempt.ino
5d1e8cdf5db089471c85d85754743b35d0ad02a1
[]
no_license
Engelweiss/EmbeddedGit
884dce8f12bae4c363d3497086acdbf0a6cb087c
630b961f0e4c197263179dcc3b5ad25acbae2c19
refs/heads/master
2021-01-19T09:20:50.075391
2017-04-16T18:54:18
2017-04-16T18:54:18
82,097,272
0
1
null
null
null
null
UTF-8
C++
false
false
3,678
ino
REST_Attempt.ino
#include <LiquidCrystal.h> #include <Process.h> #include <OneWire.h> #include <DallasTemperature.h> #include <LiquidCrystal.h> #include <stdlib.h> #include <math.h> #include <Stdio.h> #include <Arduino.h> #include <ds1620.h> #include <Bridge.h> #include <BridgeServer.h> #include <BridgeClient.h> #define ONE_WIRE_BUS 9 LiquidCrystal lcd(12,11,5,4,3,2); BridgeServer server; int heatSwitchPin = 6; int heatVal; int filterVal; int relayPin = 7; int filterSwitchPin = 8; int filterRelayPin = 10; // Create a onewire instanace OneWire oneWire(ONE_WIRE_BUS); DallasTemperature sensors(&oneWire); Process date; int lastSecond = -1; //Ds1620 setup Ds1620 ds1620 = Ds1620(A0/*rst*/,A1/*clk*/,A2/*dq*/); void setup() { // setup code pinMode(relayPin, OUTPUT); pinMode(filterRelayPin, OUTPUT); lcd.begin(20,4); pinMode(heatSwitchPin, INPUT_PULLUP); pinMode(filterSwitchPin, INPUT_PULLUP); Bridge.begin(); if (!date.running()) { date.begin("date"); date.addParameter("+TIME: %T"); date.run(); } sensors.begin(); ds1620.config(); // Bridge startup pinMode(13, OUTPUT); digitalWrite(13, LOW); Bridge.begin(); digitalWrite(13, HIGH); // Listen for incoming connection only from localhost // (no one from the external network could connect) server.listenOnLocalhost(); server.begin(); } // Loop through our 5 component modules void loop() { // Heater module heatVal = digitalRead(heatSwitchPin); lcd.setCursor(0,2); if(heatVal) { lcd.print("H:ON "); digitalWrite(relayPin, HIGH); } else { lcd.print("H:OFF "); digitalWrite(relayPin, LOW); } // Filter module filterVal = digitalRead(filterSwitchPin); if(filterVal) { lcd.print("F:ON "); digitalWrite(filterRelayPin, HIGH); } else { lcd.print("F:OFF"); digitalWrite(filterRelayPin, LOW); } // Date module while (date.available() > 0) { // get the result of the date process (should be hh:mm:ss): String timeString = date.readString(); lcd.setCursor(0,1); lcd.print(timeString); } delay(100); if (!date.running()) { date.begin("date"); date.addParameter("+TIME: %T"); date.run(); } // DS18B20 temperature module sensors.requestTemperatures(); // Tell the DS18B20 to get make a measurement lcd.setCursor(0,3); lcd.print("Temp: "); lcd.print(sensors.getTempFByIndex(0),1); lcd.print("F"); //DS1620 temerature module ds1620.start_conv(); int raw_data = ds1620.read_data(); ds1620.stop_conv(); float temp = raw_data / 2.0; lcd.setCursor(0,0); lcd.print("DS1620: "); lcd.print(temp); lcd.print("C"); //Bridge Process Module BridgeClient client = server.accept(); // There is a new client? if (client) { // Process request process(client); // Close connection and free resources. client.stop(); } delay(100); } void process(BridgeClient client) { // read the command String command = client.readStringUntil('/'); // is "digital" command? if (command == "digital") { digitalCommand(client); } } void digitalCommand(BridgeClient client) { int pin, value; // Read pin number pin = client.parseInt(); // If the next character is a '/' it means we have an URL // with a value like: "/digital/13/1" if (client.read() == '/') { value = client.parseInt(); digitalWrite(pin, value); } else { value = digitalRead(pin); } // Send feedback to client client.print(F("Pin D")); client.print(pin); client.print(F(" set to ")); client.println(value); // Update datastore key with the current pin value String key = "D"; key += pin; Bridge.put(key, String(value)); }
1dfc21cc9706fc83e82d9825110ff6253aade7ce
6cecdbbe6eb721a0e43c07ed2b31bdcc9e553c55
/Sail2D/Runs/first_flatplate_150_8/case/3000/p
3a5bb33a8fb6611376d7155154499c5744fc99e2
[]
no_license
kiranhegde/Gmsh
799d8cbefb7dd3f3d35ded15b40292fd3ede6468
fefa906dabfddd9b87cc1f0256df81b4735420e1
refs/heads/master
2021-01-19T23:21:57.414954
2015-01-21T02:02:37
2015-01-21T02:02:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
115,769
p
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "3000"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 14201 ( -0.0108757 -1.77327 -3.69622 -5.52648 -7.22859 -8.76939 -10.1224 -11.266 -12.1833 -12.8684 -13.2984 -13.4514 -13.2693 -12.6741 -11.4988 -9.52552 -6.50298 -2.21441 3.6219 11.8175 23.1185 35.1678 43.8758 62.6709 10.8323 10.2448 9.73346 9.4373 9.33961 9.45008 9.79486 10.414 11.3762 12.7742 14.7293 17.3684 20.8523 25.3201 30.9286 37.8572 46.2485 56.2792 68.0864 81.8135 97.5232 115.187 134.892 156.34 19.7759 20.2898 20.7311 21.448 22.4342 23.7156 25.3125 27.248 29.5496 32.2403 35.3623 38.9546 43.0742 47.771 53.1079 59.1496 65.9264 73.4839 81.8323 90.932 100.706 111.045 121.825 132.851 27.9787 28.8163 29.7394 30.9824 32.4889 34.2757 36.36 38.7729 41.5516 44.7227 48.3394 52.4326 57.0456 62.2145 67.968 74.3254 81.2961 88.8641 96.9945 105.611 114.608 123.835 133.096 142.18 34.0934 35.6521 37.0152 38.6154 40.4389 42.5078 44.8349 47.445 50.3536 53.5834 57.1634 61.119 65.4678 70.24 75.4457 81.0955 87.1912 93.712 100.63 107.88 115.382 123.03 130.693 138.236 40.0529 41.5827 43.0629 44.7884 46.727 48.8926 51.2946 53.9573 56.8856 60.1033 63.6327 67.4993 71.7095 76.2856 81.2265 86.5434 92.2229 98.2473 104.582 111.164 117.933 124.797 131.655 138.393 44.9163 46.4872 48.0415 49.8119 51.777 53.9483 56.3345 58.9501 61.8093 64.9126 68.2973 71.9787 75.9648 80.2753 84.8846 89.8345 95.0942 100.644 106.469 112.496 118.683 124.949 131.216 137.389 48.9516 50.5838 52.1673 53.9511 55.9203 58.0819 60.4308 62.9526 65.6887 68.6403 71.8766 75.3904 79.1846 83.315 87.6712 92.3557 97.2792 102.432 107.857 113.459 119.223 125.051 130.877 136.641 52.389 54.0459 55.5985 57.2926 59.1689 61.2582 63.5725 66.0823 68.7771 71.5614 74.6321 77.9836 81.6474 85.6068 89.6866 94.1691 98.8359 103.787 108.926 114.21 119.632 125.095 130.653 136.255 56.0899 57.4051 58.5677 59.8126 61.2847 63.0092 65.0879 67.7694 71.1809 74.0526 76.4317 80.122 83.2259 87.572 90.4747 94.7094 99.7813 104.405 110.157 115.255 120.301 125.518 131.096 136.888 126.299 158.331 177.699 192.281 204.34 214.146 221.957 228.057 232.676 236.019 238.256 239.522 239.94 239.623 238.672 237.186 235.258 232.98 230.435 227.693 224.811 221.824 218.875 216.154 176.115 191.48 203.695 213.513 221.276 227.198 231.494 234.381 236.072 236.77 236.664 235.931 234.725 233.177 231.395 229.457 227.421 225.318 223.165 220.968 218.716 216.394 214.13 212.364 143.792 154.398 164.356 173.451 181.59 188.74 194.917 200.156 204.516 208.064 210.874 213.016 214.559 215.572 216.11 216.23 215.985 215.422 214.586 213.518 212.247 210.786 209.312 208.372 150.915 159.229 167.028 174.191 180.643 186.341 191.291 195.505 199.028 201.911 204.211 205.989 207.305 208.218 208.777 209.032 209.02 208.776 208.33 207.704 206.907 205.936 204.96 204.538 145.58 152.688 159.475 165.833 171.688 176.987 181.721 185.88 189.487 192.57 195.161 197.3 199.028 200.383 201.402 202.119 202.566 202.772 202.764 202.564 202.186 201.636 201.041 200.925 144.946 151.272 157.313 162.986 168.238 173.024 177.327 181.148 184.497 187.396 189.873 191.959 193.689 195.092 196.203 197.046 197.654 198.047 198.254 198.29 198.17 197.906 197.571 197.378 143.407 149.216 154.771 159.998 164.857 169.318 173.349 176.958 180.151 182.954 185.378 187.451 189.205 190.668 191.858 192.803 193.533 194.064 194.431 194.64 194.708 194.65 194.504 194.402 142.292 147.733 152.938 157.806 162.348 166.555 170.37 173.793 176.843 179.558 181.91 183.94 185.682 187.164 188.383 189.365 190.163 190.777 191.253 191.56 191.737 191.806 191.824 191.999 141.604 146.647 151.561 156.187 160.516 164.546 168.152 171.436 174.368 176.997 179.221 181.178 182.908 184.41 185.607 186.545 187.396 188.086 188.618 188.925 189.135 189.279 189.444 189.934 141.832 146.203 150.762 155.268 159.769 163.669 166.853 169.91 172.738 175.321 177.254 179.054 180.761 182.241 183.283 184.041 184.941 185.356 186.013 186.386 186.709 186.964 187.257 187.956 71.1928 71.1273 70.9319 70.6933 70.4292 70.1454 69.8465 69.5362 69.218 68.895 68.5704 68.2474 67.9294 67.6192 67.3206 67.0382 66.7795 66.5584 66.399 66.3335 66.3932 66.6215 67.2249 69.0997 72.2803 72.0146 71.7048 71.3976 71.0972 70.8067 70.5291 70.2655 70.0149 69.7764 69.5486 69.3311 69.1247 68.9316 68.7571 68.6105 68.5069 68.4702 68.5416 68.7962 69.3641 70.4464 72.2279 74.5847 73.521 73.1114 72.8507 72.5933 72.3373 72.0876 71.8458 71.6126 71.3874 71.1702 70.9611 70.7624 70.5781 70.4145 70.2813 70.1929 70.1708 70.2529 70.499 70.9904 71.8345 73.1577 75.0246 77.2976 74.1947 74.1113 73.9129 73.702 73.4844 73.2641 73.046 72.8345 72.6321 72.4405 72.2611 72.0975 71.9551 71.8417 71.768 71.7499 71.814 72.0036 72.3748 72.996 73.9456 75.2906 77.0255 79.0462 75.359 75.0947 74.895 74.7047 74.5116 74.3173 74.1248 73.9382 73.761 73.5965 73.4464 73.3145 73.2078 73.1356 73.11 73.1477 73.2778 73.5423 73.9919 74.6839 75.6788 77.0207 78.6883 80.5857 76.0317 75.942 75.7765 75.6129 75.4477 75.2802 75.1124 74.9488 74.7937 74.6531 74.5282 74.4205 74.3398 74.2965 74.3038 74.3797 74.5537 74.865 75.3584 76.0844 77.0926 78.4156 80.0407 81.8797 76.8557 76.7372 76.5861 76.4449 76.3015 76.1574 76.0103 75.8661 75.7275 75.607 75.5074 75.4171 75.3529 75.3276 75.3575 75.4612 75.6682 76.016 76.5429 77.2977 78.321 79.6411 81.2463 83.0594 77.6454 77.4022 77.3078 77.1952 77.0674 76.9468 76.8183 76.6944 76.5608 76.4546 76.3901 76.3142 76.26 76.2421 76.2851 76.4042 76.6241 76.9868 77.5147 78.269 79.2661 80.5209 82.0317 83.7838 78.1025 78.0687 77.9946 77.9077 77.7891 77.6907 77.5688 77.4423 77.2845 77.1906 77.2103 77.138 77.063 77.0198 77.0687 77.2214 77.4809 77.9075 78.4889 79.3417 80.4305 81.7386 83.2972 85.1077 77.9244 78.0537 78.1097 78.224 78.2595 78.3286 78.3945 78.3139 77.8635 77.6699 78.0721 78.149 78.0609 77.8349 77.6574 77.5712 77.5533 77.74 77.9407 78.5854 79.6438 80.3811 80.8949 82.0705 73.9661 76.3718 78.2663 80.0117 81.6777 83.2372 84.689 86.0398 87.3028 88.4951 89.6368 90.7476 91.848 92.9532 94.0719 95.2081 96.362 97.5312 98.7122 99.9016 101.097 102.292 103.475 104.773 77.3167 78.5822 79.5429 80.5737 81.7158 82.9341 84.2044 85.5035 86.8123 88.117 89.4065 90.6731 91.9121 93.1219 94.303 95.4585 96.5917 97.7066 98.8069 99.8971 100.981 102.052 103.112 104.278 79.5863 81.1971 82.2246 83.1554 84.1219 85.1364 86.1911 87.2746 88.3768 89.4878 90.5997 91.7058 92.8009 93.8808 94.9437 95.9887 97.0161 98.0272 99.0232 100.007 100.982 101.941 102.89 103.934 81.1097 82.812 83.8712 84.8068 85.7571 86.7299 87.7171 88.7101 89.7026 90.69 91.6695 92.6395 93.5994 94.5493 95.4892 96.4199 97.3416 98.2553 99.1614 100.061 100.956 101.839 102.712 103.656 82.5276 84.1626 85.1769 86.0635 86.9598 87.8755 88.802 89.7304 90.6547 91.5714 92.4784 93.3745 94.2594 95.1333 95.9965 96.8498 97.6937 98.5295 99.358 100.181 100.999 101.81 102.613 103.466 83.7667 85.3728 86.3919 87.2491 88.097 88.9557 89.8202 90.6849 91.5452 92.3981 93.2419 94.0755 94.8982 95.7098 96.5099 97.2986 98.0769 98.8457 99.6062 100.359 101.106 101.846 102.58 103.353 84.9236 86.5187 87.5338 88.3514 89.149 89.9522 90.7601 91.5675 92.3706 93.1664 93.953 94.7296 95.4957 96.251 96.9949 97.7261 98.4455 99.1557 99.8567 100.548 101.231 101.907 102.578 103.276 85.7278 87.4716 88.5317 89.3121 90.0563 90.8109 91.5688 92.3284 93.085 93.8346 94.5744 95.3045 96.0252 96.736 97.4342 98.1152 98.7834 99.4449 100.096 100.732 101.361 101.983 102.6 103.241 87.1652 89.0733 89.7401 90.2453 90.8706 91.5419 92.256 92.9777 93.6986 94.4117 95.1118 95.8041 96.4886 97.1659 97.8294 98.4645 99.0883 99.7142 100.326 100.912 101.491 102.062 102.634 103.232 85.7245 89.8084 90.2472 90.8383 91.4277 92.1572 92.851 93.543 94.2369 94.9207 95.5809 96.244 96.9058 97.5686 98.2092 98.781 99.3569 99.9734 100.556 101.061 101.598 102.149 102.718 103.32 -249.219 -233.663 -216.869 -203.114 -188.751 -173.163 -157.603 -142.503 -127.869 -113.773 -100.423 -87.9727 -76.5911 -66.3611 -57.3021 -49.3828 -42.5191 -36.5556 -31.3122 -26.6287 -22.3667 -18.4135 -14.6753 -11.468 -147.616 -147.259 -145.595 -143.472 -141.756 -140.208 -138.043 -134.896 -130.716 -125.505 -119.257 -112.019 -103.936 -95.236 -86.2155 -77.178 -68.4028 -60.101 -52.3875 -45.2933 -38.7796 -32.7909 -27.2299 -22.5817 -158.99 -158.84 -158.895 -158.673 -157.714 -155.885 -153.357 -150.255 -146.451 -141.791 -136.23 -129.806 -122.544 -114.534 -105.911 -96.8692 -87.6509 -78.5078 -69.6501 -61.2211 -53.2954 -45.8994 -38.9249 -32.9027 -146.125 -146.025 -145.777 -145.406 -144.906 -144.242 -143.352 -142.151 -140.644 -138.763 -136.295 -133.03 -128.784 -123.459 -117.034 -109.603 -101.371 -92.609 -83.6227 -74.6858 -66.0021 -57.7217 -49.8163 -43.0038 -145.413 -145.381 -145.348 -145.264 -145.09 -144.781 -144.269 -143.477 -142.331 -140.785 -138.787 -136.227 -132.989 -128.94 -123.959 -117.969 -110.986 -103.135 -94.644 -85.8007 -76.8774 -68.1309 -59.6106 -52.2189 -141.242 -141.21 -141.141 -141.025 -140.853 -140.607 -140.264 -139.79 -139.142 -138.26 -137.072 -135.491 -133.389 -130.624 -127.045 -122.514 -116.943 -110.327 -102.779 -94.5144 -85.8074 -76.969 -68.0899 -60.3083 -139.02 -138.998 -138.966 -138.907 -138.81 -138.659 -138.435 -138.108 -137.642 -136.994 -136.107 -134.914 -133.327 -131.231 -128.492 -124.964 -120.509 -115.033 -108.527 -101.088 -92.9186 -84.3185 -75.3859 -67.4206 -136.37 -136.353 -136.322 -136.268 -136.185 -136.063 -135.889 -135.646 -135.309 -134.846 -134.216 -133.362 -132.213 -130.669 -128.61 -125.892 -122.365 -117.892 -112.389 -105.86 -98.4106 -90.2872 -81.5752 -73.4803 -134.081 -134.069 -134.047 -134.009 -133.949 -133.86 -133.73 -133.546 -133.288 -132.931 -132.441 -131.775 -130.877 -129.672 -128.06 -125.914 -123.091 -119.435 -114.815 -109.164 -102.497 -94.9827 -86.6735 -78.5737 -131.766 -131.756 -131.738 -131.706 -131.658 -131.586 -131.482 -131.336 -131.133 -130.853 -130.469 -129.946 -129.24 -128.288 -127.009 -125.295 -123.017 -120.021 -116.154 -111.302 -105.412 -98.5771 -90.8257 -83.0828 -129.529 -129.52 -129.506 -129.482 -129.444 -129.387 -129.304 -129.188 -129.025 -128.799 -128.489 -128.064 -127.488 -126.712 -125.669 -124.27 -122.401 -119.924 -116.68 -112.526 -107.362 -101.211 -94.0638 -86.8786 -127.292 -127.286 -127.276 -127.257 -127.227 -127.181 -127.115 -127.02 -126.888 -126.704 -126.449 -126.1 -125.625 -124.983 -124.119 -122.958 -121.403 -119.33 -116.593 -113.034 -108.517 -103.001 -96.3948 -89.6693 -125.078 -125.073 -125.065 -125.051 -125.027 -124.99 -124.936 -124.859 -124.75 -124.597 -124.386 -124.094 -123.695 -123.155 -122.426 -121.447 -120.134 -118.378 -116.048 -112.987 -109.036 -104.099 -98.0017 -91.6492 -122.864 -122.86 -122.854 -122.843 -122.824 -122.794 -122.751 -122.687 -122.597 -122.47 -122.292 -122.046 -121.708 -121.247 -120.626 -119.789 -118.667 -117.164 -115.163 -112.518 -109.065 -104.681 -99.1459 -93.286 -120.653 -120.649 -120.645 -120.636 -120.621 -120.598 -120.562 -120.509 -120.434 -120.327 -120.177 -119.967 -119.677 -119.281 -118.745 -118.023 -117.052 -115.753 -114.021 -111.724 -108.708 -104.835 -99.8751 -94.5011 -118.441 -118.438 -118.434 -118.427 -118.416 -118.397 -118.368 -118.324 -118.261 -118.171 -118.043 -117.863 -117.613 -117.27 -116.803 -116.173 -115.327 -114.194 -112.682 -110.676 -108.031 -104.612 -100.193 -95.3039 -116.223 -116.221 -116.22 -116.216 -116.207 -116.192 -116.169 -116.133 -116.08 -116.004 -115.895 -115.74 -115.523 -115.223 -114.813 -114.26 -113.516 -112.52 -111.19 -109.426 -107.098 -104.074 -100.148 -95.8521 -114.012 -114.011 -114.01 -114.007 -114.001 -113.989 -113.971 -113.941 -113.897 -113.832 -113.738 -113.604 -113.414 -113.151 -112.79 -112.3 -111.641 -110.76 -109.584 -108.024 -105.965 -103.289 -99.7993 -96.1829 -111.803 -111.802 -111.802 -111.801 -111.797 -111.788 -111.773 -111.749 -111.711 -111.656 -111.576 -111.459 -111.293 -111.06 -110.74 -110.305 -109.718 -108.932 -107.884 -106.493 -104.653 -102.249 -99.0724 -95.7817 -109.599 -109.598 -109.598 -109.598 -109.596 -109.59 -109.578 -109.558 -109.527 -109.481 -109.412 -109.31 -109.165 -108.959 -108.675 -108.286 -107.761 -107.058 -106.119 -104.874 -103.228 -101.076 -98.2153 -95.4808 -107.395 -107.394 -107.396 -107.397 -107.397 -107.393 -107.385 -107.37 -107.345 -107.307 -107.248 -107.161 -107.034 -106.852 -106.599 -106.25 -105.778 -105.144 -104.298 -103.173 -101.681 -99.7243 -97.1061 -94.4762 -105.195 -105.195 -105.198 -105.2 -105.202 -105.201 -105.196 -105.185 -105.166 -105.134 -105.085 -105.011 -104.9 -104.74 -104.514 -104.202 -103.778 -103.206 -102.441 -101.423 -100.075 -98.3031 -95.9196 -93.948 -102.997 -102.997 -103 -103.004 -103.007 -103.009 -103.007 -103 -102.986 -102.962 -102.922 -102.859 -102.764 -102.624 -102.423 -102.143 -101.759 -101.239 -100.541 -99.6072 -98.3598 -96.7005 -94.4257 -92.284 -100.796 -100.796 -100.8 -100.806 -100.811 -100.814 -100.816 -100.813 -100.804 -100.786 -100.755 -100.703 -100.622 -100.5 -100.322 -100.071 -99.7233 -99.2506 -98.6125 -97.7574 -96.6132 -95.0828 -92.9607 -91.1601 -98.5896 -98.5906 -98.5956 -98.602 -98.6087 -98.6149 -98.6192 -98.6204 -98.6164 -98.6046 -98.5811 -98.5397 -98.4716 -98.3656 -98.2081 -97.9824 -97.6669 -97.2344 -96.6471 -95.8543 -94.7864 -93.3613 -91.3875 -89.0137 -96.3766 -96.3778 -96.3835 -96.3911 -96.3995 -96.4077 -96.4149 -96.4197 -96.4203 -96.4142 -96.398 -96.3661 -96.31 -96.219 -96.0802 -95.8778 -95.5917 -95.1963 -94.6569 -93.9276 -92.9436 -91.6238 -89.8487 -88.4901 -94.1538 -94.1554 -94.1621 -94.171 -94.1809 -94.1913 -94.2011 -94.2092 -94.214 -94.2132 -94.2037 -94.1802 -94.135 -94.0577 -93.9357 -93.7543 -93.4944 -93.1317 -92.634 -91.9581 -91.0442 -89.8129 -88.1151 -86.3605 -91.9237 -91.9256 -91.9328 -91.9427 -91.954 -91.966 -91.9781 -91.9891 -91.9975 -92.0013 -91.9976 -91.9817 -91.9462 -91.8812 -91.7746 -91.6121 -91.3756 -91.0423 -90.5821 -89.9538 -89.1016 -87.9515 -86.3675 -84.5185 -89.6858 -89.6879 -89.6957 -89.7064 -89.7188 -89.7323 -89.7463 -89.7598 -89.7713 -89.7791 -89.7805 -89.7712 -89.7443 -89.6901 -89.5972 -89.4517 -89.2368 -88.9304 -88.5047 -87.9213 -87.1293 -86.0631 -84.6182 -82.8578 -87.4419 -87.4441 -87.4524 -87.4639 -87.4772 -87.4921 -87.5077 -87.5232 -87.5374 -87.5487 -87.5544 -87.5508 -87.5314 -87.487 -87.4064 -87.2763 -87.0806 -86.7988 -86.4049 -85.8632 -85.1267 -84.1364 -82.808 -81.1315 -85.1946 -85.197 -85.2057 -85.2179 -85.2321 -85.248 -85.265 -85.2824 -85.2988 -85.3129 -85.3223 -85.3237 -85.3109 -85.2751 -85.2055 -85.0895 -84.9117 -84.6527 -84.2886 -83.7867 -83.1048 -82.1872 -80.9569 -79.4895 -82.9468 -82.9494 -82.9584 -82.9711 -82.986 -83.0028 -83.021 -83.0399 -83.0583 -83.0749 -83.0878 -83.0934 -83.0864 -83.0585 -82.9992 -82.8962 -82.7349 -82.4971 -82.1608 -81.6956 -81.0632 -80.2158 -79.0808 -77.6265 -80.7012 -80.7039 -80.7132 -80.7264 -80.742 -80.7596 -80.7789 -80.7991 -80.8192 -80.838 -80.8537 -80.8631 -80.8613 -80.8403 -80.7901 -80.6988 -80.5525 -80.3339 -80.0218 -79.587 -78.9914 -78.188 -77.1213 -75.6965 -78.4594 -78.4623 -78.472 -78.4856 -78.5018 -78.5203 -78.5406 -78.5621 -78.584 -78.605 -78.6234 -78.6365 -78.6395 -78.6251 -78.5836 -78.5035 -78.3716 -78.1716 -77.8838 -77.482 -76.9326 -76.1954 -75.2206 -73.9871 -76.2237 -76.2267 -76.2367 -76.2508 -76.2677 -76.2871 -76.3085 -76.3314 -76.355 -76.3782 -76.3993 -76.416 -76.4238 -76.4158 -76.3827 -76.3135 -76.1955 -76.0134 -75.7489 -75.3784 -74.8711 -74.189 -73.2995 -72.3244 -73.9942 -73.9973 -74.0077 -74.0223 -74.0399 -74.0602 -74.0827 -74.1071 -74.1326 -74.158 -74.182 -74.2023 -74.215 -74.2133 -74.1883 -74.1295 -74.0246 -73.859 -73.615 -73.2701 -72.7947 -72.1505 -71.288 -70.1746 -71.7713 -71.7746 -71.7853 -71.8005 -71.8188 -71.84 -71.8638 -71.8896 -71.917 -71.9448 -71.9718 -71.9959 -72.0133 -72.018 -72.0013 -71.953 -71.8612 -71.7121 -71.489 -71.1712 -70.7316 -70.1308 -69.3159 -68.4606 -69.5548 -69.5582 -69.5693 -69.585 -69.604 -69.626 -69.6509 -69.6783 -69.7074 -69.7375 -69.7673 -69.7949 -69.8169 -69.8276 -69.8185 -69.7796 -69.6991 -69.5637 -69.3566 -69.0562 -68.6326 -68.0458 -67.2455 -66.1584 -67.3448 -67.3483 -67.3597 -67.3759 -67.3955 -67.4184 -67.4443 -67.473 -67.5038 -67.5359 -67.5683 -67.5992 -67.6255 -67.6416 -67.6397 -67.6098 -67.5406 -67.4189 -67.2287 -66.9501 -66.5564 -66.0127 -65.2612 -64.2989 -65.142 -65.1456 -65.1573 -65.1739 -65.194 -65.2176 -65.2444 -65.2741 -65.3063 -65.3403 -65.3748 -65.4085 -65.4383 -65.4591 -65.4632 -65.4409 -65.3808 -65.2701 -65.093 -64.8288 -64.4506 -63.9245 -63.1743 -61.8786 -62.9474 -62.951 -62.963 -62.98 -63.0005 -63.0247 -63.0523 -63.083 -63.1164 -63.1518 -63.1884 -63.2244 -63.2574 -63.2825 -63.2922 -63.277 -63.2261 -63.1269 -62.9645 -62.7205 -62.3698 -61.881 -61.2228 -60.5646 -60.7626 -60.7663 -60.7785 -60.7958 -60.8168 -60.8414 -60.8697 -60.9012 -60.9357 -60.9725 -61.0107 -61.0489 -61.0847 -61.1135 -61.1282 -61.1194 -61.0764 -60.9871 -60.8372 -60.6087 -60.2794 -59.8369 -59.2664 -58.1902 -58.589 -58.5928 -58.6052 -58.6227 -58.6441 -58.6692 -58.6981 -58.7305 -58.766 -58.8042 -58.844 -58.8844 -58.923 -58.9557 -58.9756 -58.9739 -58.9402 -58.863 -58.7294 -58.5252 -58.2339 -57.8395 -57.3255 -56.9241 -56.4275 -56.4314 -56.4439 -56.4617 -56.4834 -56.509 -56.5384 -56.5715 -56.6079 -56.6472 -56.6885 -56.7308 -56.7718 -56.8077 -56.832 -56.8357 -56.8087 -56.7391 -56.6136 -56.4154 -56.121 -55.6975 -55.0864 -54.1642 -54.2797 -54.2835 -54.2963 -54.3142 -54.3362 -54.3622 -54.3921 -54.4258 -54.4631 -54.5034 -54.5462 -54.5902 -54.6337 -54.6727 -54.7014 -54.711 -54.6916 -54.6316 -54.5184 -54.3371 -54.0679 -53.6772 -53.107 -52.5763 -52.1465 -52.1504 -52.1632 -52.1813 -52.2035 -52.2297 -52.26 -52.2943 -52.3322 -52.3735 -52.4174 -52.4629 -52.5082 -52.5501 -52.5824 -52.597 -52.5838 -52.5316 -52.4275 -52.256 -51.9986 -51.6412 -51.1345 -50.0098 -50.0291 -50.033 -50.046 -50.0643 -50.0867 -50.1132 -50.1438 -50.1786 -50.2171 -50.2592 -50.3043 -50.3513 -50.3987 -50.4434 -50.4797 -50.4997 -50.4937 -50.4511 -50.36 -50.2076 -49.9775 -49.6526 -49.2282 -48.9932 -47.9293 -47.9332 -47.9463 -47.9646 -47.9871 -48.0137 -48.0445 -48.0795 -48.1185 -48.1612 -48.207 -48.2551 -48.304 -48.3507 -48.3901 -48.4142 -48.4134 -48.3769 -48.2924 -48.1452 -47.9147 -47.579 -47.1206 -46.3927 -45.8487 -45.8525 -45.8654 -45.8837 -45.9062 -45.9328 -45.9637 -45.9988 -46.0381 -46.0812 -46.1276 -46.1767 -46.2269 -46.2756 -46.3179 -46.3462 -46.3511 -46.322 -46.2473 -46.1139 -45.9046 -45.5952 -45.155 -44.681 -43.7868 -43.7908 -43.8039 -43.8223 -43.8447 -43.8714 -43.9024 -43.9376 -43.977 -44.0204 -44.0673 -44.117 -44.1682 -44.2185 -44.2631 -44.295 -44.3048 -44.2821 -44.2154 -44.0918 -43.8948 -43.5979 -43.1627 -42.6642 -41.748 -41.7518 -41.7649 -41.7831 -41.8055 -41.832 -41.8629 -41.8981 -41.9375 -41.9809 -42.028 -42.078 -42.1299 -42.1814 -42.228 -42.2628 -42.277 -42.26 -42.2006 -42.0855 -41.8986 -41.6196 -41.2007 -40.448 -39.7318 -39.7356 -39.7486 -39.7669 -39.7891 -39.8155 -39.8463 -39.8814 -39.9207 -39.9642 -40.0114 -40.0618 -40.1144 -40.167 -40.2156 -40.2537 -40.2724 -40.2622 -40.2126 -40.1117 -39.9452 -39.696 -39.3625 -39.1023 -37.7408 -37.7444 -37.7571 -37.7751 -37.7971 -37.8233 -37.8538 -37.8886 -37.9277 -37.9712 -38.0184 -38.069 -38.122 -38.1754 -38.2255 -38.2663 -38.2892 -38.2845 -38.2415 -38.1486 -37.9911 -37.7522 -37.412 -36.8927 -35.7719 -35.7757 -35.7885 -35.8065 -35.8284 -35.8546 -35.8851 -35.9199 -35.9591 -36.0026 -36.05 -36.1008 -36.1543 -36.2087 -36.2605 -36.3036 -36.3303 -36.331 -36.2955 -36.2127 -36.0693 -35.8504 -35.5345 -35.0552 -33.8285 -33.8324 -33.8453 -33.8633 -33.8851 -33.9112 -33.9416 -33.9764 -34.0157 -34.059 -34.1065 -34.1577 -34.2116 -34.2668 -34.3199 -34.3653 -34.3955 -34.4011 -34.3721 -34.2981 -34.1657 -33.9594 -33.6586 -33.2252 -31.9108 -31.9146 -31.9274 -31.9452 -31.9671 -31.9929 -32.0232 -32.058 -32.0972 -32.1405 -32.1882 -32.2397 -32.2941 -32.3501 -32.4046 -32.4524 -32.486 -32.4965 -32.4745 -32.4094 -32.2895 -32.1005 -31.8202 -31.418 -30.0178 -30.0216 -30.0343 -30.0519 -30.0737 -30.0995 -30.1297 -30.1643 -30.2034 -30.2469 -30.2947 -30.3465 -30.4015 -30.4583 -30.5142 -30.5642 -30.601 -30.6162 -30.6004 -30.5434 -30.4339 -30.2555 -29.9776 -29.5825 -28.1489 -28.1525 -28.1649 -28.1825 -28.2041 -28.2298 -28.26 -28.2945 -28.3336 -28.3773 -28.4254 -28.4775 -28.5329 -28.5907 -28.648 -28.7003 -28.7407 -28.7605 -28.7504 -28.7011 -28.6012 -28.4333 -28.1601 -27.7884 -26.3021 -26.3059 -26.3185 -26.336 -26.3576 -26.3834 -26.4135 -26.4481 -26.4873 -26.5312 -26.5794 -26.6318 -26.6879 -26.7466 -26.8053 -26.8596 -26.9027 -26.9264 -26.9214 -26.8783 -26.7849 -26.6235 -26.3628 -25.9987 -24.4795 -24.4833 -24.496 -24.5135 -24.535 -24.5606 -24.5907 -24.6253 -24.6645 -24.7082 -24.7566 -24.8093 -24.8658 -24.925 -24.9848 -25.0409 -25.0868 -25.1145 -25.115 -25.0783 -24.9933 -24.8463 -24.6171 -24.2666 -22.6811 -22.6848 -22.6974 -22.7148 -22.7362 -22.7616 -22.7915 -22.8258 -22.8648 -22.9085 -22.9567 -23.0094 -23.066 -23.1256 -23.1862 -23.2436 -23.2916 -23.3223 -23.3268 -23.2947 -23.2146 -23.0717 -22.8456 -22.4705 -20.9067 -20.9103 -20.9227 -20.9399 -20.9611 -20.9863 -21.0159 -21.05 -21.0886 -21.1321 -21.1801 -21.2327 -21.2894 -21.3493 -21.4105 -21.4692 -21.5195 -21.5537 -21.5633 -21.5394 -21.4721 -21.3462 -21.1358 -20.8972 -19.1562 -19.1596 -19.1719 -19.1888 -19.2096 -19.2347 -19.264 -19.2977 -19.3361 -19.3793 -19.4272 -19.4796 -19.5361 -19.596 -19.6576 -19.7172 -19.7693 -19.8061 -19.8192 -19.7994 -19.736 -19.6167 -19.4264 -19.1084 -17.428 -17.4316 -17.4439 -17.4608 -17.4815 -17.5064 -17.5356 -17.5693 -17.6076 -17.6506 -17.6983 -17.7505 -17.8071 -17.8673 -17.9292 -17.9898 -18.0436 -18.0832 -18.1007 -18.0877 -18.0347 -17.9327 -17.7703 -17.4957 -15.7243 -15.7278 -15.7402 -15.7571 -15.7778 -15.8025 -15.8316 -15.8651 -15.9032 -15.9459 -15.9935 -16.0457 -16.1023 -16.1625 -16.2248 -16.2863 -16.3417 -16.3842 -16.4059 -16.3986 -16.3538 -16.263 -16.1143 -15.8576 -14.0443 -14.0479 -14.0601 -14.0768 -14.0974 -14.1221 -14.1509 -14.1843 -14.2223 -14.265 -14.3124 -14.3645 -14.4211 -14.4815 -14.5442 -14.6065 -14.6633 -14.708 -14.7331 -14.7302 -14.6903 -14.6017 -14.4514 -14.2292 -12.3876 -12.391 -12.4031 -12.4197 -12.4401 -12.4645 -12.4933 -12.5265 -12.5643 -12.6069 -12.6543 -12.7065 -12.7633 -12.824 -12.8874 -12.9508 -13.0095 -13.057 -13.0862 -13.09 -13.061 -12.9888 -12.8555 -12.7132 -10.7529 -10.7561 -10.7681 -10.7844 -10.8046 -10.8289 -10.8575 -10.8905 -10.9283 -10.9709 -11.0183 -11.0704 -11.1272 -11.1881 -11.252 -11.316 -11.3757 -11.4247 -11.4554 -11.4597 -11.4279 -11.3485 -11.2074 -10.9251 -9.13801 -9.14156 -9.1537 -9.17021 -9.19032 -9.21455 -9.24309 -9.27621 -9.31398 -9.35642 -9.40376 -9.45599 -9.51299 -9.57427 -9.63861 -9.70358 -9.76489 -9.81631 -9.85062 -9.86076 -9.83906 -9.77522 -9.65065 -9.50167 -7.54786 -7.55107 -7.56306 -7.57927 -7.59921 -7.62303 -7.65128 -7.68402 -7.72137 -7.76344 -7.81053 -7.86256 -7.91932 -7.98041 -8.04475 -8.11004 -8.17187 -8.22416 -8.25939 -8.26868 -8.24224 -8.16753 -8.02648 -7.72272 -5.97971 -5.98285 -5.99463 -6.01058 -6.03024 -6.0538 -6.08159 -6.11387 -6.15074 -6.19245 -6.23905 -6.29069 -6.34719 -6.40813 -6.47258 -6.53837 -6.60137 -6.65576 -6.69463 -6.71039 -6.69599 -6.64054 -6.52164 -6.39796 -4.43531 -4.43829 -4.44974 -4.46535 -4.48459 -4.50769 -4.53495 -4.56657 -4.60278 -4.64385 -4.68987 -4.74076 -4.79651 -4.85685 -4.92085 -4.98648 -5.04982 -5.10489 -5.14431 -5.15972 -5.14173 -5.07899 -4.9519 -4.65769 -2.91378 -2.91674 -2.92819 -2.94352 -2.96241 -2.98513 -3.01187 -3.04291 -3.07855 -3.11892 -3.16413 -3.21422 -3.26929 -3.32902 -3.3925 -3.4578 -3.52155 -3.57798 -3.6201 -3.64056 -3.63145 -3.58301 -3.47608 -3.28902 -1.41766 -1.42068 -1.43192 -1.44705 -1.46546 -1.48767 -1.51397 -1.54443 -1.57927 -1.61867 -1.66293 -1.71217 -1.76631 -1.82507 -1.88777 -1.95273 -2.01659 -2.07404 -2.11857 -2.14285 -2.13969 -2.09916 -2.00083 -1.83574 0.0531008 0.0501817 0.0391319 0.0243574 0.00623115 -0.0154158 -0.0411233 -0.0709619 -0.10503 -0.143609 -0.187022 -0.235346 -0.28848 -0.346316 -0.408196 -0.472566 -0.536276 -0.594497 -0.640958 -0.668374 -0.669935 -0.635807 -0.548015 -0.386049 1.49925 1.49633 1.4855 1.47096 1.45311 1.43176 1.40658 1.37733 1.34388 1.30593 1.26336 1.21592 1.16364 1.10672 1.04562 0.981764 0.918067 0.858962 0.810102 0.777976 0.768589 0.788632 0.850764 0.979897 2.92191 2.91907 2.90837 2.89406 2.87648 2.85535 2.83046 2.80161 2.76859 2.73107 2.68894 2.64217 2.59062 2.53437 2.47389 2.41048 2.34668 2.28683 2.23636 2.20105 2.18643 2.19852 2.24911 2.36185 4.32384 4.32092 4.31013 4.29578 4.27824 4.25709 4.23224 4.20344 4.17044 4.13309 4.09123 4.04476 3.99349 3.93755 3.87748 3.81441 3.75082 3.69072 3.63921 3.60169 3.58387 3.59259 3.64196 3.76573 5.7057 5.70275 5.69186 5.67739 5.65973 5.63855 5.61354 5.58459 5.55151 5.51416 5.47224 5.42563 5.37431 5.31843 5.25839 5.19523 5.13134 5.07039 5.01714 4.97666 4.95318 4.95244 4.99106 5.05695 7.06995 7.06699 7.05604 7.04154 7.0237 7.00233 6.97715 6.94795 6.91462 6.87687 6.83462 6.78771 6.73613 6.67993 6.61956 6.5562 6.49213 6.431 6.37759 6.33752 6.3156 6.31702 6.34765 6.44545 8.4187 8.41577 8.40478 8.3902 8.37223 8.35067 8.32524 8.29577 8.26205 8.22385 8.18113 8.13367 8.08144 8.02463 7.96361 7.89944 7.83448 7.77229 7.71743 7.67493 7.64872 7.64455 7.6772 7.68629 9.75335 9.75053 9.73951 9.72493 9.70696 9.68526 9.65968 9.63 9.59602 9.55745 9.51421 9.46634 9.41373 9.35645 9.295 9.23051 9.16536 9.10374 9.05142 9.01538 9.00474 9.03451 9.13426 9.35999 11.0748 11.072 11.0608 11.0462 11.0282 11.0065 10.9808 10.951 10.9167 10.878 10.8345 10.7863 10.7333 10.6755 10.6136 10.5486 10.4829 10.4207 10.3678 10.3311 10.3186 10.3418 10.4228 10.5976 12.3809 12.3781 12.367 12.3524 12.3345 12.3129 12.2873 12.2576 12.2235 12.1849 12.1415 12.0933 12.0402 11.9824 11.9203 11.855 11.7889 11.726 11.6721 11.6344 11.6204 11.6404 11.7119 11.8521 13.6704 13.6676 13.6566 13.6423 13.6246 13.6032 13.578 13.5486 13.5149 13.4766 13.4335 13.3856 13.3327 13.275 13.2129 13.1474 13.0809 13.0171 12.9618 12.9217 12.9038 12.9166 12.9726 13.0943 14.9416 14.9389 14.9281 14.9141 14.8967 14.8758 14.851 14.8222 14.789 14.7512 14.7087 14.6613 14.6088 14.5516 14.4898 14.4243 14.3573 14.2927 14.2357 14.1929 14.171 14.1778 14.2263 14.3276 16.1933 16.1907 16.1802 16.1665 16.1496 16.1291 16.1049 16.0766 16.044 16.0068 15.965 15.9183 15.8666 15.8097 15.7482 15.683 15.6158 15.5501 15.4911 15.4449 15.4174 15.4145 15.4467 15.5434 17.4255 17.4227 17.4123 17.3987 17.3822 17.3622 17.3384 17.3107 17.2787 17.2424 17.2014 17.1554 17.1044 17.0485 16.9877 16.923 16.856 16.79 16.7303 16.6827 16.6546 16.6544 16.6932 16.8016 18.6346 18.6319 18.6217 18.6086 18.5924 18.573 18.5499 18.5229 18.4918 18.4563 18.4162 18.3711 18.3211 18.2661 18.2061 18.1418 18.0748 18.008 17.9459 17.8937 17.8564 17.8388 17.852 17.8871 19.8223 19.8195 19.8096 19.7968 19.7811 19.7621 19.7397 19.7134 19.683 19.6484 19.6093 19.5652 19.5162 19.4622 19.4032 19.3399 19.2737 19.2072 19.1449 19.0924 19.0555 19.0378 19.0495 19.2555 20.988 20.9851 20.9756 20.9631 20.9478 20.9293 20.9074 20.8817 20.8522 20.8183 20.78 20.737 20.689 20.6361 20.5781 20.5155 20.4496 20.3829 20.3191 20.2626 20.2182 20.1918 20.1803 20.0549 22.1334 22.1304 22.121 22.1088 22.0937 22.0755 22.054 22.0289 21.9999 21.9667 21.9292 21.8871 21.84 21.7879 21.731 21.6696 21.6046 21.5386 21.475 21.4182 21.3726 21.3372 21.3121 21.4653 23.2585 23.2553 23.246 23.2339 23.2192 23.2013 23.1801 23.1553 23.1268 23.0943 23.0575 23.016 22.9697 22.9185 22.8625 22.8019 22.7377 22.6719 22.6079 22.5493 22.499 22.46 22.4452 22.443 24.3647 24.3614 24.3522 24.3404 24.3258 24.3082 24.2873 24.2629 24.2349 24.2028 24.1664 24.1256 24.08 24.0296 23.9743 23.9146 23.8514 23.7866 23.7235 23.6664 23.6188 23.5874 23.5966 23.6622 25.4535 25.45 25.4411 25.4294 25.415 25.3976 25.377 25.3529 25.3252 25.2935 25.2576 25.2173 25.1723 25.1226 25.0682 25.0093 24.9471 24.8836 24.8222 24.7678 24.7264 24.705 24.7142 24.8151 26.5259 26.5223 26.5135 26.502 26.4878 26.4706 26.4502 26.4265 26.3991 26.3677 26.3322 26.2923 26.2479 26.1988 26.145 26.0868 26.0251 25.962 25.9007 25.8456 25.8012 25.7717 25.7609 25.8 27.5831 27.5795 27.5707 27.5593 27.5452 27.5282 27.508 27.4845 27.4572 27.4262 27.391 27.3516 27.3076 27.259 27.2057 27.1481 27.0871 27.0246 26.9637 26.9084 26.863 26.8325 26.8285 26.8697 28.6249 28.6211 28.6125 28.6011 28.5872 28.5704 28.5504 28.5271 28.5002 28.4695 28.4348 28.3957 28.3521 28.304 28.2513 28.1943 28.1338 28.0717 28.0111 27.9563 27.9118 27.8827 27.8813 27.9514 29.6519 29.648 29.6394 29.6283 29.6145 29.5979 29.5782 29.5551 29.5285 29.4982 29.4638 29.4252 29.3821 29.3344 29.2822 29.2257 29.1658 29.1042 29.0442 28.9902 28.9475 28.9221 28.9206 28.9871 30.6642 30.6603 30.6519 30.6409 30.6273 30.6109 30.5914 30.5686 30.5424 30.5124 30.4784 30.4402 30.3975 30.3504 30.2986 30.2425 30.1829 30.1214 30.0608 30.0051 29.9585 29.9267 29.9196 29.9373 31.6623 31.6583 31.65 31.6392 31.6259 31.6097 31.5904 31.568 31.542 31.5123 31.4787 31.4409 31.3988 31.3521 31.3007 31.2451 31.1859 31.1246 31.0643 31.0084 30.9615 30.9298 30.92 30.909 32.6468 32.6427 32.6345 32.6238 32.6106 32.5945 32.5755 32.5532 32.5275 32.4982 32.4649 32.4276 32.3858 32.3395 32.2887 32.2335 32.1747 32.1138 32.0536 31.9974 31.9493 31.914 31.9036 31.9601 33.6173 33.6132 33.6051 33.5944 33.5813 33.5655 33.5466 33.5246 33.4992 33.4703 33.4374 33.4003 33.359 33.3132 33.2629 33.2082 33.1498 33.0892 33.029 32.973 32.9251 32.8914 32.8866 32.9243 34.5744 34.5703 34.5622 34.5517 34.5387 34.523 34.5044 34.4826 34.4575 34.4288 34.3963 34.3596 34.3187 34.2734 34.2235 34.1693 34.1115 34.0513 33.9913 33.9354 33.8875 33.8532 33.8437 33.9016 35.5186 35.5145 35.5065 35.4961 35.4833 35.4677 35.4492 35.4277 35.4028 35.3744 35.3421 35.3058 35.2653 35.2203 35.1709 35.1171 35.0594 34.9992 34.939 34.8819 34.8313 34.79 34.7613 34.7678 36.4509 36.4468 36.4388 36.4284 36.4156 36.4001 36.3818 36.3604 36.3356 36.3074 36.2753 36.2394 36.1992 36.1546 36.1055 36.0523 35.9952 35.9357 35.8761 35.8196 35.7701 35.7321 35.7132 35.7429 37.3708 37.3667 37.3588 37.3485 37.3358 37.3205 37.3022 37.2809 37.2563 37.2282 37.1965 37.1607 37.1207 37.0765 37.0278 36.9749 36.9181 36.8587 36.799 36.7414 36.6892 36.6469 36.6244 36.5809 38.2799 38.2757 38.2678 38.2575 38.2449 38.2296 38.2114 38.1902 38.1658 38.1379 38.1063 38.0707 38.0311 37.9872 37.939 37.8866 37.8306 37.7723 37.7141 37.6598 37.6143 37.5842 37.5791 37.6517 39.1774 39.1732 39.1654 39.1552 39.1426 39.1273 39.1093 39.0882 39.0639 39.0362 39.0048 38.9694 38.93 38.8864 38.8384 38.7863 38.7305 38.6722 38.6134 38.5573 38.5068 38.4646 38.4418 38.4441 40.0638 40.0596 40.0519 40.0418 40.0293 40.0142 39.9962 39.9753 39.9512 39.9236 39.8924 39.8573 39.8183 39.775 39.7275 39.6758 39.6205 39.563 39.5057 39.4524 39.4076 39.3749 39.3699 39.5674 40.9394 40.9352 40.9275 40.9175 40.905 40.89 40.8722 40.8514 40.8274 40.7999 40.7689 40.7341 40.6952 40.6521 40.6048 40.5534 40.4983 40.4407 40.3827 40.327 40.2774 40.2387 40.2087 40.0853 41.8037 41.7995 41.7918 41.7818 41.7694 41.7545 41.7368 41.7161 41.6922 41.665 41.6342 41.5996 41.5609 41.5182 41.4712 41.4201 41.3654 41.3081 41.2502 41.1951 41.1457 41.1014 41.0591 41.1473 42.6571 42.6529 42.6452 42.6353 42.6229 42.6081 42.5904 42.5699 42.5462 42.5191 42.4885 42.454 42.4156 42.3731 42.3264 42.2756 42.2212 42.1642 42.1066 42.0513 42.0011 41.9587 41.9287 41.9132 43.4999 43.4957 43.4881 43.4781 43.4658 43.451 43.4334 43.4129 43.3893 43.3623 43.3318 43.2975 43.2592 43.2169 43.1704 43.1199 43.0658 43.0092 42.9518 42.8965 42.8463 42.8063 42.7926 42.7749 44.3327 44.3285 44.3209 44.3109 44.2987 44.2839 44.2663 44.2459 44.2223 44.1954 44.1649 44.1308 44.0928 44.0507 44.0046 43.9546 43.901 43.8455 43.7902 43.7391 43.6977 43.6721 43.6811 43.8898 45.1559 45.1517 45.144 45.1341 45.1218 45.107 45.0894 45.069 45.0453 45.0184 44.988 44.954 44.916 44.8739 44.8279 44.7779 44.7244 44.6685 44.6121 44.5578 44.5092 44.4723 44.4478 44.2994 45.9694 45.9651 45.9574 45.9474 45.9351 45.9203 45.9027 45.8822 45.8587 45.8319 45.8015 45.7674 45.7295 45.6877 45.6418 45.592 45.5388 45.4833 45.4274 45.3743 45.3276 45.2894 45.2706 45.386 46.7735 46.7693 46.7616 46.7516 46.7392 46.7243 46.7068 46.6862 46.6627 46.6358 46.6054 46.5714 46.5335 46.4917 46.4458 46.3962 46.3431 46.2876 46.2317 46.1786 46.1313 46.0925 46.0745 46.1386 47.5686 47.5643 47.5566 47.5466 47.5342 47.5193 47.5017 47.4811 47.4575 47.4306 47.4002 47.3661 47.3282 47.2865 47.2407 47.1911 47.1383 47.083 47.0275 46.975 46.93 46.8981 46.8821 46.8983 48.3548 48.3504 48.3427 48.3326 48.3202 48.3052 48.2875 48.2669 48.2432 48.2162 48.1858 48.1517 48.1138 48.072 48.0262 47.9767 47.9237 47.8683 47.8124 47.7589 47.7123 47.6789 47.6533 47.5136 49.1318 49.1274 49.1197 49.1096 49.0971 49.0821 49.0644 49.0438 49.02 48.9929 48.9624 48.9283 48.8904 48.8485 48.8028 48.7533 48.7005 48.6455 48.5903 48.5386 48.4955 48.4639 48.4451 48.5564 49.8991 49.8948 49.887 49.8769 49.8645 49.8495 49.8318 49.8111 49.7874 49.7603 49.7298 49.6956 49.6577 49.6159 49.5701 49.5206 49.4677 49.4125 49.3568 49.3039 49.2588 49.2256 49.2033 49.2038 50.657 50.6526 50.6448 50.6348 50.6223 50.6074 50.5896 50.569 50.5452 50.5182 50.4877 50.4536 50.4156 50.3738 50.328 50.2784 50.2254 50.1699 50.1134 50.0586 50.0103 49.9757 49.9456 49.7707 51.4046 51.4003 51.3925 51.3825 51.37 51.3551 51.3374 51.3168 51.2931 51.2661 51.2356 51.2015 51.1635 51.1217 51.076 51.0263 50.9731 50.9173 50.8602 50.8041 50.7521 50.7109 50.6844 50.5402 52.1422 52.1378 52.1301 52.12 52.1077 52.0927 52.0751 52.0545 52.0308 52.0038 51.9733 51.9393 51.9015 51.8598 51.8141 51.7647 51.7119 51.6566 51.6006 51.5468 51.4991 51.4599 51.4399 51.5848 52.8701 52.8657 52.8579 52.8478 52.8354 52.8204 52.8027 52.782 52.7583 52.7313 52.7009 52.6669 52.6291 52.5874 52.5418 52.4926 52.4399 52.3846 52.3284 52.2733 52.2229 52.1811 52.1413 52.0036 53.5881 53.5837 53.5759 53.5657 53.5532 53.5382 53.5204 53.4997 53.476 53.449 53.4186 53.3846 53.3468 53.3053 53.26 53.2111 53.1589 53.1044 53.0492 52.9962 52.9491 52.914 52.8989 52.8999 54.2974 54.293 54.285 54.2748 54.2622 54.247 54.2291 54.2083 54.1844 54.1573 54.1268 54.0928 54.0551 54.0136 53.9685 53.92 53.8684 53.8147 53.7605 53.7089 53.6637 53.631 53.6213 53.6412 54.9983 54.9938 54.9858 54.9753 54.9625 54.9472 54.9291 54.9081 54.8841 54.8568 54.8262 54.792 54.7543 54.713 54.6681 54.6199 54.5687 54.5156 54.4625 54.4121 54.3682 54.3363 54.3269 54.348 55.6915 55.6869 55.6786 55.668 55.6551 55.6394 55.6211 55.5998 55.5754 55.5479 55.517 55.4827 55.4449 55.4035 55.3588 55.3109 55.2603 55.2082 55.1561 55.1068 55.0639 55.0326 55.0226 55.0354 56.3771 56.3724 56.364 56.3531 56.3398 56.324 56.3052 56.2836 56.2589 56.231 56.1998 56.1653 56.1272 56.0859 56.0413 55.9938 55.9438 55.8925 55.8417 55.7943 55.7539 55.7258 55.7199 55.7364 57.0559 57.051 57.0423 57.0312 57.0175 57.0013 56.9821 56.96 56.9349 56.9066 56.875 56.84 56.8018 56.7603 56.7158 56.6686 56.6193 56.5692 56.52 56.475 56.438 56.4138 56.4114 56.4492 57.728 57.7229 57.714 57.7024 57.6884 57.6716 57.652 57.6293 57.6036 57.5747 57.5426 57.5072 57.4686 57.427 57.3825 57.3357 57.2872 57.2383 57.1909 57.1483 57.1147 57.0952 57.0975 57.1287 58.3937 58.3884 58.3791 58.3672 58.3526 58.3353 58.315 58.2917 58.2653 58.2357 58.2029 58.167 58.128 58.0861 58.0416 57.9951 57.9474 57.8997 57.8544 57.8144 57.7839 57.7675 57.7728 57.8047 59.0534 59.0479 59.0382 59.0257 59.0106 58.9925 58.9715 58.9474 58.9201 58.8897 58.8561 58.8195 58.7799 58.7376 58.6932 58.6472 58.6005 58.5547 58.5121 58.4759 58.4511 58.444 58.4656 58.5097 59.7071 59.7013 59.6911 59.6779 59.6621 59.6432 59.6213 59.5962 59.568 59.5366 59.5021 59.4646 59.4243 59.3817 59.3372 59.2917 59.2461 59.2022 59.1623 59.1301 59.1103 59.1085 59.1342 59.1898 60.3551 60.349 60.3382 60.3243 60.3075 60.2877 60.2647 60.2385 60.2091 60.1765 60.1409 60.1024 60.0614 60.0184 59.974 59.9291 59.8851 59.8437 59.8077 59.7811 59.7694 59.7782 59.819 59.9719 60.9976 60.991 60.9794 60.9646 60.9468 60.9258 60.9015 60.874 60.8431 60.8091 60.7721 60.7325 60.6906 60.647 60.6027 60.5586 60.5161 60.4772 60.4443 60.4213 60.4123 60.4217 60.4463 60.4059 61.6342 61.6271 61.6147 61.5989 61.5798 61.5574 61.5316 61.5024 61.4698 61.4342 61.3956 61.3547 61.3119 61.268 61.224 61.1813 61.1414 61.1067 61.0805 61.0675 61.0743 61.1063 61.17 61.4298 62.2649 62.2571 62.2436 62.2264 62.2059 62.1818 62.1541 62.1228 62.0883 62.0507 62.0104 61.9679 61.9241 61.8799 61.8365 61.7955 61.7588 61.7287 61.7085 61.7025 61.7167 61.7579 61.8248 61.8639 62.8889 62.8804 62.8656 62.8468 62.8245 62.7984 62.7684 62.7349 62.6979 62.6581 62.6157 62.5716 62.5267 62.4824 62.4401 62.4016 62.3691 62.345 62.3326 62.3362 62.3603 62.4068 62.4715 62.6076 63.5047 63.4952 63.4786 63.4577 63.433 63.4042 63.3714 63.335 63.2952 63.2527 63.2081 63.1625 63.1171 63.0733 63.0332 62.9988 62.9726 62.9575 62.9567 62.9751 63.0178 63.0894 63.1992 63.4447 64.1122 64.1017 64.0832 64.0601 64.0327 64.0009 63.9649 63.9251 63.8819 63.8362 63.789 63.7416 63.6956 63.653 63.6161 63.5873 63.5695 63.5655 63.5788 63.6136 63.6748 63.768 63.8943 64.0331 64.7034 64.691 64.6691 64.6419 64.6103 64.574 64.5335 64.4893 64.4423 64.3935 64.3443 64.2965 64.2521 64.2133 64.183 64.1638 64.1588 64.1711 64.2037 64.2604 64.3457 64.465 64.6225 64.8187 65.2893 65.2756 65.2511 65.2206 65.1849 65.1441 65.0984 65.0489 64.9968 64.9436 64.8913 64.8422 64.7991 64.7649 64.7428 64.7359 64.7473 64.7798 64.836 64.9188 65.0311 65.1749 65.3531 65.5828 65.8172 65.7991 65.7668 65.7276 65.6834 65.6344 65.5814 65.5262 65.4706 65.4168 65.3674 65.3251 65.2929 65.274 65.2716 65.2885 65.3275 65.3908 65.4804 65.5984 65.7473 65.9267 66.1316 66.4324 66.3907 66.3706 66.3337 66.2881 66.2359 66.1777 66.1152 66.0508 65.9875 65.9287 65.8777 65.8385 65.8145 65.8096 65.8267 65.8687 65.9375 66.0345 66.1602 66.3152 66.5002 66.7147 66.9513 67.2192 66.6956 66.6649 66.6045 66.5344 66.4617 66.3891 66.3197 66.2574 66.2055 66.1677 66.1467 66.1458 66.1672 66.2133 66.2857 66.3856 66.5135 66.6693 66.8522 67.0614 67.2968 67.5591 67.8469 68.1747 67.2264 67.192 67.1275 67.0455 66.9607 66.8793 66.8066 66.7483 66.7088 66.6922 66.7012 66.7373 66.8018 66.8939 67.0132 67.1584 67.3279 67.5205 67.7345 67.9687 68.2221 68.4933 68.7817 69.0887 66.9151 66.0461 65.653 65.5775 65.6373 65.7382 65.8576 65.988 66.1254 66.2685 66.4173 66.573 66.7383 66.916 67.1098 67.3231 67.5594 67.8218 68.1127 68.4344 68.7888 69.1743 69.5866 70.145 422.266 416.472 408.12 397.83 385.822 372.682 358.949 345.076 331.439 318.352 306.068 294.751 284.489 275.3 267.13 259.878 253.408 247.58 242.257 237.319 232.668 228.216 224.035 220.356 309.937 310.701 309.161 306.789 304.169 301.387 298.401 295.187 291.725 287.99 283.971 279.666 275.099 270.313 265.367 260.333 255.283 250.28 245.372 240.593 235.953 231.43 227.148 223.708 302.908 303.572 303.395 302.881 301.893 300.38 298.327 295.756 292.702 289.208 285.333 281.139 276.693 272.06 267.296 262.454 257.582 252.716 247.891 243.136 238.46 233.852 229.454 225.663 302.894 302.168 300.871 299.367 297.656 295.725 293.558 291.145 288.472 285.533 282.324 278.852 275.127 271.175 267.024 262.712 258.278 253.761 249.201 244.634 240.084 235.557 231.195 227.639 287.481 287.096 286.596 285.946 285.12 284.105 282.885 281.444 279.766 277.835 275.639 273.169 270.424 267.408 264.133 260.618 256.89 252.982 248.93 244.771 240.54 236.251 232.009 228.165 276.797 276.662 276.502 276.215 275.8 275.238 274.509 273.593 272.471 271.124 269.538 267.7 265.601 263.237 260.61 257.728 254.604 251.258 247.716 244.006 240.161 236.202 232.206 228.444 269.91 269.796 269.625 269.347 268.978 268.506 267.914 267.187 266.307 265.256 264.016 262.572 260.907 259.009 256.871 254.489 251.865 249.007 245.928 242.65 239.195 235.583 231.861 228.182 263.408 263.32 263.179 262.957 262.665 262.294 261.831 261.263 260.576 259.753 258.777 257.633 256.302 254.77 253.024 251.053 248.851 246.417 243.756 240.878 237.797 234.531 231.102 227.55 257.451 257.391 257.293 257.135 256.921 256.644 256.293 255.857 255.323 254.678 253.905 252.99 251.916 250.667 249.228 247.587 245.732 243.657 241.36 238.841 236.109 233.177 230.064 226.768 252.293 252.249 252.173 252.047 251.877 251.656 251.375 251.024 250.593 250.07 249.442 248.693 247.809 246.775 245.575 244.195 242.621 240.843 238.854 236.65 234.233 231.609 228.804 225.858 247.703 247.668 247.604 247.5 247.358 247.174 246.941 246.65 246.293 245.859 245.336 244.713 243.974 243.105 242.093 240.92 239.575 238.043 236.314 234.382 232.244 229.902 227.38 224.765 243.522 243.493 243.44 243.353 243.235 243.081 242.886 242.643 242.343 241.979 241.539 241.013 240.388 239.65 238.787 237.782 236.622 235.292 233.782 232.08 230.178 228.069 225.769 223.359 239.687 239.665 239.622 239.551 239.452 239.323 239.159 238.953 238.699 238.39 238.016 237.567 237.033 236.4 235.656 234.788 233.78 232.62 231.293 229.789 228.096 226.202 224.124 222.061 236.172 236.155 236.119 236.058 235.974 235.863 235.722 235.545 235.327 235.061 234.739 234.352 233.889 233.341 232.695 231.938 231.057 230.038 228.866 227.531 226.021 224.319 222.426 220.586 232.921 232.91 232.88 232.828 232.755 232.659 232.536 232.382 232.192 231.961 231.68 231.342 230.939 230.46 229.894 229.229 228.452 227.551 226.511 225.32 223.965 222.428 220.692 218.942 229.896 229.891 229.865 229.819 229.756 229.672 229.564 229.429 229.263 229.06 228.814 228.517 228.162 227.74 227.24 226.652 225.964 225.162 224.234 223.166 221.945 220.556 218.974 217.318 227.074 227.071 227.049 227.009 226.953 226.878 226.783 226.664 226.517 226.337 226.119 225.857 225.542 225.168 224.724 224.201 223.587 222.87 222.038 221.078 219.976 218.719 217.284 215.743 224.419 224.419 224.4 224.366 224.317 224.252 224.168 224.063 223.932 223.773 223.579 223.345 223.065 222.73 222.334 221.866 221.315 220.672 219.923 219.057 218.06 216.92 215.618 214.201 221.931 221.931 221.914 221.883 221.839 221.781 221.706 221.611 221.494 221.351 221.177 220.968 220.716 220.416 220.06 219.639 219.143 218.563 217.887 217.102 216.197 215.159 213.972 212.682 219.582 219.581 219.565 219.538 219.498 219.446 219.378 219.293 219.187 219.058 218.901 218.712 218.485 218.215 217.893 217.512 217.064 216.538 215.925 215.212 214.389 213.442 212.358 211.198 217.354 217.353 217.339 217.315 217.279 217.231 217.17 217.093 216.997 216.88 216.738 216.567 216.361 216.116 215.824 215.478 215.071 214.593 214.033 213.383 212.629 211.759 210.753 209.651 215.231 215.23 215.219 215.198 215.167 215.124 215.068 214.999 214.912 214.806 214.677 214.521 214.334 214.111 213.845 213.53 213.158 212.721 212.21 211.613 210.921 210.121 209.194 208.175 213.21 213.21 213.202 213.183 213.155 213.116 213.066 213.003 212.924 212.827 212.709 212.567 212.396 212.192 211.949 211.661 211.32 210.92 210.45 209.902 209.265 208.527 207.668 206.718 211.287 211.288 211.28 211.264 211.238 211.202 211.156 211.098 211.025 210.936 210.828 210.698 210.541 210.354 210.131 209.866 209.553 209.185 208.752 208.247 207.659 206.978 206.185 205.307 209.446 209.447 209.441 209.426 209.403 209.37 209.328 209.274 209.207 209.126 209.026 208.906 208.762 208.589 208.383 208.139 207.851 207.511 207.112 206.644 206.1 205.466 204.726 203.89 207.682 207.683 207.678 207.665 207.643 207.613 207.574 207.525 207.463 207.388 207.296 207.185 207.052 206.892 206.702 206.477 206.21 205.895 205.525 205.092 204.586 203.998 203.309 202.523 205.989 205.99 205.986 205.974 205.954 205.926 205.89 205.845 205.788 205.718 205.633 205.53 205.407 205.259 205.083 204.874 204.626 204.334 203.991 203.588 203.118 202.57 201.927 201.189 204.36 204.361 204.357 204.347 204.329 204.303 204.27 204.228 204.175 204.11 204.031 203.936 203.821 203.684 203.521 203.326 203.096 202.825 202.506 202.131 201.693 201.183 200.586 199.903 202.793 202.794 202.79 202.781 202.764 202.74 202.709 202.67 202.621 202.561 202.487 202.398 202.292 202.164 202.011 201.831 201.616 201.364 201.066 200.716 200.308 199.831 199.27 198.61 201.282 201.282 201.279 201.27 201.254 201.232 201.203 201.167 201.121 201.065 200.996 200.913 200.813 200.694 200.552 200.383 200.183 199.947 199.669 199.343 198.961 198.516 197.994 197.377 199.821 199.821 199.818 199.81 199.795 199.775 199.748 199.714 199.671 199.618 199.554 199.477 199.383 199.272 199.139 198.981 198.794 198.573 198.313 198.008 197.652 197.24 196.763 196.229 198.407 198.407 198.404 198.397 198.384 198.365 198.34 198.308 198.268 198.218 198.158 198.086 197.998 197.894 197.769 197.621 197.445 197.238 196.994 196.707 196.372 195.98 195.52 194.976 197.037 197.037 197.035 197.028 197.016 196.999 196.975 196.945 196.908 196.862 196.805 196.737 196.655 196.557 196.439 196.3 196.135 195.94 195.71 195.439 195.12 194.747 194.306 193.771 195.709 195.71 195.707 195.702 195.691 195.675 195.653 195.624 195.589 195.546 195.492 195.428 195.351 195.258 195.148 195.017 194.861 194.678 194.461 194.206 193.907 193.559 193.155 192.703 194.419 194.42 194.419 194.414 194.404 194.389 194.368 194.342 194.309 194.268 194.218 194.157 194.084 193.997 193.893 193.769 193.622 193.449 193.244 193.004 192.723 192.394 192.008 191.569 193.167 193.168 193.167 193.163 193.154 193.14 193.121 193.096 193.064 193.026 192.978 192.921 192.852 192.77 192.671 192.554 192.415 192.251 192.058 191.83 191.562 191.249 190.878 190.443 191.95 191.951 191.95 191.947 191.939 191.925 191.907 191.884 191.854 191.817 191.773 191.718 191.653 191.575 191.482 191.371 191.239 191.084 190.9 190.683 190.429 190.13 189.778 189.361 190.766 190.767 190.767 190.763 190.756 190.743 190.726 190.704 190.676 190.641 190.599 190.547 190.486 190.412 190.323 190.218 190.093 189.945 189.771 189.565 189.323 189.038 188.703 188.305 189.613 189.615 189.614 189.611 189.604 189.592 189.576 189.554 189.528 189.495 189.455 189.406 189.347 189.277 189.193 189.093 188.975 188.835 188.669 188.474 188.243 187.972 187.654 187.274 188.489 188.49 188.49 188.487 188.48 188.469 188.454 188.434 188.408 188.377 188.339 188.293 188.237 188.17 188.091 187.996 187.884 187.751 187.594 187.408 187.19 186.932 186.629 186.261 187.393 187.394 187.393 187.39 187.384 187.373 187.359 187.34 187.316 187.286 187.25 187.206 187.153 187.09 187.014 186.924 186.818 186.692 186.543 186.368 186.162 185.921 185.64 185.302 186.321 186.322 186.321 186.319 186.313 186.303 186.289 186.271 186.249 186.22 186.186 186.144 186.094 186.034 185.962 185.877 185.775 185.656 185.515 185.35 185.157 184.932 184.669 184.376 185.274 185.275 185.274 185.271 185.266 185.257 185.244 185.227 185.205 185.178 185.146 185.106 185.058 185.001 184.932 184.851 184.755 184.641 184.507 184.351 184.167 183.955 183.711 183.416 184.249 184.25 184.249 184.247 184.242 184.234 184.221 184.205 184.184 184.159 184.128 184.09 184.044 183.989 183.924 183.846 183.755 183.646 183.518 183.367 183.19 182.982 182.737 182.45 183.246 183.246 183.246 183.244 183.24 183.232 183.22 183.205 183.185 183.161 183.131 183.094 183.051 182.998 182.936 182.862 182.774 182.67 182.547 182.403 182.232 182.033 181.801 181.553 182.263 182.263 182.263 182.261 182.258 182.251 182.239 182.225 182.206 182.183 182.154 182.119 182.077 182.027 181.968 181.897 181.812 181.713 181.595 181.457 181.294 181.104 180.882 180.648 181.3 181.3 181.3 181.299 181.295 181.289 181.278 181.264 181.246 181.224 181.196 181.163 181.123 181.075 181.018 180.95 180.869 180.774 180.661 180.528 180.372 180.187 179.97 179.734 180.354 180.355 180.355 180.354 180.351 180.345 180.335 180.322 180.305 180.283 180.257 180.225 180.187 180.141 180.086 180.021 179.944 179.852 179.744 179.616 179.466 179.288 179.077 178.842 179.428 179.429 179.429 179.428 179.425 179.419 179.41 179.397 179.381 179.36 179.335 179.305 179.268 179.224 179.171 179.109 179.035 178.947 178.844 178.722 178.578 178.41 178.212 177.981 178.521 178.521 178.521 178.52 178.517 178.511 178.502 178.49 178.474 178.454 178.43 178.401 178.366 178.323 178.273 178.213 178.142 178.058 177.96 177.843 177.706 177.545 177.355 177.139 177.624 177.625 177.625 177.625 177.622 177.617 177.609 177.597 177.583 177.564 177.541 177.513 177.479 177.438 177.39 177.333 177.265 177.184 177.09 176.979 176.849 176.698 176.524 176.326 176.748 176.748 176.748 176.748 176.745 176.74 176.732 176.721 176.707 176.689 176.666 176.639 176.607 176.568 176.522 176.466 176.401 176.324 176.233 176.126 176.001 175.856 175.687 175.502 175.885 175.886 175.886 175.885 175.883 175.878 175.87 175.859 175.845 175.828 175.807 175.781 175.749 175.712 175.667 175.614 175.551 175.476 175.389 175.285 175.164 175.021 174.854 174.669 175.039 175.039 175.039 175.037 175.035 175.03 175.022 175.012 174.998 174.981 174.961 174.935 174.905 174.869 174.826 174.774 174.714 174.642 174.557 174.457 174.338 174.199 174.035 173.854 174.198 174.199 174.199 174.199 174.197 174.193 174.186 174.176 174.163 174.147 174.127 174.103 174.074 174.039 173.997 173.948 173.889 173.82 173.738 173.641 173.527 173.392 173.234 173.064 173.371 173.372 173.373 173.372 173.371 173.368 173.361 173.352 173.34 173.325 173.306 173.283 173.255 173.221 173.181 173.133 173.077 173.01 172.931 172.838 172.728 172.599 172.447 172.29 172.564 172.564 172.564 172.563 172.562 172.558 172.552 172.543 172.531 172.516 172.498 172.475 172.448 172.416 172.377 172.331 172.277 172.212 172.136 172.046 171.94 171.816 171.669 171.525 171.766 171.766 171.766 171.765 171.763 171.76 171.754 171.745 171.734 171.719 171.701 171.679 171.653 171.622 171.584 171.54 171.488 171.425 171.352 171.266 171.164 171.045 170.907 170.78 170.978 170.978 170.977 170.977 170.975 170.972 170.966 170.958 170.946 170.932 170.915 170.894 170.869 170.839 170.803 170.76 170.709 170.649 170.579 170.496 170.398 170.283 170.146 170.014 170.194 170.195 170.196 170.196 170.195 170.192 170.187 170.179 170.169 170.155 170.139 170.119 170.095 170.066 170.031 169.99 169.941 169.883 169.816 169.736 169.643 169.534 169.405 169.282 169.424 169.425 169.426 169.426 169.425 169.423 169.418 169.411 169.401 169.389 169.373 169.354 169.33 169.302 169.269 169.229 169.182 169.127 169.062 168.985 168.896 168.793 168.671 168.55 168.67 168.67 168.67 168.67 168.669 168.666 168.662 168.654 168.645 168.632 168.617 168.598 168.576 168.549 168.516 168.478 168.432 168.379 168.316 168.242 168.155 168.055 167.936 167.806 167.923 167.923 167.923 167.923 167.922 167.919 167.914 167.907 167.898 167.885 167.871 167.852 167.83 167.804 167.772 167.735 167.691 167.639 167.578 167.506 167.421 167.322 167.204 167.074 167.184 167.184 167.184 167.183 167.182 167.179 167.175 167.168 167.159 167.147 167.132 167.115 167.093 167.068 167.037 167.001 166.958 166.908 166.848 166.778 166.695 166.598 166.483 166.363 166.447 166.448 166.448 166.449 166.448 166.446 166.442 166.436 166.427 166.416 166.402 166.385 166.364 166.34 166.31 166.275 166.234 166.185 166.127 166.059 165.979 165.884 165.773 165.663 165.723 165.723 165.724 165.724 165.723 165.721 165.718 165.712 165.704 165.693 165.68 165.663 165.643 165.62 165.591 165.557 165.517 165.47 165.414 165.349 165.271 165.18 165.072 164.969 165.01 165.01 165.01 165.01 165.009 165.007 165.003 164.997 164.989 164.979 164.966 164.95 164.931 164.907 164.88 164.847 164.809 164.763 164.709 164.646 164.571 164.484 164.38 164.29 164.303 164.303 164.303 164.303 164.302 164.3 164.296 164.29 164.282 164.272 164.259 164.244 164.225 164.203 164.176 164.144 164.107 164.063 164.011 163.95 163.879 163.795 163.697 163.611 163.604 163.603 163.603 163.602 163.601 163.599 163.595 163.59 163.582 163.572 163.559 163.544 163.526 163.504 163.479 163.448 163.412 163.37 163.32 163.261 163.192 163.112 163.017 162.943 162.898 162.9 162.9 162.901 162.901 162.9 162.898 162.893 162.886 162.877 162.865 162.851 162.833 162.813 162.788 162.758 162.724 162.683 162.634 162.578 162.512 162.436 162.346 162.277 162.213 162.214 162.214 162.214 162.213 162.212 162.209 162.205 162.198 162.189 162.178 162.164 162.147 162.127 162.103 162.074 162.041 162.001 161.955 161.9 161.837 161.763 161.673 161.591 161.534 161.534 161.533 161.533 161.532 161.531 161.528 161.523 161.517 161.508 161.497 161.483 161.467 161.447 161.424 161.396 161.364 161.325 161.28 161.228 161.166 161.095 161.01 160.922 160.858 160.858 160.857 160.857 160.856 160.854 160.852 160.847 160.84 160.832 160.821 160.808 160.792 160.773 160.75 160.723 160.692 160.654 160.611 160.56 160.499 160.429 160.346 160.269 160.18 160.181 160.182 160.182 160.181 160.18 160.178 160.174 160.168 160.16 160.15 160.137 160.122 160.103 160.082 160.056 160.025 159.989 159.946 159.896 159.838 159.768 159.685 159.612 159.51 159.511 159.512 159.512 159.512 159.512 159.51 159.507 159.501 159.493 159.484 159.471 159.457 159.439 159.418 159.393 159.363 159.328 159.287 159.239 159.182 159.116 159.037 158.98 158.853 158.853 158.853 158.853 158.853 158.852 158.85 158.846 158.84 158.833 158.823 158.811 158.797 158.78 158.759 158.735 158.706 158.673 158.633 158.587 158.532 158.468 158.39 158.332 158.198 158.198 158.198 158.198 158.197 158.196 158.194 158.19 158.184 158.177 158.167 158.155 158.141 158.125 158.105 158.081 158.054 158.021 157.983 157.939 157.887 157.828 157.756 157.706 157.546 157.545 157.545 157.544 157.544 157.542 157.54 157.537 157.531 157.524 157.515 157.504 157.49 157.474 157.455 157.432 157.405 157.374 157.338 157.295 157.245 157.188 157.117 157.054 156.891 156.892 156.892 156.892 156.892 156.891 156.89 156.886 156.881 156.875 156.866 156.855 156.842 156.827 156.808 156.786 156.76 156.73 156.695 156.654 156.606 156.551 156.484 156.407 156.242 156.243 156.243 156.244 156.244 156.244 156.242 156.24 156.235 156.229 156.22 156.21 156.198 156.183 156.165 156.143 156.119 156.089 156.055 156.015 155.969 155.917 155.854 155.768 155.604 155.604 155.604 155.604 155.604 155.603 155.601 155.598 155.594 155.587 155.579 155.569 155.557 155.542 155.525 155.504 155.48 155.451 155.418 155.38 155.335 155.283 155.222 155.141 154.967 154.967 154.967 154.967 154.966 154.965 154.963 154.96 154.956 154.949 154.941 154.931 154.919 154.905 154.888 154.868 154.844 154.816 154.784 154.746 154.702 154.651 154.596 154.523 154.332 154.332 154.331 154.331 154.33 154.329 154.327 154.324 154.32 154.314 154.306 154.296 154.284 154.27 154.254 154.234 154.211 154.184 154.153 154.116 154.072 154.02 153.962 153.911 153.693 153.693 153.694 153.694 153.694 153.693 153.692 153.69 153.686 153.68 153.672 153.663 153.652 153.638 153.622 153.603 153.581 153.555 153.524 153.488 153.446 153.395 153.336 153.289 153.061 153.061 153.061 153.062 153.062 153.061 153.06 153.058 153.054 153.049 153.042 153.033 153.022 153.009 152.993 152.975 152.953 152.928 152.898 152.864 152.823 152.776 152.72 152.685 152.435 152.435 152.435 152.435 152.434 152.434 152.432 152.43 152.427 152.421 152.414 152.405 152.395 152.382 152.367 152.349 152.328 152.304 152.275 152.242 152.204 152.159 152.104 152.071 151.81 151.81 151.81 151.809 151.809 151.808 151.807 151.804 151.801 151.795 151.789 151.78 151.77 151.757 151.743 151.726 151.705 151.682 151.654 151.623 151.585 151.543 151.491 151.459 151.187 151.187 151.186 151.185 151.184 151.183 151.182 151.18 151.176 151.171 151.164 151.156 151.146 151.134 151.12 151.104 151.084 151.062 151.035 151.005 150.969 150.928 150.878 150.848 150.554 150.555 150.555 150.556 150.557 150.557 150.556 150.555 150.552 150.547 150.541 150.534 150.524 150.513 150.499 150.483 150.464 150.443 150.417 150.388 150.354 150.315 150.267 150.24 149.936 149.936 149.936 149.936 149.936 149.935 149.935 149.933 149.93 149.926 149.92 149.912 149.903 149.892 149.879 149.864 149.846 149.825 149.801 149.772 149.739 149.702 149.654 149.626 149.318 149.318 149.318 149.318 149.317 149.317 149.316 149.314 149.311 149.306 149.3 149.293 149.284 149.274 149.261 149.246 149.229 149.209 149.185 149.158 149.127 149.091 149.047 149.028 148.7 148.7 148.699 148.699 148.698 148.697 148.696 148.695 148.692 148.687 148.682 148.675 148.666 148.656 148.643 148.629 148.613 148.593 148.571 148.545 148.515 148.481 148.438 148.416 148.076 148.076 148.076 148.077 148.077 148.076 148.076 148.075 148.072 148.068 148.063 148.056 148.048 148.038 148.027 148.013 147.997 147.979 147.957 147.933 147.904 147.872 147.831 147.813 147.454 147.455 147.455 147.455 147.456 147.456 147.456 147.455 147.453 147.449 147.444 147.438 147.43 147.421 147.41 147.397 147.382 147.364 147.344 147.321 147.293 147.263 147.224 147.206 146.84 146.84 146.84 146.84 146.84 146.839 146.839 146.837 146.835 146.832 146.827 146.821 146.813 146.804 146.794 146.781 146.767 146.75 146.731 146.709 146.683 146.654 146.619 146.609 146.224 146.224 146.224 146.223 146.223 146.222 146.221 146.22 146.218 146.214 146.21 146.204 146.196 146.188 146.178 146.166 146.152 146.136 146.118 146.097 146.072 146.044 146.008 146.002 145.606 145.606 145.605 145.605 145.604 145.603 145.603 145.601 145.599 145.596 145.592 145.586 145.579 145.571 145.561 145.55 145.537 145.522 145.504 145.485 145.462 145.438 145.406 145.412 144.982 144.982 144.982 144.982 144.982 144.982 144.982 144.981 144.979 144.976 144.972 144.967 144.96 144.953 144.944 144.933 144.921 144.907 144.891 144.872 144.851 144.829 144.797 144.784 144.358 144.359 144.359 144.359 144.36 144.36 144.36 144.359 144.358 144.356 144.352 144.347 144.341 144.334 144.325 144.315 144.304 144.291 144.275 144.258 144.238 144.216 144.184 144.143 143.741 143.741 143.741 143.74 143.74 143.74 143.739 143.739 143.738 143.735 143.732 143.727 143.721 143.714 143.706 143.697 143.686 143.673 143.659 143.643 143.625 143.605 143.582 143.533 143.12 143.12 143.12 143.119 143.119 143.118 143.118 143.117 143.116 143.113 143.11 143.105 143.1 143.093 143.085 143.076 143.066 143.055 143.042 143.028 143.012 142.995 142.979 142.951 142.497 142.496 142.496 142.495 142.494 142.494 142.493 142.493 142.491 142.489 142.486 142.481 142.476 142.47 142.463 142.455 142.445 142.435 142.423 142.409 142.395 142.379 142.364 142.308 141.865 141.865 141.865 141.865 141.865 141.865 141.865 141.865 141.864 141.862 141.859 141.855 141.851 141.845 141.838 141.831 141.822 141.812 141.801 141.788 141.774 141.757 141.741 141.7 141.235 141.235 141.235 141.235 141.235 141.235 141.235 141.235 141.235 141.233 141.231 141.227 141.223 141.217 141.211 141.204 141.196 141.187 141.177 141.166 141.153 141.138 141.125 141.076 140.606 140.606 140.605 140.605 140.605 140.605 140.604 140.604 140.604 140.602 140.6 140.596 140.592 140.588 140.582 140.576 140.569 140.561 140.552 140.542 140.532 140.52 140.51 140.484 139.974 139.974 139.973 139.972 139.971 139.971 139.971 139.971 139.97 139.969 139.966 139.963 139.959 139.955 139.95 139.944 139.938 139.931 139.924 139.916 139.907 139.898 139.891 139.847 139.33 139.331 139.33 139.331 139.331 139.331 139.331 139.332 139.332 139.331 139.329 139.326 139.323 139.319 139.315 139.31 139.304 139.299 139.292 139.286 139.279 139.271 139.266 139.236 138.69 138.69 138.689 138.689 138.689 138.689 138.689 138.69 138.69 138.689 138.688 138.686 138.683 138.679 138.676 138.672 138.667 138.663 138.658 138.653 138.648 138.643 138.642 138.597 138.044 138.045 138.044 138.044 138.044 138.044 138.044 138.045 138.045 138.044 138.043 138.041 138.039 138.036 138.033 138.03 138.026 138.023 138.019 138.016 138.014 138.011 138.015 137.997 137.396 137.396 137.395 137.395 137.395 137.395 137.395 137.395 137.395 137.395 137.394 137.392 137.39 137.388 137.386 137.383 137.381 137.379 137.377 137.375 137.375 137.376 137.382 137.359 136.744 136.743 136.742 136.741 136.741 136.74 136.74 136.741 136.741 136.741 136.74 136.739 136.737 136.736 136.734 136.732 136.731 136.73 136.729 136.73 136.731 136.734 136.741 136.71 136.078 136.078 136.078 136.078 136.078 136.078 136.079 136.079 136.08 136.081 136.08 136.079 136.078 136.077 136.076 136.076 136.075 136.076 136.077 136.079 136.082 136.087 136.099 136.073 135.409 135.409 135.409 135.409 135.409 135.41 135.411 135.412 135.413 135.414 135.414 135.414 135.414 135.414 135.413 135.414 135.414 135.416 135.419 135.423 135.429 135.436 135.452 135.433 134.741 134.74 134.74 134.739 134.739 134.739 134.74 134.741 134.742 134.743 134.743 134.743 134.743 134.744 134.744 134.746 134.748 134.751 134.755 134.761 134.77 134.78 134.799 134.785 134.063 134.063 134.062 134.061 134.061 134.061 134.062 134.063 134.064 134.065 134.065 134.066 134.066 134.067 134.069 134.071 134.074 134.079 134.085 134.093 134.104 134.118 134.14 134.126 133.378 133.377 133.376 133.375 133.374 133.375 133.375 133.376 133.377 133.379 133.38 133.381 133.382 133.384 133.386 133.389 133.394 133.4 133.408 133.419 133.433 133.449 133.476 133.467 132.678 132.678 132.677 132.677 132.677 132.677 132.678 132.68 132.682 132.684 132.686 132.687 132.689 132.692 132.695 132.7 132.706 132.714 132.724 132.737 132.754 132.775 132.806 132.805 131.971 131.971 131.97 131.97 131.971 131.972 131.973 131.975 131.978 131.98 131.983 131.985 131.988 131.991 131.996 132.002 132.009 132.019 132.032 132.048 132.069 132.094 132.131 132.136 131.262 131.262 131.261 131.26 131.26 131.26 131.261 131.263 131.265 131.268 131.271 131.274 131.277 131.282 131.287 131.295 131.304 131.316 131.331 131.35 131.375 131.404 131.445 131.449 130.541 130.54 130.539 130.538 130.538 130.538 130.539 130.541 130.543 130.546 130.55 130.553 130.557 130.562 130.569 130.578 130.589 130.603 130.621 130.643 130.671 130.704 130.752 130.761 129.804 129.803 129.802 129.801 129.801 129.802 129.804 129.806 129.809 129.812 129.816 129.821 129.826 129.832 129.841 129.851 129.864 129.88 129.901 129.926 129.958 129.995 130.048 130.063 129.051 129.052 129.051 129.051 129.052 129.053 129.055 129.058 129.062 129.066 129.071 129.076 129.083 129.09 129.1 129.112 129.128 129.147 129.17 129.199 129.234 129.276 129.333 129.357 128.294 128.294 128.293 128.292 128.293 128.294 128.296 128.299 128.303 128.308 128.313 128.32 128.327 128.336 128.347 128.362 128.379 128.401 128.428 128.461 128.501 128.547 128.609 128.639 127.524 127.523 127.522 127.521 127.521 127.522 127.524 127.527 127.531 127.537 127.543 127.55 127.558 127.569 127.582 127.598 127.618 127.643 127.674 127.711 127.756 127.81 127.879 127.915 126.735 126.735 126.733 126.732 126.732 126.734 126.736 126.739 126.744 126.75 126.757 126.765 126.774 126.786 126.802 126.82 126.844 126.872 126.907 126.95 127.001 127.062 127.14 127.182 125.932 125.93 125.928 125.927 125.927 125.928 125.93 125.934 125.939 125.946 125.954 125.963 125.974 125.988 126.006 126.027 126.054 126.086 126.126 126.175 126.233 126.303 126.394 126.446 125.096 125.096 125.096 125.096 125.098 125.1 125.103 125.108 125.115 125.123 125.132 125.143 125.156 125.172 125.192 125.217 125.247 125.284 125.329 125.384 125.451 125.531 125.635 125.695 124.256 124.255 124.254 124.254 124.254 124.256 124.26 124.265 124.272 124.281 124.292 124.304 124.319 124.337 124.36 124.388 124.423 124.464 124.515 124.577 124.652 124.741 124.858 124.918 123.394 123.393 123.391 123.39 123.391 123.393 123.396 123.402 123.409 123.419 123.431 123.444 123.461 123.482 123.508 123.54 123.578 123.625 123.682 123.751 123.833 123.93 124.059 124.133 122.506 122.504 122.502 122.501 122.502 122.504 122.508 122.514 122.522 122.533 122.546 122.562 122.581 122.605 122.634 122.669 122.713 122.766 122.829 122.905 122.996 123.101 123.239 123.374 121.584 121.583 121.582 121.582 121.583 121.586 121.591 121.598 121.607 121.62 121.635 121.653 121.675 121.702 121.735 121.776 121.825 121.884 121.955 122.04 122.142 122.259 122.404 122.581 120.635 120.634 120.633 120.633 120.635 120.639 120.645 120.653 120.664 120.679 120.696 120.717 120.742 120.773 120.811 120.856 120.912 120.979 121.059 121.155 121.269 121.4 121.556 121.767 119.662 119.661 119.66 119.659 119.661 119.664 119.67 119.679 119.692 119.708 119.727 119.751 119.779 119.815 119.857 119.91 119.973 120.048 120.139 120.247 120.374 120.523 120.693 120.935 118.652 118.651 118.649 118.648 118.65 118.654 118.661 118.671 118.684 118.702 118.724 118.751 118.784 118.824 118.873 118.932 119.004 119.09 119.193 119.314 119.458 119.626 119.816 120.085 117.6 117.599 117.596 117.596 117.598 117.602 117.61 117.621 117.637 117.657 117.683 117.714 117.751 117.797 117.854 117.921 118.003 118.101 118.218 118.355 118.517 118.707 118.919 119.213 116.497 116.496 116.495 116.495 116.498 116.504 116.513 116.527 116.545 116.569 116.598 116.634 116.678 116.731 116.795 116.874 116.967 117.079 117.212 117.368 117.55 117.763 118 118.312 115.344 115.344 115.343 115.344 115.347 115.355 115.366 115.382 115.403 115.431 115.466 115.507 115.558 115.62 115.695 115.785 115.892 116.021 116.172 116.35 116.556 116.797 117.066 117.415 114.143 114.142 114.14 114.14 114.144 114.152 114.165 114.183 114.208 114.24 114.28 114.329 114.388 114.459 114.546 114.651 114.775 114.923 115.096 115.299 115.534 115.805 116.109 116.492 112.872 112.871 112.869 112.87 112.875 112.884 112.899 112.92 112.949 112.986 113.033 113.09 113.159 113.243 113.345 113.467 113.611 113.782 113.981 114.213 114.48 114.786 115.127 115.551 111.523 111.521 111.519 111.52 111.526 111.538 111.555 111.581 111.615 111.659 111.715 111.783 111.865 111.965 112.084 112.227 112.396 112.594 112.825 113.092 113.396 113.742 114.125 114.606 110.077 110.076 110.075 110.077 110.086 110.1 110.122 110.153 110.195 110.249 110.316 110.397 110.496 110.615 110.758 110.927 111.126 111.358 111.626 111.933 112.282 112.675 113.106 113.648 108.525 108.524 108.524 108.528 108.538 108.557 108.585 108.623 108.674 108.74 108.822 108.921 109.041 109.185 109.356 109.559 109.795 110.068 110.382 110.738 111.139 111.588 112.075 112.689 106.85 106.849 106.849 106.854 106.868 106.891 106.925 106.972 107.036 107.117 107.219 107.341 107.489 107.665 107.873 108.117 108.4 108.724 109.093 109.507 109.969 110.48 111.029 111.714 105.014 105.013 105.013 105.02 105.038 105.068 105.112 105.173 105.254 105.357 105.485 105.64 105.824 106.043 106.3 106.598 106.939 107.326 107.761 108.245 108.777 109.358 109.975 110.732 102.965 102.965 102.967 102.98 103.006 103.048 103.108 103.189 103.296 103.431 103.597 103.797 104.033 104.31 104.63 104.997 105.413 105.878 106.393 106.957 107.571 108.231 108.923 109.763 100.659 100.657 100.662 100.68 100.716 100.774 100.858 100.971 101.117 101.301 101.523 101.788 102.097 102.454 102.861 103.319 103.828 104.389 105 105.659 106.365 107.115 107.889 108.813 97.9661 97.9727 97.9892 98.0243 98.0858 98.1777 98.3044 98.4709 98.6816 98.9398 99.248 99.607 100.018 100.484 101.004 101.578 102.203 102.879 103.601 104.368 105.176 106.023 106.889 107.911 94.7431 94.7553 94.7777 94.834 94.9355 95.0859 95.2895 95.5516 95.8756 96.2625 96.7121 97.2212 97.7875 98.4092 99.0835 99.8064 100.575 101.384 102.232 103.115 104.03 104.974 105.926 107.024 90.8186 90.7943 90.8631 91.0087 91.2272 91.5188 91.8859 92.3275 92.8414 93.4242 94.0707 94.7749 95.5313 96.336 97.184 98.0703 98.9909 99.9418 100.919 101.921 102.942 103.98 105.014 106.166 84.6034 84.7675 85.098 85.495 86.0043 86.6283 87.3607 88.191 89.1046 90.0856 91.1142 92.1717 93.2454 94.3277 95.4141 96.5029 97.5944 98.6894 99.789 100.894 102.004 103.119 104.223 105.466 84.3429 108.555 74.8149 98.9977 77.7668 96.8145 119.109 136.746 70.2659 143.905 78.0749 -31.8112 30.0833 158.571 122.113 -33.7141 5.26055 121.292 -79.9762 120.809 73.6354 -81.4895 1.54777 8.76679 167.22 161.559 128.773 70.767 99.947 24.7358 129.516 -37.6538 29.3224 101.934 178.028 157.195 25.7519 117.319 117.303 121.76 51.8987 147.475 55.4407 14.0932 -57.7838 -2.1649 96.7496 153.653 122.707 143.399 77.648 127.247 92.1266 79.1405 118.563 61.5031 149.572 58.356 20.5294 166.529 113.898 194.161 138.863 141.133 151.388 102.62 79.3916 139.867 34.9471 31.9895 102.408 99.5856 128.805 178.28 163.291 20.5236 29.0059 -49.6704 137.37 104.026 121.004 -1.68977 36.484 114.203 157.039 97.8276 26.7663 40.4005 162.212 131.86 168.706 54.1026 120.402 80.5753 63.0563 106.306 40.8104 96.8008 130.959 112.814 63.8421 140.382 118.044 115.156 42.6198 116.572 61.48 112.478 56.8128 131.971 -80.6109 76.2707 115.569 142.06 94.1491 -35.4348 158.556 149.746 48.8667 62.6293 123.413 154.997 118.29 80.376 54.2435 129.61 117.8 112.772 118.035 42.8624 73.2376 120.85 97.1583 179.883 20.135 106.504 219.257 -63.5026 -37.8339 126.458 140.915 117.507 25.1517 21.206 27.9891 113.158 -11.8856 153.79 9.22733 121.324 -34.9943 70.1949 92.1878 108.445 197.906 60.4726 134.948 109.158 -64.809 9.44897 114.972 -6.81734 120.888 66.8436 98.6229 59.86 112.482 146.201 150.623 34.4156 68.6601 28.7916 94.3793 97.3103 115.399 69.4065 113.257 41.1153 99.22 103.524 115.37 84.2957 -35.5639 122.705 -55.1846 194.393 109.148 42.1214 96.8744 37.6317 110.225 124.311 18.2624 114.015 118.044 99.2173 62.3282 164.596 134.54 28.5706 100.529 73.6233 48.5862 149.28 65.6052 132.253 21.8647 42.787 166.209 76.132 116.732 113.162 48.478 149.232 35.09 57.1419 167.454 55.1471 148.39 100.469 113.77 181.009 117.45 60.4825 95.3183 128.322 41.9627 108.517 115.275 46.5567 119.875 107.923 121.427 138.39 58.4351 159.501 6.26475 122.104 98.9675 142.232 69.9599 145.046 25.0898 6.95593 -65.8509 157.794 41.7198 16.723 112.92 134.823 0.918637 -36.5872 77.2798 126.207 71.8397 131.845 94.4712 144.397 124.552 26.2922 120.798 141.65 129.737 167.315 121.945 40.6197 31.5993 95.3075 0.672965 122.614 15.3161 77.8229 111.164 2.1244 92.7274 102.948 8.29581 147.098 122.339 160.323 114.156 103.585 43.3762 16.796 51.4762 118.677 129.047 28.5797 114.71 -63.0695 84.0659 143.089 21.6497 110.813 139.69 104.675 35.7208 70.8108 13.1318 105.826 91.7072 145.219 109.423 127.436 177.033 59.0966 105.41 -57.684 181.998 47.794 151.675 101.84 71.0243 149.996 69.144 111.457 105.519 48.3166 130.079 124.706 137.049 67.7003 66.4938 8.60213 34.2296 122.466 115.274 41.5682 118.93 119.724 144.332 58.6587 92.273 45.8147 145.606 81.609 98.2015 92.5695 77.9005 44.5785 136.733 -28.4925 95.0918 120.164 128.617 76.3561 148.662 125.156 119.397 140.539 153.132 92.7389 76.9866 180.995 40.0181 -69.0783 172.374 45.0194 88.628 172.944 114.68 76.9349 40.1097 133.582 94.1338 -56.2527 115.213 107.976 79.1142 114.994 29.5035 107.982 136.56 142.384 40.2406 122.44 37.293 114.802 114.104 54.9706 125.918 98.5597 85.1871 131.08 183.056 103.433 -2.2992 121.298 110.634 109.8 20.4381 97.4349 161.753 125.974 27.4412 60.2634 69.7643 113.462 121.468 -3.93114 197.032 65.3872 207.039 125.779 98.511 -56.2942 50.3304 -56.1053 125.866 57.257 -5.94959 2.97238 120.207 111.289 37.0353 131.214 41.2608 -23.0837 174.211 117.65 33.1992 122.657 121.911 71.5061 -9.75067 -35.4768 137.044 34.5728 99.5763 159.758 147.636 176.27 114.248 108.89 138.251 105.573 7.38905 111.624 83.4292 152.325 129.22 174.725 170.399 96.0767 156.87 67.0951 145.222 76.7073 114.367 45.904 107.427 84.5175 122.243 87.7104 122.411 197.072 176.627 162.523 154.932 164.042 -43.4548 11.5641 118.802 113.285 200.528 118.03 28.7599 119.486 52.058 95.8476 103.057 116.443 96.2321 82.222 163.305 127.42 113.535 172.4 22.4839 105.456 138.116 20.753 71.571 129.751 197.828 153.512 124.379 81.5087 108.843 96.9888 57.0313 80.07 76.5035 124.521 65.7467 180.823 66.2264 218.796 219.357 217.174 132.169 45.2517 78.3788 99.5862 39.6862 -57.4663 12.014 116.959 79.4397 41.1919 122.46 21.8283 68.9513 105.491 117.998 30.395 31.2811 122.998 21.5335 -2.65918 110.397 96.8175 84.7508 93.8811 29.0546 158.352 73.7453 140.618 124.903 90.7436 118.998 64.5877 202.148 -55.7947 110.48 100.774 37.1144 61.6993 70.6499 29.1966 211.936 6.77133 2.29289 0.0295498 -42.3812 94.2759 19.3858 155.829 78.7124 151.289 140.96 -82.451 -12.9685 124.473 97.3947 50.701 -17.525 91.7184 105.325 61.1488 99.5744 12.0007 133.908 140.445 179.686 -71.39 128.378 56.289 201.841 -59.8324 178.561 -73.6853 131.617 -7.84365 97.0888 137.197 98.069 141.06 -41.868 83.5922 92.7293 -1.8595 124.332 -5.86358 80.9506 128.947 119.24 170.625 207.797 99.7319 121.824 130.081 70.3934 -0.92504 50.3498 66.2145 120.176 134.853 -51.8222 116.714 38.0441 26.9082 121.765 97.9595 88.79 136.684 168.43 115.065 118.982 120.519 65.2987 116.966 34.5811 44.0856 195.673 189.03 51.4898 101.202 121.676 96.2519 30.7149 -23.3144 124.163 164.049 55.971 88.7016 -74.5415 52.2637 122.045 185.984 -37.6139 21.1587 118.25 -36.4847 118.34 96.2141 45.2152 200.772 155.397 17.084 122.374 114.787 178.915 98.1201 127.164 122.421 73.0655 -31.131 109 135.868 111.093 79.8305 129.543 47.0664 101.051 -16.3427 129.784 12.7078 93.5329 87.1924 121.736 58.8731 118.322 59.6216 25.5358 -21.8082 35.7947 200.791 165.189 127.686 111.372 -36.6553 113.375 59.283 121.992 148.212 61.0586 -20.51 116.639 57.9408 97.2431 191.472 72.0999 92.9841 77.9569 -35.5228 -63.5157 147.41 -37.4708 166.8 37.8127 -25.9976 83.3853 96.6955 110.498 170.499 -36.0997 28.0454 43.3478 -12.227 96.25 81.9504 71.2722 121.642 124.901 96.7395 17.4427 120.511 120.804 67.424 15.0372 79.7091 119.882 101.375 84.2576 91.4472 94.7544 215.205 37.9292 218.21 109.098 116.566 -70.282 -17.1692 85.6414 56.8723 126.752 -42.6457 129.386 104.178 39.8614 165.655 162.507 117.111 61.6822 97.8263 120.663 133.333 95.3498 123.595 54.5955 67.4252 38.9686 5.95863 13.9367 170.609 24.1992 77.5094 122.409 121.253 4.24848 36.3793 54.5796 139.376 -40.2854 38.062 105.903 114.958 -8.29594 -30.8945 62.8445 105.655 118.533 -58.7686 103.361 107.836 -74.9874 6.93587 4.5738 65.6257 111.243 133.413 156.219 102.557 121.227 90.8705 160.362 87.2025 103.283 49.5383 108.893 -6.26944 114.707 82.2957 5.4069 121.802 120.131 116.09 131.885 131.746 107.621 116.211 138.126 106.093 154.678 62.048 97.3517 94.4349 98.3972 17.1194 107.509 120.88 81.0674 68.8588 29.598 98.8769 -51.57 133.732 139.595 67.3782 129.094 89.1601 156.302 86.3784 139.614 97.5435 111.867 144.646 22.938 82.1178 -16.7046 109.038 128.307 131.977 135.57 107.668 15.3005 49.5069 79.5043 -66.2283 11.2837 104.884 79.6306 75.5534 -8.73241 105.935 84.0647 93.9728 109.073 70.3521 120.723 123.635 78.8527 105.206 95.2888 -2.78769 103.966 157.238 189.828 104.369 111.47 150.328 123.337 -43.0469 57.8451 169.24 122.665 80.1964 -56.4851 97.1351 123.567 -15.7076 40.2681 72.9046 5.38813 97.9532 98.4658 108.366 23.3001 105.292 -55.2849 155.236 136.834 77.0537 140.971 121.103 75.1876 94.9271 81.3969 171.194 106.324 0.327704 -87.3062 122.655 55.0243 66.9997 34.6351 125.19 151.852 114.875 95.6264 125.407 20.9224 136.124 133.286 158.777 122.302 53.3975 192.548 114.735 32.7924 -13.9882 162.725 161.354 50.524 91.0446 16.3179 136.341 96.9402 105.054 -13.9363 49.8128 100.239 196.19 69.1257 -0.0427329 153.111 85.2377 36.636 51.3967 93.3168 87.8974 114.545 173.804 85.8572 98.016 121.532 100.895 73.4456 77.3762 -16.3166 17.9486 120.697 25.3239 55.9743 163.578 107.424 107.458 142.817 114.149 58.709 100.103 123.615 82.4493 129.513 96.0694 95.6553 -16.5329 -1.08058 103.456 127.748 122.577 120.496 88.5824 97.2324 10.4265 107.835 96.911 121.149 -48.5636 121.609 114.647 139.596 123.643 50.9021 -3.68841 88.5607 82.2697 115.833 -49.4528 161.369 77.1624 95.975 118.679 122.969 137.059 74.3739 136.609 99.9263 102.182 118.95 95.2598 -15.1038 36.0862 111.914 23.4461 56.4048 25.4715 73.3893 92.8304 83.9825 34.9173 111.482 107.133 143.385 73.6541 45.4918 117.754 102.931 124.315 143.99 20.4692 141.02 116.259 3.27936 94.2407 51.5839 41.6867 44.4272 133.154 73.7483 86.7115 66.9203 64.657 45.0486 120.251 57.2236 212.686 142.033 186.873 118.439 156.285 -44.7524 81.1797 -0.763393 46.3218 105.265 19.187 111.876 67.0002 103.887 51.1614 34.7046 122.408 9.34464 46.9342 110.14 133.732 120.298 122.358 152.639 161.806 167.467 39.6668 99.9784 -17.7912 99.018 68.791 184.073 -5.90533 170.793 5.62566 -17.7869 34.1622 186.207 115.647 211.696 167.822 109.197 104.735 65.2828 119.241 149.012 122.672 114.07 -39.8363 14.5178 184.565 67.6071 75.4191 65.7606 -77.1317 91.4585 117.44 124.586 -17.8986 163.264 55.0092 89.8656 112.257 30.5557 173.096 75.7201 31.9344 86.596 -70.7536 108.581 119.161 13.6829 126.419 79.3125 65.5921 130.049 42.8456 97.1076 84.7498 28.0963 120.754 150.664 13.1607 103.36 66.2062 53.5112 78.563 91.6325 72.9004 73.8992 105.315 157.627 120.884 23.4313 58.5404 -72.2691 80.1605 -53.7335 -76.2637 115.353 112.855 -21.7291 118.327 97.3082 124.465 32.4387 117.044 93.9053 121.792 162.021 108.058 99.4083 119.475 142.982 -21.495 71.81 -35.8374 -6.39179 6.77075 139.412 54.2713 107.833 46.7773 119.125 8.84008 114.494 77.9424 108.828 122.271 114.671 46.1938 28.1748 104.666 -0.376023 55.4414 128.405 80.5785 22.08 126.463 122.852 80.2141 113.934 70.1463 109.094 97.1129 100.271 98.5298 124.137 69.9454 71.3737 39.5084 54.5423 145.088 136.24 131.992 152.754 95.878 8.26431 140.019 105.261 105.318 92.7841 116.505 95.6853 16.332 -23.8095 136.858 82.0046 105.267 83.7204 127.381 132.584 -13.4787 118.082 82.0842 81.5235 97.7787 51.8446 111.6 70.61 -5.28521 196.333 94.8698 114.907 -20.0659 54.103 166.18 116.102 170.768 113.881 139.186 124.05 20.9585 161.668 118.88 30.9461 104.931 166.409 6.72038 47.6313 60.7595 113.187 40.9341 121.76 123.772 140.99 92.9114 31.6061 81.1614 32.0254 28.4873 34.4733 49.9791 192.422 89.1336 -6.67416 131.373 95.0145 139.958 43.7387 147.6 117.802 181.452 103.137 32.0004 52.2752 82.754 70.31 91.7188 110.882 92.5917 126.277 123.8 68.1532 123.826 93.9943 115.065 173.233 171.207 72.7167 68.0894 106.475 179.313 109.103 64.6925 81.0711 25.8058 147.815 133.685 72.1831 -22.2379 -62.2714 56.3263 171.822 148.098 154.833 123.443 79.6338 64.9202 26.7295 184.913 125.512 161.226 119.876 106.005 111.032 167.492 115.983 83.2636 -30.406 48.0564 100.941 62.9721 191.794 81.3093 -51.1516 132.82 2.81505 98.02 42.3738 0.49733 97.0399 87.8752 55.6646 164.829 93.6256 54.0336 29.4817 125.771 124.819 149.547 52.4993 78.3469 97.3123 149.694 150.52 116.338 69.1341 81.8291 163.539 67.0346 73.5702 96.8369 -12.7561 90.6579 124.585 55.5905 110.483 136.194 -48.924 70.3454 176.657 71.9211 13.4038 122.845 -51.4274 -15.1704 66.136 109.201 114.118 69.0397 165.988 119.422 52.3363 183.989 69.9129 121.303 -33.6838 134.404 156.918 28.0275 48.541 119.287 -44.0844 65.9497 -43.7754 104.696 120.759 32.4286 129.541 95.5411 55.2045 158.701 21.3463 119.863 98.8369 49.5083 104.863 -66.3069 118.282 -65.6894 73.2957 -56.3073 12.5398 89.7549 57.3306 141.017 103.315 179.314 178.687 100.093 84.5156 119.272 151.977 145.675 149.707 -3.827 37.6978 131.14 111.544 102.921 34.8376 53.2902 125.391 123.182 95.507 84.0503 193.969 110.791 49.9361 115.205 115.254 64.8175 0.00822724 54.617 95.2172 114.286 87.1648 107.499 173.811 28.0272 207.044 33.4343 177.878 146.788 -49.7444 38.8797 -22.1904 40.7083 36.3184 5.26255 154.583 139.878 5.30346 100.558 123.592 44.0614 108.003 16.4554 75.5869 110.353 120.369 189.606 121.204 157.017 189.094 93.0146 134.213 -17.1499 122.821 70.5097 59.9911 125.5 94.63 111.872 93.971 112.085 43.5704 133.459 66.5099 157.676 218.928 121.674 120.499 109.454 -24.0639 143.103 -30.6006 -35.3346 116.664 -24.9383 -74.6118 210.65 118.484 76.6008 75.9078 -80.8329 97.9708 17.9549 90.2377 87.2735 50.0738 18.4924 107.1 209.174 137.108 130.922 70.2016 141.604 109.771 133.631 49.8529 68.0077 0.237143 121.422 46.8247 62.7831 -50.2176 57.6959 119.129 91.3594 197.683 197.392 47.8362 120.377 154.592 -40.4746 101.376 122.142 26.5283 138.515 134.151 113.067 103.485 130.568 67.1658 117.76 11.7151 125.191 -84.6397 94.7995 132.091 138.461 129.942 -14.5229 109.714 121.268 94.7455 -18.1036 -39.4873 19.1256 114.975 122.472 141.87 116.508 43.2585 98.3173 126.075 115.857 -28.7009 -75.6943 104.359 62.1714 175.023 23.7194 123.481 122.09 108.45 188.373 91.5136 45.2882 54.2372 64.4819 92.4809 189.703 53.757 92.9953 -8.71733 -72.3862 144.154 140.867 134.04 69.0687 122.466 88.3372 28.4162 109.716 -67.0695 61.2966 138.697 14.2514 166.824 130.242 -2.11986 105.065 -6.1063 100.922 24.1249 68.8765 5.20148 123.256 84.0445 24.7363 108.551 160.132 150.708 131.981 181.682 100.463 102.75 44.8403 63.4942 53.7348 -4.20608 117.165 163.017 97.834 100.236 125.17 79.4891 96.0238 100.434 -65.6088 82.7298 64.3591 157.048 50.1017 52.8347 -68.3629 57.2606 46.9821 -20.9425 127.913 15.364 208.644 20.4612 31.6347 -42.3474 125.106 31.7637 28.6119 104.528 80.1823 89.8678 105.903 186.689 68.2343 71.9911 173.014 98.0279 110.012 106.128 152.192 191.679 187.351 -32.7532 124.206 55.4039 165.625 82.5071 39.9885 122.148 121.282 102.269 172.774 98.9547 117.835 55.7398 -23.0137 118.575 -1.96286 109.842 130.798 187.387 131.961 103.685 186.832 147.938 61.3257 101.226 69.747 77.2312 137.82 93.4597 144.035 26.0084 1.8709 87.6762 78.7489 120.923 25.5061 87.0923 104.021 111.893 122.451 100.637 -38.4668 -25.526 39.7246 114.515 154.508 121.026 -68.6279 58.3001 -64.5408 125.189 142.543 74.4868 168.638 30.5495 20.2937 160.405 51.5973 117.683 -7.60444 139.812 119.899 106.459 -13.3424 117.524 129.976 121.83 104.698 124.767 103.519 -73.3404 120.814 -23.0585 214.306 81.8989 206.537 77.4501 110.812 115.657 5.66202 101.833 37.9182 93.5066 81.4854 97.0868 122.064 140.5 68.4737 109.561 19.4561 98.1241 -53.211 9.8863 -8.78373 -11.6567 139.319 120.472 52.3217 95.3228 114.505 105.822 94.077 204.575 95.0936 98.4984 125.815 105.956 79.8409 134.12 91.6175 135.772 43.4783 54.5406 149.837 111.952 59.2336 163.34 68.3683 110.018 143.886 -33.3855 17.632 113.796 161.957 104.125 53.9526 129.737 90.9078 -2.0931 97.5322 185.327 107.571 -31.2056 172.805 205.701 150.99 124.336 123.42 155.688 89.2582 101.261 182.706 111.423 85.8682 52.608 122.694 128.374 182.497 -59.2238 159.184 196.058 58.0741 93.3459 59.8229 97.863 44.6114 120.864 148.1 84.1119 -40.5703 164.001 66.9383 80.0409 -2.07765 124.57 63.6812 -86.2537 123.163 71.6833 149.043 102.087 73.5966 92.7497 174.811 145.783 100.358 111.256 -16.7251 160.887 161.823 98.8723 120.869 199.214 13.6403 19.9349 130.901 78.2979 54.56 100.734 146.048 17.9366 120.779 120.344 111.9 149.425 53.096 141.737 138.248 -6.5612 129.409 132.935 -14.9453 31.2705 44.9142 206.046 -36.3671 119.548 93.404 -50.5273 62.7316 119.527 90.7868 113.64 169.511 35.366 167.017 -63.0806 122.747 91.8545 120.088 57.1212 121.414 162.549 33.9303 180.483 121.952 201.729 133.242 86.5504 -41.335 116.499 19.5286 129.129 121.714 155.791 124.195 125.215 123.842 70.7024 194.071 110.494 1.93441 27.9523 145.044 123.388 37.4214 102.76 101.813 128.782 57.2769 25.7159 -52.7999 131.395 157.369 138.474 69.2662 69.8611 107.221 82.7575 6.55833 122.659 132.609 90.9364 145.457 129.324 188.079 127.873 107.901 -1.99487 141.08 32.4508 113.801 104.638 177.482 117.606 115.077 99.8815 112.889 4.93563 102.993 18.7411 38.5666 103.974 120.501 78.6987 80.1931 124.246 -66.3963 104.182 109.822 112.171 15.0572 121.519 20.7425 82.2135 59.2379 50.0672 -17.2571 110.919 97.2231 154.697 82.1565 86.4207 127.493 188.163 40.472 97.0613 121.527 61.7024 108.344 115.077 3.51598 149.87 147 195.317 -23.3549 75.5888 58.0503 26.8939 113.411 122.825 122.978 -30.82 67.2401 50.7581 140.278 93.3463 85.6493 119.361 24.6405 133.728 -43.717 90.4952 104.53 84.9602 127.857 106.558 154.477 32.1924 93.6021 108.813 85.6615 118.613 14.7642 86.5244 48.7483 122.207 203.238 -2.59104 8.71982 97.6275 178.638 63.7226 132.894 145.323 200.817 52.3507 -69.7717 79.4281 39.8643 -45.5302 25.4099 118.734 59.937 152.758 107.752 147.886 -54.5876 99.3172 95.8286 110.141 74.0688 174 119.266 192.31 95.8386 112.686 155.743 81.484 106.927 114.006 40.9763 111.91 143.483 69.6031 173.659 79.8085 158.793 121.762 104.014 111.789 88.2034 114.099 118.641 149.896 95.4319 106.724 134.917 96.4634 138.566 215.26 118.156 176.48 45.2116 118.491 102.731 61.7933 95.2449 132.854 113.59 109.929 46.0999 -26.2584 -16.2046 120.723 123.948 116.532 141 218.267 120.249 164.193 159.868 183.335 175.261 89.23 63.129 142.279 22.5445 23.1651 182.066 39.9184 63.3891 116.805 152.885 -35.9728 103.785 109.352 101.017 111.379 223.006 63.8322 151.802 17.0087 4.23139 71.0932 129.027 105.865 100.442 139.878 93.0539 113.963 126.946 152.889 81.4707 96.0292 119.323 112.823 -37.1189 99.8829 182.987 171.292 74.8782 98.2343 124.954 110.492 121.965 178.727 117.599 85.0769 123.514 192.608 98.1204 37.2663 163.279 223.703 189.281 76.611 127.46 204.993 118.158 110.312 163.601 95.7714 -12.6206 102.655 77.7524 34.5099 180.49 3.70955 51.2036 123.089 201.041 38.1853 94.5589 174.54 117.858 109.636 72.7561 110.151 148.561 165.548 166.681 109.849 79.0154 54.6782 79.8297 -64.6032 115.789 144.004 63.9335 14.2673 63.5218 117.963 7.61693 104.812 141.873 96.3575 113.617 96.6901 69.3532 106.984 182.365 59.2371 -2.17008 20.9098 147.001 210.408 214.91 78.9899 169.825 -71.2402 64.1571 207.909 70.6482 172.774 -64.9192 94.8275 212.174 -64.2129 10.1404 107.106 11.7908 80.0589 -73.716 99.4153 96.1255 -15.4651 51.6647 3.15992 113.726 136.095 30.9443 143.874 105.082 28.4438 -3.13077 -77.6322 -60.2376 120.88 124.297 80.0451 47.7254 63.9992 80.5782 207.328 148.109 134.713 43.1444 122.58 209.533 151.837 163.839 79.3477 158.088 85.7453 -13.2523 30.059 156.507 8.93568 39.5647 82.2654 131.956 125.06 162.138 93.2454 111.486 121.091 -86.3539 116.56 78.3827 -85.0524 107.9 120.93 126.899 60.3784 160.134 47.5585 79.7458 127.129 215.955 170.476 128.107 70.56 53.405 103.394 30.9398 -10.014 117.036 -47.5892 185.511 11.6197 104.37 113.875 5.11251 147.339 135.979 79.17 211.123 10.9941 27.5705 115.506 76.7302 138.264 115.167 130.281 222.497 158.864 47.2533 110.728 -34.9391 40.1452 97.6047 36.7744 96.729 25.7763 191.012 78.208 135.948 123.312 165.724 109.749 -29.6253 3.8172 96.5319 195.898 -18.3756 30.5578 87.9453 53.7864 109.443 113.657 66.1585 134.623 138.262 99.2962 143.529 67.4813 109.601 -13.9378 94.5047 147.482 200.356 72.4012 -22.9048 166.849 -25.8216 151.637 50.5125 89.2551 38.853 71.7301 119.595 188.956 96.6277 91.0386 144.511 116.006 147.037 -42.5995 117.274 32.941 110.15 44.0679 137.026 151.925 104.742 79.3855 183.595 120.129 69.2311 142.983 113.993 108.596 85.3352 90.8723 145.898 3.1583 101.201 -86.0758 34.4851 45.8164 -51.7364 170.255 90.7569 178.311 121.679 89.1313 99.061 122.654 106.036 127.106 -35.5929 104.411 93.5228 207.086 8.08443 121.433 119.491 41.8739 113.294 58.6237 92.4851 80.3611 122.312 115.471 136.287 115.978 38.809 136.942 71.1213 38.1829 204.412 56.1302 49.7996 131.963 127.299 92.7803 -1.67897 -28.7709 104.366 143.945 54.9866 -15.7434 120.129 150.033 84.3383 200.87 118.49 176.089 64.0059 99.5669 91.6716 -66.1839 37.8222 169.428 108.069 -7.48284 122.135 98.073 206.832 96.7092 98.2085 18.35 62.5651 56.4686 128.773 166.893 151.149 123.908 -10.0871 103.753 128.329 81.8193 156.423 -9.63127 34.6249 88.268 121.822 16.5109 26.637 -61.077 165.137 169.538 127.705 121.644 122.603 54.8616 144.384 162.144 61.8776 121.903 188.389 -3.45749 142.714 44.3432 132.376 -26.7556 28.6167 60.7623 -63.8504 97.1423 37.736 14.4321 88.4917 152.508 66.1263 98.5143 56.2832 28.1325 159.748 34.6115 41.8195 32.9035 -65.0109 -7.33741 102.236 -0.43479 52.1374 135.417 91.403 37.6428 144.966 -40.6402 125.175 102.451 123.213 -5.94509 146.146 182.503 79.6769 135.81 -30.2915 146.307 122.528 141.029 46.4892 -71.04 28.1379 -77.1393 140.327 42.3216 94.773 144.138 108.595 60.1127 125.916 124.017 86.1727 87.2838 113.083 176.472 78.1867 -74.1145 9.98941 147.173 -13.9935 107.921 121.75 79.1133 149.019 94.059 125.211 106.39 69.5899 145.214 47.7748 122.673 -82.4254 111.984 45.1438 41.2932 28.4421 123.526 101.025 112.273 28.1618 103.779 98.6971 130.53 -48.0133 106.686 110.856 72.5665 43.1302 128.825 -90.3165 162.636 37.501 151.293 50.8894 161.044 12.3972 136.314 5.49556 110.517 116.783 194.241 70.7639 165.203 95.1986 45.606 51.4662 -13.42 -1.8105 174.957 128.152 119.418 20.8547 111.757 59.5464 200.465 136.863 4.57492 71.859 125.058 145.024 124.917 48.2212 128.714 17.5576 30.0703 196.921 108.027 111.603 208.951 114.629 106.223 69.8417 71.353 73.6545 49.1916 123.372 79.3236 81.9895 145.45 103.218 160.815 79.3753 116.752 -81.0742 100.852 142.413 177.397 -7.56189 122.842 143.526 54.3027 119.498 128.648 132.324 164.253 -51.6332 131.493 -61.8698 102.445 116.055 99.0949 -27.9442 82.9155 110.006 -20.3147 64.9663 180.516 -8.97524 122 191.189 78.2233 185.318 201.427 135.568 152.641 -8.9843 110.48 16.5438 120.233 -4.78411 -27.5958 -33.0984 20.2726 151.32 97.2548 40.8255 72.3992 103.611 52.166 65.9199 134.342 1.57425 95.2237 116.726 115.234 85.4267 62.2931 59.1444 83.8031 89.2782 137.657 -9.29851 87.8334 162.853 50.7048 53.921 159.711 181.931 97.5384 -42.3366 156.197 87.5915 -70.3772 34.4818 41.7292 155.478 216.729 36.665 122.63 37.8341 118.955 14.8957 165.808 86.8964 155.07 131.288 174.996 57.9935 122.465 128.99 115.517 110.009 25.2431 13.0948 127.915 129.585 47.5667 -42.6569 67.6892 -11.0348 84.7161 91.8369 46.3872 141.773 116.476 135.087 32.2587 120.758 91.6099 183.168 -65.3983 -24.795 45.5608 63.0793 104.947 38.3547 -24.95 206.258 130.428 -52.3874 102.133 223.315 202.988 103.902 53.3188 54.0042 111.076 23.8302 209.785 71.3123 187.522 109.348 10.1658 101.419 -62.1892 150.103 152.446 32.4575 77.1895 114.369 -5.04979 102.653 122.234 -65.4168 101.511 138.571 148.231 36.4161 107.159 60.5555 89.6781 69.8803 49.0067 -81.4122 109.971 191.305 117.083 173.781 40.0532 97.3376 40.7393 109.914 63.3013 90.2468 84.7821 -4.40777 -3.84473 137.618 -30.4625 95.1407 72.8271 110.322 97.5343 121.944 168.468 134.233 56.79 84.6457 162.943 -44.692 117.559 96.1662 -22.1342 48.0512 150.102 -13.3899 -24.7955 109.118 25.7703 106.106 174.456 123.21 126.814 95.0786 86.2383 130.431 34.8643 126.037 127.942 34.2047 -12.0513 127.649 -38.4098 104.473 102.717 154.555 118.303 125.374 57.2697 102.612 0.943433 122.82 56.1865 194.485 92.8962 87.1072 45.1346 111.008 137.475 84.0781 95.0002 79.8248 175.949 63.315 101.249 17.4407 63.3917 169.039 117.286 75.3786 56.3645 39.5016 122.093 98.6114 100.086 73.3268 122.208 84.5311 107.775 132.954 103.587 149.652 74.1313 157.613 120.558 -63.8745 104.619 130.244 99.7918 81.393 119.003 109.641 209.204 51.1486 102.625 103.618 -28.9427 114.19 -9.64001 74.2208 39.762 -77.2879 120.895 130.338 140.618 157.431 -52.8942 110.139 -7.16827 87.1721 118.654 116.269 105.863 115.047 105.386 142.499 163.726 -16.5054 38.6253 43.5424 174.052 80.7734 75.6597 122.274 51.231 -53.6801 104.316 118.883 19.9985 68.3673 140.632 126.65 78.6508 106.204 119.945 175.323 200.925 -18.1598 129.966 114.572 -15.5373 108.582 158.36 -73.3623 142.369 11.8172 116.699 114.993 84.0601 111.127 123.779 131.282 25.4433 95.2739 23.8357 204.648 20.3947 96.3436 60.4191 -28.3636 86.6928 93.026 152.719 94.1878 106.789 97.1912 49.0617 113.878 94.0478 122.434 97.2694 138.112 105.705 90.0919 -55.2247 171.718 186.722 -2.37955 116.618 -17.8393 127.922 19.4314 4.09473 2.26928 79.1983 86.2394 98.9206 -39.2247 66.7504 -6.40597 -67.436 113.297 186.04 122.856 114.275 111.485 110.728 48.7682 87.3341 81.1564 142.776 123.113 161.509 152.9 -54.6258 132.264 -88.5878 177.187 100.042 95.0338 120.083 213.876 133.741 207.022 104.284 65.8168 60.7585 168.509 115.974 67.8015 146.907 81.8216 48.1655 110.135 101.852 219.494 105.928 123.497 77.425 146.603 83.3214 117.553 145.694 184.613 48.9109 118.503 -18.5166 141.542 67.2935 -19.8217 104.649 174.392 97.1013 32.8353 110.882 81.4383 87.2254 97.7874 180.21 168.474 60.0901 45.9701 68.0145 19.2535 97.5907 91.6607 91.5651 108.994 81.6245 105.455 173.398 184.893 98.0054 134.838 135.806 4.7105 11.6042 181.487 131.907 17.5667 137.063 120.784 162.77 88.1584 148.11 90.928 191.05 133.262 103.833 105.661 134.683 101.623 149.129 112.536 105.9 48.0963 79.0244 14.3216 132.757 54.2844 91.1634 108.582 77.3007 99.5689 76.0277 144.623 -50.6234 168.083 82.9612 102.658 -10.0097 96.7945 142.46 -16.9866 -18.0879 177.569 175.308 -29.5098 160.077 120.537 120.765 151.174 109.267 110.999 120.767 97.5413 26.8828 45.1395 117.719 159.379 95.6893 -80.29 24.0189 32.0102 106.455 -47.2023 49.3197 101.664 114.345 119.859 60.2844 113.807 148.293 124.771 194.395 110.759 -72.1032 84.6104 -79.747 76.3147 153.382 131.271 119.083 -31.7125 131.962 115.673 116.632 58.3998 124.433 98.7792 157.6 33.6493 -5.51852 29.6005 126.501 117.786 73.8541 93.6941 75.031 81.9279 94.9737 41.2522 105.186 57.3272 143.496 94.0676 13.645 111.568 83.222 68.747 118.977 79.8499 96.0136 18.4493 109.776 5.59048 99.9798 124.129 -20.9982 123.423 -57.6566 142.023 42.051 84.4829 64.238 -3.8392 -18.4215 94.052 58.6235 92.1222 106.951 44.2126 139.608 -17.2574 53.7757 212.448 78.4902 134.467 112.971 2.99381 147.973 119.741 132.467 7.9737 150.389 110.387 66.0178 64.1127 91.2772 105.822 70.4574 95.8731 43.4197 -63.5758 154.855 98.3282 -29.4896 27.0578 86.8025 128.282 109.711 67.2013 116.885 108.795 -12.3962 -5.45567 94.3871 138.319 125.97 43.501 106.055 -51.0726 95.6688 43.4232 173.209 -2.83444 163.547 -15.6095 170.286 193.946 -69.1562 149.473 106.033 150.628 94.6662 182.761 33.9154 98.2203 199.596 153.88 14.3414 130.561 99.4813 205.708 -4.21161 109.2 39.2024 118.649 16.3924 70.8477 118.181 17.8454 33.2432 -9.26208 99.9965 173.838 75.8312 17.5122 128.332 29.92 153.788 120.188 46.6636 4.41088 77.1106 123.233 140.167 44.2247 89.1555 173.236 11.2239 160.004 126.238 208.428 203.466 124.381 49.1624 175.439 78.7913 1.32431 79.5382 76.6649 9.7377 94.3534 20.6174 36.37 135.708 134.01 31.1164 124.458 66.5916 37.5885 74.8404 122.59 -82.8346 212.545 127.853 110.012 62.0424 26.4873 -30.4386 177.01 44.809 139.339 106.742 12.5206 96.78 -11.9146 81.6273 42.8598 185.919 126.091 107.925 21.4088 71.5581 121.539 133.703 150.011 92.5517 89.5868 83.4745 10.6806 -47.3657 188.619 53.7486 51.9717 125.472 30.9601 -17.4686 62.7019 75.1592 136.918 159.787 82.8504 83.6169 98.9016 91.5177 13.8261 -32.9364 152.901 -22.3006 86.158 93.7297 134.503 110.581 114.003 125.59 94.4718 25.409 115.42 119.612 45.8145 59.5136 56.1554 82.9321 -27.9664 173.566 90.5959 60.5003 104.226 86.3743 101.135 74.5629 111.253 125.67 115.914 6.63992 -15.0864 35.1623 143.267 191.741 42.3433 73.3555 47.6437 47.6429 17.3068 -17.8322 87.1235 93.7577 129.336 101.924 139.996 159.033 52.3086 -44.8846 87.4763 135.065 -23.1127 -44.7132 118.677 -72.8686 78.474 98.3153 97.2932 36.1181 17.2285 -19.8826 115.541 78.3465 122.555 72.6736 107.627 172.234 26.965 81.9866 115.244 120.631 -28.857 111.381 129.755 112.837 -82.2187 165.541 127.762 126.852 50.8465 144.644 81.4719 31.6653 82.9145 105.274 88.4399 200.491 150.473 151.061 12.5027 -60.2225 190.306 -73.4313 111.355 123.344 47.8681 27.5724 89.2254 111.436 130.298 54.3781 100.349 43.0478 56.256 100.312 -39.0405 108.942 -63.8463 118.356 159.46 63.785 67.4267 146.491 146.232 151.427 82.7424 100.484 180.26 26.5279 118.292 60.4445 110.063 57.4891 104.783 126.095 124.17 184.259 95.5533 -1.80774 -69.4007 131.875 218.923 81.0065 177.367 182.544 13.1338 45.5269 75.1728 89.2185 -23.9467 96.0646 58.168 114.243 87.2656 39.1987 138.097 37.2467 -63.9061 8.43597 62.0369 122.888 -16.4499 109.363 124.361 118.628 108.937 91.6498 159.976 159.415 172.97 144.735 80.3439 59.5859 -4.93843 -53.812 117.061 47.3489 129.033 117.216 -49.569 -5.34282 -61.3113 122.395 204.584 -0.675447 102.753 181.377 106.857 123.378 128.571 80.1127 6.23912 153.418 95.9556 146.396 117.464 199.761 136.452 156.961 -13.6187 -15.4078 124.364 47.0641 183.092 39.2809 51.0715 118.406 23.9679 84.8604 121.909 10.5942 114.304 107.554 148.533 55.7725 105.5 85.3053 180.411 81.0056 35.9367 106.368 127.416 42.4976 90.5017 -35.8022 100.929 116.806 60.037 52.8863 134.647 150.983 98.3578 109.927 140.871 73.6545 125.138 90.3386 37.7283 86.1943 124.66 102.018 174.964 86.6015 6.78863 142.086 147.413 104.063 117.781 106.844 -44.7353 121 198.329 64.8876 144.662 191.002 80.1541 140.157 78.9446 80.7674 -68.053 39.4815 116.354 94.198 49.6235 131.619 149.038 155.236 209.966 199.438 168.902 85.481 104.289 74.0665 -15.5525 130.254 10.4967 126.487 157.509 32.6751 1.43679 124.022 30.6762 106.085 51.7656 103.366 166.115 171.995 83.2765 49.4694 143.388 89.0344 -12.0124 78.6428 36.7402 103.851 112.722 -3.46236 14.1761 15.5364 131.654 103.459 -2.76828 57.8928 124.003 59.1407 126.844 -34.2615 64.5574 45.5682 158.084 85.139 16.2351 118.534 19.3381 184.603 71.8088 177.597 113.272 -35.8531 20.5237 148.454 122.508 1.41288 72.6495 51.4624 112.506 109.768 125.313 -25.1335 63.1857 121.571 53.7129 110.38 97.412 -73.1722 77.4911 2.32128 140.665 85.3562 -87.5286 51.1274 24.092 130.011 -23.8325 95.7066 67.9626 187.437 172.388 105.867 85.6744 146.282 65.3064 107.019 -29.015 173.192 111.241 167.639 -32.3015 109.237 111.162 101.216 -39.0522 117.333 96.1247 51.5968 -7.67716 103.297 -53.0594 80.2201 126.741 139.381 28.2411 79.6816 107.041 112.51 144.901 73.4445 11.3109 96.3233 139.449 80.5431 86.1177 173.889 50.9472 -30.5113 34.6568 152.513 97.6165 54.6282 96.1602 122.485 175.882 111.499 -53.7415 63.5372 -0.442844 72.2974 -42.6775 80.5215 120.829 81.7458 68.4799 41.757 121.27 121.107 123.105 75.4422 134.168 106.722 109.198 26.2329 12.2531 98.9139 115.611 72.1911 134.743 129.26 121.989 49.7038 14.3455 121.901 120.986 41.9068 104.15 95.5725 169.678 112.153 23.0352 111.26 107.049 87.2109 57.9423 111.65 -53.8603 -5.49491 127.996 104.886 127.982 163.56 61.4391 95.4628 28.8888 116.72 -42.1492 187.855 57.7853 -10.0024 -32.6311 109.604 33.7718 120.984 100.339 169.638 133.198 72.1709 164.991 95.5305 -55.8807 15.2967 140.423 -27.2604 23.5433 129.889 -28.5179 53.5961 38.2817 111.894 97.5134 157.101 112.814 38.4717 113.361 114.894 161.479 122.311 68.6094 26.6727 131.639 44.4956 49.4974 -49.5035 128.002 113.341 -61.3424 86.79 -35.3785 189.615 102.248 5.53369 74.8083 151.691 110.328 17.9273 179.53 80.5488 84.9337 116.326 25.5693 93.0241 123.127 29.1434 81.8234 23.0967 153.745 77.8644 78.8115 39.4768 105.161 53.1878 189.927 163.813 132.768 118.903 175.102 96.3098 93.4455 127.73 135.997 64.7253 121.592 159.679 194.829 157.176 62.2262 41.8522 61.9801 3.9462 35.4356 159.849 -47.9942 126.494 115.714 119.883 111.392 38.259 89.2535 120.244 112.745 -34.2954 98.5146 -3.84377 117.224 71.3308 136.039 103.034 183.289 99.448 122.59 -15.5809 49.6932 109.892 -35.3014 105.105 76.4906 77.0178 16.5667 137.522 108.32 95.9884 -22.7677 73.1604 193.904 124.011 124.496 107.155 111.483 42.279 164.05 13.4252 58.0202 72.3046 164.679 105.683 111.68 53.2775 139.064 127.4 96.9154 100.918 77.7948 3.61913 132.965 134.431 96.3057 110.686 79.9088 21.8471 -51.9527 106.151 168.951 157.829 136.548 147.685 95.4065 125.851 13.0541 13.7402 164.711 112.961 82.1298 61.5171 193.101 -35.6286 148.875 185.878 82.2659 -57.8787 35.2757 181.397 203.547 129.126 58.776 96.3695 77.2443 116.434 -81.1072 176.36 198.476 -41.289 78.6897 64.5064 210.145 98.9588 129.36 117.92 114.947 109.209 -76.0051 142.668 156.668 119.32 140.675 9.84253 155.901 125.086 98.5185 156.175 -46.8186 109.759 110.719 59.1827 82.8272 117.792 97.097 -90.1093 165.675 115.956 -40.396 25.4875 184.604 -37.8121 90.1538 149.86 131.378 88.1218 124.689 -82.3994 127.401 146.647 111.261 77.8939 151.892 54.4844 24.4242 86.2372 16.6681 28.0451 32.0881 89.5272 29.668 133.501 105.417 118.012 97.2907 17.805 59.5178 159.352 -7.85694 -39.9307 213.446 47.0968 118.791 -57.6755 117.326 127.389 215.076 96.2113 32.1256 97.6099 130.028 92.4851 69.4451 118.249 141.666 -26.7146 91.1013 119.724 -77.7855 -59.1959 46.4903 76.1091 34.8561 99.6728 75.2896 79.2733 6.73452 79.8642 120.877 116.155 127.098 -0.610881 178.992 174.877 123.346 132.978 59.2545 90.2593 71.8159 97.602 118.891 -32.6893 61.7063 102.672 108.557 163.203 190.075 52.5771 3.6535 20.3616 112.761 -18.4702 81.429 192.965 81.4566 102.4 96.1962 165.409 63.531 19.3565 96.9253 110.131 126.366 157.979 129.034 105.267 80.6623 124.891 114.351 55.4575 51.9145 111.206 109.138 99.1201 39.4928 28.3864 125.442 93.4142 105.478 150.653 162.044 124.145 80.0177 78.6572 87.3252 108.48 154.298 115.659 86.3834 93.329 76.1824 88.5245 106.906 138.934 138.778 65.8092 116.885 -88.6962 30.0704 128.472 74.096 116.124 106.4 116.781 105.208 80.5281 115.379 142.595 118.576 48.7365 99.4645 95.2258 92.0192 160.728 97.1873 -32.4296 41.8474 73.6698 -87.7908 177.564 215.434 154.048 -45.3963 115.736 166.524 77.8926 159.053 56.7522 -8.94611 180.811 196.71 60.9098 39.9325 99.9974 166.348 126.386 66.9864 101.266 150.989 89.1454 31.8439 71.1822 121.526 95.8535 120.315 152.209 115.31 121.239 108.829 85.5616 11.8856 152.834 165.414 76.5137 59.7099 54.7043 -17.2283 131.352 -52.9061 22.2668 71.1696 -28.1825 77.4566 57.8909 120.467 18.7072 130.001 87.9356 144.03 96.6457 126.053 71.2083 74.716 67.6225 198.46 -51.2061 157.672 149.221 115.641 122.1 46.7183 138.791 136.773 125.209 128.901 119.71 19.3772 -14.0491 19.9173 103.912 124.398 81.196 124.86 50.6187 95.4932 60.1234 75.872 93.1444 49.1494 125.45 119.374 123.954 60.6249 151.043 108.011 97.4051 -49.106 -11.1511 108.983 179.26 109.471 203.382 47.8675 -79.2 51.779 116.153 123.357 204.518 210.194 52.7238 32.7878 66.1244 107.603 62.9022 7.56302 222.583 40.1116 126.711 96.8066 124.337 45.7759 112.261 111.489 46.4157 158.839 112.449 39.0324 177.766 119.173 37.067 79.2098 116.342 166.403 161.861 79.2163 148.091 77.9552 40.3627 76.2426 163.098 88.9995 149.208 106.769 89.5636 135.245 102.403 -46.2494 -32.3633 177.125 71.6385 188.945 184.22 162.918 53.5589 178.412 212.191 74.3925 95.273 80.8232 -29.0319 156.762 -22.5929 93.8085 120.029 186.817 159.826 150.655 81.767 48.3726 49.1714 123.419 33.4108 45.0297 70.2876 -57.5133 150.506 101.083 57.7892 131.831 109.633 182.337 33.3203 30.7381 35.1193 -21.467 106.543 123.628 156.435 28.0814 193.686 154.131 176.884 119.559 74.8053 75.6975 143.299 48.1277 44.5058 148.407 10.1395 172.913 122.329 169.042 219.593 185.665 122.385 57.2401 123.699 56.8156 199.151 48.9604 174.993 38.6589 180.922 76.008 50.248 32.3855 117.023 82.5309 92.2435 -60.5879 115.611 122.841 -0.856982 -19.6408 83.7505 154.612 61.7058 102.607 112.717 218.564 201.824 105.339 -2.11017 77.0256 56.0075 107.753 24.6473 69.6391 126.194 127.156 195.754 93.8012 93.355 104.495 155.52 -60.8924 73.9396 98.3265 100.606 95.0602 143.584 13.1592 -34.4102 59.8834 60.1625 159.504 103.88 123.119 91.2327 74.5723 138.133 -20.4656 59.813 130.267 197.639 85.1267 98.7341 164.356 147.207 80.031 86.6606 105.033 99.2384 98.5939 67.7789 80.3799 63.0883 110.203 129.848 78.4564 109.277 134.994 108.455 101.966 100.763 108.4 72.716 117.489 119.144 2.51092 121.248 141.571 111.796 102.8 22.4101 101.674 184.595 132.432 90.2183 101.235 97.8921 -54.079 191.526 -55.3145 -39.3586 97.7563 116.517 100.419 103.046 81.0524 124.435 109.965 -42.9527 105.351 170.771 39.048 194.313 80.3579 114.817 122.652 -78.81 116.111 101.74 223.567 139.068 80.5576 121.948 133.274 86.4516 107.788 109.781 148.473 92.2569 54.3461 142.116 145.748 113.72 75.7022 171.598 98.0511 -71.6048 155.569 -31.6778 -34.8789 11.2265 89.3945 59.628 172.507 155.602 102.02 159.892 122.498 88.0895 98.275 143.104 -15.8778 117.688 64.4519 124.112 77.7923 52.6169 -20.7766 123.899 93.7019 179.994 101.076 99.9563 103.545 145.836 160.55 162.026 -1.28228 81.7575 94.5668 94.5965 100.271 125.835 124.063 192.274 8.83841 121.448 109.037 20.9354 107.983 105.438 95.6494 58.9162 112.333 104.599 156.624 64.0729 97.0828 81.3216 104.841 123.495 184.114 58.5408 167.988 88.1031 116.066 -78.254 -10.1449 132.005 145.416 141.854 120.625 108.655 100.972 159.44 80.812 135.018 63.8821 91.4433 59.1308 56.0717 119.29 86.4441 -13.6301 -10.8146 155.311 187.59 135.505 122.21 124.16 43.4825 168.326 119.728 49.5785 122.485 66.5309 30.1412 71.0875 195.038 134.978 98.5992 75.5784 191.23 87.1053 204.913 98.4168 32.2636 123.054 56.8475 -68.6515 90.0349 -39.6957 88.5264 111.413 115.975 -27.598 69.5071 127.134 107.283 80.598 155.646 172.067 187.761 93.3826 106.445 -23.4974 78.4159 104.357 107.699 76.2404 83.4284 79.2204 103.321 78.9904 157.963 46.0711 98.5982 159.263 -11.1189 125.803 102.009 48.478 79.5094 81.3839 184.801 108.024 -5.92007 128.19 37.1483 60.8984 107.005 28.1881 102.458 176.247 -11.724 34.6082 -54.179 158.696 88.0762 53.0452 127.506 -2.9423 45.6243 105.286 171.076 141.562 97.1245 145.968 26.4544 73.777 74.4475 62.2092 219.051 22.8552 106.012 92.5889 55.0035 -27.458 13.9616 -47.5459 106.948 204.876 47.6956 65.6826 90.126 163.324 87.7012 45.612 -42.4349 75.9443 -21.8832 178.081 137.031 43.8236 43.305 11.7193 170.689 118.53 189.849 175.264 130.81 -25.4944 -30.8681 125.386 105.975 193.908 14.8254 184.239 165.361 107.273 127.015 96.7023 80.0954 101.803 104.455 44.3561 28.7686 112.125 78.9511 9.18489 107.184 115.628 138.933 133.429 122.872 65.0618 185.626 50.0484 49.1802 206.104 92.0766 94.4756 65.3988 104.288 74.7828 95.9944 156.301 106.805 143.469 1.6596 92.0531 79.4287 106.924 83.908 37.7026 104.611 -1.27383 179.736 122.954 -16.1809 51.9953 -72.9152 -27.4028 112.349 118.74 112.041 125.158 -51.908 211.284 23.1166 37.108 6.31775 142.91 194.762 126.227 59.7045 77.901 77.1229 82.3797 3.81615 136.43 -22.8805 -26.8926 73.1726 135.814 97.5733 4.57768 107.924 142.359 -20.4516 59.174 79.5084 80.242 9.25308 185.227 139.247 144.089 12.0036 96.9665 41.0467 174.476 138.009 -47.5554 176.932 83.0274 85.0059 141.668 124.104 79.873 95.2765 100.226 104.892 168.945 129.294 -5.60209 -46.2214 184.995 52.7542 113.936 129.944 159.695 -12.8089 -85.8282 118.827 119.413 121.592 145.321 154.898 148.878 115.718 118.309 -78.7669 155.477 -45.5405 17.5923 101.098 104.528 -54.8025 40.679 83.8491 100.069 132.998 46.4664 30.6757 47.9796 124.253 141.544 88.0327 92.9746 114.36 109.738 110.352 -15.5038 118.359 83.6308 90.9515 -19.6224 125.472 132.87 110.599 42.1553 127.452 123.51 142.838 98.0061 -93.7753 67.0398 128.712 -4.86896 104.791 71.898 10.8637 40.9746 120.443 68.9998 98.4442 45.7377 94.0799 57.7517 95.5445 53.8516 91.4652 120.456 122.022 120.355 0.287482 34.8553 176.927 4.51741 -0.374952 35.5973 142.976 23.2338 -39.1658 -34.7665 -0.0649954 146.892 197.92 19.4841 45.7518 62.9104 183.315 62.4758 33.7813 75.8025 101.81 110 43.8241 169.23 76.1912 38.7861 144.195 106.019 117.743 140.437 36.2955 85.4242 21.5077 -49.9062 9.60437 182.015 105.592 134.438 65.3882 66.7383 107.71 19.7974 80.5375 97.4711 81.0041 157.519 120.853 70.4199 61.6172 -91.035 79.5475 119.472 62.8275 90.6904 174.191 73.5724 169.825 -24.5233 62.6649 -49.3678 107.624 42.9285 121.585 30.9981 104.901 120.949 89.5017 110.061 108.213 83.2639 101.843 -69.2102 166.582 48.2821 99.4137 130.827 134.266 102.232 167.84 86.7869 85.6257 152.513 -13.6454 134.772 -83.2688 190.886 39.0479 102.97 -25.3763 179.18 215.114 -19.6583 94.1119 56.5194 29.8462 79.8099 163.206 141.11 46.764 209.039 -76.2455 110.439 86.6302 -78.0226 153.725 -5.3698 114.359 121.737 210.121 185.558 139.075 33.63 75.4727 137.786 170.759 101.444 124.57 203.49 40.5808 89.0919 196.004 85.364 113.052 90.0358 120.876 102.348 4.8915 65.602 32.9329 84.8424 49.0802 67.9661 97.1854 -39.6235 79.8806 -23.1892 164.938 92.9798 122.149 117.657 12.6306 173.776 68.7688 87.6053 116.612 -41.5027 63.9667 133.349 122.07 57.0224 107.98 42.2861 18.5573 95.7794 167.773 15.1382 94.4378 138.983 108.785 134.45 221.689 -58.1564 -0.284715 100.114 92.4333 151.538 76.6716 -20.083 177.804 -54.5781 78.7689 94.84 -90.4873 54.1217 58.4857 126.763 105.157 113.655 114.798 188.314 120.981 119.731 -54.5296 136.682 -89.5952 85.5656 104.204 78.648 171.46 137.025 -4.27369 -68.1737 214.363 -25.5236 -69.5611 53.1194 116.011 97.0262 128.291 53.0036 102.868 121.264 157.958 154.726 46.2286 113.436 179.38 109.941 145.667 76.8977 59.6325 87.9883 78.541 148.008 105.684 77.7466 124.435 104 97.4732 122.362 35.3738 80.5966 49.8402 101.11 149.271 7.42315 166.985 122.903 9.50014 97.1888 37.7185 79.909 27.9652 -89.6363 61.861 178.197 186.339 139.608 155.994 8.89477 15.5057 54.7737 50.4955 -3.84854 -36.5101 79.8458 -55.4215 56.1107 181.321 70.8355 69.4095 -48.2794 95.1194 107.063 153.893 86.6996 113.93 166.234 121.564 155.485 -24.0914 126.508 98.3903 196.443 173.373 152.096 105.033 97.36 127.936 153.181 102.666 122.627 198.366 119.494 214.989 80.0249 -77.93 21.6686 74.9569 177.039 99.5772 54.7941 94.0742 38.6807 -53.6182 116.513 -5.34267 34.681 -29.4462 123.869 155.462 21.04 113.252 93.3714 119.902 189.424 4.38485 101.159 102.416 -27.5689 124.11 -24.3701 113.135 125.53 50.8121 110.542 102.746 107.838 62.0947 -31.9652 136.729 160.593 14.0278 122.323 222.098 122.087 123.678 197.567 146.137 40.8043 56.3885 195.077 121.14 -10.839 92.2126 108.726 101.73 134.019 130.605 139.841 106.935 70.6227 98.7197 75.7617 95.3105 143.382 167.226 109.683 113.85 102.295 135.366 136.11 14.4296 84.6044 220.731 152.77 -35.6109 37.6066 79.9562 137.151 105.283 64.009 186.072 139.54 98.7556 106.184 61.5884 62.1433 103.264 87.4605 111.194 -45.3332 109.544 32.1179 47.1186 108.274 121.918 193.868 -48.7532 116.931 176.173 92.2456 105.574 96.5706 91.0457 44.3844 96.3452 86.3197 61.4329 78.1425 39.8631 99.5445 91.4979 90.8462 -1.13484 136.975 108.461 -9.47044 146.399 -20.2484 119.183 134.391 108.823 122.626 108.162 81.6926 -84.7809 132.248 123.174 70.7494 150.737 98.8689 135.315 88.3819 142.402 120.084 62.0827 123.465 52.8714 65.9102 119.4 23.1817 104.869 197.704 129.328 87.2103 149.54 129.156 113.265 90.0329 99.822 101.856 118.294 12.2219 96.9496 35.6034 97.3246 131.596 84.0435 77.0969 73.4063 70.528 173.299 101.531 108.846 8.36789 10.5663 150.322 115.783 122.378 157.032 16.3765 86.4434 43.5509 9.23803 203.677 99.9003 147.131 57.8223 25.6746 220.711 61.2821 109.221 134.226 124.75 -39.1278 105.356 14.2039 96.9497 117.743 92.4355 99.7888 88.834 96.8561 144.842 50.4763 0.0491431 110.399 42.9586 121.608 59.2536 87.66 70.2573 81.4585 63.2918 93.3074 199.067 107.506 76.6628 -36.2139 58.8958 124.631 76.3527 68.7736 95.9359 168.017 108.885 110.436 178.747 172.083 184.062 136.476 33.8817 160.388 78.2227 77.7911 130.32 43.2358 146.422 147.817 181.113 101.577 100.316 94.4953 120.588 82.3784 63.1765 121.767 181.648 60.6242 -58.5313 101.472 14.6808 97.8916 18.3298 33.2948 58.1998 112.79 98.2163 164.441 110.416 168.607 111.629 14.3446 77.4122 121.033 140.761 122.355 81.7305 79.9004 68.0868 119.711 120.058 -3.06632 183.035 169.06 70.0362 29.9511 94.147 101.559 16.5147 73.1271 96.5819 124.274 152.783 200.929 120.149 67.1812 104.108 121.717 101.795 141.383 110.97 93.4757 -15.0036 -55.8993 82.3915 9.29261 64.0388 139.998 169.775 100.53 86.3922 138.784 175.363 120.96 126.949 144.421 118.169 -36.7743 124.29 200.801 104.123 80.326 76.9117 -9.78747 113.683 63.8099 -48.762 109.797 13.8902 99.5562 116.657 160.856 201.592 24.2642 101.881 118.62 166.084 181.165 22.705 122.3 -44.3851 116.782 128.716 119.679 122.422 63.8327 122.22 -62.8405 96.4749 190.696 75.5902 99.7378 118.557 99.8825 125.263 90.2761 104.087 135.824 137.828 140.685 123.965 124.223 -7.10361 152.985 122.654 115.801 172.653 102.939 58.721 106.381 139.678 138.848 7.66687 49.9225 117.775 82.4893 91.7219 132.913 134.594 122.392 -22.762 109.717 171.327 158.971 60.6727 125.961 138.132 192.793 85.2839 123.19 103.543 80.3363 56.235 108.202 69.5499 112.16 125.458 132.656 122.107 85.8183 155.771 103.464 6.52181 37.5974 -18.3073 126.664 122.818 100.938 -40.264 136.216 2.09236 101.35 -0.341278 115.258 95.7756 -82.4078 62.2968 75.7031 31.9118 112.655 37.6776 121.646 109.232 95.5349 124.679 126.893 -22.7846 94.8619 123.673 -34.7716 84.2669 150.928 134.65 113.162 58.3161 67.4675 23.9705 120.783 96.1921 104.557 -37.2778 119.421 129.663 99.4601 145.417 -0.530558 145.308 100.61 63.0393 13.456 85.8109 -25.3838 -49.0582 47.678 161.419 117.024 76.4471 180.436 -26.1673 29.2981 94.5547 188.942 119.791 194.591 166.82 160.621 183.708 102.069 82.3397 116.992 44.5429 31.0772 60.5092 -1.12427 13.8778 119.774 122.891 186.492 64.5963 86.793 151.803 122.316 50.8523 128.228 82.2846 2.73058 84.4211 96.4306 -53.8347 112.605 121.484 62.1909 98.0021 165.336 64.5049 122.153 85.2507 107.908 98.3145 -30.8035 156.359 47.4123 150.803 147.622 145.858 105.88 120.402 85.9985 103.448 73.0134 79.2803 144.694 76.8065 -12.1296 121.657 168.579 112.742 -49.1555 123.35 -43.4537 153.515 216.998 -20.8904 41.3728 112.548 100.725 135.794 -9.61363 167.001 122.049 20.1994 137.24 122.206 -21.8032 202.64 -6.92483 152.411 104.295 122.042 102.801 112.54 112.213 61.2874 65.2128 78.8204 86.0947 110.158 126.14 113.604 44.9024 66.7868 162.2 122.387 112.36 -67.5802 122.58 79.4596 66.1645 101.431 68.6468 97.0842 183.977 75.8162 128.042 -78.4752 40.1669 144.565 47.4188 121.818 156.184 122.142 114.178 100.473 141.215 121.842 74.4422 60.2846 105.264 107.077 30.4701 64.1064 -4.03202 160.74 177.936 156.744 33.9548 79.8221 122.298 18.9068 91.7161 101.907 3.70703 97.0888 160.108 53.2712 206.357 168.391 92.9671 125.883 128.37 180.719 122.36 -14.6958 35.88 64.5898 46.2402 74.388 204.416 138.132 91.9368 170.525 166.041 83.2529 149.175 109.075 -40.8514 122.435 111.753 107.175 172.357 181.18 98.77 127.059 139.143 -43.5853 60.5766 112.098 23.9848 178.508 91.2431 121.195 97.4451 101.109 181.03 169.08 -27.8314 130.265 82.4565 48.2508 57.2747 46.6336 178.817 -20.1047 82.5519 108.523 163.896 -7.76722 66.8645 92.3082 122.165 131.812 168.69 -7.33412 17.022 11.9572 99.0648 61.2443 97.7483 124.322 124.757 -10.2289 70.2385 161.644 171.874 155.864 8.8305 123.082 -30.4367 150.811 132.145 64.7236 131.316 169.737 127.545 97.3121 122.073 128.527 99.3503 167.042 84.0876 105.155 70.6596 1.20472 85.5131 102.624 53.8945 105.415 95.8215 121.795 157.428 98.2067 96.2503 104.804 104.502 80.8273 156.582 194.184 17.7219 60.2222 37.9076 101.396 81.0125 96.7379 -11.7103 125.862 154.99 4.03293 -30.1583 106.081 68.5537 159.76 96.834 173.912 95.4532 120.179 45.9423 93.8859 43.2809 81.2036 -33.6008 -18.1464 72.9338 120.739 128.672 79.5763 80.1845 -82.6837 132.427 123.18 111.345 117.257 -9.23551 -46.3215 128.012 145.989 119.544 51.9851 83.0966 67.9756 107.703 -17.4393 49.9063 130.058 39.3683 162.208 -41.8197 168.521 135.15 164.382 134.88 97.4546 151.378 127.667 85.1336 49.3961 221.165 113.941 171.428 -71.7602 83.6338 117.31 76.5319 121.276 156.373 179.003 104.378 -8.90304 131.81 120.966 124.387 122.689 8.32719 69.0533 103.681 84.8322 62.3629 127.761 151.29 89.1762 80.9512 82.8073 128.819 40.1815 79.9252 129.677 192.832 60.4698 7.45191 124.075 -58.4799 97.9059 -51.5813 110.969 100.694 121.664 95.3551 97.485 24.8025 56.0884 45.0104 106.459 135.795 94.6514 114.755 196.756 128.302 -35.8972 91.4138 142.036 -75.6641 -59.0147 102.616 98.2159 131.538 89.5781 -23.618 121.02 112.519 100.599 116.712 101.146 151.117 16.7565 36.9616 93.6639 116.467 36.5601 30.941 161.163 96.1487 74.3842 61.4671 185.036 186.838 149.138 119.475 2.95829 45.8638 -23.6411 44.0341 197.275 98.2623 55.6141 84.5739 121.752 130.123 25.6296 14.6709 83.4042 -35.6398 110.153 97.8777 -35.9868 18.1962 103.635 103.07 90.3817 149.285 93.458 122.488 138.31 23.2321 -24.5876 53.071 121.936 86.4505 154.245 25.5437 96.4389 122.955 152.006 16.2512 189.304 159.64 110.384 120.193 57.8015 182.027 128.402 31.8613 47.1127 69.4183 72.3758 45.2935 121.208 172.119 120.515 44.8698 138.815 67.5005 99.2056 153.612 110.971 125.804 113.802 71.5291 -24.145 121.271 97.8274 108.221 40.6247 112.402 109.286 16.2771 116.089 99.1111 104.752 -69.1398 60.1962 56.9115 115.65 122.182 127.528 143.864 181.926 45.2629 144.011 125.415 96.2077 166.11 114.847 41.7792 82.4691 145.172 101.676 -76.9529 117.077 118.984 107.3 65.8687 100.164 96.8302 146.553 98.1661 64.6295 138.961 79.4298 156.234 61.7736 121.454 48.604 96.5607 64.8388 180.941 177.94 80.5596 89.3305 102.507 127.728 111.996 111.648 113.007 -46.0453 139.148 51.8579 -73.1144 120.011 53.2567 161.387 179.994 146.174 96.7699 198.727 4.95796 189.399 72.9628 84.4591 194.834 19.7174 135.184 120.852 208.587 116.955 168.259 53.5764 48.0686 99.9186 116.42 76.5906 85.4571 158.02 151.599 90.3939 109.017 57.497 182.461 110.583 60.5847 96.386 -19.1428 158.954 106.553 123.063 -24.0501 27.3368 39.0215 92.8543 162.558 98.0504 146.903 72.5892 97.4279 187.095 182.416 54.0142 119.959 169.478 95.4581 74.3014 171.022 107.754 93.3439 20.8334 103.279 170.536 73.0724 121.534 84.978 96.5036 119.194 124.883 85.5445 162.231 85.1996 119.693 118.002 111.705 44.6955 115.19 127.284 131.403 150.154 119.356 102.887 122.437 164.827 ) ; boundaryField { wings { type zeroGradient; } outlet { type freestreamPressure; } tunnel { type zeroGradient; } inlet { type freestreamPressure; } defaultFaces { type empty; } } // ************************************************************************* //
d811aefb0ef2f0a4e4024531392ce69d2e3daf56
7a48bef96fa2d0cc832cf6da92d0b53d7580edc6
/include/uiIo/uicrdevenv.h
c0d3be8fe33e2e591cd694a799bac345140e3653
[]
no_license
ThinhPTran/OpendTect
dc79b3336d5c7f2a8e9af3ac01f8194b40d896ba
8a0618ebf76ae3f02fcd8b02a4a1cf4e2b1fac53
refs/heads/master
2021-01-21T20:38:12.355612
2017-05-23T19:13:08
2017-05-23T19:13:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
733
h
uicrdevenv.h
#pragma once /*+ ________________________________________________________________________ (C) dGB Beheer B.V.; (LICENSE) http://opendtect.org/OpendTect_license.txt Author: A.H. Lammertink Date: Jan 2004 ________________________________________________________________________ -*/ #include "uiiocommon.h" #include "uidialog.h" class uiGenInput; class uiFileInput; mExpClass(uiIo) uiCrDevEnv : public uiDialog { mODTextTranslationClass(uiCrDevEnv); public: static void crDevEnv(uiParent*); static bool isOK(const char* dir=0); //!< default dir: $WORK protected: uiCrDevEnv(uiParent*,const char*,const char*); uiGenInput* workdirfld; uiFileInput* basedirfld; bool acceptOK(); };
bcb3277146d3bb143f0a564570b1b96f4ecd7036
59f22160c25102edbae50773c5df601a98a74a04
/LeetCode/485. Max Consecutive Ones.cpp
840b0676e06004785ecab6b2b1c0de3a1736db06
[]
no_license
Brehm1983/Coding-Tree
1826f5701548223683735566122c7aa192f2eefa
c3a5c6ec98e9f06786fdc440563b333d662d2e94
refs/heads/master
2023-07-06T14:37:42.174220
2020-10-22T17:12:37
2020-10-22T17:12:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
373
cpp
485. Max Consecutive Ones.cpp
class Solution { public: int findMaxConsecutiveOnes(vector<int>& nums) { int maxi=0,curr=0; for(int i=0;i<nums.size();i++){ if(nums[i]==1){ curr++; }else{ maxi=max(maxi,curr); curr=0; } } maxi=max(maxi,curr); return maxi; } };
44eb8b8a526b0d7b90b9aa1d514042843524f20b
fafb00d4f1e94c36be599279d711e52a998955b8
/MARBLES.cpp
1b215c092290e9016209aba97a5535e2b6af1d8e
[]
no_license
pro-coder123/comp_code
60ea28f2d8f3cf7c596cd8ea718f74d6669bb44c
1375820c38b375cac5eba4d06055a45bf71fb783
refs/heads/master
2022-11-22T20:35:56.129752
2020-07-17T12:18:50
2020-07-17T12:18:50
273,948,391
0
0
null
null
null
null
UTF-8
C++
false
false
261
cpp
MARBLES.cpp
#include <bits/stdc++.h> using namespace std; int ncr(int n, int k) { float i,p =1; for(i=k ; i>=1 ; i--) { p = p * (n/i); n--; } return p; } int main() { int t; cin>>t; while(t--) { int n,k; cin>>n>>k; cout<<int(ncr(n-1,k-1))<<'\n'; } }
1b514585bbf6e82e63c46b181a0139ebf929696c
27f543350a740c3acde0f1f7a8fe49c18f7b5636
/practices/practice_0005/main.cpp
52280b7e2e92f6c5a15b0f5e7e8970b9bbb4123a
[]
no_license
schanlim/cpp_warehouse
379046796f6a74ba9bbb8496d8701e3bfdd81058
b5cab1052ea4d8da3dbae7c9170eff9d3a83d883
refs/heads/master
2020-12-04T22:30:00.554589
2020-04-26T11:13:20
2020-04-26T11:13:20
231,922,746
0
0
null
null
null
null
UTF-8
C++
false
false
1,322
cpp
main.cpp
#include <iostream> #include <stdio.h> #include <conio.h> #define interface struct interface IValidator { virtual bool validate(std::string s, char c) = 0; virtual bool isComplete(std::string s) { return true; } }; class LineEdit { private: std::string data; IValidator *pVal; public: LineEdit():pVal(0) {} void setValidator(IValidator *p) { pVal = p; } std::string getData() { data.clear(); while(1) { char c = _getch(); if (c == 13 && (pVal == 0 || pVal->isComplete(data))) break; if (pVal == 0 || pVal->validate(data, c)) { data.push_back(c); std::cout << c; } } std::cout << std::endl; return data; } }; class LimitDigitValidator : public IValidator { private: size_t value; public: LimitDigitValidator(int n) : value(n) {} virtual bool validate(std::string s, char c) override { return s.size() < value && isdigit(c); } virtual bool isComplete(std::string s) override { return s.size() == value; } }; int main(int, char**) { LineEdit edit; LimitDigitValidator v(5); edit.setValidator(&v); while (1) { std::string s = edit.getData(); std::cout << s << std::endl; } }
84f3feab147e535c297316b20c7d5665b1b938ad
e542522d4bcddbe88a66879a7183a73c1bbdbb17
/Codechef/Long/2020/September/Chef_and_Trump_Cards/brute.cpp
0c412d5ba497f09e11667782beeaf783ebe05da9
[]
no_license
ishank-katiyar/Competitive-programming
1103792f0196284cf24ef3f24bd243d18536f2f6
5240227828d5e94e2587d5d2fd69fa242d9d44ef
refs/heads/master
2023-06-21T17:30:48.855410
2021-08-13T14:51:53
2021-08-13T14:51:53
367,391,580
0
0
null
null
null
null
UTF-8
C++
false
false
2,817
cpp
brute.cpp
#include <bits/stdc++.h> using namespace std; string to_string(string s) { return '"' + s + '"'; } string to_string(const char* ch) { return to_string((string)ch); } string to_string(char ch) { return (string)"'" + ch + (string)"'"; } string to_string(bool b) { return (b ? "true" : "false"); } template<class A, class B> string to_string(pair<A, B> p) { return "(" + to_string(p.first) + ", " + to_string(p.second) + ")"; } string to_string(vector<bool> v) { bool first = true; string res = "{"; for (int i = 0; i < static_cast<int>(v.size()); i++) { if (!first) { res += ", "; } first = false; res += to_string(v[i]); } res += "}"; return res; } template <size_t N> string to_string(bitset<N> v) { string res = ""; for (size_t i = 0; i < N; i++) { res += static_cast<char>('0' + v[i]); } reverse(res.begin(), res.end()); return res; } template<class A> string to_string(A a) { string res = "{"; bool first = true; for(const auto& x: a) { if(first == false) res += ", "; first = false; res += to_string(x); } res += "}"; return res; } void debug() {cerr << "]\n";} template<class H, class... T> void debug(H head, T... tail) { cerr << to_string(head) << " "; debug(tail...); } #ifdef LOCAL #define debug(...) cerr << "[" << #__VA_ARGS__ << " ] = ["; debug(__VA_ARGS__); #else #define debug(...) #endif int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int t; cin >> t; while (t--) { int n; cin >> n; vector<int> a(n); for (auto& i: a) cin >> i; int ans = 0; int mx = *max_element(a.begin(), a.end()); auto check = [&] (vector<int> A, vector<int> B) -> bool { int freA = count (A.begin(), A.end(), mx); int freB = count (B.begin(), B.end(), mx); return freA != freB; }; for (int mask = 0; mask < (1 << n); mask++) { vector<int> A; vector<int> B; for (int i = 0; i < n; i++) { if ((mask >> i) & 1) B.push_back(a[i]); else A.push_back(a[i]); } debug(mask, bitset<3>(mask), A, B); ans += check(A, B); } cout << ans << '\n'; } return 0; } //3 //1 2 3 //A = unset bit //B = set bit //0 = 000 = //1 = 001 = //2 = 010 //3 = 011 //4 = 100 //5 = 101 //6 = 110 //7 = 111 //[mask, bitset<3>(mask), A, B ] = [0 000 {1, 2, 3} {} ] //[mask, bitset<3>(mask), A, B ] = [1 001 {2, 3} {1} ] //[mask, bitset<3>(mask), A, B ] = [2 010 {1, 3} {2} ] //[mask, bitset<3>(mask), A, B ] = [3 011 {3} {1, 2} ] //[mask, bitset<3>(mask), A, B ] = [4 100 {1, 2} {3} ] //[mask, bitset<3>(mask), A, B ] = [5 101 {2} {1, 3} ] //[mask, bitset<3>(mask), A, B ] = [6 110 {1} {2, 3} ] //[mask, bitset<3>(mask), A, B ] = [7 111 {} {1, 2, 3} ] //001 //i = 0 //mask = 001 b = //i = 1 //mask = 00 a = //A = 1 2 //B = 3 4 //A = 1 2, B = 3 4, B = 4 3 //A = 2 1, B = 3 4, B = 4 3
b6e7102a1c7d4e83595a0c85b26ed379a01125fc
7522452c8072bba4b2b62cf7a7a1de262cbfdf5e
/med/hash.hpp
4e638addff3c24c24e293f30aaea3e2e4891b899
[ "MIT" ]
permissive
cppden/med
96b31bd8b71d4814870cf870b0e88df9114bc20b
195e1806613eba18e5fcc1710e6535be619b88e8
refs/heads/master
2023-03-11T04:24:10.620155
2023-02-25T12:44:12
2023-02-25T12:44:12
53,350,562
7
1
null
2016-08-16T07:13:33
2016-03-07T18:57:18
C++
UTF-8
C++
false
false
1,101
hpp
hash.hpp
#pragma once /* @file string hash computation utils @copyright Denis Priyomov 2018 Distributed under the MIT License (See accompanying file LICENSE or visit https://github.com/cppden/ctstring) */ #include <cstdint> #include <string_view> namespace med { template <typename VALUE = uint64_t> class hash { public: using value_type = VALUE; static constexpr value_type init = 5381; static constexpr value_type compute(std::string_view const& sv) { return const_hash_impl(sv.data() + sv.size() - 1, sv.size()); } static constexpr value_type update(char const c, value_type hval) { return ((hval << 5) + hval) + std::size_t(c); //33*hash + c } //Fowlerโ€“Nollโ€“Vo : http://isthe.com/chongo/tech/comp/fnv/ // constexpr unsigned hash(int n=0, unsigned h=2166136261) // { // return n == size ? h : hash(n+1,(h * 16777619) ^ (sv[n])); // } private: static constexpr value_type const_hash_impl(char const* end, std::size_t count) { return count > 0 ? value_type(end[0]) + 33 * const_hash_impl(end - (count > 1 ? 1 : 0), count - 1) : init; } }; } //end: namespace med
1b01c936774c75fba783fc501713268dc1338bf1
dacac7c3cf31b809daac731c99bba96736289877
/ras_project_object_addition/src/object_addition.cpp
3a0575096c614d5ddc388ca9ecd42de8860366e0
[]
no_license
felixengstrom/RAS-2017-group1
26018cdc32a17e4ef29f359f0c1635918b538b09
8f40ffb68b7c2bb4ad9a8358c245984e1bd7224a
refs/heads/master
2021-08-24T02:14:01.146577
2017-12-07T15:57:05
2017-12-07T15:57:05
104,469,799
0
0
null
2017-12-05T05:34:05
2017-09-22T12:02:16
Jupyter Notebook
UTF-8
C++
false
false
17,187
cpp
object_addition.cpp
#include <ros/ros.h> #include <geometry_msgs/Twist.h> #include <geometry_msgs/Pose.h> #include <geometry_msgs/PoseArray.h> #include <geometry_msgs/PoseStamped.h> #include <geometry_msgs/TransformStamped.h> #include <ras_msgs/RAS_Evidence.h> #include <ras_project_camera/StringStamped.h> #include <std_msgs/Bool.h> #include <std_msgs/Int32.h> #include <ras_project_brain/ObjPickup_Update.h> #include <geometry_msgs/Point.h> #include <tf/transform_datatypes.h> #include <math.h> #include <std_msgs/Bool.h> #include <iostream> #include <fstream> class ObjectAddition { private: ros::NodeHandle n; ros::Subscriber object_position_sub; ros::Subscriber trap_position_sub; ros::Subscriber battery_position_sub; ros::Subscriber classification_sub; ros::Subscriber image_sub; ros::Subscriber pickup_sub; ros::Subscriber save_sub; ros::Subscriber load_sub; ros::Publisher load_number_pub; ros::Publisher load_coordinates_pub; ros::Publisher coord_update_pub; ros::Publisher saved_pub; ros::Publisher evidence_pub; ros::Publisher occupgrid_pub; float exit_x_area; float exit_y_area; std::list<ras_msgs::RAS_Evidence> waiting_objects; std::list< std::vector<float> > classified_objects; std::string filename; public: ObjectAddition(): n(ros::NodeHandle()) { //n = ros::NodeHandle(); object_position_sub = n.subscribe("/map/objectCoord", 10, &ObjectAddition::objectPositionCallback,this); trap_position_sub = n.subscribe("/map/trapCoord", 10, &ObjectAddition::trapPositionCallback, this); battery_position_sub = n.subscribe("/map/batteryCoord", 10, &ObjectAddition::batteryPositionCallback, this); classification_sub = n.subscribe("/camera/object_class", 10, &ObjectAddition::classificationCallback, this); image_sub = n.subscribe("/camera/object_detected_image", 10, &ObjectAddition::imageCallback, this); pickup_sub = n.subscribe("/map/pickupSuccess", 10, &ObjectAddition::pickupCallback, this); save_sub = n.subscribe("/object/listSave", 10, &ObjectAddition::saveCallback, this); load_sub = n.subscribe("/object/listLoad", 10, &ObjectAddition::loadCallback, this); load_number_pub = n.advertise<std_msgs::Int32>("/object/numberLoad", 1); load_coordinates_pub = n.advertise<geometry_msgs::Point>("/object/coordinates", 1); coord_update_pub = n.advertise<std_msgs::Bool>("/map/coordUpdate", 1); saved_pub = n.advertise<std_msgs::Bool>("/object/listSaved", 1); evidence_pub = n.advertise<ras_msgs::RAS_Evidence>("/evidence", 1); occupgrid_pub = n.advertise<geometry_msgs::PoseStamped>("/object_add", 1); filename = "/home/ras11/catkin_ws/src/ras_project/ras_project_object_addition/classified_objects.txt"; exit_x_area = 0.3; exit_y_area = 0.3; } void objectPositionCallback(const geometry_msgs::TransformStamped::ConstPtr& msg); void trapPositionCallback(const geometry_msgs::TransformStamped::ConstPtr& msg); void batteryPositionCallback(const geometry_msgs::TransformStamped::ConstPtr& msg); void classificationCallback(const ras_project_camera::StringStamped::ConstPtr& msg); void imageCallback(const sensor_msgs::Image::ConstPtr& msg); void object_add(void); int classification_string_to_int(std::string classification); float classification_to_radius(int classification); void pickupCallback(const ras_project_brain::ObjPickup_Update::ConstPtr& msg); void saveCallback(const std_msgs::Bool::ConstPtr& msg); void loadCallback(const std_msgs::Bool::ConstPtr& msg); }; void ObjectAddition::pickupCallback(const ras_project_brain::ObjPickup_Update::ConstPtr& msg) { std::list< std::vector<float> >::iterator it; for(it = classified_objects.begin(); it != classified_objects.end(); it++) { if ((*it)[0] == msg->coord.x && (*it)[1] == msg->coord.y && (*it)[2] == msg->coord.z && msg->pickedUp) { geometry_msgs::PoseStamped pose; pose.header.stamp = ros::Time::now(); pose.pose.position.x = (*it)[0]; pose.pose.position.y = (*it)[1]; pose.pose.position.z = -1.0; occupgrid_pub.publish(pose); classified_objects.erase(it); break; } } return; } void ObjectAddition::saveCallback(const std_msgs::Bool::ConstPtr& msg) { std::ofstream file; file.open(filename.c_str()); if (file) { std::list< std::vector<float> >::iterator it; for (it = classified_objects.begin(); it != classified_objects.end(); it++) { if ((*it)[3] < 17.0) { file.seekp(0,std::ios::end); file<<(*it)[0]<<" "<<(*it)[1]<<" "<<(*it)[2]<<" "<<(*it)[3]<<"\n"; } } file.close(); std_msgs::Bool msg; msg.data = true; saved_pub.publish(msg); } else { std_msgs::Bool msg; msg.data = false; saved_pub.publish(msg); } return; } void ObjectAddition::loadCallback(const std_msgs::Bool::ConstPtr& msg) { std::ifstream file; file.open(filename.c_str()); if (file) { std::vector<float> object(4); std::string line; while(getline(file, line)) { std::stringstream linestream(line); linestream >> object[0] >> object[1] >> object[2] >> object[3]; classified_objects.push_back(object); } } std_msgs::Int32 nmbr_objects; nmbr_objects.data = classified_objects.size(); load_number_pub.publish(nmbr_objects); std_msgs::Bool update; update.data = true; coord_update_pub.publish(update); std::list< std::vector<float> >::iterator it; for (it = classified_objects.begin(); it != classified_objects.end(); it++) { geometry_msgs::Point obj; obj.x = (*it)[0]; obj.y = (*it)[1]; obj.z = (*it)[2]; load_coordinates_pub.publish(obj); } update.data = false; coord_update_pub.publish(update); return; } void ObjectAddition::objectPositionCallback(const geometry_msgs::TransformStamped::ConstPtr& msg) { //ROS_INFO("Position"); ros::Time timestamp = msg->header.stamp; std::list<ras_msgs::RAS_Evidence>::iterator it; for (it = waiting_objects.begin(); it != waiting_objects.end(); it++) { if (timestamp == it->stamp) break; } if (msg->transform.translation.x <= exit_x_area && msg->transform.translation.y <= exit_y_area) { if (it != waiting_objects.end()) waiting_objects.erase(it); return; } for (std::list< std::vector<float> >::iterator it_bis = classified_objects.begin(); it_bis != classified_objects.end(); it_bis++) { if (std::sqrt(std::pow(msg->transform.translation.x - (*it_bis)[0],2) + std::pow(msg->transform.translation.y - (*it_bis)[1], 2)) < classification_to_radius((*it_bis)[3]) && std::abs(msg->transform.translation.z - (*it_bis)[2]) < 0.02) { if (it != waiting_objects.end()) { //delete(&(*it)); waiting_objects.erase(it); } return; } } if (waiting_objects.front().object_location.header.stamp.toSec() != 0.0 && std::sqrt(std::pow(msg->transform.translation.x - waiting_objects.front().object_location.transform.translation.x,2) + std::pow(msg->transform.translation.y - waiting_objects.front().object_location.transform.translation.y,2)) < classification_to_radius(classification_string_to_int(waiting_objects.front().object_id) && std::abs(msg->transform.translation.z - waiting_objects.front().object_location.transform.translation.z) < 0.02)) { if (it != waiting_objects.end()) waiting_objects.erase(it); return; } else if (it == waiting_objects.end()) { ras_msgs::RAS_Evidence object; object.stamp = timestamp; object.object_location = *msg; // May not work, need maybe to clone instead object.group_number = 1; waiting_objects.push_back(object); } else { (*it).object_location = *msg; std_msgs::Bool update; if (waiting_objects.front().image_evidence.header.stamp.toSec() != 0.0 && waiting_objects.front().object_id != "") { while (timestamp != waiting_objects.front().stamp) waiting_objects.erase(waiting_objects.begin()); waiting_objects.front().stamp = ros::Time::now(); update.data = true; coord_update_pub.publish(update); std::vector<float> object(4); object[0] = waiting_objects.front().object_location.transform.translation.x; object[1] = waiting_objects.front().object_location.transform.translation.y; object[2] = waiting_objects.front().object_location.transform.translation.z; object[3] = classification_string_to_int((std::string) waiting_objects.front().object_id); classified_objects.push_back(object); evidence_pub.publish(waiting_objects.front()); //delete(&waiting_objects.front()); waiting_objects.erase(waiting_objects.begin()); geometry_msgs::PoseStamped object_map; object_map.header.stamp = ros::Time::now(); object_map.pose.position.x = object[0]; object_map.pose.position.y = object[1]; object_map.pose.position.z = 1; occupgrid_pub.publish(object_map); } update.data = false; coord_update_pub.publish(update); } return; } void ObjectAddition::trapPositionCallback(const geometry_msgs::TransformStamped::ConstPtr& msg) { ros::Time timestamp = msg->header.stamp; std::list<ras_msgs::RAS_Evidence>::iterator it; for (it = waiting_objects.begin(); it != waiting_objects.end(); it++) { if (timestamp == it->stamp) break; } if (msg->transform.translation.x <= exit_x_area && msg->transform.translation.y <= exit_y_area) { if (it != waiting_objects.end()) waiting_objects.erase(it); return; } for (std::list< std::vector<float> >::iterator it_bis = classified_objects.begin(); it_bis != classified_objects.end(); it_bis++) { if (std::sqrt(std::pow(msg->transform.translation.x - (*it_bis)[0],2) + std::pow(msg->transform.translation.y - (*it_bis)[1], 2)) < classification_to_radius((*it_bis)[3])) { if (it != waiting_objects.end()) { //delete(&(*it)); waiting_objects.erase(it); } return; } } if (it != waiting_objects.end()) { //delete(&(*it)); waiting_objects.erase(it); } std::vector<float> object(4); object[0] = msg->transform.translation.x; object[1] = msg->transform.translation.y; object[2] = msg->transform.translation.z; object[3] = 18.0; classified_objects.push_back(object); geometry_msgs::PoseStamped object_map; object_map.header.stamp = ros::Time::now(); object_map.pose.position.x = object[0]; object_map.pose.position.y = object[1]; object_map.pose.position.z = 2.0; occupgrid_pub.publish(object_map); return; } void ObjectAddition::batteryPositionCallback(const geometry_msgs::TransformStamped::ConstPtr& msg) { ros::Time timestamp = msg->header.stamp; std::list<ras_msgs::RAS_Evidence>::iterator it; for (it = waiting_objects.begin(); it != waiting_objects.end(); it++) { if (timestamp == it->stamp) break; } if (msg->transform.translation.x <= exit_x_area && msg->transform.translation.y <= exit_y_area) { if (it != waiting_objects.end()) waiting_objects.erase(it); return; } for (std::list< std::vector<float> >::iterator it_bis = classified_objects.begin(); it_bis != classified_objects.end(); it_bis++) { if (std::sqrt(std::pow(msg->transform.translation.x - (*it_bis)[0],2) + std::pow(msg->transform.translation.y - (*it_bis)[1], 2)) < classification_to_radius((*it_bis)[3]) && std::abs(msg->transform.translation.z - (*it_bis)[2]) < 0.02) { if (it != waiting_objects.end()) { //delete(&(*it)); waiting_objects.erase(it); } return; } } if (it != waiting_objects.end()) { //delete(&(*it)); waiting_objects.erase(it); } std::vector<float> object(4); object[0] = msg->transform.translation.x; object[1] = msg->transform.translation.y; object[2] = msg->transform.translation.z; object[3] = 17.0; classified_objects.push_back(object); geometry_msgs::PoseStamped object_map; object_map.header.stamp = ros::Time::now(); object_map.pose.position.x = object[0]; object_map.pose.position.y = object[1]; object_map.pose.position.z = 3; occupgrid_pub.publish(object_map); return; } void ObjectAddition::classificationCallback (const ras_project_camera::StringStamped::ConstPtr& msg) { //ROS_INFO("Classification"); ros::Time timestamp = msg->header.stamp; std::list<ras_msgs::RAS_Evidence>::iterator it; for (it = waiting_objects.begin(); it != waiting_objects.end(); it++) { if (timestamp == it->stamp) break; } if (it == waiting_objects.end()) { ras_msgs::RAS_Evidence object; object.stamp = timestamp; object.object_id = msg->data; // May not work, need maybe to clone instead object.group_number = 1; waiting_objects.push_back(object); } else { (*it).object_id = msg->data; std_msgs::Bool update; if (waiting_objects.front().image_evidence.header.stamp.toSec() != 0.0 && waiting_objects.front().object_location.header.stamp.toSec() != 0.0) { while (timestamp != waiting_objects.front().stamp) waiting_objects.erase(waiting_objects.begin()); update.data = true; coord_update_pub.publish(update); waiting_objects.front().stamp = ros::Time::now(); std::vector<float> object(4); object[0] = waiting_objects.front().object_location.transform.translation.x; object[1] = waiting_objects.front().object_location.transform.translation.y; object[2] = waiting_objects.front().object_location.transform.translation.z; object[3] = classification_string_to_int((std::string) waiting_objects.front().object_id); classified_objects.push_back(object); //delete(&waiting_objects.front()); evidence_pub.publish(waiting_objects.front()); waiting_objects.erase(waiting_objects.begin()); geometry_msgs::PoseStamped object_map; object_map.header.stamp = ros::Time::now(); object_map.pose.position.x = object[0]; object_map.pose.position.y = object[1]; object_map.pose.position.z = 1; occupgrid_pub.publish(object_map); } update.data = false; coord_update_pub.publish(update); } return; } void ObjectAddition::imageCallback (const sensor_msgs::Image::ConstPtr& msg) { //ROS_INFO("Image"); ros::Time timestamp = msg->header.stamp; std::list<ras_msgs::RAS_Evidence>::iterator it; for (it = waiting_objects.begin(); it != waiting_objects.end(); it++) { if (timestamp == it->stamp) break; } if (it == waiting_objects.end()) { ras_msgs::RAS_Evidence object; object.stamp = timestamp; object.image_evidence = *msg; // May not work, need maybe to clone instead object.group_number = 1; waiting_objects.push_back(object); } else { (*it).image_evidence = *msg; std_msgs::Bool update; if (waiting_objects.front().object_id != "" && waiting_objects.front().object_location.header.stamp.toSec() != 0.0) { while (timestamp != waiting_objects.front().stamp) waiting_objects.erase(waiting_objects.begin()); update.data = true; coord_update_pub.publish(update); waiting_objects.front().stamp = ros::Time::now(); std::vector<float> object(4); object[0] = waiting_objects.front().object_location.transform.translation.x; object[1] = waiting_objects.front().object_location.transform.translation.y; object[2] = waiting_objects.front().object_location.transform.translation.z; object[3] = classification_string_to_int((std::string) waiting_objects.front().object_id); classified_objects.push_back(object); //delete(&waiting_objects.front()); evidence_pub.publish(waiting_objects.front()); waiting_objects.erase(waiting_objects.begin()); geometry_msgs::PoseStamped object_map; object_map.header.stamp = ros::Time::now(); object_map.pose.position.x = object[0]; object_map.pose.position.y = object[1]; object_map.pose.position.z = 1; occupgrid_pub.publish(object_map); } update.data = false; coord_update_pub.publish(update); } return; } int ObjectAddition::classification_string_to_int(std::string classification) { if (classification == "An object") return 1; else if (classification == "Red Cube") return 2; else if (classification == "Red Hollow Cube") return 3; else if (classification == "Blue Cube") return 4; else if (classification == "Green Cube") return 5; else if (classification == "Yellow Cube") return 6; else if (classification == "Yellow Ball") return 7; else if (classification == "Red Ball") return 8; else if (classification == "Red Cylinder") return 9; else if (classification == "Green Cylinder") return 10; else if (classification == "Green Hollow Cube") return 11; else if (classification == "Blue Triangle") return 12; else if (classification == "Purple Cross") return 13; else if (classification == "Purple Star") return 14; else if (classification == "Orange Cross") return 15; else if (classification == "Patric") return 16; else if (classification == "Battery") return 17; else if (classification == "Booby Trap") return 18; else return 0; } float ObjectAddition::classification_to_radius(int classification) { switch(classification) { case 2: case 4: case 5: case 6: return 0.055/2.0; case 3: case 11: return 0.052/2.0; case 7: case 8: return 0.045/2.0; case 9: case 10: return 0.046/2.0; case 12: return 0.048/2.0; case 13: case 14: case 15: case 16: return 0.05/2.0; case 17: return 0.15/2.0; case 18: return 0.1/2.0; default: return 0.0; } } int main(int argc, char** argv) { ros::init(argc, argv, "object_addition"); ObjectAddition object; ros::Rate r(100); while(ros::ok()) { ros::spinOnce(); r.sleep(); } return 0; }
608ee6e6e50c6be8160da776ce583e12767b36d3
f746c798d1bef7d665c07b1923bf35d03ad408d4
/lib/poppler/poppler/CairoRescaleBox.h
072e8a9c80c6ef81009dd6f8f6f7e3f063b6a86b
[ "MIT", "GPL-1.0-or-later", "GPL-2.0-only", "GPL-3.0-only", "LGPL-2.0-or-later" ]
permissive
istex/popplonode
cd51a2c582759869bc025558f3f06d864506e8c3
1637685667757df6e54077fa93b60d5d1f7fbc8a
refs/heads/master
2023-01-08T00:12:20.923850
2019-11-04T10:41:10
2019-11-04T10:41:10
101,175,171
4
1
MIT
2022-12-30T17:48:06
2017-08-23T12:00:08
C++
UTF-8
C++
false
false
2,468
h
CairoRescaleBox.h
/* * Copyright ยฉ 2009 Mozilla Corporation * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the name of Mozilla Corporation not be used in * advertising or publicity pertaining to distribution of the software without * specific, written prior permission. Mozilla Corporation makes no * representations about the suitability of this software for any purpose. It * is provided "as is" without express or implied warranty. * * MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT * SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE * OF THIS SOFTWARE. * * Author: Jeff Muizelaar, Mozilla Corp. */ //======================================================================== // // Modified under the Poppler project - http://poppler.freedesktop.org // // All changes made under the Poppler project to this file are licensed // under GPL version 2 or later // // Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git // //======================================================================== #ifndef CAIRO_RESCALE_BOX_H #define CAIRO_RESCALE_BOX_H #include "goo/gtypes.h" #include <cairo.h> class CairoRescaleBox { public: CairoRescaleBox() {}; virtual ~CairoRescaleBox() {}; virtual GBool downScaleImage(unsigned orig_width, unsigned orig_height, signed scaled_width, signed scaled_height, unsigned short int start_column, unsigned short int start_row, unsigned short int width, unsigned short int height, cairo_surface_t *dest_surface); virtual void getRow(int row_num, uint32_t *row_data) = 0; }; #endif /* CAIRO_RESCALE_BOX_H */
c55ef7e752a36bdff83a8bb0020fd857963ca299
99f771ef1af861c24a929e99c5bbe666c29a54a3
/Game/TetrisBlock.h
7be4d75e6dcbaa67148eadb1408907055d8f2cd6
[]
no_license
sravankaruturi/kodi
b5db9a688e3444fe519cd3e6df39a96b4c600ce3
9813c69248d68bcdebb2d5a0d5b3d7766ee577e4
refs/heads/master
2020-03-06T19:45:50.284264
2018-07-14T21:52:23
2018-07-14T21:52:23
127,036,925
4
1
null
2018-07-14T21:46:03
2018-03-27T19:36:28
C
UTF-8
C++
false
false
561
h
TetrisBlock.h
๏ปฟ#pragma once #include <vector> #include "../Source/Math/vec3.h" namespace tetris { class TetrisSprite; enum TetrisBlockType { long_block, /*___-*/ square_block, /* Naalugu spritelu*/ four_block, /*_|- laantidhi*/ el_block /*L laaga vundedhi.*/ }; /* A Class that contains several of square sprites combined into a shape in the Class Tetris Game. */ class TetrisBlock { private: TetrisBlockType type; std::vector<TetrisSprite *> tetrisSprites; public: TetrisBlock(TetrisBlockType _type, kodi::math::vec3 _position); }; }
f21264441e9dcb6494a293f47b5ba6c39113cd6e
237197ec6d89a7eb62f6f0df98934f0202e86772
/macintosh/adobe/future/source/platform_number_formatter_data.cpp
5faf76e6824a72ec181690ecada73c3a789ed6b8
[]
no_license
ilelann/adobe_platform_libraries
acb7efab62cbae6fce61ef2c04cc080f6d085de7
55768ef67fdc24dd018e3e674dfe2d63754db5a9
refs/heads/master
2021-01-18T04:58:32.699240
2017-10-30T00:31:40
2018-07-19T06:42:11
20,827,777
2
0
null
2015-04-07T21:27:54
2014-06-14T07:54:34
C++
UTF-8
C++
false
false
9,040
cpp
platform_number_formatter_data.cpp
/* Copyright 2013 Adobe Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /**************************************************************************************************/ #include <adobe/future/platform_number_formatter_data.hpp> #include <boost/cstdint.hpp> #include <adobe/future/locale.hpp> #include <adobe/future/macintosh_error.hpp> #include <adobe/future/number_formatter.hpp> #include <adobe/macintosh_carbon_safe.hpp> #include <adobe/macintosh_string.hpp> #include <limits> /**************************************************************************************************/ namespace { /**************************************************************************************************/ typedef adobe::auto_resource< ::CFLocaleRef > auto_locale_t; typedef adobe::auto_resource< ::CFNumberFormatterRef > auto_formatter_t; /**************************************************************************************************/ template <typename Numeric> struct type_to_cfnumbertype; #if 0 template <> struct type_to_cfnumbertype<char> { static const ::CFNumberType value = kCFNumberCharType; }; template <> struct type_to_cfnumbertype<short> { static const ::CFNumberType value = kCFNumberShortType; }; template <> struct type_to_cfnumbertype<int> { static const ::CFNumberType value = kCFNumberIntType; }; template <> struct type_to_cfnumbertype<long> { static const ::CFNumberType value = kCFNumberLongType; }; //template <> struct type_to_cfnumbertype<long long> { static const ::CFNumberType value = kCFNumberLongLongType; }; template <> struct type_to_cfnumbertype<float> { static const ::CFNumberType value = kCFNumberFloatType; }; #endif template <> struct type_to_cfnumbertype<double> { static const ::CFNumberType value = kCFNumberDoubleType; }; //template <> struct type_to_cfnumbertype<unsigned long long> { static const ::CFNumberType value = kCFNumberLongLongType; }; /**************************************************************************************************/ template <typename Numeric> std::string number_format(::CFNumberFormatterRef formatter, const Numeric& x) { ::CFNumberType temp_t(type_to_cfnumbertype<Numeric>::value); adobe::auto_cfstring_t temp_string(::CFNumberFormatterCreateStringWithValue(NULL, formatter, temp_t, &x)); return adobe::explicit_cast<std::string>(temp_string.get()); } /**************************************************************************************************/ template <typename Numeric> Numeric number_parse(::CFNumberFormatterRef formatter, const std::string& str) { Numeric result(Numeric(0)); ::CFNumberFormatterGetValueFromString(formatter, adobe::explicit_cast<adobe::auto_cfstring_t>(str).get(), NULL, type_to_cfnumbertype<Numeric>::value, &result); return result; } /**************************************************************************************************/ } // namespace /**************************************************************************************************/ namespace adobe { /**************************************************************************************************/ void number_formatter_platform_data_t::initialize() { monitor_locale(dictionary_t()); } /**************************************************************************************************/ void number_formatter_platform_data_t::set_format(const std::string& format) { if (formatter_m.get() == 0) return; ::CFNumberFormatterSetFormat(formatter_m.get(), explicit_cast<auto_cfstring_t>(format).get()); } /**************************************************************************************************/ std::string number_formatter_platform_data_t::get_format() const { if (formatter_m.get() == 0) return std::string(); return explicit_cast<std::string>(::CFNumberFormatterGetFormat(formatter_m.get())); } /**************************************************************************************************/ std::string number_formatter_platform_data_t::format(const any_regular_t& x) { assert(formatter_m); if (x.type_info() == typeid(double)) { return number_format<double>(formatter_m.get(), x.cast<double>()); } #if 0 // REVISIT (sparent) : Pulled 64 bit support for formatting - do we need this? //else if (x.type() == typeid(boost::intmax_t)) return number_format<boost::intmax_t>(formatter_m.get(), x.cast<boost::intmax_t>()); //else if (x.type() == typeid(boost::uintmax_t)) return number_format<boost::uintmax_t>(formatter_m.get(), x.cast<boost::uintmax_t>()); #endif else return std::string("formatter_format_number error"); } /**************************************************************************************************/ any_regular_t number_formatter_platform_data_t::parse(const std::string& str, any_regular_t the_type) { assert(formatter_m); if (the_type.type_info() == typeid(double)) { return any_regular_t(number_parse<double>(formatter_m.get(), str)); } #if 0 // REVISIT (sparent) : Pulled 64 bit support for formatting - do we need this? //else if (the_type.type() == typeid(boost::intmax_t)) return any_regular_t(number_parse<boost::intmax_t>(formatter_m.get(), str)); //else if (the_type.type() == typeid(boost::uintmax_t)) return any_regular_t(number_parse<boost::uintmax_t>(formatter_m.get(), str)); #endif else return any_regular_t(std::string("formatter_format_number error")); } /**************************************************************************************************/ void number_formatter_platform_data_t::monitor_locale(const dictionary_t&) { auto_locale_t current_locale(::CFLocaleCopyCurrent()); std::string num_format_save(get_format()); formatter_m.reset(::CFNumberFormatterCreate(NULL, current_locale.get(), kCFNumberFormatterNoStyle)); set_format(num_format_save); } /**************************************************************************************************/ #if 0 #pragma mark - #endif /**************************************************************************************************/ bool completely_valid_number_string_given_current_locale(const std::string& value) { auto_locale_t current_locale(::CFLocaleCopyCurrent()); auto_formatter_t formatter(::CFNumberFormatterCreate(NULL, current_locale.get(), kCFNumberFormatterNoStyle)); ::CFRange range = { 0 }; double result(std::numeric_limits<double>::min()); range.length = value.size(); //::Boolean success = ::CFNumberFormatterGetValueFromString(formatter.get(), explicit_cast<auto_cfstring_t>(value).get(), &range, kCFNumberDoubleType, &result); return static_cast<double>(range.length) == static_cast<double>(value.size()); } /**************************************************************************************************/ #if 0 #pragma mark - #endif /**************************************************************************************************/ void number_formatter_t::set_format(const std::string& format) { data_m.set_format(format); } /**************************************************************************************************/ std::string number_formatter_t::get_format() const { return data_m.get_format(); } /**************************************************************************************************/ template <> std::string number_formatter_t::format<any_regular_t>(const any_regular_t& x) { return data_m.format(x); } /**************************************************************************************************/ template <> any_regular_t number_formatter_t::parse<any_regular_t>(const std::string& str, any_regular_t dummy) { return data_m.parse(str, dummy); } /**************************************************************************************************/ void number_formatter_t::monitor_locale(const dictionary_t& locale_data) { return data_m.monitor_locale(locale_data); } /**************************************************************************************************/ } // namespace adobe /**************************************************************************************************/
e4b28e13dbeec577e1d16baf32e77384aa991fe1
1ee395b5da11f546b3365917fcebaba52a8ea8c4
/DOANCUOIKYOOP-1512237/figure.h
f6a66b16e065d70ebf949a847cad338ed1f362c0
[]
no_license
tranchikhangUS1996/SVG
4dad5b272686319c6b4246f883c20cf0b778c92c
6ddbb36318247ebff34688d498236fa886a7209a
refs/heads/master
2020-03-09T02:07:58.252789
2018-04-07T14:13:23
2018-04-07T14:13:23
128,533,110
0
0
null
null
null
null
UTF-8
C++
false
false
2,544
h
figure.h
#pragma once #include "CImg.h" #include "RGB.h" using namespace cimg_library; #include "Point.h" #include <vector> #include "string" #include "Attribute.h" #include "stdafx.h" #include <gdiplus.h> using namespace Gdiplus; #pragma comment (lib,"Gdiplus.lib") #include "rapidxml.hpp" using namespace rapidxml; class Figure { private: // danh sach luu mau cac loai hinh static vector<Figure*> SampleObject; protected: // them mau vao SampleObject static void AddSample(Figure* obj); public: // tao doi tuong thong qua ten static Figure* CreateObject(char* name); // xoa cac mau hinh khoi danh sach static void DeleteRegister(); // phuong thuc ao lay ten cua class virtual char* ClassName() = 0; // phuong thuc nhan ban doi tuong virtual Figure* Clone() = 0; // dang ki cac mau hinh vao danh sach SampleObject virtual void RegisterAttribute() = 0; // ve thong bang thu vien GDI+ virtual void DrawGDIPlus(HDC hdc) = 0; // xuat file SVG // startAttribute ghi cac thuoc tinh tu nth tro ve sau trong danh sach Attribute cua class DrawAttribute virtual void WriteSVGFile(ofstream &ofs,int startAttribute=0) = 0; // ve bang CImg virtual void DrawCImg(CImg<int> &Frame) = 0; // doc va cai dat gia tri cho thuoc tinh virtual void LoadAttribute(xml_node<> *node) = 0; // them attribute* vao danh sach cua lop DrawAttribute virtual void addAttribute(Attribute* obj) = 0; virtual ~Figure(); }; class DrawAttribute { private: // danh sach cac thuoc tinh vector<Attribute*> m_Attrs; public: DrawAttribute(); DrawAttribute(DrawAttribute &obj); // thuc hien transform (rotate, scale, Translate); void transform(Graphics &graphics); // ghi cac thuoc tinh trong danh sach ra file SVG // start : bat dau ghi tu thuoc tinh thu start trong danh sach, mac dinh start = 0 void WriteAttribute(ofstream &ofs , int start=0); // tao cac doi tuong con cua Attribute ,cai dat gia tri va them vao danh sach void Load(xml_node<> *node); // tra ve so luong Attribute trong danh sach int getNumAttribute(); //them mot Attribute vao danh sach void addAttribute(Attribute* obj); // trasform by CIMG void transform(CImg<int> &Frame); // them tat ca Attribute trong danh sach vao doi tuong fig void SetAttributeForFigure(Figure* fig); // tra ve pen Pen* getPen(); // tra ve Brush Brush* getBrush(); // tim kiem va tra ve Attribute thong qua ten Attribute virtual Attribute* findAttributeByName(char *name, int nth=0); virtual ~DrawAttribute(); };
6b35fbf4312d8cc5ea86bc9b5149c7c4aea121d3
2c48cc8f55038d3a730c0ebfd605fbc0e648532b
/DeviceMFTTest-2/sampledevicemft/basepin.cpp
6544c0884f77229699c1a558052c10837f743bad
[]
no_license
masarun/test
52d6dc159befdb21d38c70c8f8e7abd16f7ed5a8
4f72928a4cc2404a3c2a39dd9e9d5781857f2226
refs/heads/master
2021-06-18T19:12:10.501800
2021-01-02T06:00:03
2021-01-02T06:00:03
147,045,962
1
0
null
null
null
null
UTF-8
C++
false
false
30,246
cpp
basepin.cpp
#include "stdafx.h" #include "common.h" #include "multipinmft.h" #include "multipinmfthelpers.h" #include "basepin.h" #include "contosodevice.h" #ifdef MF_WPP #include "basepin.tmh" //--REF_ANALYZER_DONT_REMOVE-- #endif /* -------> New STATE | |old State DeviceStreamState_Stop DeviceStreamState_Pause DeviceStreamState_Run DeviceStreamState_Disabled DeviceStreamState_Pause DeviceStreamState_Run DeviceStreamState_Disabled */ DeviceStreamState pinStateTransition[4][4] = { { DeviceStreamState_Stop, DeviceStreamState_Pause, DeviceStreamState_Run, DeviceStreamState_Disabled }, { DeviceStreamState_Stop, DeviceStreamState_Pause, DeviceStreamState_Run, DeviceStreamState_Disabled }, { DeviceStreamState_Stop, DeviceStreamState_Pause, DeviceStreamState_Run, DeviceStreamState_Disabled }, { DeviceStreamState_Disabled, DeviceStreamState_Disabled, DeviceStreamState_Disabled, DeviceStreamState_Disabled } }; CBasePin::CBasePin( _In_ ULONG id, _In_ CMultipinMft *parent) : m_StreamId(id) , m_Parent(parent) , m_setMediaType(nullptr) , m_nRefCount(0) , m_state(DeviceStreamState_Stop) , m_dwWorkQueueId(MFASYNC_CALLBACK_QUEUE_UNDEFINED) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::CBasePin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::CBasePin id: %d", id); } CBasePin::~CBasePin() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::~CBasePin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::~CBasePin ulSize: %d", (int)m_listOfMediaTypes.size()); for ( ULONG ulIndex = 0, ulSize = (ULONG)m_listOfMediaTypes.size(); ulIndex < ulSize; ulIndex++ ) { ComPtr<IMFMediaType> spMediaType; spMediaType.Attach(m_listOfMediaTypes[ulIndex]); // Releases the previously stored pointer } m_listOfMediaTypes.clear(); m_spAttributes = nullptr; } STDMETHODIMP_(DeviceStreamState) CBasePin::GetState() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetState"); return (DeviceStreamState) InterlockedCompareExchange((PLONG)&m_state, 0L,0L); } STDMETHODIMP_(DeviceStreamState) CBasePin::SetState(_In_ DeviceStreamState state) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetState"); return (DeviceStreamState) InterlockedExchange((LONG*)&m_state, state); } HRESULT CBasePin::AddMediaType( _Inout_ DWORD *pos, _In_ IMFMediaType *pMediaType) { UNREFERENCED_PARAMETER(pos); UNREFERENCED_PARAMETER(pMediaType); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::AddMediaType"); HRESULT hr = S_OK; CAutoLock Lock(lock()); DMFTCHECKNULL_GOTO(pMediaType, done, E_INVALIDARG); hr = ExceptionBoundary([&]() { m_listOfMediaTypes.push_back(pMediaType); }); DMFTCHECKHR_GOTO(hr, done); pMediaType->AddRef(); if (pos) { *pos = (DWORD)(m_listOfMediaTypes.size() - 1); } done: DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } HRESULT CBasePin::GetMediaTypeAt( _In_ DWORD pos, _Outptr_result_maybenull_ IMFMediaType **ppMediaType ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetMediaTypeAt"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetMediaTypeAt pos: %d", pos); HRESULT hr = S_OK; CAutoLock Lock(lock()); ComPtr<IMFMediaType> spMediaType; DMFTCHECKNULL_GOTO(ppMediaType,done,E_INVALIDARG); *ppMediaType = nullptr; if (pos >= m_listOfMediaTypes.size()) { DMFTCHECKHR_GOTO(MF_E_NO_MORE_TYPES,done); } spMediaType = m_listOfMediaTypes[pos]; *ppMediaType = spMediaType.Detach(); done: DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } STDMETHODIMP_(BOOL) CBasePin::IsMediaTypeSupported ( _In_ IMFMediaType *pMediaType, _When_(ppIMFMediaTypeFull != nullptr, _Outptr_result_maybenull_) IMFMediaType **ppIMFMediaTypeFull ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::IsMediaTypeSupported"); HRESULT hr = S_OK; BOOL bFound = FALSE; CAutoLock Lock(lock()); DMFTCHECKNULL_GOTO(pMediaType,done,E_INVALIDARG); if (ppIMFMediaTypeFull) { *ppIMFMediaTypeFull = nullptr; } for (UINT uIIndex = 0, uISize = (UINT)m_listOfMediaTypes.size(); uIIndex < uISize ; uIIndex++ ) { DWORD dwResult = 0; hr = m_listOfMediaTypes[ uIIndex ]->IsEqual( pMediaType, &dwResult ); if (hr == S_FALSE) { if ((dwResult & MF_MEDIATYPE_EQUAL_MAJOR_TYPES) && (dwResult& MF_MEDIATYPE_EQUAL_FORMAT_TYPES) && (dwResult& MF_MEDIATYPE_EQUAL_FORMAT_DATA)) { hr = S_OK; } } if (hr == S_OK) { bFound = TRUE; if (ppIMFMediaTypeFull) { *ppIMFMediaTypeFull = m_listOfMediaTypes[uIIndex]; (*ppIMFMediaTypeFull)->AddRef(); } break; } else if (FAILED(hr)) { DMFTCHECKHR_GOTO(hr,done); } } done: DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return SUCCEEDED(hr) ? TRUE : FALSE; } STDMETHODIMP CBasePin::GetOutputAvailableType( _In_ DWORD dwTypeIndex, _Out_opt_ IMFMediaType** ppType) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetOutputAvailableType"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetOutputAvailableType dwTypeIndex: %d", dwTypeIndex); return GetMediaTypeAt( dwTypeIndex, ppType ); } HRESULT CBasePin::QueryInterface( _In_ REFIID iid, _Outptr_result_maybenull_ void** ppv ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::QueryInterface"); HRESULT hr = S_OK; DMFTCHECKNULL_GOTO(ppv, done, E_POINTER); *ppv = nullptr; if ( iid == __uuidof( IUnknown ) ) { *ppv = static_cast<VOID*>(this); } else if ( iid == __uuidof( IMFAttributes ) ) { *ppv = static_cast< IMFAttributes* >( this ); } else if ( iid == __uuidof( IKsControl ) ) { *ppv = static_cast< IKsControl* >( this ); } else { hr = E_NOINTERFACE; goto done; } AddRef(); done: return hr; } STDMETHODIMP_(HRESULT __stdcall) CBasePin::KsProperty(PKSPROPERTY pProperty, ULONG ulPropertyLength, LPVOID pPropertyData, ULONG ulDataLength, ULONG* pBytesReturned) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::KsProperty -----"); if (m_spIkscontrol != nullptr) { return m_spIkscontrol->KsProperty(pProperty, ulPropertyLength, pPropertyData, ulDataLength, pBytesReturned); } else { return E_NOTIMPL; } } STDMETHODIMP_(HRESULT __stdcall) CBasePin::KsMethod(PKSMETHOD pMethod, ULONG ulMethodLength, LPVOID pMethodData, ULONG ulDataLength, ULONG* pBytesReturned) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::KsMethod -----"); UNREFERENCED_PARAMETER(pBytesReturned); UNREFERENCED_PARAMETER(ulDataLength); UNREFERENCED_PARAMETER(pMethodData); UNREFERENCED_PARAMETER(pMethod); UNREFERENCED_PARAMETER(ulMethodLength); return S_OK; } STDMETHODIMP_(HRESULT __stdcall) CBasePin::KsEvent(PKSEVENT pEvent, ULONG ulEventLength, LPVOID pEventData, ULONG ulDataLength, ULONG* pBytesReturned) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::KsEvent -----"); UNREFERENCED_PARAMETER(pBytesReturned); UNREFERENCED_PARAMETER(ulDataLength); UNREFERENCED_PARAMETER(pEventData); UNREFERENCED_PARAMETER(pEvent); UNREFERENCED_PARAMETER(ulEventLength); return S_OK; } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetItem(REFGUID guidKey, PROPVARIANT* pValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetItem -----"); return m_spAttributes->GetItem(guidKey, pValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetItemType(REFGUID guidKey, MF_ATTRIBUTE_TYPE* pType) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetItemType -----"); return m_spAttributes->GetItemType(guidKey, pType); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::CompareItem(REFGUID guidKey, REFPROPVARIANT Value, BOOL* pbResult) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::CompareItem -----"); return m_spAttributes->CompareItem(guidKey, Value, pbResult); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::Compare(IMFAttributes* pTheirs, MF_ATTRIBUTES_MATCH_TYPE MatchType, BOOL* pbResult) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::Compare -----"); return m_spAttributes->Compare(pTheirs, MatchType, pbResult); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetUINT32(REFGUID guidKey, UINT32* punValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetUINT32 -----"); return m_spAttributes->GetUINT32(guidKey, punValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetUINT64(REFGUID guidKey, UINT64* punValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetUINT64 -----"); return m_spAttributes->GetUINT64(guidKey, punValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetDouble(REFGUID guidKey, double* pfValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetDouble -----"); return m_spAttributes->GetDouble(guidKey, pfValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetGUID(REFGUID guidKey, GUID* pguidValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetGUID -----"); return m_spAttributes->GetGUID(guidKey, pguidValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetStringLength(REFGUID guidKey, UINT32* pcchLength) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetStringLength -----"); return m_spAttributes->GetStringLength(guidKey, pcchLength); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetString(REFGUID guidKey, LPWSTR pwszValue, UINT32 cchBufSize, UINT32* pcchLength) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetString -----"); return m_spAttributes->GetString(guidKey, pwszValue, cchBufSize, pcchLength); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetAllocatedString(REFGUID guidKey, LPWSTR* ppwszValue, UINT32* pcchLength) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetAllocatedString -----"); return m_spAttributes->GetAllocatedString(guidKey, ppwszValue, pcchLength); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetBlobSize(REFGUID guidKey, UINT32* pcbBlobSize) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetBlobSize -----"); return m_spAttributes->GetBlobSize(guidKey, pcbBlobSize); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetBlob(REFGUID guidKey, UINT8* pBuf, UINT32 cbBufSize, UINT32* pcbBlobSize) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetBlob -----"); return m_spAttributes->GetBlob(guidKey, pBuf, cbBufSize, pcbBlobSize); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetAllocatedBlob(REFGUID guidKey, UINT8** ppBuf, UINT32* pcbSize) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetAllocatedBlob -----"); return m_spAttributes->GetAllocatedBlob(guidKey, ppBuf, pcbSize); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetUnknown(REFGUID guidKey, REFIID riid, LPVOID* ppv) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetUnknown -----"); return m_spAttributes->GetUnknown(guidKey, riid, ppv); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetItem(REFGUID guidKey, REFPROPVARIANT Value) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetItem -----"); return m_spAttributes->SetItem(guidKey, Value); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::DeleteItem(REFGUID guidKey) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::DeleteItem -----"); return m_spAttributes->DeleteItem(guidKey); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::DeleteAllItems() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::DeleteAllItems -----"); return m_spAttributes->DeleteAllItems(); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetUINT32(REFGUID guidKey, UINT32 unValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetUINT32 -----"); return m_spAttributes->SetUINT32(guidKey, unValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetUINT64(REFGUID guidKey, UINT64 unValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetUINT64 -----"); return m_spAttributes->SetUINT64(guidKey, unValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetDouble(REFGUID guidKey, double fValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetDouble -----"); return m_spAttributes->SetDouble(guidKey, fValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetGUID(REFGUID guidKey, REFGUID guidValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetGUID -----"); return m_spAttributes->SetGUID(guidKey, guidValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetString(REFGUID guidKey, LPCWSTR wszValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetString -----"); return m_spAttributes->SetString(guidKey, wszValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetBlob(REFGUID guidKey, const UINT8* pBuf, UINT32 cbBufSize) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetBlob -----"); return m_spAttributes->SetBlob(guidKey, pBuf, cbBufSize); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::SetUnknown(REFGUID guidKey, IUnknown* pUnknown) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::SetUnknown -----"); return m_spAttributes->SetUnknown(guidKey, pUnknown); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::LockStore() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::LockStore -----"); return m_spAttributes->LockStore(); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::UnlockStore() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::UnlockStore -----"); return m_spAttributes->UnlockStore(); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetCount(UINT32* pcItems) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetCount -----"); return m_spAttributes->GetCount(pcItems); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::GetItemByIndex(UINT32 unIndex, GUID* pguidKey, PROPVARIANT* pValue) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::GetItemByIndex -----"); return m_spAttributes->GetItemByIndex(unIndex, pguidKey, pValue); } STDMETHODIMP_(HRESULT __stdcall) CBasePin::CopyAllItems(IMFAttributes* pDest) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CBasePin::CopyAllItems -----"); return m_spAttributes->CopyAllItems(pDest); } // //Input Pin implementation // CInPin::CInPin( _In_opt_ IMFAttributes *pAttributes, _In_ ULONG ulPinId, _In_ CMultipinMft *pParent) : CBasePin(ulPinId, pParent), m_stStreamType(GUID_NULL), m_waitInputMediaTypeWaiter(NULL), m_preferredStreamState(DeviceStreamState_Stop) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::CInPin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::CInPin ulPinId: %d", ulPinId); setAttributes(pAttributes); } CInPin::~CInPin() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::~CInPin"); setAttributes( nullptr ); m_spSourceTransform = nullptr; if (m_waitInputMediaTypeWaiter) { CloseHandle(m_waitInputMediaTypeWaiter); } } STDMETHODIMP CInPin::Init( _In_ IMFTransform* pTransform ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::Init"); HRESULT hr = S_OK; DMFTCHECKNULL_GOTO( pTransform, done, E_INVALIDARG ); m_spSourceTransform = pTransform; DMFTCHECKHR_GOTO( GetGUID( MF_DEVICESTREAM_STREAM_CATEGORY, &m_stStreamType ), done ); // //Get the DevProxy IKSControl.. used to send the KSControls or the device control IOCTLS over to devproxy and finally on to the driver!!!! // DMFTCHECKHR_GOTO( m_spAttributes.As( &m_spIkscontrol ), done ); m_waitInputMediaTypeWaiter = CreateEvent( NULL, FALSE, FALSE, TEXT("MediaTypeWaiter") ); DMFTCHECKNULL_GOTO( m_waitInputMediaTypeWaiter, done, E_OUTOFMEMORY ); DMFTCHECKHR_GOTO( GenerateMFMediaTypeListFromDevice(streamId()),done ); done: if ( FAILED(hr) ) { m_spSourceTransform = nullptr; if ( m_waitInputMediaTypeWaiter ) { CloseHandle( m_waitInputMediaTypeWaiter ); m_waitInputMediaTypeWaiter = NULL; } m_stStreamType = GUID_NULL; } DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } HRESULT CInPin::GenerateMFMediaTypeListFromDevice( _In_ UINT uiStreamId ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::GenerateMFMediaTypeListFromDevice"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::GenerateMFMediaTypeListFromDevice uiStreamId: %d", uiStreamId); HRESULT hr = S_OK; GUID stSubType = { 0 }; //This is only called in the begining when the input pin is constructed DMFTCHECKNULL_GOTO( m_spSourceTransform, done, MF_E_TRANSFORM_TYPE_NOT_SET ); for (UINT iMediaType = 0; SUCCEEDED(hr) ; iMediaType++) { ComPtr<IMFMediaType> spMediaType; DWORD pos = 0; hr = m_spSourceTransform->MFTGetOutputAvailableType(uiStreamId, iMediaType, spMediaType.GetAddressOf()); if (hr != S_OK) break; DMFTCHECKHR_GOTO(AddMediaType(&pos, spMediaType.Get()), done); } done: if (hr == MF_E_NO_MORE_TYPES) { hr = S_OK; } DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } STDMETHODIMP CInPin::SendSample( _In_ IMFSample *pSample ) { UNREFERENCED_PARAMETER(pSample); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::SendSample"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::SendSample E_NOTIMPL"); return E_NOTIMPL; } STDMETHODIMP_(VOID) CInPin::ConnectPin( _In_ CBasePin * poPin ) { UNREFERENCED_PARAMETER(poPin); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::ConnectPin"); } STDMETHODIMP CInPin::WaitForSetInputPinMediaChange() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::WaitForSetInputPinMediaChange"); DWORD dwWait = 0; HRESULT hr = S_OK; dwWait = WaitForSingleObject( m_waitInputMediaTypeWaiter, INFINITE ); if ( dwWait != WAIT_OBJECT_0 ) { hr = HRESULT_FROM_WIN32(GetLastError()); goto done; } done: DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } HRESULT CInPin::GetInputStreamPreferredState( _Inout_ DeviceStreamState* value, _Outptr_opt_result_maybenull_ IMFMediaType** ppMediaType ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::GetInputStreamPreferredState"); HRESULT hr = S_OK; CAutoLock Lock(lock()); if (value!=nullptr) { *value = m_preferredStreamState; } if (ppMediaType ) { *ppMediaType = nullptr; if (m_spPrefferedMediaType != nullptr ) { m_spPrefferedMediaType.CopyTo(ppMediaType); } } DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } HRESULT CInPin::SetInputStreamState( _In_ IMFMediaType* pMediaType, _In_ DeviceStreamState value, _In_ DWORD dwFlags ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::SetInputStreamState"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::SetInputStreamState value: %d", value); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::SetInputStreamState dwFlags: %d", dwFlags); HRESULT hr = S_OK; UNREFERENCED_PARAMETER(dwFlags); CAutoLock Lock(lock()); // //Set the media type // setMediaType(pMediaType); SetState(value); // //Set the event. This event is being waited by an output media/state change operation // m_spPrefferedMediaType = nullptr; SetEvent(m_waitInputMediaTypeWaiter); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } STDMETHODIMP_(VOID) CInPin::ShutdownPin() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::ShutdownPin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::ShutdownPin E_NOTIMPL"); } #if ((defined NTDDI_WIN10_VB) && (NTDDI_VERSION >= NTDDI_WIN10_VB)) // // ForwardSecureBuffer() // // Parameters: // sample - The sample to send out for secure processing // // Returns: // HRESULT // // Notes: // This helper function calls back to the AVstream driver for post-processing of a // secure buffer. This is done here as an example for simplicity. A more realistic // scenario might have you calling into an ISP driver that is not an AVstream driver. // To do that you would need to acquire a handle to that device and post an IOCTL. // That device would in turn need to have a secure companion driver (trustlet) // installed as part of the package to process the buffer. // HRESULT CInPin::ForwardSecureBuffer( _In_ IMFSample *sample ) { UNREFERENCED_PARAMETER(sample); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::ForwardSecureBuffer"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CInPin::ForwardSecureBuffer E_NOTIMPL"); return E_NOTIMPL; } #endif // ((defined NTDDI_WIN10_VB) && (NTDDI_VERSION >= NTDDI_WIN10_VB)) // //Output Pin Implementation // COutPin::COutPin( _In_ ULONG ulPinId, _In_opt_ CMultipinMft *pparent, _In_ IKsControl* pIksControl #if ((defined NTDDI_WIN10_VB) && (NTDDI_VERSION >= NTDDI_WIN10_VB)) , _In_ MFSampleAllocatorUsage allocatorUsage #endif ) : CBasePin(ulPinId, pparent) , m_firstSample(false) #if ((defined NTDDI_WIN10_VB) && (NTDDI_VERSION >= NTDDI_WIN10_VB)) , m_allocatorUsage(allocatorUsage) #endif { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::COutPin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::COutPin ulPinId: %d", ulPinId); HRESULT hr = S_OK; ComPtr<IMFAttributes> spAttributes; // //Get the input pin IKS control.. the pin IKS control talks to sourcetransform's IKS control // m_spIkscontrol = pIksControl; MFCreateAttributes( &spAttributes, 3 ); //Create the space for the attribute store!! setAttributes( spAttributes.Get()); DMFTCHECKHR_GOTO( SetUINT32( MFT_SUPPORT_DYNAMIC_FORMAT_CHANGE, TRUE ), done ); DMFTCHECKHR_GOTO( SetString( MFT_ENUM_HARDWARE_URL_Attribute, L"Sample_CameraExtensionMft" ),done ); DMFTCHECKHR_GOTO( SetUINT32( MF_TRANSFORM_ASYNC, TRUE ),done ); done: DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); } COutPin::~COutPin() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::~COutPin"); } /*++ COutPin::AddPin Description: Called from AddSample if the Output Pin is in open state. This function looks for the queue corresponding to the input pin and adds it in the queue. --*/ STDMETHODIMP COutPin::AddPin( _In_ DWORD inputPinId ) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::AddPin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::AddPin inputPinId: %d", inputPinId); // //Add a new queue corresponding to the input pin // HRESULT hr = S_OK; CAutoLock Lock(lock()); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return S_OK; } /*++ COutPin::AddSample Description: Called when ProcessInput is called on the Device Transform. The Input Pin puts the samples in the pins connected. If the Output pins are in open state the sample lands in the queues --*/ STDMETHODIMP COutPin::AddSample( _In_ IMFSample *pSample, _In_ CBasePin *pPin) { UNREFERENCED_PARAMETER(pSample); UNREFERENCED_PARAMETER(pPin); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::AddSample"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::AddSample E_NOTIMPL"); return E_NOTIMPL; } /*++ COutPin::SetState Description: State setter for the output pin --*/ STDMETHODIMP_(VOID) COutPin::SetFirstSample( _In_ BOOL fisrtSample ) { UNREFERENCED_PARAMETER(fisrtSample); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::SetFirstSample"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::SetFirstSample E_NOTIMPL"); } STDMETHODIMP_(VOID) COutPin::SetAllocator( _In_ IMFVideoSampleAllocator* pAllocator ) { UNREFERENCED_PARAMETER(pAllocator); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::SetAllocator"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::SetAllocator E_NOTIMPL"); } /*++ COutPin::ChangeMediaTypeFromInpin Description: called from the Device Transform when the input media type is changed. This will result in the xvp being possibly installed in the queue if the media types set on the input and the output dont match --*/ HRESULT COutPin::ChangeMediaTypeFromInpin( _In_ IMFMediaType *pInMediatype, _In_ IMFMediaType* pOutMediaType, _In_ DeviceStreamState state) { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::ChangeMediaTypeFromInpin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::ChangeMediaTypeFromInpin state: %d", state); HRESULT hr = S_OK; CAutoLock Lock(lock()); // //Set the state to disabled and while going out we will reset the state back to the requested state //Flush so that we drop any samples we have in store!! // SetState(DeviceStreamState_Disabled); pInMediatype; hr = S_OK; if ( SUCCEEDED( hr ) ) { (VOID)setMediaType( pOutMediaType ); (VOID)SetState( state ); } DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "%!FUNC! exiting %x = %!HRESULT!", hr, hr); return hr; } /*++ COutPin::ProcessOutput Description: called from the Device Transform when the transform manager demands output samples.. If we have samples we forward it. If we are a photo pin then we forward only if trigger is sent. We ask the devicetransform if we have received the transform or not. If we have received the sample and we are passing out a sample we should reset the trigger set on the Device Transform --*/ STDMETHODIMP COutPin::ProcessOutput(_In_ DWORD dwFlags, _Inout_ MFT_OUTPUT_DATA_BUFFER *pOutputSample, _Out_ DWORD *pdwStatus ) { UNREFERENCED_PARAMETER(pOutputSample); UNREFERENCED_PARAMETER(pdwStatus); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::ProcessOutput"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::ProcessOutput dwFlags: %d", dwFlags); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::ProcessOutput E_NOTIMPL"); return E_NOTIMPL; } /*++ COutPin::KsProperty Description: The KsProperty for the Pin.. this is to reroute all pin kscontrols to the input pin --*/ STDMETHODIMP COutPin::KsProperty( _In_reads_bytes_(ulPropertyLength) PKSPROPERTY pProperty, _In_ ULONG ulPropertyLength, _Inout_updates_bytes_(ulDataLength) LPVOID pPropertyData, _In_ ULONG ulDataLength, _Out_opt_ ULONG* pBytesReturned ) { UNREFERENCED_PARAMETER(pProperty); UNREFERENCED_PARAMETER(ulPropertyLength); UNREFERENCED_PARAMETER(pPropertyData); UNREFERENCED_PARAMETER(ulDataLength); UNREFERENCED_PARAMETER(pBytesReturned); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::KsProperty"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "COutPin::KsProperty E_NOTIMPL"); return E_NOTIMPL; } // // Asynchronous IO handling. // STDMETHODIMP CAsyncInPin::SendSample(_In_ IMFSample *pSample) { UNREFERENCED_PARAMETER(pSample); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CAsyncInPin::SendSample"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CAsyncInPin::SendSample E_NOTIMPL"); return E_NOTIMPL; } STDMETHODIMP CAsyncInPin::Init() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CAsyncInPin::Init"); return E_NOTIMPL; } // Pass a secure frame buffer to our AVstream driver. HRESULT CAsyncInPin::Invoke( _In_ IMFAsyncResult* pResult ) { UNREFERENCED_PARAMETER(pResult); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CAsyncInPin::Invoke"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CAsyncInPin::Invoke E_NOTIMPL"); return E_NOTIMPL; } STDMETHODIMP_(VOID) CAsyncInPin::ShutdownPin() { DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CAsyncInPin::ShutdownPin"); DMFTRACE(DMFT_GENERAL, TRACE_LEVEL_INFORMATION, "CAsyncInPin::ShutdownPin E_NOTIMPL"); }
8edeb43e7d6c0e0a436c00bdd7016364553f5fcc
9abc3722207805c789f184d9f694ad02b43d32ca
/src/neuronHocDoc.cpp
0ec78bb5dec54572777a120067028fa9a17ef13e
[ "BSD-2-Clause" ]
permissive
Cloudxtreme/bionet
f9a75ab6a972a47b554e57a9eb6cab2c9243da3d
56cb0fd92292b90609476fec089902d3752d4d62
refs/heads/master
2021-05-28T16:26:27.313454
2015-04-26T02:16:20
2015-04-26T02:16:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,214
cpp
neuronHocDoc.cpp
// NEURON hoc file document. #include "neuronHocDoc.hpp" #include <iostream> #include <fstream> #include <algorithm> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> // Constructor. NeuronHocDoc::NeuronHocDoc(char *hocFile) { parseFile(hocFile); } // Destructor. NeuronHocDoc::~NeuronHocDoc() { int i, j; map<pair<string, string>, vector<Synapse *> >::iterator itr; for (itr = synapses.begin(); itr != synapses.end(); ++itr) { for (i = 0, j = (int)itr->second.size(); i < j; i++) { delete itr->second[i]; } itr->second.clear(); } } // Access synapse. NeuronHocDoc::Synapse *NeuronHocDoc::getSynapse(string source, string target, int connection) { map<pair<string, string>, vector<Synapse *> >::iterator itr; itr = synapses.find(pair<string, string>(source, target)); if (itr != synapses.end()) { if ((connection >= 0) && (connection < (int)itr->second.size())) { return(itr->second[connection]); } } return(NULL); } // Write file. bool NeuronHocDoc::writeFile(char *filename) { int i, j, p, q; FILE *fp; if ((fp = fopen(filename, "wb")) == NULL) { return(false); } for (i = 0, j = (int)text.size(); i < j; i++) { for (p = 0, q = (int)text[i].size(); p < q; p++) { fprintf(fp, "%s", text[i][p].c_str()); } fprintf(fp, "\n"); } fclose(fp); return(true); } /* * Parse file. * * Synapse formats: * Chemical: * new NetCon(&v(0.46315283), syn_NCXLS_I4_I2R_Glutamate[4], 0.0, 0.0, 1.0))} * Electrical: * elecsyn_NCXLS_M3R_MCR_GJ_Generic_GJ_A[0].weight = 1.0 * elecsyn_NCXLS_M3R_MCR_GJ_Generic_GJ_B[0].weight = 1.0 */ bool NeuronHocDoc::parseFile(char *filename) { ifstream inFile; string strLine; vector<string> line; int simRefLen, simsDirLen; int chemSynLen, elecSynLen; int delLen, durLen; string prefix, source, target, delay, weight; pair<int, int> firstWeight, delVal, durVal; vector<pair<int, int> > values; Synapse *synapse; vector<Synapse *> connections; map<pair<string, string>, vector<Synapse *> >::iterator itr; char buf[BUFSIZ + 1], c, *s1, *s2, *s3, *s4, *s5, *s6, *s7; int i, j; inFile.open(filename); if (!inFile.is_open()) { return(false); } simRefLen = strlen("simReference = \""); simsDirLen = strlen("simsDir = \""); chemSynLen = strlen("syn_NCXLS_"); elecSynLen = strlen("elecsyn_NCXLS_"); delLen = strlen(".del = "); durLen = strlen(".dur = "); firstWeight.first = -1; while (inFile) { getline(inFile, strLine); memset(buf, 0, BUFSIZ + 1); strncpy(buf, strLine.c_str(), BUFSIZ); line.clear(); // Parse simulation reference and directory. if ((s1 = strstr(buf, "simReference = \"")) != NULL) { s2 = s1 + simRefLen; if (*s2 != '\0') { c = *s2; *s2 = '\0'; line.push_back(buf); *s2 = c; if ((s3 = strstr(s2, "\"")) != NULL) { *s3 = '\0'; line.push_back(s2); *s3 = '"'; line.push_back(s3); text.push_back(line); simReference = pair<int, int>(text.size() - 1, 1); continue; } } } if ((s1 = strstr(buf, "simsDir = \"")) != NULL) { s2 = s1 + simsDirLen; if (*s2 != '\0') { c = *s2; *s2 = '\0'; line.push_back(buf); *s2 = c; if ((s3 = strstr(s2, "\"")) != NULL) { *s3 = '\0'; line.push_back(s2); *s3 = '"'; line.push_back(s3); text.push_back(line); simsDir = pair<int, int>(text.size() - 1, 1); continue; } } } // Parse stimulus. if ((s1 = strstr(buf, ".del = ")) != NULL) { s2 = s1 + delLen; if (*s2 != '\0') { c = *s2; *s2 = '\0'; line.push_back(buf); *s2 = c; for (s3 = s2; *s3 != ' ' && *s3 != '\n' && *s3 != '\0'; s3++) { } *s3 = '\0'; line.push_back(s2); text.push_back(line); delVal = pair<int, int>(text.size() - 1, 1); getline(inFile, strLine); memset(buf, 0, BUFSIZ + 1); strncpy(buf, strLine.c_str(), BUFSIZ); line.clear(); if ((s1 = strstr(buf, ".dur = ")) != NULL) { s2 = s1 + durLen; if (*s2 != '\0') { c = *s2; *s2 = '\0'; line.push_back(buf); *s2 = c; for (s3 = s2; *s3 != ' ' && *s3 != '\n' && *s3 != '\0'; s3++) { } *s3 = '\0'; line.push_back(s2); text.push_back(line); durVal = pair<int, int>(text.size() - 1, 1); for (s4 = s2; *s4 != '[' && s4 > buf; s4--) { } if (s4 > buf) { *s4 = '\0'; for (s5 = s4; *s5 != '_' && s5 > buf; s5--) { } if (s5 > buf) { s5++; source = s5; stimuli[source] = pair<pair<int, int>, pair<int, int> >(delVal, durVal); continue; } } } } } } // Parse synapse. if (((s1 = strstr(buf, "new NetCon")) != NULL) && ((s2 = strstr(buf, "syn_NCXLS_")) != NULL)) { // Chemical synapse. s3 = s2 + chemSynLen; if (*s3 != '\0') { for (s4 = s3; *s4 != '_' && *s4 != '\0'; s4++) { } if (*s4 == '_') { *s4 = '\0'; source = s3; if (source == "MI") { source = "M1"; } *s4 = '_'; s4++; for (s5 = s4; *s5 != '_' && *s5 != '\0'; s5++) { } if (*s5 == '_') { *s5 = '\0'; target = s4; if (target == "MI") { target = "M1"; } *s5 = '_'; for ( ; *s5 != ',' && *s5 != '\0'; s5++) { } if (*s5 == ',') { s5++; for ( ; *s5 != ',' && *s5 != '\0'; s5++) { } if (*s5 == ',') { s5++; if (*s5 == ' ') { *s5 = '\0'; s5++; if (*s5 != '\0') { for (s6 = s5; *s6 != ',' && *s6 != '\0'; s6++) { } if (*s6 == ',') { *s6 = '\0'; delay = s5; s6++; if (*s6 == ' ') { s6++; if (*s6 != '\0') { for (s7 = s6; *s7 != ')' && *s7 != '\0'; s7++) { } if (*s7 == ')') { *s7 = '\0'; weight = s6; prefix = buf; line.push_back(prefix); line.push_back(" "); line.push_back(delay); line.push_back(", "); line.push_back(weight); line.push_back("))}"); text.push_back(line); values.clear(); values.push_back(pair<int, int>(text.size() - 1, 2)); values.push_back(pair<int, int>(text.size() - 1, 4)); synapse = new Synapse(NeuronHocDoc::Synapse::CHEMICAL, values); assert(synapse != NULL); itr = synapses.find(pair<string, string>(source, target)); if (itr == synapses.end()) { connections.clear(); connections.push_back(synapse); synapses[pair < string, string > (source, target)] = connections; for (i = 0, j = (int)neurons.size(); i < j; i++) { if (neurons[i] == source) { break; } } if (i == j) { neurons.push_back(source); } for (i = 0, j = (int)neurons.size(); i < j; i++) { if (neurons[i] == target) { break; } } if (i == j) { neurons.push_back(target); } } else { itr->second.push_back(synapse); } continue; } } } } } } } } } } } } else { if (((s1 = strstr(buf, "elecsyn_NCXLS_")) != NULL) && ((s2 = strstr(buf, ".weight = ")) != NULL)) { // Electrical synapse. s3 = s1 + elecSynLen; if (*s3 != '\0') { for (s4 = s3; *s4 != '_' && *s4 != '\0'; s4++) { } if (*s4 == '_') { *s4 = '\0'; source = s3; if (source == "MI") { source = "M1"; } *s4 = '_'; s4++; for (s5 = s4; *s5 != '_' && *s5 != '\0'; s5++) { } if (*s5 == '_') { *s5 = '\0'; target = s4; if (target == "MI") { target = "M1"; } *s5 = '_'; for ( ; *s5 != '=' && *s5 != '\0'; s5++) { } if (*s5 == '=') { s5++; for ( ; *s5 == ' '; s5++) { } if (*s5 != '\0') { for (s6 = s5; *s6 != ' ' && *s6 != '\0'; s6++) { } *s6 = '\0'; weight = s5; *s5 = '\0'; prefix = buf; line.push_back(prefix); line.push_back(weight); text.push_back(line); if (firstWeight.first == -1) { firstWeight = pair<int, int>(text.size() - 1, 1); } else { values.clear(); values.push_back(firstWeight); firstWeight.first = -1; values.push_back(pair<int, int>(text.size() - 1, 1)); synapse = new Synapse(NeuronHocDoc::Synapse::ELECTRICAL, values); assert(synapse != NULL); itr = synapses.find(pair<string, string>(source, target)); if (itr == synapses.end()) { connections.clear(); connections.push_back(synapse); synapses[pair < string, string > (source, target)] = connections; for (i = 0, j = (int)neurons.size(); i < j; i++) { if (neurons[i] == source) { break; } } if (i == j) { neurons.push_back(source); } for (i = 0, j = (int)neurons.size(); i < j; i++) { if (neurons[i] == target) { break; } } if (i == j) { neurons.push_back(target); } } else { itr->second.push_back(synapse); } } continue; } } } } } } } line.push_back(strLine); text.push_back(line); } sort(neurons.begin(), neurons.end()); inFile.close(); return(true); }
5bfe3540cc325b5c5e05edd6544371d4a6d61561
0676032b18133a46adeace89196bc769a87500d1
/2020ๅฏ’ๅ‡่ฎญ็ปƒ/ๆญฆๆฑ‰ๅคงๅญฆๆ–ฐ็”Ÿๅฏ’ๅ‡้›†่ฎญๆต‹่ฏ•---Day4/B.cpp
dc6e29c07e40e2c53f4dcbb7ec99b4bcd792a513
[]
no_license
zhushaoben/training
ce47c19934f67fc21f4571f99973d16561ede195
530f2b5dc1a2d1e4a02c22f034e251160d0b42af
refs/heads/master
2021-07-11T22:32:54.227626
2020-10-30T12:49:24
2020-10-30T12:49:24
213,320,465
0
0
null
null
null
null
UTF-8
C++
false
false
684
cpp
B.cpp
#include<bits/stdc++.h> using namespace std; #define maxn 100005 #define eps 1e-6 struct Point{ double x,y; }a[maxn]; int n; bool check(long double x){ long double l=-1e18,r=1e18,w; for(int i=0;i<n;i++){ if(a[i].y-x*2>eps)return 0; w=sqrt(2*x*a[i].y-a[i].y*a[i].y); l=max(l,a[i].x-w),r=min(r,a[i].x+w); } return r-l>-eps; } int main(){ scanf("%d",&n); for(int i=0;i<n;i++)scanf("%lf%lf",&a[i].x,&a[i].y); for(int i=1;i<n;i++)if(a[i].y*a[i-1].y<0)return puts("-1"),0; for(int i=0;i<n;i++)a[i].y=abs(a[i].y); long double l=0,r=1e17,mid; while(r-l>(r/1e18)){ mid=(l+r)/2.0; if(check(mid))r=mid; else l=mid; } printf("%.10Lf",l); return 0; } /* 3 1 2 0 1 2 1 */
01edcc5d1cabcc462021001f03223b210cf7434e
1e976ee65d326c2d9ed11c3235a9f4e2693557cf
/PlayerBarWnd.cpp
44822659c2ff842a8358338b01f9b4ea01f6a08c
[]
no_license
outcast1000/Jaangle
062c7d8d06e058186cb65bdade68a2ad8d5e7e65
18feb537068f1f3be6ecaa8a4b663b917c429e3d
refs/heads/master
2020-04-08T20:04:56.875651
2010-12-25T10:44:38
2010-12-25T10:44:38
19,334,292
3
0
null
null
null
null
UTF-8
C++
false
false
25,058
cpp
PlayerBarWnd.cpp
๏ปฟ// /* // * // * Copyright (C) 2003-2010 Alexandros Economou // * // * This file is part of Jaangle (http://www.jaangle.com) // * // * This Program is free software; you can redistribute it and/or modify // * it under the terms of the GNU General Public License as published by // * the Free Software Foundation; either version 2, or (at your option) // * any later version. // * // * This Program is distributed in the hope that it will be useful, // * but WITHOUT ANY WARRANTY; without even the implied warranty of // * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // * GNU General Public License for more details. // * // * You should have received a copy of the GNU General Public License // * along with GNU Make; see the file COPYING. If not, write to // * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // * http://www.gnu.org/copyleft/gpl.html // * // */ #include "stdafx.h" #include "TeenSpirit.h" #include "PlayerBarWnd.h" #include "PrgAPI.h" #include "ActionManager.h" #include "MediaPlayer.h" #include "InfoDownloadManager.h" #include "CollectionManager.h" #include "MenuManager.h" //#define TIMER_MSGDELAY 100 #define TIMER_CHECKSTATUS 200 #define TIMER_CHECKSTATUS_DELAY 1000 #define TIMER_CHECKLEVEL 205 #define TIMER_CHECKLEVEL_DELAY 50 #define IDC_SLD_EQUALIZER 500 //IMPLEMENT_DYNAMIC(CPlayerBarWnd, CDialog) const int cMargins = 1; const int cBtnWidth = 34; //const int cBtnHeight = 34; const int cVolumeWidth = 70; const int cEQSliderWidth = 8; const int cLevelWidth = 8; const int cSmallBtnWidth = 16; const int cSliderHeight = 18; const int cSeparator = 8; //const int cTimeInfoWidth = 80;//m_timeInfo.CalculateWidth() + 5; //const int cFullTimeInfoWidth = 40; CPlayerBarWnd::CPlayerBarWnd(CWnd* pParent /*=NULL*/): m_pPlayer(NULL) { } CPlayerBarWnd::~CPlayerBarWnd() { } BEGIN_MESSAGE_MAP(CPlayerBarWnd, CWnd) ON_WM_PAINT() ON_WM_SIZE() ON_WM_TIMER() ON_WM_ERASEBKGND() // ON_MESSAGE(WM_MEDIASLIDER_MSG, OnSliderMessage) ON_WM_CTLCOLOR() END_MESSAGE_MAP() // CPlayerBarWnd message handlers void CPlayerBarWnd::OnPaint() { CPaintDC dc(this); // device context for painting } BOOL CPlayerBarWnd::Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID) { if (CWnd::Create(_T("STATIC"), NULL, dwStyle, rect, pParentWnd, nID) == FALSE) return FALSE; PrgAPI* pAPI = PRGAPI(); m_previous.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Previous); m_play.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Play); m_pause.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Pause); m_stop.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Stop); m_next.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Next); m_mute.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Mute); m_crossfade.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_CrossFade); m_equalizer.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Equalizer); m_positionSlider.Create(this, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_Slider); m_positionSlider.SetTickInterval(60 * 1000); m_volumeSlider.Create(this, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_SldVolume); m_volMeterL.Create(WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_VolMeterL); m_volMeterR.Create(WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_VolMeterR); m_timeInfo.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_TimeInfo); m_fullTimeInfo.Create(NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_FullTimeInfo); m_playerInfo.Create(_T("STATIC"), NULL, WS_CHILDWINDOW | WS_VISIBLE, CRect(0,0,0,0), this, CTRL_PlayerInfo); //m_start.ApplyTypeStyle(FlexButton::BT_PushButton); //m_start.SetFrameStyle(FlexButton::FRS_Hot); //m_start.SetIcon(pAPI->GetIcon(ICO_Main), 48, 48); //m_start.SetTextStyle(FlexButton::TS_None); //m_start.SetColor(FlexButton::COL_Bk, m_colors[COL_Bk]); ConfigureButton(m_previous, pAPI->GetIcon(ICO_Prev24)); ConfigureButton(m_play, pAPI->GetIcon(ICO_Play24)); ConfigureButton(m_pause, pAPI->GetIcon(ICO_Pause24)); ConfigureButton(m_stop, pAPI->GetIcon(ICO_Stop24)); ConfigureButton(m_next, pAPI->GetIcon(ICO_Next24)); m_mute.ApplyPredifinedButtonsStyle(FlexButton::PBS_HotButton); m_mute.SetImageDrawEffect(FlexButton::ST_Checked, FlexButton::IDE_ShowCheckedIcon); m_mute.SetFrameDrawEffect(FlexButton::ST_Checked, FlexButton::FDE_None); m_mute.SetFrameDrawEffect(FlexButton::ST_Over, FlexButton::FDE_Normal); //m_mute.SetCheckable(TRUE); m_mute.SetIcon(pAPI->GetIcon(ICO_Nomute16), 16, 16); //m_mute.SetCheckIcon(pAPI->GetIcon(ICO_Mute16)); m_mute.SetComponents(FlexButton::COMP_Image); //m_mute.SetColor(FlexButton::COL_Bk, m_colors[COL_Bk]); m_crossfade.ApplyPredifinedButtonsStyle(FlexButton::PBS_HotButton); m_crossfade.SetImageDrawEffect(FlexButton::ST_Checked, FlexButton::IDE_ShowCheckedIcon); m_crossfade.SetFrameDrawEffect(FlexButton::ST_Checked, FlexButton::FDE_None); //m_crossfade.SetCheckable(TRUE); m_crossfade.SetIcon(pAPI->GetIcon(ICO_Crossfade16), 16, 16); //m_crossfade.SetCheckIcon(pAPI->GetIcon(ICO_CrossfadeAc16)); m_crossfade.SetComponents(FlexButton::COMP_Image); //m_crossfade.SetColor(FlexButton::COL_Bk, m_colors[COL_Bk]); m_equalizer.ApplyPredifinedButtonsStyle(FlexButton::PBS_HotButton); m_equalizer.SetImageDrawEffect(FlexButton::ST_Checked, FlexButton::IDE_ShowCheckedIcon); m_equalizer.SetFrameDrawEffect(FlexButton::ST_Checked, FlexButton::FDE_None); //m_equalizer.SetCheckable(TRUE); m_equalizer.SetIcon(pAPI->GetIcon(ICO_Equalizer16), 16, 16); //m_equalizer.SetCheckIcon(pAPI->GetIcon(ICO_EqualizerAc16)); m_equalizer.SetComponents(FlexButton::COMP_Image); //m_equalizer.SetColor(FlexButton::COL_Bk, m_colors[COL_Bk]); m_tooltip.Create(this, FALSE); m_tooltip.SetMaxTipWidth(400); for (int i = 0; i < cSldEqCount; i++) { m_sldEq[i].Create(this, WS_CHILD | WS_VISIBLE, CRect(0,0,0,0), this, IDC_SLD_EQUALIZER + i); m_sldEq[i].SetCursorWidth(1); m_sldEq[i].SetHorizontal(FALSE); } //m_NetUsageText.SetOptions(CLabelEx::DO_AutoWidth); //CRect rc(0,0,0,0); //SetColor(COL_Bk, RGB(10,10,10)); //SetColor(COL_Text, RGB(200,200,220)); SetTimer(TIMER_CHECKSTATUS, TIMER_CHECKSTATUS_DELAY, NULL); SetTimer(TIMER_CHECKLEVEL, TIMER_CHECKLEVEL_DELAY, NULL); ApplyTranslation(*pAPI->GetTranslationManager()); ApplySkin(pAPI->GetSkinManager()->GetSkin()); //m_volumeSliderColorsAdapter.ConfigAdapter(&m_volumeSlider); //m_positionSliderColorsAdapter.ConfigAdapter(&m_positionSlider); //pAPI->RegisterColorControl(&m_volumeSliderColorsAdapter, _T("VolumeSlider")); //pAPI->RegisterColorControl(&m_positionSliderColorsAdapter, _T("PositionSlider")); m_volumeSlider.SetMaxPos(100); m_volMeterL.SetMaxMin(100, 0); m_volMeterL.ShowLines(FALSE); m_volMeterL.ShowBorder(FALSE); m_volMeterR.SetMaxMin(100, 0); m_volMeterR.ShowLines(FALSE); m_volMeterR.ShowBorder(FALSE); m_playerInfo.SetIconProperties(16, 16); SetTimeInfo(0,0); m_timeInfo.SetDrawStringParams(m_timeInfo.GetDrawStringParams() | DT_RIGHT); m_fullTimeInfo.SetDrawStringParams(m_fullTimeInfo.GetDrawStringParams() | DT_RIGHT); OnStateChanged(SM_PlayerVolumeChanged); OnStateChanged(SM_PlayerSettingsChanged); return TRUE; } void CPlayerBarWnd::OnSize(UINT nType, int cx, int cy) { CWnd::OnSize(nType, cx, cy); ResizePlayerControls(); } BOOL CPlayerBarWnd::OnStateChanged(UINT stateMessage) { if (m_pPlayer == NULL) return FALSE; BOOL bHandled = TRUE; switch (stateMessage) { case SM_PlayerVolumeChanged: if (m_volumeSlider.m_hWnd != 0) { PrgAPI* pAPI = PRGAPI(); m_volumeSlider.SetPos(m_pPlayer->GetVolume()); m_volumeSlider.Invalidate(FALSE); m_mute.SetIcon(pAPI->GetIcon(m_pPlayer->GetMute() ? ICO_Mute16 : ICO_Nomute16), 16, 16); //m_mute.SetCheck(pMP->GetMute()); m_mute.Invalidate(TRUE); } break; case SM_PlayerSettingsChanged: if (m_volumeSlider.m_hWnd != 0) { PrgAPI* pAPI = PRGAPI(); m_crossfade.SetIcon( pAPI->GetIcon((m_pPlayer->GetEngineConfig(MECO_Crossfade) == MEEM_Disabled) ? ICO_Crossfade16 : ICO_CrossfadeAc16), 16, 16); m_equalizer.SetIcon( pAPI->GetIcon((m_pPlayer->GetEngineConfig(MECO_EqualizerMode) == MEEM_Disabled) ? ICO_Equalizer16 : ICO_EqualizerAc16), 16, 16); //m_crossfade.SetCheck(!pMP->GetEngineConfig(MECO_Crossfade) == 0); //m_equalizer.SetCheck(!pMP->GetEngineConfig(MECO_EqualizerMode) == MEEM_Disabled); for (INT i = 0; i < cSldEqCount; i++) { m_sldEq[i].SetPos(100 - m_pPlayer->GetEngineConfig(MediaEngineConfigOption(MECO_EqualizerBandStart + i))); } ResizePlayerControls(); Invalidate(TRUE); } default: bHandled = FALSE; } return bHandled; } void CPlayerBarWnd::ResizePlayerControls() { if (m_play.m_hWnd == NULL) return; CRect rc; GetClientRect(&rc); rc.left = /*48 + 2 * */cMargins; //=== Both Lines - Buttons at the end INT lastPartWidth = cSeparator + cLevelWidth + cMargins + cLevelWidth + cSeparator + 2 * (cSmallBtnWidth + cMargins); if (m_pPlayer && m_pPlayer->GetEngineConfig(MECO_EqualizerMode) != 0) lastPartWidth += (-cMargins) + cSeparator + cSldEqCount * (1 + cEQSliderWidth) + cMargins; INT lastPartStartX = rc.right - lastPartWidth; INT curx = lastPartStartX + cSeparator; INT cury = rc.top + cMargins; m_volMeterL.MoveWindow(curx, cury + cMargins, cLevelWidth, rc.Height() - 4 * cMargins, FALSE); curx += cLevelWidth + cMargins; m_volMeterR.MoveWindow(curx, cury + cMargins, cLevelWidth, rc.Height() - 4 * cMargins, FALSE); curx += cLevelWidth + cSeparator; m_crossfade.MoveWindow(curx, cury, cSmallBtnWidth, cSmallBtnWidth, FALSE); curx += (cSmallBtnWidth + cMargins); m_equalizer.MoveWindow(curx, cury, cSmallBtnWidth, cSmallBtnWidth, FALSE); curx += (cSmallBtnWidth + cMargins); for (int i = 0; i < cSldEqCount; i++) { m_sldEq[i].MoveWindow(curx, cury, cEQSliderWidth, rc.Height() - 2 * cMargins, FALSE); curx += cEQSliderWidth; } //=== First Line - Buttons INT firstLineHeight = rc.Height() - 3 * cMargins - cSliderHeight; curx = rc.left; cury = cMargins; m_previous.MoveWindow(curx, cury, cBtnWidth, firstLineHeight, FALSE); curx += (cBtnWidth + cMargins); m_play.MoveWindow(curx, cury, cBtnWidth, firstLineHeight, FALSE); curx += (cBtnWidth + cMargins); m_pause.MoveWindow(curx, cury, cBtnWidth, firstLineHeight, FALSE); curx += (cBtnWidth + cMargins); m_stop.MoveWindow(curx, cury, cBtnWidth, firstLineHeight, FALSE); curx += (cBtnWidth + cMargins); m_next.MoveWindow(curx, cury, cBtnWidth, firstLineHeight, FALSE); curx += cBtnWidth; curx += cSeparator; //=== First Line - Track Info SIZE sz; m_timeInfo.CalculateSize(_T("0:00:00"), 7, sz); int cTimeInfoWidth = sz.cx; m_fullTimeInfo.CalculateSize(_T("0:00:00"), 7, sz); int cFullTimeInfoWidth = sz.cx; INT infoHeight = rc.Height() - cSliderHeight - 3 * cMargins; INT infoWidth = lastPartStartX - curx - cMargins - cTimeInfoWidth; m_playerInfo.MoveWindow(curx, cury, infoWidth, infoHeight, FALSE); //=== First Line - Time Info curx += infoWidth + cMargins; m_timeInfo.MoveWindow(curx, cury, cTimeInfoWidth, infoHeight, FALSE); //=== Second Line - Volume curx = rc.left + cMargins; cury = rc.bottom - cMargins - cSliderHeight; m_volumeSlider.MoveWindow(curx, cury, cVolumeWidth, cSliderHeight, FALSE); curx += cVolumeWidth + cMargins; m_mute.MoveWindow(curx, cury, cSliderHeight, cSliderHeight, FALSE); curx += cSliderHeight + cSeparator; //=== Second Line - Slider INT positionSliderWidth = lastPartStartX - curx - 2 * cMargins - cFullTimeInfoWidth; m_positionSlider.MoveWindow(curx, cury, positionSliderWidth, cSliderHeight, FALSE); //=== Second Line - cFullTimeInfo curx += positionSliderWidth + cMargins; m_fullTimeInfo.MoveWindow(curx, cury, cFullTimeInfoWidth, cSliderHeight, FALSE); Invalidate(); } void CPlayerBarWnd::ApplySkin(ISkin& _skin) { TSSkin& skin = (TSSkin&) _skin; m_timeInfo.SetFont(skin.GetFont(CSEC_PlayerBar, FSTY_Time)); m_fullTimeInfo.SetFont(skin.GetFont(CSEC_PlayerBar, FSTY_Length)); m_playerInfo.SetFont(skin.GetFont(CSEC_PlayerBar, FSTY_Normal)); m_playerInfo.SetSpecialFont(skin.GetFont(CSEC_PlayerBar, FSTY_NormalBold)); SetColor(COL_Bk, skin.GetColor(CSEC_PlayerBar, CVAL_Bk)); SetColor(COL_Text, skin.GetColor(CSEC_PlayerBar, CVAL_Text)); SetColor(COL_Slider1, skin.GetColor(CSEC_PlayerBar, CVAL_Slider1)); SetColor(COL_Slider2, skin.GetColor(CSEC_PlayerBar, CVAL_Slider2)); ResizePlayerControls(); } void CPlayerBarWnd::ApplyTranslation(ITranslation& translation) { PrgAPI* pAPI = PRGAPI(); if (m_tooltip.m_hWnd) { LPCTSTR szKeyNumPad = pAPI->GetString(IDS_KEYNUMPAD); if (m_tooltip.GetToolCount() == 0) { m_tooltip.AddTool(&m_crossfade, _T("")); m_tooltip.AddTool(&m_equalizer, _T("")); TCHAR bf[1000]; _sntprintf(bf, 1000, _T("%s (+:[%s+] / -:[%s-])"), pAPI->GetString(IDS_VOLUME), szKeyNumPad, szKeyNumPad); m_tooltip.AddTool(&m_volumeSlider, _T("")); m_tooltip.AddTool(&m_previous, _T("")); m_tooltip.AddTool(&m_play, _T("")); m_tooltip.AddTool(&m_pause, _T("")); m_tooltip.AddTool(&m_stop, _T("")); m_tooltip.AddTool(&m_next, _T("")); m_tooltip.AddTool(&m_positionSlider, _T("")); m_tooltip.AddTool(&m_mute, _T("")); } //m_tooltip.RemoveAllTools(); m_tooltip.UpdateTipText(pAPI->GetString(IDS_CROSSFADE), &m_crossfade); m_tooltip.UpdateTipText(pAPI->GetString(IDS_EQUALIZER), &m_equalizer); m_tooltip.UpdateTipText(pAPI->GetString(IDS_MUTE), &m_mute); TCHAR bf[1000]; _sntprintf(bf, 1000, _T("%s\r\n+ : [%s+]\r\n- : [%s-]"), pAPI->GetString(IDS_VOLUME), szKeyNumPad, szKeyNumPad); m_tooltip.UpdateTipText(bf, &m_volumeSlider); _sntprintf(bf, 1000, _T("%s [%s8]"), pAPI->GetString(IDS_PREVIOUS), szKeyNumPad); m_tooltip.UpdateTipText(bf, &m_previous); _sntprintf(bf, 1000, _T("%s [%s5]"), pAPI->GetString(IDS_PLAY), szKeyNumPad); m_tooltip.UpdateTipText(bf, &m_play); _sntprintf(bf, 1000, _T("%s [%s5]"), pAPI->GetString(IDS_PAUSE), szKeyNumPad); m_tooltip.UpdateTipText(bf, &m_pause); _sntprintf(bf, 1000, _T("%s [%s0]"), pAPI->GetString(IDS_STOP), szKeyNumPad); m_tooltip.UpdateTipText(bf, &m_stop); _sntprintf(bf, 1000, _T("%s [%s2]"), pAPI->GetString(IDS_NEXT), szKeyNumPad); m_tooltip.UpdateTipText(bf, &m_next); _sntprintf(bf, 1000, _T("%s\r\n5s << : [%s4]\r\n5s >> : [%s6])"), pAPI->GetString(IDS_TIMESLIDER), szKeyNumPad, szKeyNumPad); m_tooltip.UpdateTipText(bf, &m_positionSlider); } //m_timeInfo.SetFont(pAPI->GetFont(FONT_PlayerInfo)); //m_fullTimeInfo.SetFont(pAPI->GetFont(FONT_Big)); //m_playerInfo.SetFont(pAPI->GetFont(FONT_PlayerInfo)); //m_playerInfo.SetSpecialFont(pAPI->GetFont(FONT_PlayerInfoBold)); Invalidate(TRUE); } void CPlayerBarWnd::SetTimeInfo(DOUBLE pos, DOUBLE total) { if (total > 0.0) { INT m1 = INT(pos / 60); INT s1 = INT(pos - m1 * 60); INT m2 = INT(total / 60); INT s2 = INT(total - m2 * 60); TCHAR bf[100]; _sntprintf(bf, 100, _T("%0.2d:%0.2d"), m1, s1); UpdateWindowText(m_timeInfo, bf); _sntprintf(bf, 100, _T("%0.2d:%0.2d"), m2, s2); UpdateWindowText(m_fullTimeInfo, bf); } else { UpdateWindowText(m_timeInfo, _T("")); UpdateWindowText(m_fullTimeInfo, _T("")); } } void CPlayerBarWnd::UpdateWindowText(CWnd& wnd, LPCTSTR text) { TCHAR wndText[100]; wnd.GetWindowText(wndText, 100); if (_tcscmp(text, wndText) != 0) wnd.SetWindowText(text); } void CPlayerBarWnd::ConfigureButton(FlexButton& btn, HICON hIcon) { btn.SetComponents(FlexButton::COMP_Image); btn.ApplyPredifinedButtonsStyle(FlexButton::PBS_HotButton); btn.SetIcon(hIcon, 24, 24); //btn.SetColor(FlexButton::COL_Bk, m_colors[COL_Bk]); } void CPlayerBarWnd::SetMediaPlayer(MediaPlayer* pPlayer) { ASSERT(pPlayer != NULL); m_pPlayer = pPlayer; m_volumeSlider.SetPos(m_pPlayer->GetVolume()); //m_Slider.SetMediaPlayer(pPlayer); //m_Volume.SetMediaPlayer(pPlayer); //m_Volume.Init(pPlayer->GetPlayerEngine(), 0, 100); } void CPlayerBarWnd::OnTimer(UINT_PTR nIDEvent) { switch (nIDEvent) { //case TIMER_MSGDELAY: // KillTimer(nIDEvent); // m_InfoText.SetIcon(NULL, 0 ,0); // m_InfoText.SetWindowText(_T("")); // break; case TIMER_CHECKSTATUS: Update(); break; case TIMER_CHECKLEVEL: if (m_pPlayer != NULL) { INT lev = m_pPlayer->GetEngineConfig(MECO_VolumeLevel); m_volMeterL.SetLevel(LOWORD(lev)); m_volMeterR.SetLevel(HIWORD(lev)); } break; default: ASSERT(0); __super::OnTimer(nIDEvent); break; } } void CPlayerBarWnd::Update() { PrgAPI* pAPI = PRGAPI(); if (m_pPlayer != NULL) { DOUBLE mediaPos = m_pPlayer->GetMediaPos(); DOUBLE mediaLen = m_pPlayer->GetMediaLength(); if (m_positionSlider.GetMaxPos() != mediaLen * 1000) m_positionSlider.SetMaxPos((INT)(mediaLen * 1000)); if (m_positionSlider.GetPos() != mediaPos * 1000) m_positionSlider.SetPos(INT(mediaPos * 1000)); //SetTimeInfo(mediaPos, mediaLen); if (mediaLen > 0.0) { TCHAR bf[100]; INT m1 = INT(mediaPos / 60); INT s1 = INT(mediaPos - m1 * 60); _sntprintf(bf, 100, _T("%0.2d:%0.2d"), m1, s1); UpdateWindowText(m_timeInfo, bf); m1 = INT(mediaLen / 60); s1 = INT(mediaLen - m1 * 60); _sntprintf(bf, 100, _T("%0.2d:%0.2d"), m1, s1); //_sntprintf(bf, 100, _T("%0.2d:%0.2d [%d / %d]"), m1, s1, m_pPlayer->GetPlayListPos() + 1, m_pPlayer->GetPlayListCount()); UpdateWindowText(m_fullTimeInfo, bf); } else { UpdateWindowText(m_timeInfo, _T("")); UpdateWindowText(m_fullTimeInfo, _T("")); } //if (m_pPlayer->GetEngineConfig(MECO_Crossfade) == 0) //{ // if (m_crossfade.IsChecked() == TRUE) // m_crossfade.SetCheck(FALSE); //} //else //{ // if (m_crossfade.IsChecked() == FALSE) // m_crossfade.SetCheck(TRUE); //} //if (m_pPlayer->GetEngineConfig(MECO_EqualizerMode) == ) INT idx = m_pPlayer->GetPlayListPos(); if (idx != -1) { MediaPlayListItem mpli; if (m_pPlayer->GetPlayListItem(mpli, idx)) { if (mpli.artist == NULL) mpli.artist = pAPI->GetString(IDS_UNKNOWN); if (mpli.title == NULL) mpli.title = mpli.url; TCHAR bf[1000]; _sntprintf(bf, 1000, _T("<s>%s</s> - %s"), mpli.title, mpli.artist); UpdateWindowText(m_playerInfo, bf); //PlayState ps = m_pPlayer->GetPlayState(); //APP_ICONS icoResource = ICO_Stop24; //if (ps == PS_Playing) // icoResource = ICO_Play16; //else if (ps == PS_Paused) // icoResource = ICO_Pause24; //m_playerInfo.ClearIcons(); //m_playerInfo.AddIcon(pAPI->GetIcon(icoResource)); } } else { m_playerInfo.SetWindowText(_T("")); m_playerInfo.ClearIcons(); } } } BOOL CPlayerBarWnd::PreTranslateMessage(MSG* pMsg) { m_tooltip.RelayEvent(pMsg); return __super::PreTranslateMessage(pMsg); } BOOL CPlayerBarWnd::OnCommand(WPARAM wParam, LPARAM lParam) { TRACEST(_T("CPlayerBarWnd::OnCommand"), wParam); if (m_pPlayer == 0 || HIWORD(wParam) != 0) return CWnd::OnCommand(wParam, lParam); switch (LOWORD(wParam)) { case CTRL_Play: m_pPlayer->Start(); break; case CTRL_Pause: m_pPlayer->Pause(); break; case CTRL_Stop: m_pPlayer->Stop(); break; case CTRL_Previous: m_pPlayer->Previous(); break; case CTRL_Next: m_pPlayer->Next(); break; case CTRL_Mute: m_pPlayer->SetMute(m_pPlayer->GetMute() ? FALSE : TRUE); PRGAPI()->GetStateManager()->SendMessage(SM_PlayerVolumeChanged); break; case CTRL_CrossFade: m_pPlayer->SetEngineConfig(MECO_Crossfade, m_pPlayer->GetEngineConfig(MECO_Crossfade) ? 0 : 1); PRGAPI()->GetStateManager()->SendMessage(SM_PlayerSettingsChanged); break; case CTRL_Equalizer: m_pPlayer->SetEngineConfig(MECO_EqualizerMode, m_pPlayer->GetEngineConfig(MECO_EqualizerMode) == MEEM_3Channel ? MEEM_Disabled : MEEM_3Channel); PRGAPI()->GetStateManager()->SendMessage(SM_PlayerSettingsChanged); ResizePlayerControls(); break; //case IDC_START: // { // BCMenu& mnu = PRGAPI()->GetMenuManager()->GetMenu(MenuManager::MNU_StartMenu); // CRect rc; // GetWindowRect(&rc); // mnu.TrackPopupMenu(TPM_LEFTALIGN | TPM_BOTTOMALIGN | TPM_HORPOSANIMATION | TPM_VERNEGANIMATION, // rc.left, rc.top, this); // } // break; default: PRGAPI()->GetMenuManager()->HandleGeneralCommands((MenuCommandsEnum)wParam); } return 0; } //--------------------------------------------------- //ICtrlColors --------------------------------------- //--------------------------------------------------- void CPlayerBarWnd::SetColor(UINT idx, COLORREF value) { ASSERT(idx < COL_Last); if (idx < COL_Last) { if (idx == COL_Bk) { m_previous.SetColor(FlexButton::COL_Bk, value); m_play.SetColor(FlexButton::COL_Bk, value); m_pause.SetColor(FlexButton::COL_Bk, value); m_stop.SetColor(FlexButton::COL_Bk, value); m_next.SetColor(FlexButton::COL_Bk, value); m_mute.SetColor(FlexButton::COL_Bk, value); m_crossfade.SetColor(FlexButton::COL_Bk, value); m_equalizer.SetColor(FlexButton::COL_Bk, value); m_volMeterL.SetColor(CLevelMeter::COL_Bk, value); m_volMeterR.SetColor(CLevelMeter::COL_Bk, value); m_volumeSlider.SetColor(CMediaSlider::COL_Bk, value); m_positionSlider.SetColor(CMediaSlider::COL_Bk, value); m_timeInfo.SetColor(CLabel::COL_Bk, value); m_fullTimeInfo.SetColor(CLabel::COL_Bk, value); m_playerInfo.SetColor(CLabelEx::COL_Bk, value); for (int i = 0; i < cSldEqCount; i++) m_sldEq[i].SetColor(CMediaSlider::COL_Bk, value); } else if (idx == COL_Text) { m_timeInfo.SetColor(CLabel::COL_Text, value); m_fullTimeInfo.SetColor(CLabel::COL_Text, value); m_playerInfo.SetColor(CLabelEx::COL_Text, value); m_volMeterL.SetColor(CLevelMeter::COL_ActiveLow, value); m_volMeterR.SetColor(CLevelMeter::COL_ActiveLow, value); m_volMeterL.SetColor(CLevelMeter::COL_Lines, value); m_volMeterR.SetColor(CLevelMeter::COL_Lines, value); } else if (idx == COL_Slider1) { m_positionSlider.SetColor(CMediaSlider::COL_FirstPart, value); m_volumeSlider.SetColor(CMediaSlider::COL_FirstPart, value); for (int i = 0; i < cSldEqCount; i++) m_sldEq[i].SetColor(CMediaSlider::COL_SecondPart, value); } else if (idx == COL_Slider2) { m_positionSlider.SetColor(CMediaSlider::COL_SecondPart, value); m_volumeSlider.SetColor(CMediaSlider::COL_SecondPart, value); for (int i = 0; i < cSldEqCount; i++) m_sldEq[i].SetColor(CMediaSlider::COL_FirstPart, value); } m_colors[idx] = value; Invalidate(TRUE); } } COLORREF CPlayerBarWnd::GetColor(UINT idx) { ASSERT(idx < COL_Last); if (idx < COL_Last) return m_colors[idx]; return 0; } //const TCHAR* const cColorNames[] = { // _T("Bk"), // _T("Text"), // _T("Slider1"), // _T("Slider1"), // NULL //}; //LPCTSTR CPlayerBarWnd::GetColorName(UINT idx) //{ // ASSERT(idx <= COL_Last); // if (idx < COL_Last) // return cColorNames[idx]; // return NULL; //} //--------------------------------------------------- //--------------------------------------------------- //--------------------------------------------------- BOOL CPlayerBarWnd::OnEraseBkgnd(CDC* pDC) { // TODO: Add your message handler code here and/or call default CRect rc; GetClientRect(&rc); pDC->FillSolidRect(&rc, GetColor(COL_Bk)); //DrawIconEx(pDC->m_hDC, cMargins, (rc.Height() - 48) - 2, PRGAPI()->GetIcon(ICO_Main), 48, 48, 0, 0, DI_NORMAL); return TRUE;//__super::OnEraseBkgnd(pDC); } void CPlayerBarWnd::OnMediaSliderClick(CMediaSlider* pMediaSplider) { if (m_pPlayer == NULL) return; if (pMediaSplider == &m_positionSlider) { INT sldPos = m_positionSlider.GetPos(); INT curPos = (INT)m_pPlayer->GetMediaPos(); if ((sldPos / 1000) != curPos) m_pPlayer->SetMediaPos(sldPos / 1000.0); } else if (pMediaSplider == &m_volumeSlider) { INT curVol = m_pPlayer->GetVolume(); INT sldPos = m_volumeSlider.GetPos(); if (curVol != sldPos) { m_pPlayer->SetVolume(sldPos); PRGAPI()->GetStateManager()->SendMessage(SM_PlayerVolumeChanged); } } else { for (INT i = 0; i < cSldEqCount; i++) { if (pMediaSplider == &m_sldEq[i]) { m_pPlayer->SetEngineConfig(MediaEngineConfigOption(MECO_EqualizerBandStart + i), 100 - m_sldEq[i].GetPos()); break; } } } }
7892d3504d3cb95620583d54a7a3729f7e30e0ce
3172e1455ae3d40289c122f1e39da054c3137f40
/Ishrakk_Tawsif-ac/Gym (Codeforces)/101549I/15357705_AC_15ms_16kB.cpp
4d5550444bc020b44f94eceb07c0b3de71cfc083
[]
no_license
Ishrak-Tawsif/Accepted-Codes
959d2e1b444e3a7727ad78945f0590f62819ba31
24254c00e4b1c5a0b5ffc8eb2a01ee1d53f9a467
refs/heads/master
2020-12-26T19:36:15.048621
2020-02-01T13:27:56
2020-02-01T13:27:56
237,616,661
0
0
null
null
null
null
UTF-8
C++
false
false
3,624
cpp
15357705_AC_15ms_16kB.cpp
#include <bits/stdc++.h> using namespace std; int dx[8]={0,0,1,-1,1,1,-1,-1}; int dy[8]={1,-1,0,0,1,-1,1,-1}; /*#pragma comment(linker,"/stack:200000000") #pragma GCC optimize("Ofast") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")*/ #define sf(nn) scanf ("%d", &nn) #define sfll(nn) scanf ("%lld", &nn) #define pf printf #define casepf(nn) printf ("Case %d: ",nn) #define out(nn) cout <<nn <<endl #define loop(var,start,till) for(int var=start; var<till; var++) #define loop1(var,start,till) for(int var=start; var<=till; var++) #define pb push_back #define mem(a,b) memset(a,b,sizeof(a)) #define mp make_pair #define ll long long int #define inf 2e9 #define llinf 2e18 #define READ(f) freopen(f,"r",stdin) #define WRITE(f) freopen(f,"w",stdout) #define all(a) (a.begin(),a.end()) #define Unique_(a) sort(all(a));a.erase(unique(all(a)),a.end()) #define mx 100005 #define mod 998244353 #define left(n) (n<<1) #define right(n) ((n<<1) + 1) #define fast ios_base :: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); #define PI acos(-1) #define bitOff(N,in) (N&(~(1LL<<(in)))) #define bitOn(N,in) (N|(1LL<<(in))) #define ull unsigned long long #define eps .000000001 template <typename T> inline T BigMod(T A,T B){T ret = 1;while(B){if(B & 1) ret = (ret * A)%mod;A = (A * A)%mod;B = B >> 1;}return ret;} template <typename T> inline T InvMod (T A,T M = mod){return BigMod(A,M-2);} string tostring(ll res){string curstr="";if(!res) curstr += ((char)res + '0');while(res!=0){ll temp=(res%10);curstr+=((char)temp+'0');res/=10;}reverse(curstr.begin(),curstr.end());return curstr;} ll toint(string ss){ll inss = 0;for(int i=0;i<ss.size();i++){inss=(inss * 10)+((int)(ss[i]-'0'));}return inss;} /* ...........................................................................................................*/ bitset <mx> isprime; string str; int res; void sieve() { isprime[0] = isprime[1] = 1; for(int i=4; i<mx; i+=2) isprime[i] = 1; for(int i=3; i*i<mx; i+=2) { if(!isprime[i]) { for(int j=i*i; j<mx; j+=i) isprime[j] = 1; } } // int cnt = 0; // for(int i=1; i<100; i++) if(!isprime[i]) cnt++; out(cnt); } //void backtrack(int ind,string temp) //{ // if(ind == str.length()) // { // if(temp.length() == 0) return; // int now = (int) toint(temp);//cout<<temp<<" "<<now<<endl; // if(now>100000) return; // if(!isprime[now]) res = max(res,now); // return; // } // // //string cur = temp; // backtrack(ind+1,temp + str[ind]); // //backtrack(ind+1,temp); // backtrack(ind+1,""); //} int main() { sieve(); while(cin>> str) { if(str.size() == 1 && str[0] == '0') break; res = 0; //backtrack(0,""); string temp; int now; for(int i=0; i<str.length(); i++) { temp = ""; for(int j=i; j<str.length(); j++) { temp += str[j]; now = toint(temp); if(now>100000) break; if(!isprime[now]) res = max(res,now); } } out(res); } return 0; }
e45d4d854e10a5bb30d63e21e183508f89d156ff
f56c840c20c81cbd1ec6a45180d31ca8f1bf0e64
/Code/#50 Pow(x, n).cpp
73535baedda076bb3c9823cdfbf1ca2f6be31bc2
[]
no_license
zanghyu/LeetCodeCpp
3f3d07d2be6905a2ef2378bb8043da62f88c2ce7
c0ca2c16d040a099da507bcf99649d96ab5f46c6
refs/heads/master
2021-01-01T20:09:45.985879
2017-09-11T07:30:00
2017-09-11T07:30:00
98,781,854
0
0
null
null
null
null
UTF-8
C++
false
false
389
cpp
#50 Pow(x, n).cpp
/* ้—ฎ้ข˜๏ผš Implement pow(x, n). */ /* ๆ€่ทฏ๏ผš ไบŒๅˆ† */ class Solution { public: double myPow(double x, int n) { if (n == 0)return 1; int t = abs(n); int k = 1; double res = x; while (t > 1) { res *= res; t /= 2; k *= 2; } res *= myPow(x, abs(n) - k); if (n < 0)res = 1 / res; return res; } };
db99c3843642f96b8784af7b9f28f0946f0b01ab
9d843c6e588029ac35814d0066e7fcea326400ef
/game-planner-core/printer_icon.h
aaaada679e3023d17d4efc315da1b8e54ec11000
[]
no_license
UranG9630/game-planner
f69dc3d72e4c9cdb23f5677bafdb719a85ecc31b
018df210708c6fcec7fb5d1e31be1654f384e7d2
refs/heads/master
2021-05-17T04:18:08.015086
2020-06-05T13:17:39
2020-06-05T13:17:39
250,619,246
3
0
null
null
null
null
UTF-8
C++
false
false
371
h
printer_icon.h
#ifndef PRINTER_ICON_H #define PRINTER_ICON_H #include "QPixmap" #include "QPoint" class printer_icon { public: QPixmap img; QPointF pos; double scale; printer_icon(); printer_icon(QPixmap _img); printer_icon(QPixmap _img, QPoint _pos, double _scale); void setPos(QPointF _pos); void setScale(double _scale); }; #endif // PRINTER_ICON_H
3e28a124b078c187c08e598938308daffec6162b
ac40a764780b91a45f73ccabff100835f7622cc6
/RomanticSquash_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Mirror.Examples.cpp
da8baa9977cfd7207c9cedc663a70ea5023ce78b
[]
no_license
Starboard-Studios/RomanticSquashRelease
df6d93d8b979eb08a067b424bfa71ac96552ab2b
3bab5162bb20d676d058cb1012de9e8f24b45bca
refs/heads/main
2022-12-31T10:56:11.310514
2020-10-14T00:33:59
2020-10-14T00:33:59
301,888,426
0
0
null
null
null
null
UTF-8
C++
false
false
1,255,813
cpp
Mirror.Examples.cpp
๏ปฟ#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.h> template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct InterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; // Mirror.Examples.Additive.AdditiveNetworkManager struct AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74; // UnityEngine.UI.AnimationTriggers struct AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11; // Mirror.Examples.Pong.Ball struct Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // Mirror.Examples.Chat.ChatNetworkManager struct ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355; // Mirror.Examples.Chat.ChatWindow struct ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // UnityEngine.UI.FontData struct FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MethodInfo struct MethodInfo_t; // Mirror.Examples.OneK.MonsterMovement struct MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager struct MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F; // Mirror.NetworkAuthenticator struct NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF; // Mirror.Examples.Pong.NetworkManagerPong struct NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7; // Mirror.Examples.NetworkRoom.NetworkRoomManagerExt struct NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B; // Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt struct NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C; // Mirror.NetworkVisibility struct NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07; // Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision struct PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB; // Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator struct PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC; // Mirror.Examples.Basic.Player struct Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8; // Mirror.Examples.Chat.Player struct Player_tBEC4FFB14B3B261C1FFC7953264D930457898707; // Mirror.Examples.Pong.Player struct Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36; // Mirror.Examples.Additive.PlayerController struct PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9; // Mirror.Examples.MultipleAdditiveScenes.PlayerController struct PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F; // Mirror.Examples.NetworkRoom.PlayerController struct PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B; // Mirror.Examples.OneK.PlayerMovement struct PlayerMovement_tEA0B6190139E09855FC49E2518EE11D217B5BFC0; // Mirror.Examples.MultipleAdditiveScenes.PlayerScore struct PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD; // Mirror.Examples.NetworkRoom.PlayerScore struct PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6; // Mirror.Examples.Tanks.Projectile struct Projectile_t1C5430FC42935877498341CC359F93F1987C4586; // Mirror.Examples.Additive.RandomColor struct RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6; // Mirror.Examples.MultipleAdditiveScenes.RandomColor struct RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455; // Mirror.Examples.NetworkRoom.RandomColor struct RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F; // UnityEngine.UI.RectMask2D struct RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15; // Mirror.Examples.MultipleAdditiveScenes.Reward struct Reward_t82A40753189BAB49A979289A29CEC56AE94399D2; // Mirror.Examples.NetworkRoom.Reward struct Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // UnityEngine.UI.Selectable struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD; // Mirror.Examples.Additive.ShootingTankBehaviour struct ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF; // Mirror.Examples.MultipleAdditiveScenes.Spawner struct Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4; // Mirror.Examples.NetworkRoom.Spawner struct Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC; // Mirror.Examples.Tanks.Tank struct Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8; // Mirror.Examples.Tanks.TankGameManager struct TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3; // Mirror.Transport struct Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D; // UnityEngine.UI.VertexHelper struct VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // Mirror.Examples.Additive.ZoneHandler struct ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569; // Mirror.Examples.Additive.AdditiveNetworkManager/<LoadSubScenes>d__3 struct U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06; // Mirror.Examples.Additive.AdditiveNetworkManager/<UnloadScenes>d__6 struct U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D; // UnityEngine.Camera/CameraCallback struct CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D; // Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage struct CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1; // Mirror.Examples.Chat.ChatWindow/<AppendAndScroll>d__8 struct U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E; // Mirror.ClientScene/LocalplayerChanged struct LocalplayerChanged_t153CFBEB17900932F679C9861C613D6FD98F7942; // UnityEngine.UI.InputField/OnChangeEvent struct OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7; // UnityEngine.UI.InputField/OnValidateInput struct OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F; // UnityEngine.UI.InputField/SubmitEvent struct SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9; // UnityEngine.UI.MaskableGraphic/CullStateChangedEvent struct CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<AddPlayerDelayed>d__4 struct U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<LoadSubScenes>d__6 struct U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<UnloadClientSubScenes>d__9 struct U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<UnloadSubScenes>d__10 struct U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5; // Mirror.NetworkIdentity/ClientAuthorityCallback struct ClientAuthorityCallback_t661AE911AB52266E53A07F3C757CAF292AE3E041; // Mirror.Examples.Pong.NetworkManagerPong/<>c struct U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75; // UnityEngine.RectTransform/ReapplyDrivenProperties struct ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE; // UnityEngine.UI.Scrollbar/ScrollEvent struct ScrollEvent_tD181ECDC6DDCEE9E32FBEFB0E657F0001E3099ED; // System.Action`1<UnityEngine.AsyncOperation> struct Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31; // System.Action`2<Mirror.Examples.Chat.Player,System.String> struct Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE; // System.Action`2<Mirror.NetworkConnection,Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage> struct Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC; // System.Action`2<Mirror.NetworkConnection,System.Object> struct Action_2_tA28EF8A679D2122A5F5AD0415D583100EF9115A0; // System.Action`2<System.Object,System.Object> struct Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D; // System.Collections.Generic.Dictionary`2<System.Guid,Mirror.SpawnHandlerDelegate> struct Dictionary_2_t7CC03CE2616B963DEA8AA98EAB118B8B8F6F31B5; // System.Collections.Generic.Dictionary`2<System.Guid,Mirror.UnSpawnDelegate> struct Dictionary_2_tF2595C06836CD6AF8DFA199D553B2AAB5F2C384A; // System.Collections.Generic.Dictionary`2<System.Guid,UnityEngine.GameObject> struct Dictionary_2_t26A96311B045C0EA9BAAEF6E836C515D1F1A4663; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkConnectionToClient> struct Dictionary_2_tAD6238DE65EB68DD8A388524E59EB7B8AA098999; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkMessageDelegate> struct Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkConnection> struct Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F; // System.Collections.Generic.Dictionary`2<System.UInt32,Mirror.NetworkIdentity> struct Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75; // System.Collections.Generic.Dictionary`2<System.UInt64,Mirror.NetworkIdentity> struct Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C; // System.Collections.Generic.HashSet`1<Mirror.NetworkConnection> struct HashSet_1_t88C982F0214E22EE005391488913223DBE0F6D05; // System.Collections.Generic.HashSet`1<Mirror.NetworkIdentity> struct HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38; // System.Collections.Generic.IEqualityComparer`1<System.UInt32> struct IEqualityComparer_1_t75C3361D3BE51E9742B0BBFA0F3998120E7CB6CE; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Mirror.NetworkConnection> struct KeyCollection_t92F5680C55850A065B69D49747E4BF0CB199F03C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,Mirror.NetworkIdentity> struct KeyCollection_t6DF9AB53069A866CB40854740C4F3F91AE8CF439; // System.Collections.Generic.List`1<UnityEngine.UI.Image> struct List_1_t815A476B0A21E183042059E705F9E505478CD8AE; // System.Collections.Generic.List`1<Mirror.NetworkRoomPlayer> struct List_1_t12E07DEAE79B9E370C8C88598C5BC4D3A5B328A6; // System.Collections.Generic.List`1<Mirror.SyncObject> struct List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156; // System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank> struct List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8; // System.Collections.Generic.List`1<Mirror.NetworkRoomManager/PendingPlayer> struct List_1_t38A5A5E401291927667E9840827169D1FFDA2EFC; // System.Collections.Generic.List`1<UnityEngine.CanvasGroup> struct List_1_t34AA4AF4E7352129CA58045901530E41445AC16D; // System.Collections.Generic.List`1<UnityEngine.GameObject> struct List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5; // System.Collections.Generic.List`1<System.Int32> struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7; // System.Collections.Generic.List`1<System.Object> struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene> struct List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2; // System.Collections.Generic.List`1<UnityEngine.Transform> struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0; // System.Predicate`1<UnityEngine.GameObject> struct Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B; // System.Predicate`1<System.Object> struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB; // UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Mirror.NetworkConnection> struct ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,Mirror.NetworkIdentity> struct ValueCollection_t0B7B9EE155BCCDAAB768AA1695C8AECDDB1F7FBF; // UnityEngine.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149; // UnityEngine.AnimatorControllerParameter[] struct AnimatorControllerParameterU5BU5D_t51A7788330152A26BE85C81C904CD9C874598EDE; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // UnityEngine.Camera struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C; // UnityEngine.Canvas struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA; // UnityEngine.CanvasRenderer struct CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E; // UnityEngine.CapsuleCollider struct CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // UnityEngine.CharacterController struct CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E; // Mirror.RemoteCalls.CmdDelegate struct CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF; // UnityEngine.Collider struct Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02; // UnityEngine.Collider2D struct Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722; // UnityEngine.Collision struct Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0; // UnityEngine.Collision2D struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684; // UnityEngine.ContactPoint2D[] struct ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277; // UnityEngine.ContactPoint[] struct ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7; // System.Delegate struct Delegate_t; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,Mirror.NetworkConnection>[] struct EntryU5BU5D_t24F7FE49124BA1600F310A5AF59F2C57C93E5CFA; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,Mirror.NetworkIdentity>[] struct EntryU5BU5D_t4ECB9AC48BAD6751EEA76C170C055967F8BE8BEB; // UnityEngine.Event struct Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319; // UnityEngine.GameObject[] struct GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // UnityEngine.ILogger struct ILogger_t25627AC5B51863702868D31972297B7D633B4583; // UnityEngine.UI.Image struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C; // UnityEngine.UI.InputField struct InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE; // UnityEngine.Mesh struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6; // Mirror.MessageBase struct MessageBase_t01317AB1C42AAD54FF16B5AE93DE52B1247F07EE; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // UnityEngine.AI.NavMeshAgent struct NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B; // Mirror.NetworkAnimator struct NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550; // Mirror.NetworkBehaviour struct NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4; // Mirror.NetworkBehaviour[] struct NetworkBehaviourU5BU5D_t88F442C3B8452017C596F9367CB7F74F7B07C8CC; // Mirror.NetworkConnection struct NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311; // Mirror.NetworkConnectionToClient struct NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A; // Mirror.NetworkIdentity struct NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6; // Mirror.NetworkManager struct NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15; // Mirror.NetworkReader struct NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9; // Mirror.NetworkRoomManager struct NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516; // Mirror.NetworkRoomPlayer struct NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F; // Mirror.NetworkWriter struct NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // Mirror.PooledNetworkWriter struct PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118; // UnityEngine.RectTransform struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072; // UnityEngine.Renderer struct Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C; // UnityEngine.Rigidbody struct Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A; // UnityEngine.Rigidbody2D struct Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5; // UnityEngine.SceneManagement.Scene[] struct SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115; // UnityEngine.UI.Scrollbar struct Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28; // UnityEngine.UI.Selectable[] struct SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535; // System.Single[] struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; // UnityEngine.Sprite struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String struct String_t; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // Mirror.Examples.Tanks.Tank[] struct TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511; // UnityEngine.UI.Text struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1; // UnityEngine.TextGenerator struct TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70; // UnityEngine.TextMesh struct TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // UnityEngine.TouchScreenKeyboard struct TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // UnityEngine.UIVertex[] struct UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099; // UnityEngine.Vector2[] struct Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA; // UnityEngine.Vector3[] struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4; // UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013; // UnityEngine.WaitForSecondsRealtime struct WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40; IL2CPP_EXTERN_C RuntimeClass* Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GUI_tBCBBE29117D8093644C6E72B1CE3FB65C2CDCCC1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LogFactory_t359C989285E6F62B9F073C5F0F5FA52BAB518DB6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkWriterPool_tE8E92B378A1C09F9FF212B4D2EE02264A94E06C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RemoteCallHelper_t698E15E60D843C81D10564E744E4D9829DB33D02_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral00802AAE0C28A2554A216E0386A38F9C91EAE6B0; IL2CPP_EXTERN_C String_t* _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD; IL2CPP_EXTERN_C String_t* _stringLiteral113330AFD97C75D01EDBB935D78A700A93157475; IL2CPP_EXTERN_C String_t* _stringLiteral14B24B8ECDA64EBE2884E7F8F2DB148A795CCB6D; IL2CPP_EXTERN_C String_t* _stringLiteral1E6987A34AA5BFE464BE8C0FB3158290E5EDAD9D; IL2CPP_EXTERN_C String_t* _stringLiteral2124DD2528669ACB4FF5138CDA590F65EC84C5B7; IL2CPP_EXTERN_C String_t* _stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A; IL2CPP_EXTERN_C String_t* _stringLiteral27760DB3510E1FCB3699201F731362D5CB49BE94; IL2CPP_EXTERN_C String_t* _stringLiteral2E701C00640AC4E2F929D6EBA22107C6FB7CBF9F; IL2CPP_EXTERN_C String_t* _stringLiteral2F9670AB400BDA0B8502E26772DF292597A50639; IL2CPP_EXTERN_C String_t* _stringLiteral316AA099130E90EA8BF51C73B1A36B634518FBA1; IL2CPP_EXTERN_C String_t* _stringLiteral4716B4213F132FA8253DF7BABD6B80EC0B13405B; IL2CPP_EXTERN_C String_t* _stringLiteral49AD7B24AD287AF0B715B7D9C46F9F1FC4933F0F; IL2CPP_EXTERN_C String_t* _stringLiteral53FEE1A4362A592B4D9ABAF612B7E4A2F52B81AD; IL2CPP_EXTERN_C String_t* _stringLiteral5BDEA1198904D3083E5EDFAAF1C05CCC233D17AB; IL2CPP_EXTERN_C String_t* _stringLiteral63D5B7B61C9A932F0CFFA0506AD506F2DC0E23A8; IL2CPP_EXTERN_C String_t* _stringLiteral64386832B30FAC26704458F68FD5E515EA2F53E6; IL2CPP_EXTERN_C String_t* _stringLiteral72E65675DF22C714B3ACB6E110695F3C99E6AF9D; IL2CPP_EXTERN_C String_t* _stringLiteral734BC253F0D07DE0F8DFD3592600EA0D229526EC; IL2CPP_EXTERN_C String_t* _stringLiteral73AA0532A5D726D12C7607CBFEA28DC13C2631D6; IL2CPP_EXTERN_C String_t* _stringLiteral77268F8E0AEA59C91A55EDE2F7B86EEA25D51817; IL2CPP_EXTERN_C String_t* _stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E; IL2CPP_EXTERN_C String_t* _stringLiteral8ACAA4E0B28437F5FD1A41CE6591A16813F05377; IL2CPP_EXTERN_C String_t* _stringLiteral8B5985243F03B6EDAACD24FE81E7936923844EEF; IL2CPP_EXTERN_C String_t* _stringLiteral94E08295939398079899848C6F186D1829FBF770; IL2CPP_EXTERN_C String_t* _stringLiteral95F14C5F4C1440E7A605F5353B1040BD67BE423F; IL2CPP_EXTERN_C String_t* _stringLiteral982CB6D541FC9A8B24606316D87BDED2A3332AF6; IL2CPP_EXTERN_C String_t* _stringLiteralA257914E38443638CB2C803543E7DF8B89A3BAE2; IL2CPP_EXTERN_C String_t* _stringLiteralA62A585BE3380C1A4A863C84A536F046C9E03CBD; IL2CPP_EXTERN_C String_t* _stringLiteralA7F80BCE9ECBDA5A753E0B76268039021F829D21; IL2CPP_EXTERN_C String_t* _stringLiteralA8AB71C4BB80651069C81E255DEB65CD7D6C8E1A; IL2CPP_EXTERN_C String_t* _stringLiteralAC32ED29C1AAC04B78EED6E5A6AFB17ED29BCFE9; IL2CPP_EXTERN_C String_t* _stringLiteralAF4FE737DB07A38DC7B9A34B4BA555906EC0EFA9; IL2CPP_EXTERN_C String_t* _stringLiteralB35F7D8541174188E8437B60A2FB97F632EAA3EE; IL2CPP_EXTERN_C String_t* _stringLiteralB62CB93772BD03975BD969283294289064F5AF77; IL2CPP_EXTERN_C String_t* _stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70; IL2CPP_EXTERN_C String_t* _stringLiteralD10CD0A2A429ED8AF6B0F046C7594E65D754EED3; IL2CPP_EXTERN_C String_t* _stringLiteralD5A6D1524A9CAA0C1FE48522BD4B250F6A827CC8; IL2CPP_EXTERN_C String_t* _stringLiteralD742F5F4365B2AFE21EB9C41068D3381D9739383; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDC7FB0020432CE37EFEDFF00BA0492000889A20D; IL2CPP_EXTERN_C String_t* _stringLiteralDEBDDDADBB4F4FC8FEDA3F38CBC1AFBF3B3FA25C; IL2CPP_EXTERN_C String_t* _stringLiteralEC7AE14A3DFC45ABF6170CB0D4FF24EDE9C494AB; IL2CPP_EXTERN_C String_t* _stringLiteralEF0D009D32A58FBC249306BDE39B2CDD7B71D925; IL2CPP_EXTERN_C String_t* _stringLiteralF441E5D0E66E334690F8F1B6B7E479CE6D56D781; IL2CPP_EXTERN_C String_t* _stringLiteralF6A577D434AC942DDB38F171010FC5CEBF94E542; IL2CPP_EXTERN_C String_t* _stringLiteralF76ACD0E930DEA6BAE9F3D19211EA1A922D696FE; IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_m9B4747ABDFDBD913EE4CC25E8F510CD4D3455B6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_mC793AA789A19E5831431742A1F9E0B52926DEA63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_mF532F24F1C433A3E35581FC7C3C1553708CA414F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ChatNetworkManager_OnCreatePlayer_m53F8F078A5A19206F9929018F992FA57C28C0975_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ChatWindow_OnPlayerMessage_mA51B938E5A5CFA205CDEAB15795D7BA0DCD604E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisNetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550_m5FE18D220F643A1AF9C97CA4BB330E8F6915F77C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m7B6A4CBDF36DAC6F05A925A85F9503868235B98C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisPlayer_t4E7E08BC683AFF26397BF9716820B0354E4C9A36_m95BADC612950E41A21BD02D15F88D92FC49E6501_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mFA2775C8DB51F2CBE0B29244BC55ADE6BBF1E791_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisRandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455_m86F06E3C3FEC9C6278BBD6B05BDA6DA09D3013E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisRandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F_m1CE337A1369F603E1BE6A1AEDDA0BBD3676AF02D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_m9DC24AA806B0B65E917751F7A3AFDB58861157CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_mF632AEB48D9B956849730FF51991CA7DAC26612D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mCFCED7BF3548A04BD1FFE21FE3441652D23D7346_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m206596714FC8B1875F776C020706E6D890070344_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m041C2F116E161FE8A0E193E16E717AA3A4FC3CD8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mABDFC6B9C9E8D1289620F4A713E0C817B7F54C61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m67C5F9007588ACD723F2DF188D4F8AA76660CE4D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m954A7094A2F7F217A683B279960700558E2F0BA8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5A22240C81E287D939F4D8E1ADC390111675879A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mAF4458A3A011CF42905DA59EAEB9A900045B8BBB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisNetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_m4EDDC9D17439C18F9912C9A2DA143E1598E6BBC1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisPlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6_mE85424B023694A3ECE8C19C181DA343BAD732319_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m2F11DD9901C3DE831ACC1A29CDAF294EF83AB7CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mE0095CB28EAE19DE0B1EFFFD4EEC9E69A8CDDDD8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisProjectile_t1C5430FC42935877498341CC359F93F1987C4586_mD606B95216A2ACAAC347F36097DEF62F8166858A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisReward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_m18D7C4418DD53C9F64B146EE83AEABF3C0AEF08D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisReward_t82A40753189BAB49A979289A29CEC56AE94399D2_m717C2DA0854EF4FDAFC870D3B1AB6844A1EDF169_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m3B73C0CBE3BBEB45E5F900633A89565B3DDC0848_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m846C370AE06B4D6452B80350FD41D499B8705AF4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m98E7736A87EEE37D6247F090557968992AEA3398_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mFF7A0506767C9348B92A6059E3F1414DA96D95CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m5ADAB4D38ED68C6A8596C348E6DE6D346C68F2E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mA0F0AA9C5F1E217E885EAC135CE2F2136F45289C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_mBF424AC51797ED69205E4AA60177CB5842AD029A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Find_m03A7279A7DC1FF94BF4164238AD8C309A92AF58F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m44F836CB16744D14CB1B3A88585DDC5C11897D6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE3124E023FDA2BC32372ABD9149DEA3FA0C15AEE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mA3ECEA98E5D2E36FFF42B0B11B9CE50A2F03D0A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SetSyncVar_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mA18D148D5C167CFA0DA28FB5C0BAE44FD13FBDD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SetSyncVar_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_m14220B08E1B2C90F2F7C3136E78DE37501DBF13D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SetSyncVar_TisString_t_mB1BE647BB205B4306DAB25A796D7FEB100BD7189_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SyncVarEqual_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mF33C98CFE9BA15586141E1F9CAE8B5D8F9C1F733_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SyncVarEqual_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_mF3D9D482F4F9DF0D6E80578EB3AC5F4740205F55_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SyncVarEqual_TisString_t_m9FE65477E4299FF143A3F1FB9A68D4C038297A6E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkConnection_Send_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m40AEF9D7080327FF13FB0B84D81DFFFE9402A9C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkConnection_Send_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m93F37538DCDF6B2C5BBB392CDD917C29DA9E7D1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkServer_RegisterHandler_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m06395C9526DC43EAA3E3407E590EBA531A2D119F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkServer_SendToAll_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_mBF7EDD20CFFF8192F8BA08BC465E70010416565C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m26431AC51B9B7A43FBABD10B4923B72B0C578F33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Player_InvokeUserCode_CmdSend_mD55BE5FA8E7258C2AB51D7FC56FA59F2BF03D7AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Player_InvokeUserCode_RpcReceive_mFB6FA79E89417F3143E500E5BE953F7394A3475A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Predicate_1__ctor_m01D5AA45E9434D3CEAC527D329F0F7BF9D561A1B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tank_InvokeUserCode_CmdFire_m8B187B082DE58CED94A34E2167E0F2A3B0D1EF4A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tank_InvokeUserCode_CmdReady_m5B6DE52F097824FD911935253865077442537080_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Tank_InvokeUserCode_RpcOnFire_m49BF45FC7E528190C8B0B33D50FFD1C81F95AE22_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CAddPlayerDelayedU3Ed__4_System_Collections_IEnumerator_Reset_mD5F9BF47393862ED66B8C6CEFAEB6F67E15F8791_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CAppendAndScrollU3Ed__8_System_Collections_IEnumerator_Reset_mED9C9CB1E1C37C6ABEE641847143DC4ED47B69FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CLoadSubScenesU3Ed__3_System_Collections_IEnumerator_Reset_m7AF605A8402A80BDDD97B214341B97BF4AF862EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CLoadSubScenesU3Ed__6_System_Collections_IEnumerator_Reset_m7CC1DD4CE5819A9A8CC5B3E901C2680341335AB6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3COnServerAddPlayerU3Eb__3_0_m3202D700BF36BA65DBC9D93191430B4872950567_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CUnloadClientSubScenesU3Ed__9_System_Collections_IEnumerator_Reset_m7937D169E058A8CAF640A68AE8CBA17BEFCA0B81_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CUnloadScenesU3Ed__6_System_Collections_IEnumerator_Reset_m8CF0EA4D4C0D1FB805739735EE8CFE689B31E1D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CUnloadSubScenesU3Ed__10_System_Collections_IEnumerator_Reset_mAD917AC441BFBEDE1B512B24C971D2C5CA76815C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m5C016983C9DD084689CB8199AF44DB792080DE72_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_0_0_0_var; IL2CPP_EXTERN_C const uint32_t AdditiveNetworkManager_LoadSubScenes_m8116AA35745EBCC60C6C3A294DE91852EDCA37D5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdditiveNetworkManager_UnloadScenes_m614BE51A47C34F56C628FDED27C1A03D03548E04_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdditiveNetworkManager__cctor_m3721C68070551507B5C1DC67C06BD748EE3C130E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdditiveNetworkManager__ctor_m5CC589415994E9AA3B29BC7DF5C3ABE27016D196_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Ball_OnCollisionEnter2D_m639F898FC298184DB7A550D4591FF78F86D37D9E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Ball_OnStartServer_mD7AFFB3ED60F2313E8BD3714E6EB9450225BCD49_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Ball__ctor_mE12E9FB8B520A6A781A4376E12AF81B52AE6E8FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatNetworkManager_OnClientConnect_m66BD448EC75E3726646087B5EE387E051BC59CA9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatNetworkManager_OnCreatePlayer_m53F8F078A5A19206F9929018F992FA57C28C0975_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatNetworkManager_OnStartServer_mF0ABA7AB9531AFC89B813B4BB015B27E593A1253_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatNetworkManager__ctor_m8081B140804EDAA6461BF55AE81B35A50AA5E8B7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatWindow_AppendAndScroll_mD6DA1A115041242B324AFBF8A11D1A360B78160C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatWindow_Awake_mAFCA55D996C1F64ADB96DC732FB6BBECD47152D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatWindow_OnPlayerMessage_mA51B938E5A5CFA205CDEAB15795D7BA0DCD604E1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatWindow_OnSend_m5193C72C94A08D21DEDE8C51B31B15D1E7C65845_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ChatWindow__cctor_mC44E3DDE0FB9F5E8CF1DAE2662BD6AE87FC2751A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ClientScene_get_localPlayer_m7354A403C57BAD08DDD216140CAD2DADF66E14CBMirror_Examples_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CreatePlayerMessage_Deserialize_m94C11045EC198CC4325E1C987DA10046387E71D1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CreatePlayerMessage_Serialize_mFF9CC816EBFF336DDA3DDA9DA8D3E5C065A97FA6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MonsterMovement_Update_mEAAD7161A6AC058BF962BB81DD5172687CDB4D75_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MonsterMovement__ctor_m40114417312CB924532254A2F59C02B486E1C3F6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MultiSceneNetManager_AddPlayerDelayed_m744AA3C43907AC569D4680A8B949D059A36041C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MultiSceneNetManager_LoadSubScenes_mF477C94E3B5566608028FFD0EF3A631686B0620A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MultiSceneNetManager_OnStopServer_mC019ED289CDC60DBF449475B44A0A4D2782EE1CC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MultiSceneNetManager_UnloadClientSubScenes_m68861DA9038425D2C5434F057F1DF4BC0510AEA4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MultiSceneNetManager_UnloadSubScenes_mFCFCBEF232BAEEFC60ECF91B42B86435C3354661_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MultiSceneNetManager__ctor_mCD43E50AFE42AFC6EE2169D58C53342445E5824D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkClient_get_connection_m5439CD4BADA80C781B783F013464517F581F9557Mirror_Examples_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkManagerPong_OnServerAddPlayer_mB3A1275ECBA4A7E54B2CCF681A20CF72EB320A9E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkManagerPong_OnServerDisconnect_mA4D3783D437F528758371DA363D458365E254245_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkManagerPong__ctor_mE13121F397ACA767F31332D3948BFB06931D5B60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkManager_get_singleton_m3687E70BBF51C41E6F20B606EF0E0E40D13E7641Mirror_Examples_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomManagerExt_OnGUI_mEC6E4EE02E0BA87800F8638A0EE04EB9581E67A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomManagerExt_OnRoomServerSceneLoadedForPlayer_m675A4E305357F572AF960B377D8F6DD98786B5C2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomManagerExt_OnRoomStopClient_m625C02B9FD84EBA402A2D75DCF538979AEA36E35_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomManagerExt_OnRoomStopServer_m71A2E3F11B39B3E6B1F49B45FEE3F0FD4328A563_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomManagerExt__ctor_m8B27414E3A41CF52B3EBDB2384E52D446E92A407_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomPlayerExt_OnClientEnterRoom_m0AD8C664FAA52E8A3321301164B8D2C8A57DCFB2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomPlayerExt_OnClientExitRoom_mA7281B7F974F4B98392C06D1200711E19D1CC73C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomPlayerExt_OnStartClient_m7E2C833E44799F61430F07B3100753C9D83B874E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomPlayerExt_ReadyStateChanged_m4E1502A687DA1047FB25F6DBBBD1C0F9DEE06BD0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomPlayerExt__cctor_m5624251682CD66E701E7A42DA5FB66BE864E8760_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkRoomPlayerExt__ctor_mBD6AB4DA1776F2BBAD98283F839A44BEFD6C0FE6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEEMirror_Examples_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PhysicsCollision_OnCollisionStay_mC558CB72DEF8B7CEEBA77D9947D494979AB712EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PhysicsCollision_OnValidate_m2E3F6A4475BBB4016546FED8B4051AE4414106FB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PhysicsCollision__ctor_m0580E8118145DF6CFBADB8F4BFF095C5F2B253AE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PhysicsSimulator_Awake_m5EB9781D06742C3A9FBB542DD5860AB2BD20539E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PhysicsSimulator_FixedUpdate_m64646011D38E38ED2147C8ACEFF15C0F371613C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_FixedUpdate_m0FE76688A79C84635274E7C284C4049FBB228847_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_FixedUpdate_m4620D98B4691CE084764D27A831FE481C5A9DD75_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_FixedUpdate_m711377BBEEE509BCC15443840527D7B10EA562AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_OnDisable_m4EBBFCD135600C9870BCE1FA8B8EE411018AE5B5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_OnDisable_mB5227100892B843C61695BB9E0EAD790C6BBFAE7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_OnDisable_mF159E3526F1F5D4285EB09497F4BFE8E32123DBB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_OnValidate_m08B821C54ECF61DEEC7DEEF919124A20F7FC2429_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_OnValidate_m135260056956911117C0437AEA294B59A4F4F92D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_OnValidate_mE0566A3D0A171BAC4065D0FE9728C1F129A56654_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_Update_m435B49D11A7B468FD9064E8B3C4417B7DBFE3CD5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_Update_mA3DFFF442FC0CBE50B89DE2F471AE0DC02590719_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController_Update_mF6D253123525372CF13A62C661EC6AF879092B7B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController__ctor_m03BDF97B824804B2FBB8B7A2F1A925A4C88ED4E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController__ctor_m9FAA1AEE837386533C653A795C692B70CE3233E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerController__ctor_mB2D9F1865459A8FC271579219D2DA50D4E884F30_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerMovement_Update_mE25D2FF7F6DD277D2881621B0A8224B958BEF628_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerMovement__ctor_m303E024D0B60C512C65180A6B4FBF591FF48B6D7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_DeserializeSyncVars_m22F558810CBD81876D3BB3DCEAEA5E35E75D55FC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_DeserializeSyncVars_mEE5682F2A42618C2B1778700A672427907B365AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_OnGUI_m0B2DF3D26F76E84C35BD21A900B7734D73171F1D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_OnGUI_m38EF24B5FCD512C8849B7525D5210B1EF35DE3EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_SerializeSyncVars_m8049A5A8BCFE146C0B6A5F296A49B12B0D8E0000_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_SerializeSyncVars_mF8357BCB553EEC09211D5DCB4E6B304E0A6D10AC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore__ctor_mB996E4181A39CCC236BC656E6547F01E670C2968_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore__ctor_mD7F0C0D6F5D025B8E5D8FA6093D715E3E2D6414D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_set_NetworkmatchIndex_mE38D225BFC2E1E25D66C076E9CBC025D121DD3ED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_set_NetworkplayerNumber_mB1D8FC7DDFA50ACF3118B71B82FD17797269E9F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_set_NetworkscoreIndex_m0EB06183F96E9F4D3A4ABAD15EA0171B3F1DFD6A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_set_Networkscore_m2419F0AD2B208971FF2D3C57413A71D3A33400C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t PlayerScore_set_Networkscore_m901503AC45EE829EE07429D973D3C42D65F34415_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_CmdSend_mF28A6EBFBBA996DB4A39BF137E5735E96601EF07_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_DeserializeSyncVars_m093AEE35FD76FA9AC298294D8831D0DC3753DF6C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_DeserializeSyncVars_mF491B1122707D0393C4BE44AE6A7E4D310ED9642_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_FixedUpdate_mC62AAA84F5376C5484077731CE40DC7757983717_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_InvokeUserCode_CmdSend_mD55BE5FA8E7258C2AB51D7FC56FA59F2BF03D7AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_InvokeUserCode_RpcReceive_mFB6FA79E89417F3143E500E5BE953F7394A3475A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_OnPlayerDataChanged_m587DF3DEED39CA264A960FEE244D64D1318A5474_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_OnStartClient_m711B408D0BAEBFBE833E56F574D7B6249A1D4F5D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_OnStartServer_m30C08226C9E91CE9766F9F741871B669AC05EA21_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_RpcReceive_m010A44E7398D051BB7FDCAD62915A4EA09C5F5E3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_SerializeSyncVars_m98C9721889FCF36BA62D0ECD34424E6B0BACF1E7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_SerializeSyncVars_mCDF0DBB42A4252F669F815EE5D0430724971955D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_UpdateData_mE7C566930713DA18C25524119962AEF69959DAF7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_UserCode_CmdSend_mCF846A2C4CD008316D766BD9B9F9A113CA819663_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_UserCode_RpcReceive_m7A005149584B3AC4258EAB293CB18499FB80922A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player__cctor_mEDFBF64657884D17F1140D71FC22AA4563008552_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player__ctor_m32820D4B289A185E02CF84115E0FE3735B7B0DA9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player__ctor_m96744E42C738FA8A86DB28F753A6D336B5D3EA83_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player__ctor_mB7BC24454E901D9C7D2906D6F7EB1C0926101EF5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_add_OnMessage_m069F5EAF266ACF898ED70BB5EFCB71805997C8AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_remove_OnMessage_m0EE6773B16984A23188BBED763B4421FD0F9A935_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_set_NetworkplayerColor_mE4EF912D1ABC83009201BE72761AF49483D81CF2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_set_NetworkplayerData_mB781A57CD60BDA44FD67B3A50F840ECC5EFFE9B4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_set_NetworkplayerName_mB54F6C5CF791D16E93A6DE021176B0D69FCC7DBC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Player_set_NetworkplayerNo_m52257F6B3146D0B08EF56D5E8DF732ADE32FE9DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Projectile_DestroySelf_m5B6B7D0E5482882F2EB27359F06E91F60E3E53FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Projectile_OnStartServer_m40D37CC82544C7643AEE17E8B03766EBF2E9AB04_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Projectile_OnTriggerEnter_mFD17CEE3DC2A51B6EA2D464095F328B99539FD3C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Projectile_Start_m5C230A0906072EE269DD6F18E1AC1CFD7922A29B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Projectile__ctor_mCE92CD2A16DA4259706391DC52BB7E25D233D8AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_DeserializeSyncVars_m1AFA5B8DA45C1F135DF862DD5665B97F92B40B65_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_DeserializeSyncVars_m1B40DF5AAEDC406FA542C594F4EFD4BF86B21AB5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_DeserializeSyncVars_m378F4AA0D07BEEAF85A2E3F031A244B452CC3AED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_OnDestroy_m2CD378A5336A1E88E681FDAB3347F74CAE0F6AA6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_OnDestroy_m905DFE23834003F94C6A445EEBF14FBE48A34B40_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_OnDestroy_mA7A6F080ED16F0CF28A55CC7EF36E45F14CB325B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_SerializeSyncVars_m0630CD6E8F22D5E26A9FFB4F4520EEBD45F09936_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_SerializeSyncVars_m44B5A0BC11544BC239366CA3296507CB86B99C07_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_SerializeSyncVars_m604A072151BBDF55E255A3BD95690CF6709365EE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_SetColor_m008A39F56E2810F334CB86A9079E9058FF880924_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_SetColor_m6129B89CACF88207A69B7659AF624CEE8C8B8822_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_SetColor_mE9E8AC419541C8E5E38F1F8300FB897713FCDA77_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor__ctor_m78D07F08E45E0748485241BAD659B049D8C9D805_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor__ctor_mD65E3D099DE76D0FAC4DAB26F2C7C1A56B452C4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor__ctor_mF1B20EAFE83BF655FE459F0E92F26E6F9E81274D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_set_Networkcolor_mA7548122671BB11BE0060B116365D4421A11CA7A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_set_Networkcolor_mC71CB232936D5F775205D263B71C9234119B1A41_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t RandomColor_set_Networkcolor_mEBB96647EE45564A5F268F79C2CA346FCAB65429_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward_ClaimPrize_m6C16A3DBBF15ADE648EFFDC441BB855A84F89732_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward_ClaimPrize_m7D32C45A67CB57FDE7BA1BC3D23151D8B007170B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward_OnTriggerEnter_m3AC93B6AC27E050C83CE3833B5076B34ACC30947_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward_OnTriggerEnter_m7019EB2DECBF814220B1C3AB2A416C582101F60B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward_OnValidate_m007493ED137696BFE94510AF9E87D4C192CD68C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward_OnValidate_m133EC993CA3979212DE06257409C707694BA8E86_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward__cctor_m88483E8A98B5AD63B31AA8F03968BBDA9295845F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward__cctor_mA089D33415D76882802345C6A6D0D39CAEB3E818_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward__ctor_m6F5029A61786237E62E4E0347459E940921D0838_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Reward__ctor_m9969C1703175B1950296D8F591365EE394C00163_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ShootingTankBehaviour_DeserializeSyncVars_m2DC41C1E6926E0E4EFE77A1DB31C3E2BC79ACC90_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ShootingTankBehaviour_SerializeSyncVars_mC0AAD2C7AD3109F862B023AD2D28E918E1D605C7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ShootingTankBehaviour_ShootNearestPlayer_m2536B0878F33CB4FE80E4A38D5287D0C8AE1D93A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ShootingTankBehaviour_Start_mD9F65192165372E4C6646D2960699FF9BD9BA116_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ShootingTankBehaviour_Update_mF12B0B4D8F8F5E7FF15DBFA205EC671A986A220F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ShootingTankBehaviour__ctor_m512CBB9A858A09737F5BA1BB2B80E67C9138C742_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ShootingTankBehaviour_set_Networkrotation_mCFEED1FBD935D68240DD114588E2FDB3E31E7A59_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Spawner_SpawnPrize_m19B8F8C88F45244987B3FF734D57C6C7D9135E0D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Spawner_SpawnPrize_mEABE55BB4D832D85538D7CFBC6EC192272D38AEF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Spawner__ctor_mA9E18941126107A0792CB73702FC020B7B149E3A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Spawner__ctor_mD1805A49123B37F0C47737BA6EA21A6C3F944052_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager_AllowTankMovement_m5FCBE38BE3E84C10D03D1EF5327765B386C398A9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager_DisallowTankMovement_mF3B0B6FDC2991DA85BAC57203DD18787179A80A2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager_FindLocalTank_m286379602946290D14961ED273B4A3D1D299206A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager_GameOverCheck_m106F192D1DEECE0B97EF24BB3630E35732F33E05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager_GameReadyCheck_m3F60D6FED4FD0B67DB7255207A4A88A9CEE141E1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager_ShowReadyMenu_m51D09019A53E7EB05D6E449BABA4B00F1AEF99A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager_Update_m7E09DE0A18897F0B0719BE3353815983780293D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TankGameManager__ctor_m2368A709A11F9BBC90492D443C19A0A4C2D00F05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_CmdFire_m0171B75256D048D58241A7E9B74EDF09155D4C8E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_CmdReady_m78AAB418AE1DC7B5F798A9BC04FE61067F1BA977_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_DeserializeSyncVars_m588EE8294DD17A9A01AB3382A10D7A08A5F58C20_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_InvokeUserCode_CmdFire_m8B187B082DE58CED94A34E2167E0F2A3B0D1EF4A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_InvokeUserCode_CmdReady_m5B6DE52F097824FD911935253865077442537080_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_InvokeUserCode_RpcOnFire_m49BF45FC7E528190C8B0B33D50FFD1C81F95AE22_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_RpcOnFire_mEF7A49115867A9BF0A22B24534B380CA9B57E19D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_SerializeSyncVars_mD43B12580585595D4AC7964264340F8EE7365442_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_Update_mCE73459E9C27B5F40909F5ECC0149DCBE459C243_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_UserCode_CmdFire_mB685757843B7146FA587A360905BE762599F3070_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_UserCode_CmdReady_m00189A9E8401D2AE01228E9EDE0C62193F57FF41_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_UserCode_RpcOnFire_m72C1C6D425EF97D77C7A4E870E52F1B69327AD27_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank__cctor_m64F0633CAC66CB4DD7ADCE09884C1DEACDD58D83_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank__ctor_mD4F3B197D7FE9AC31EC888E8EB318E29AD58F62E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_set_Networkhealth_m507DDE5DDB11E1627F66444DB398722F8F4FD183_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_set_NetworkisReady_m3982E97244753820F657768E93EE51F65BD19F53_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Tank_set_Networkscore_m07BB7DE07AA067E4B46F4BE1DA8A8A8D531E50F2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CAddPlayerDelayedU3Ed__4_MoveNext_m4C3AF10EAA66AB63D30361B922AA1973BF57765B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CAddPlayerDelayedU3Ed__4_System_Collections_IEnumerator_Reset_mD5F9BF47393862ED66B8C6CEFAEB6F67E15F8791_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CAppendAndScrollU3Ed__8_MoveNext_m56AA638868107D575AFE1017A5CBE468180F0A06_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CAppendAndScrollU3Ed__8_System_Collections_IEnumerator_Reset_mED9C9CB1E1C37C6ABEE641847143DC4ED47B69FF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CLoadSubScenesU3Ed__3_MoveNext_mBD3701D32F9581995389A30C9A4F4E8EF8AB30D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CLoadSubScenesU3Ed__3_System_Collections_IEnumerator_Reset_m7AF605A8402A80BDDD97B214341B97BF4AF862EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CLoadSubScenesU3Ed__6_MoveNext_mA8597A9098F2E19009CA88AC11961D24DDF38EBC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CLoadSubScenesU3Ed__6_System_Collections_IEnumerator_Reset_m7CC1DD4CE5819A9A8CC5B3E901C2680341335AB6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3COnServerAddPlayerU3Eb__3_0_m3202D700BF36BA65DBC9D93191430B4872950567_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m3C1A9542D9AF5DC4382D50DDE4774A718691CE16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CUnloadClientSubScenesU3Ed__9_MoveNext_m20876C2C2BEBCA010FB38160D862D7C160AD1246_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CUnloadClientSubScenesU3Ed__9_System_Collections_IEnumerator_Reset_m7937D169E058A8CAF640A68AE8CBA17BEFCA0B81_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CUnloadScenesU3Ed__6_MoveNext_mA3B13AAAD2792BAFE12FF5373A745018A0A43B93_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CUnloadScenesU3Ed__6_System_Collections_IEnumerator_Reset_m8CF0EA4D4C0D1FB805739735EE8CFE689B31E1D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CUnloadSubScenesU3Ed__10_MoveNext_m724DD8070BA155BB95718785202848C1BF68878D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CUnloadSubScenesU3Ed__10_System_Collections_IEnumerator_Reset_mAD917AC441BFBEDE1B512B24C971D2C5CA76815C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ZoneHandler_OnTriggerEnter_m115F1187C0348FDA4B41C881C5B8AC12F1E0B044_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ZoneHandler_OnTriggerExit_mFBD2006FAF2E2B73DA7EEB6FBB6069EFE2C42A8D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ZoneHandler__cctor_m73A953F1598A0B02B8997E9D8963EF176FFC4FF9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ZoneHandler__ctor_mF853C3FDB9E5390F02996485269C5E289458A5ED_MetadataUsageId; struct ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 ; struct ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 ; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B; struct SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <Module> struct U3CModuleU3E_t9F8E07FC09BAC6C0CF940F5F75C18C0A172B2BB3 { public: public: }; // System.Object // Mirror.ClientScene struct ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901 : public RuntimeObject { public: public: }; struct ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields { public: // UnityEngine.ILogger Mirror.ClientScene::logger RuntimeObject* ___logger_0; // System.Boolean Mirror.ClientScene::isSpawnFinished bool ___isSpawnFinished_1; // Mirror.NetworkIdentity Mirror.ClientScene::_localPlayer NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ____localPlayer_2; // Mirror.ClientScene_LocalplayerChanged Mirror.ClientScene::onLocalPlayerChanged LocalplayerChanged_t153CFBEB17900932F679C9861C613D6FD98F7942 * ___onLocalPlayerChanged_3; // System.Boolean Mirror.ClientScene::<ready>k__BackingField bool ___U3CreadyU3Ek__BackingField_4; // Mirror.NetworkConnection Mirror.ClientScene::<readyConnection>k__BackingField NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___U3CreadyConnectionU3Ek__BackingField_5; // System.Collections.Generic.Dictionary`2<System.Guid,UnityEngine.GameObject> Mirror.ClientScene::prefabs Dictionary_2_t26A96311B045C0EA9BAAEF6E836C515D1F1A4663 * ___prefabs_6; // System.Collections.Generic.Dictionary`2<System.UInt64,Mirror.NetworkIdentity> Mirror.ClientScene::spawnableObjects Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C * ___spawnableObjects_7; // System.Collections.Generic.Dictionary`2<System.Guid,Mirror.SpawnHandlerDelegate> Mirror.ClientScene::spawnHandlers Dictionary_2_t7CC03CE2616B963DEA8AA98EAB118B8B8F6F31B5 * ___spawnHandlers_8; // System.Collections.Generic.Dictionary`2<System.Guid,Mirror.UnSpawnDelegate> Mirror.ClientScene::unspawnHandlers Dictionary_2_tF2595C06836CD6AF8DFA199D553B2AAB5F2C384A * ___unspawnHandlers_9; public: inline static int32_t get_offset_of_logger_0() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___logger_0)); } inline RuntimeObject* get_logger_0() const { return ___logger_0; } inline RuntimeObject** get_address_of_logger_0() { return &___logger_0; } inline void set_logger_0(RuntimeObject* value) { ___logger_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_0), (void*)value); } inline static int32_t get_offset_of_isSpawnFinished_1() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___isSpawnFinished_1)); } inline bool get_isSpawnFinished_1() const { return ___isSpawnFinished_1; } inline bool* get_address_of_isSpawnFinished_1() { return &___isSpawnFinished_1; } inline void set_isSpawnFinished_1(bool value) { ___isSpawnFinished_1 = value; } inline static int32_t get_offset_of__localPlayer_2() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ____localPlayer_2)); } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get__localPlayer_2() const { return ____localPlayer_2; } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of__localPlayer_2() { return &____localPlayer_2; } inline void set__localPlayer_2(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value) { ____localPlayer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____localPlayer_2), (void*)value); } inline static int32_t get_offset_of_onLocalPlayerChanged_3() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___onLocalPlayerChanged_3)); } inline LocalplayerChanged_t153CFBEB17900932F679C9861C613D6FD98F7942 * get_onLocalPlayerChanged_3() const { return ___onLocalPlayerChanged_3; } inline LocalplayerChanged_t153CFBEB17900932F679C9861C613D6FD98F7942 ** get_address_of_onLocalPlayerChanged_3() { return &___onLocalPlayerChanged_3; } inline void set_onLocalPlayerChanged_3(LocalplayerChanged_t153CFBEB17900932F679C9861C613D6FD98F7942 * value) { ___onLocalPlayerChanged_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___onLocalPlayerChanged_3), (void*)value); } inline static int32_t get_offset_of_U3CreadyU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___U3CreadyU3Ek__BackingField_4)); } inline bool get_U3CreadyU3Ek__BackingField_4() const { return ___U3CreadyU3Ek__BackingField_4; } inline bool* get_address_of_U3CreadyU3Ek__BackingField_4() { return &___U3CreadyU3Ek__BackingField_4; } inline void set_U3CreadyU3Ek__BackingField_4(bool value) { ___U3CreadyU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CreadyConnectionU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___U3CreadyConnectionU3Ek__BackingField_5)); } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_U3CreadyConnectionU3Ek__BackingField_5() const { return ___U3CreadyConnectionU3Ek__BackingField_5; } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_U3CreadyConnectionU3Ek__BackingField_5() { return &___U3CreadyConnectionU3Ek__BackingField_5; } inline void set_U3CreadyConnectionU3Ek__BackingField_5(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value) { ___U3CreadyConnectionU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CreadyConnectionU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_prefabs_6() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___prefabs_6)); } inline Dictionary_2_t26A96311B045C0EA9BAAEF6E836C515D1F1A4663 * get_prefabs_6() const { return ___prefabs_6; } inline Dictionary_2_t26A96311B045C0EA9BAAEF6E836C515D1F1A4663 ** get_address_of_prefabs_6() { return &___prefabs_6; } inline void set_prefabs_6(Dictionary_2_t26A96311B045C0EA9BAAEF6E836C515D1F1A4663 * value) { ___prefabs_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefabs_6), (void*)value); } inline static int32_t get_offset_of_spawnableObjects_7() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___spawnableObjects_7)); } inline Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C * get_spawnableObjects_7() const { return ___spawnableObjects_7; } inline Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C ** get_address_of_spawnableObjects_7() { return &___spawnableObjects_7; } inline void set_spawnableObjects_7(Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C * value) { ___spawnableObjects_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___spawnableObjects_7), (void*)value); } inline static int32_t get_offset_of_spawnHandlers_8() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___spawnHandlers_8)); } inline Dictionary_2_t7CC03CE2616B963DEA8AA98EAB118B8B8F6F31B5 * get_spawnHandlers_8() const { return ___spawnHandlers_8; } inline Dictionary_2_t7CC03CE2616B963DEA8AA98EAB118B8B8F6F31B5 ** get_address_of_spawnHandlers_8() { return &___spawnHandlers_8; } inline void set_spawnHandlers_8(Dictionary_2_t7CC03CE2616B963DEA8AA98EAB118B8B8F6F31B5 * value) { ___spawnHandlers_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___spawnHandlers_8), (void*)value); } inline static int32_t get_offset_of_unspawnHandlers_9() { return static_cast<int32_t>(offsetof(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields, ___unspawnHandlers_9)); } inline Dictionary_2_tF2595C06836CD6AF8DFA199D553B2AAB5F2C384A * get_unspawnHandlers_9() const { return ___unspawnHandlers_9; } inline Dictionary_2_tF2595C06836CD6AF8DFA199D553B2AAB5F2C384A ** get_address_of_unspawnHandlers_9() { return &___unspawnHandlers_9; } inline void set_unspawnHandlers_9(Dictionary_2_tF2595C06836CD6AF8DFA199D553B2AAB5F2C384A * value) { ___unspawnHandlers_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___unspawnHandlers_9), (void*)value); } }; // Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3 struct U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 : public RuntimeObject { public: // System.Int32 Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Mirror.Examples.Additive.AdditiveNetworkManager Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::<>4__this AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * ___U3CU3E4__this_2; // System.String[] Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::<>7__wrap1 StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___U3CU3E7__wrap1_3; // System.Int32 Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::<>7__wrap2 int32_t ___U3CU3E7__wrap2_4; // System.String Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::<sceneName>5__4 String_t* ___U3CsceneNameU3E5__4_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06, ___U3CU3E4__this_2)); } inline AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_3() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06, ___U3CU3E7__wrap1_3)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_U3CU3E7__wrap1_3() const { return ___U3CU3E7__wrap1_3; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_U3CU3E7__wrap1_3() { return &___U3CU3E7__wrap1_3; } inline void set_U3CU3E7__wrap1_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___U3CU3E7__wrap1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap2_4() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06, ___U3CU3E7__wrap2_4)); } inline int32_t get_U3CU3E7__wrap2_4() const { return ___U3CU3E7__wrap2_4; } inline int32_t* get_address_of_U3CU3E7__wrap2_4() { return &___U3CU3E7__wrap2_4; } inline void set_U3CU3E7__wrap2_4(int32_t value) { ___U3CU3E7__wrap2_4 = value; } inline static int32_t get_offset_of_U3CsceneNameU3E5__4_5() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06, ___U3CsceneNameU3E5__4_5)); } inline String_t* get_U3CsceneNameU3E5__4_5() const { return ___U3CsceneNameU3E5__4_5; } inline String_t** get_address_of_U3CsceneNameU3E5__4_5() { return &___U3CsceneNameU3E5__4_5; } inline void set_U3CsceneNameU3E5__4_5(String_t* value) { ___U3CsceneNameU3E5__4_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CsceneNameU3E5__4_5), (void*)value); } }; // Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6 struct U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D : public RuntimeObject { public: // System.Int32 Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Mirror.Examples.Additive.AdditiveNetworkManager Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::<>4__this AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * ___U3CU3E4__this_2; // System.String[] Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::<>7__wrap1 StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___U3CU3E7__wrap1_3; // System.Int32 Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::<>7__wrap2 int32_t ___U3CU3E7__wrap2_4; // System.String Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::<sceneName>5__4 String_t* ___U3CsceneNameU3E5__4_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D, ___U3CU3E4__this_2)); } inline AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap1_3() { return static_cast<int32_t>(offsetof(U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D, ___U3CU3E7__wrap1_3)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_U3CU3E7__wrap1_3() const { return ___U3CU3E7__wrap1_3; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_U3CU3E7__wrap1_3() { return &___U3CU3E7__wrap1_3; } inline void set_U3CU3E7__wrap1_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___U3CU3E7__wrap1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E7__wrap1_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E7__wrap2_4() { return static_cast<int32_t>(offsetof(U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D, ___U3CU3E7__wrap2_4)); } inline int32_t get_U3CU3E7__wrap2_4() const { return ___U3CU3E7__wrap2_4; } inline int32_t* get_address_of_U3CU3E7__wrap2_4() { return &___U3CU3E7__wrap2_4; } inline void set_U3CU3E7__wrap2_4(int32_t value) { ___U3CU3E7__wrap2_4 = value; } inline static int32_t get_offset_of_U3CsceneNameU3E5__4_5() { return static_cast<int32_t>(offsetof(U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D, ___U3CsceneNameU3E5__4_5)); } inline String_t* get_U3CsceneNameU3E5__4_5() const { return ___U3CsceneNameU3E5__4_5; } inline String_t** get_address_of_U3CsceneNameU3E5__4_5() { return &___U3CsceneNameU3E5__4_5; } inline void set_U3CsceneNameU3E5__4_5(String_t* value) { ___U3CsceneNameU3E5__4_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CsceneNameU3E5__4_5), (void*)value); } }; // Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8 struct U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E : public RuntimeObject { public: // System.Int32 Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Mirror.Examples.Chat.ChatWindow Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::<>4__this ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * ___U3CU3E4__this_2; // System.String Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::message String_t* ___message_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E, ___U3CU3E4__this_2)); } inline ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_message_3() { return static_cast<int32_t>(offsetof(U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E, ___message_3)); } inline String_t* get_message_3() const { return ___message_3; } inline String_t** get_address_of_message_3() { return &___message_3; } inline void set_message_3(String_t* value) { ___message_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___message_3), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4 struct U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 : public RuntimeObject { public: // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Mirror.NetworkConnection Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::conn NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_2; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::<>4__this MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * ___U3CU3E4__this_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_conn_2() { return static_cast<int32_t>(offsetof(U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459, ___conn_2)); } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_conn_2() const { return ___conn_2; } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_conn_2() { return &___conn_2; } inline void set_conn_2(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value) { ___conn_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___conn_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459, ___U3CU3E4__this_3)); } inline MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; } inline MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; } inline void set_U3CU3E4__this_3(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * value) { ___U3CU3E4__this_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6 struct U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 : public RuntimeObject { public: // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::<>4__this MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * ___U3CU3E4__this_2; // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::<index>5__2 int32_t ___U3CindexU3E5__2_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34, ___U3CU3E4__this_2)); } inline MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CindexU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34, ___U3CindexU3E5__2_3)); } inline int32_t get_U3CindexU3E5__2_3() const { return ___U3CindexU3E5__2_3; } inline int32_t* get_address_of_U3CindexU3E5__2_3() { return &___U3CindexU3E5__2_3; } inline void set_U3CindexU3E5__2_3(int32_t value) { ___U3CindexU3E5__2_3 = value; } }; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9 struct U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 : public RuntimeObject { public: // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::<index>5__2 int32_t ___U3CindexU3E5__2_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CindexU3E5__2_2() { return static_cast<int32_t>(offsetof(U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9, ___U3CindexU3E5__2_2)); } inline int32_t get_U3CindexU3E5__2_2() const { return ___U3CindexU3E5__2_2; } inline int32_t* get_address_of_U3CindexU3E5__2_2() { return &___U3CindexU3E5__2_2; } inline void set_U3CindexU3E5__2_2(int32_t value) { ___U3CindexU3E5__2_2 = value; } }; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10 struct U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 : public RuntimeObject { public: // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::<>1__state int32_t ___U3CU3E1__state_0; // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::<>2__current RuntimeObject * ___U3CU3E2__current_1; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::<>4__this MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * ___U3CU3E4__this_2; // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::<index>5__2 int32_t ___U3CindexU3E5__2_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5, ___U3CU3E4__this_2)); } inline MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CindexU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5, ___U3CindexU3E5__2_3)); } inline int32_t get_U3CindexU3E5__2_3() const { return ___U3CindexU3E5__2_3; } inline int32_t* get_address_of_U3CindexU3E5__2_3() { return &___U3CindexU3E5__2_3; } inline void set_U3CindexU3E5__2_3(int32_t value) { ___U3CindexU3E5__2_3 = value; } }; // Mirror.Examples.Pong.NetworkManagerPong_<>c struct U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 : public RuntimeObject { public: public: }; struct U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields { public: // Mirror.Examples.Pong.NetworkManagerPong_<>c Mirror.Examples.Pong.NetworkManagerPong_<>c::<>9 U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * ___U3CU3E9_0; // System.Predicate`1<UnityEngine.GameObject> Mirror.Examples.Pong.NetworkManagerPong_<>c::<>9__3_0 Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * ___U3CU3E9__3_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__3_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields, ___U3CU3E9__3_0_1)); } inline Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * get_U3CU3E9__3_0_1() const { return ___U3CU3E9__3_0_1; } inline Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B ** get_address_of_U3CU3E9__3_0_1() { return &___U3CU3E9__3_0_1; } inline void set_U3CU3E9__3_0_1(Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * value) { ___U3CU3E9__3_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__3_0_1), (void*)value); } }; // Mirror.MessageBase struct MessageBase_t01317AB1C42AAD54FF16B5AE93DE52B1247F07EE : public RuntimeObject { public: public: }; // Mirror.NetworkConnection struct NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 : public RuntimeObject { public: // System.Collections.Generic.HashSet`1<Mirror.NetworkIdentity> Mirror.NetworkConnection::visList HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB * ___visList_2; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkMessageDelegate> Mirror.NetworkConnection::messageHandlers Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * ___messageHandlers_3; // System.Int32 Mirror.NetworkConnection::connectionId int32_t ___connectionId_4; // System.Boolean Mirror.NetworkConnection::isAuthenticated bool ___isAuthenticated_5; // System.Object Mirror.NetworkConnection::authenticationData RuntimeObject * ___authenticationData_6; // System.Boolean Mirror.NetworkConnection::isReady bool ___isReady_7; // System.Single Mirror.NetworkConnection::lastMessageTime float ___lastMessageTime_8; // Mirror.NetworkIdentity Mirror.NetworkConnection::<identity>k__BackingField NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___U3CidentityU3Ek__BackingField_9; // System.Collections.Generic.HashSet`1<Mirror.NetworkIdentity> Mirror.NetworkConnection::clientOwnedObjects HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB * ___clientOwnedObjects_10; // System.Boolean Mirror.NetworkConnection::logNetworkMessages bool ___logNetworkMessages_11; public: inline static int32_t get_offset_of_visList_2() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___visList_2)); } inline HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB * get_visList_2() const { return ___visList_2; } inline HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB ** get_address_of_visList_2() { return &___visList_2; } inline void set_visList_2(HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB * value) { ___visList_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___visList_2), (void*)value); } inline static int32_t get_offset_of_messageHandlers_3() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___messageHandlers_3)); } inline Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * get_messageHandlers_3() const { return ___messageHandlers_3; } inline Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB ** get_address_of_messageHandlers_3() { return &___messageHandlers_3; } inline void set_messageHandlers_3(Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * value) { ___messageHandlers_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___messageHandlers_3), (void*)value); } inline static int32_t get_offset_of_connectionId_4() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___connectionId_4)); } inline int32_t get_connectionId_4() const { return ___connectionId_4; } inline int32_t* get_address_of_connectionId_4() { return &___connectionId_4; } inline void set_connectionId_4(int32_t value) { ___connectionId_4 = value; } inline static int32_t get_offset_of_isAuthenticated_5() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___isAuthenticated_5)); } inline bool get_isAuthenticated_5() const { return ___isAuthenticated_5; } inline bool* get_address_of_isAuthenticated_5() { return &___isAuthenticated_5; } inline void set_isAuthenticated_5(bool value) { ___isAuthenticated_5 = value; } inline static int32_t get_offset_of_authenticationData_6() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___authenticationData_6)); } inline RuntimeObject * get_authenticationData_6() const { return ___authenticationData_6; } inline RuntimeObject ** get_address_of_authenticationData_6() { return &___authenticationData_6; } inline void set_authenticationData_6(RuntimeObject * value) { ___authenticationData_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___authenticationData_6), (void*)value); } inline static int32_t get_offset_of_isReady_7() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___isReady_7)); } inline bool get_isReady_7() const { return ___isReady_7; } inline bool* get_address_of_isReady_7() { return &___isReady_7; } inline void set_isReady_7(bool value) { ___isReady_7 = value; } inline static int32_t get_offset_of_lastMessageTime_8() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___lastMessageTime_8)); } inline float get_lastMessageTime_8() const { return ___lastMessageTime_8; } inline float* get_address_of_lastMessageTime_8() { return &___lastMessageTime_8; } inline void set_lastMessageTime_8(float value) { ___lastMessageTime_8 = value; } inline static int32_t get_offset_of_U3CidentityU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___U3CidentityU3Ek__BackingField_9)); } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_U3CidentityU3Ek__BackingField_9() const { return ___U3CidentityU3Ek__BackingField_9; } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_U3CidentityU3Ek__BackingField_9() { return &___U3CidentityU3Ek__BackingField_9; } inline void set_U3CidentityU3Ek__BackingField_9(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value) { ___U3CidentityU3Ek__BackingField_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CidentityU3Ek__BackingField_9), (void*)value); } inline static int32_t get_offset_of_clientOwnedObjects_10() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___clientOwnedObjects_10)); } inline HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB * get_clientOwnedObjects_10() const { return ___clientOwnedObjects_10; } inline HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB ** get_address_of_clientOwnedObjects_10() { return &___clientOwnedObjects_10; } inline void set_clientOwnedObjects_10(HashSet_1_t19F8A6C377BCFE856EC71FD9AFD391FB6B07C9FB * value) { ___clientOwnedObjects_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___clientOwnedObjects_10), (void*)value); } inline static int32_t get_offset_of_logNetworkMessages_11() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311, ___logNetworkMessages_11)); } inline bool get_logNetworkMessages_11() const { return ___logNetworkMessages_11; } inline bool* get_address_of_logNetworkMessages_11() { return &___logNetworkMessages_11; } inline void set_logNetworkMessages_11(bool value) { ___logNetworkMessages_11 = value; } }; struct NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkConnection::logger RuntimeObject* ___logger_1; public: inline static int32_t get_offset_of_logger_1() { return static_cast<int32_t>(offsetof(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311_StaticFields, ___logger_1)); } inline RuntimeObject* get_logger_1() const { return ___logger_1; } inline RuntimeObject** get_address_of_logger_1() { return &___logger_1; } inline void set_logger_1(RuntimeObject* value) { ___logger_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_1), (void*)value); } }; // Mirror.NetworkServer struct NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD : public RuntimeObject { public: public: }; struct NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkServer::logger RuntimeObject* ___logger_0; // System.Boolean Mirror.NetworkServer::initialized bool ___initialized_1; // System.Int32 Mirror.NetworkServer::maxConnections int32_t ___maxConnections_2; // Mirror.NetworkConnectionToClient Mirror.NetworkServer::<localConnection>k__BackingField NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * ___U3ClocalConnectionU3Ek__BackingField_3; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkConnectionToClient> Mirror.NetworkServer::connections Dictionary_2_tAD6238DE65EB68DD8A388524E59EB7B8AA098999 * ___connections_4; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkMessageDelegate> Mirror.NetworkServer::handlers Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * ___handlers_5; // System.Boolean Mirror.NetworkServer::dontListen bool ___dontListen_6; // System.Boolean Mirror.NetworkServer::<active>k__BackingField bool ___U3CactiveU3Ek__BackingField_7; // System.Boolean Mirror.NetworkServer::disconnectInactiveConnections bool ___disconnectInactiveConnections_8; // System.Single Mirror.NetworkServer::disconnectInactiveTimeout float ___disconnectInactiveTimeout_9; // System.Collections.Generic.List`1<System.Int32> Mirror.NetworkServer::connectionIdsCache List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___connectionIdsCache_10; public: inline static int32_t get_offset_of_logger_0() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___logger_0)); } inline RuntimeObject* get_logger_0() const { return ___logger_0; } inline RuntimeObject** get_address_of_logger_0() { return &___logger_0; } inline void set_logger_0(RuntimeObject* value) { ___logger_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_0), (void*)value); } inline static int32_t get_offset_of_initialized_1() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___initialized_1)); } inline bool get_initialized_1() const { return ___initialized_1; } inline bool* get_address_of_initialized_1() { return &___initialized_1; } inline void set_initialized_1(bool value) { ___initialized_1 = value; } inline static int32_t get_offset_of_maxConnections_2() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___maxConnections_2)); } inline int32_t get_maxConnections_2() const { return ___maxConnections_2; } inline int32_t* get_address_of_maxConnections_2() { return &___maxConnections_2; } inline void set_maxConnections_2(int32_t value) { ___maxConnections_2 = value; } inline static int32_t get_offset_of_U3ClocalConnectionU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___U3ClocalConnectionU3Ek__BackingField_3)); } inline NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * get_U3ClocalConnectionU3Ek__BackingField_3() const { return ___U3ClocalConnectionU3Ek__BackingField_3; } inline NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A ** get_address_of_U3ClocalConnectionU3Ek__BackingField_3() { return &___U3ClocalConnectionU3Ek__BackingField_3; } inline void set_U3ClocalConnectionU3Ek__BackingField_3(NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * value) { ___U3ClocalConnectionU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3ClocalConnectionU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_connections_4() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___connections_4)); } inline Dictionary_2_tAD6238DE65EB68DD8A388524E59EB7B8AA098999 * get_connections_4() const { return ___connections_4; } inline Dictionary_2_tAD6238DE65EB68DD8A388524E59EB7B8AA098999 ** get_address_of_connections_4() { return &___connections_4; } inline void set_connections_4(Dictionary_2_tAD6238DE65EB68DD8A388524E59EB7B8AA098999 * value) { ___connections_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___connections_4), (void*)value); } inline static int32_t get_offset_of_handlers_5() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___handlers_5)); } inline Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * get_handlers_5() const { return ___handlers_5; } inline Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB ** get_address_of_handlers_5() { return &___handlers_5; } inline void set_handlers_5(Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * value) { ___handlers_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___handlers_5), (void*)value); } inline static int32_t get_offset_of_dontListen_6() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___dontListen_6)); } inline bool get_dontListen_6() const { return ___dontListen_6; } inline bool* get_address_of_dontListen_6() { return &___dontListen_6; } inline void set_dontListen_6(bool value) { ___dontListen_6 = value; } inline static int32_t get_offset_of_U3CactiveU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___U3CactiveU3Ek__BackingField_7)); } inline bool get_U3CactiveU3Ek__BackingField_7() const { return ___U3CactiveU3Ek__BackingField_7; } inline bool* get_address_of_U3CactiveU3Ek__BackingField_7() { return &___U3CactiveU3Ek__BackingField_7; } inline void set_U3CactiveU3Ek__BackingField_7(bool value) { ___U3CactiveU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_disconnectInactiveConnections_8() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___disconnectInactiveConnections_8)); } inline bool get_disconnectInactiveConnections_8() const { return ___disconnectInactiveConnections_8; } inline bool* get_address_of_disconnectInactiveConnections_8() { return &___disconnectInactiveConnections_8; } inline void set_disconnectInactiveConnections_8(bool value) { ___disconnectInactiveConnections_8 = value; } inline static int32_t get_offset_of_disconnectInactiveTimeout_9() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___disconnectInactiveTimeout_9)); } inline float get_disconnectInactiveTimeout_9() const { return ___disconnectInactiveTimeout_9; } inline float* get_address_of_disconnectInactiveTimeout_9() { return &___disconnectInactiveTimeout_9; } inline void set_disconnectInactiveTimeout_9(float value) { ___disconnectInactiveTimeout_9 = value; } inline static int32_t get_offset_of_connectionIdsCache_10() { return static_cast<int32_t>(offsetof(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields, ___connectionIdsCache_10)); } inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * get_connectionIdsCache_10() const { return ___connectionIdsCache_10; } inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 ** get_address_of_connectionIdsCache_10() { return &___connectionIdsCache_10; } inline void set_connectionIdsCache_10(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * value) { ___connectionIdsCache_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___connectionIdsCache_10), (void*)value); } }; // Mirror.NetworkWriter struct NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A : public RuntimeObject { public: // System.Byte[] Mirror.NetworkWriter::buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer_1; // System.Int32 Mirror.NetworkWriter::position int32_t ___position_2; // System.Int32 Mirror.NetworkWriter::length int32_t ___length_3; public: inline static int32_t get_offset_of_buffer_1() { return static_cast<int32_t>(offsetof(NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A, ___buffer_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buffer_1() const { return ___buffer_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buffer_1() { return &___buffer_1; } inline void set_buffer_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buffer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_1), (void*)value); } inline static int32_t get_offset_of_position_2() { return static_cast<int32_t>(offsetof(NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A, ___position_2)); } inline int32_t get_position_2() const { return ___position_2; } inline int32_t* get_address_of_position_2() { return &___position_2; } inline void set_position_2(int32_t value) { ___position_2 = value; } inline static int32_t get_offset_of_length_3() { return static_cast<int32_t>(offsetof(NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A, ___length_3)); } inline int32_t get_length_3() const { return ___length_3; } inline int32_t* get_address_of_length_3() { return &___length_3; } inline void set_length_3(int32_t value) { ___length_3 = value; } }; struct Il2CppArrayBounds; // System.Array // System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,Mirror.NetworkConnection> struct ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A, ___dictionary_0)); } inline Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkConnection> struct Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t24F7FE49124BA1600F310A5AF59F2C57C93E5CFA* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t92F5680C55850A065B69D49747E4BF0CB199F03C * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___entries_1)); } inline EntryU5BU5D_t24F7FE49124BA1600F310A5AF59F2C57C93E5CFA* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t24F7FE49124BA1600F310A5AF59F2C57C93E5CFA** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t24F7FE49124BA1600F310A5AF59F2C57C93E5CFA* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___keys_7)); } inline KeyCollection_t92F5680C55850A065B69D49747E4BF0CB199F03C * get_keys_7() const { return ___keys_7; } inline KeyCollection_t92F5680C55850A065B69D49747E4BF0CB199F03C ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t92F5680C55850A065B69D49747E4BF0CB199F03C * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ___values_8)); } inline ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A * get_values_8() const { return ___values_8; } inline ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,Mirror.NetworkIdentity> struct Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t4ECB9AC48BAD6751EEA76C170C055967F8BE8BEB* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6DF9AB53069A866CB40854740C4F3F91AE8CF439 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0B7B9EE155BCCDAAB768AA1695C8AECDDB1F7FBF * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___entries_1)); } inline EntryU5BU5D_t4ECB9AC48BAD6751EEA76C170C055967F8BE8BEB* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t4ECB9AC48BAD6751EEA76C170C055967F8BE8BEB** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t4ECB9AC48BAD6751EEA76C170C055967F8BE8BEB* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___keys_7)); } inline KeyCollection_t6DF9AB53069A866CB40854740C4F3F91AE8CF439 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6DF9AB53069A866CB40854740C4F3F91AE8CF439 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6DF9AB53069A866CB40854740C4F3F91AE8CF439 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ___values_8)); } inline ValueCollection_t0B7B9EE155BCCDAAB768AA1695C8AECDDB1F7FBF * get_values_8() const { return ___values_8; } inline ValueCollection_t0B7B9EE155BCCDAAB768AA1695C8AECDDB1F7FBF ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0B7B9EE155BCCDAAB768AA1695C8AECDDB1F7FBF * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank> struct List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8, ____items_1)); } inline TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511* get__items_1() const { return ____items_1; } inline TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8_StaticFields, ____emptyArray_5)); } inline TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511* get__emptyArray_5() const { return ____emptyArray_5; } inline TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TankU5BU5D_tFBC014D5DBC8C37378F3DE6D94D71544AB050511* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Object> struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<UnityEngine.GameObject> struct List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5, ____items_1)); } inline GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* get__items_1() const { return ____items_1; } inline GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642** get_address_of__items_1() { return &____items_1; } inline void set__items_1(GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5_StaticFields, ____emptyArray_5)); } inline GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* get__emptyArray_5() const { return ____emptyArray_5; } inline GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene> struct List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2, ____items_1)); } inline SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115* get__items_1() const { return ____items_1; } inline SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115** get_address_of__items_1() { return &____items_1; } inline void set__items_1(SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2_StaticFields, ____emptyArray_5)); } inline SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115* get__emptyArray_5() const { return ____emptyArray_5; } inline SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { }; // Mirror.Examples.Chat.ChatNetworkManager_CreatePlayerMessage struct CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 : public MessageBase_t01317AB1C42AAD54FF16B5AE93DE52B1247F07EE { public: // System.String Mirror.Examples.Chat.ChatNetworkManager_CreatePlayerMessage::name String_t* ___name_0; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } }; // Mirror.NetworkConnectionToClient struct NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A : public NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 { public: // System.Collections.Generic.List`1<System.Int32> Mirror.NetworkConnectionToClient::singleConnectionId List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___singleConnectionId_13; public: inline static int32_t get_offset_of_singleConnectionId_13() { return static_cast<int32_t>(offsetof(NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A, ___singleConnectionId_13)); } inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * get_singleConnectionId_13() const { return ___singleConnectionId_13; } inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 ** get_address_of_singleConnectionId_13() { return &___singleConnectionId_13; } inline void set_singleConnectionId_13(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * value) { ___singleConnectionId_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___singleConnectionId_13), (void*)value); } }; struct NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkConnectionToClient::logger RuntimeObject* ___logger_12; public: inline static int32_t get_offset_of_logger_12() { return static_cast<int32_t>(offsetof(NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A_StaticFields, ___logger_12)); } inline RuntimeObject* get_logger_12() const { return ___logger_12; } inline RuntimeObject** get_address_of_logger_12() { return &___logger_12; } inline void set_logger_12(RuntimeObject* value) { ___logger_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_12), (void*)value); } }; // Mirror.PooledNetworkWriter struct PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 : public NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A { public: public: }; // System.ArraySegment`1<System.Byte> struct ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE { public: // T[] System.ArraySegment`1::_array ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____array_0; // System.Int32 System.ArraySegment`1::_offset int32_t ____offset_1; // System.Int32 System.ArraySegment`1::_count int32_t ____count_2; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE, ____array_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__array_0() const { return ____array_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE, ____offset_1)); } inline int32_t get__offset_1() const { return ____offset_1; } inline int32_t* get_address_of__offset_1() { return &____offset_1; } inline void set__offset_1(int32_t value) { ____offset_1 = value; } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE, ____count_2)); } inline int32_t get__count_2() const { return ____count_2; } inline int32_t* get_address_of__count_2() { return &____count_2; } inline void set__count_2(int32_t value) { ____count_2 = value; } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,Mirror.NetworkConnection> struct Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A, ___dictionary_0)); } inline Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A, ___currentValue_3)); } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_currentValue_3() const { return ___currentValue_3; } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object> struct Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,Mirror.NetworkIdentity> struct KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566, ___key_0)); } inline uint32_t get_key_0() const { return ___key_0; } inline uint32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566, ___value_1)); } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_value_1() const { return ___value_1; } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object> struct KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___key_0)); } inline uint32_t get_key_0() const { return ___key_0; } inline uint32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<Mirror.Examples.Tanks.Tank> struct Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4, ___list_0)); } inline List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * get_list_0() const { return ___list_0; } inline List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4, ___current_3)); } inline Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * get_current_3() const { return ___current_3; } inline Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Object> struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // UnityEngine.Color struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // UnityEngine.Color32 struct Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D { public: union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___rgba_0)); } inline int32_t get_rgba_0() const { return ___rgba_0; } inline int32_t* get_address_of_rgba_0() { return &___rgba_0; } inline void set_rgba_0(int32_t value) { ___rgba_0 = value; } inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___r_1)); } inline uint8_t get_r_1() const { return ___r_1; } inline uint8_t* get_address_of_r_1() { return &___r_1; } inline void set_r_1(uint8_t value) { ___r_1 = value; } inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___g_2)); } inline uint8_t get_g_2() const { return ___g_2; } inline uint8_t* get_address_of_g_2() { return &___g_2; } inline void set_g_2(uint8_t value) { ___g_2 = value; } inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___b_3)); } inline uint8_t get_b_3() const { return ___b_3; } inline uint8_t* get_address_of_b_3() { return &___b_3; } inline void set_b_3(uint8_t value) { ___b_3 = value; } inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___a_4)); } inline uint8_t get_a_4() const { return ___a_4; } inline uint8_t* get_address_of_a_4() { return &___a_4; } inline void set_a_4(uint8_t value) { ___a_4 = value; } }; // UnityEngine.DrivenRectTransformTracker struct DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 { public: union { struct { }; uint8_t DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2__padding[1]; }; public: }; // UnityEngine.PhysicsScene struct PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 { public: // System.Int32 UnityEngine.PhysicsScene::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678, ___m_Handle_0)); } inline int32_t get_m_Handle_0() const { return ___m_Handle_0; } inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(int32_t value) { ___m_Handle_0 = value; } }; // UnityEngine.PhysicsScene2D struct PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 { public: // System.Int32 UnityEngine.PhysicsScene2D::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48, ___m_Handle_0)); } inline int32_t get_m_Handle_0() const { return ___m_Handle_0; } inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(int32_t value) { ___m_Handle_0 = value; } }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // UnityEngine.Rect struct Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 { public: // System.Single UnityEngine.Rect::m_XMin float ___m_XMin_0; // System.Single UnityEngine.Rect::m_YMin float ___m_YMin_1; // System.Single UnityEngine.Rect::m_Width float ___m_Width_2; // System.Single UnityEngine.Rect::m_Height float ___m_Height_3; public: inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_XMin_0)); } inline float get_m_XMin_0() const { return ___m_XMin_0; } inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; } inline void set_m_XMin_0(float value) { ___m_XMin_0 = value; } inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_YMin_1)); } inline float get_m_YMin_1() const { return ___m_YMin_1; } inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; } inline void set_m_YMin_1(float value) { ___m_YMin_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Width_2)); } inline float get_m_Width_2() const { return ___m_Width_2; } inline float* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(float value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Height_3)); } inline float get_m_Height_3() const { return ___m_Height_3; } inline float* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(float value) { ___m_Height_3 = value; } }; // UnityEngine.SceneManagement.Scene struct Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE { public: // System.Int32 UnityEngine.SceneManagement.Scene::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE, ___m_Handle_0)); } inline int32_t get_m_Handle_0() const { return ___m_Handle_0; } inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(int32_t value) { ___m_Handle_0 = value; } }; // UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E { public: // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; public: inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_HighlightedSprite_0)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; } inline void set_m_HighlightedSprite_0(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_HighlightedSprite_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value); } inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_PressedSprite_1)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; } inline void set_m_PressedSprite_1(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_PressedSprite_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value); } inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_SelectedSprite_2)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; } inline void set_m_SelectedSprite_2(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_SelectedSprite_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value); } inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_DisabledSprite_3)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; } inline void set_m_DisabledSprite_3(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_DisabledSprite_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_pinvoke { Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; }; // Native definition for COM marshalling of UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_com { Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; }; // UnityEngine.Vector2 struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___negativeInfinityVector_8 = value; } }; // UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.Single UnityEngine.WaitForSeconds::m_Seconds float ___m_Seconds_0; public: inline static int32_t get_offset_of_m_Seconds_0() { return static_cast<int32_t>(offsetof(WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013, ___m_Seconds_0)); } inline float get_m_Seconds_0() const { return ___m_Seconds_0; } inline float* get_address_of_m_Seconds_0() { return &___m_Seconds_0; } inline void set_m_Seconds_0(float value) { ___m_Seconds_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { float ___m_Seconds_0; }; // Native definition for COM marshalling of UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { float ___m_Seconds_0; }; // Mirror.ConnectState struct ConnectState_t15686F4328D9B1B20E6771C0FED6F2AE85FBB129 { public: // System.Int32 Mirror.ConnectState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectState_t15686F4328D9B1B20E6771C0FED6F2AE85FBB129, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Mirror.NetworkManagerMode struct NetworkManagerMode_t53B2212CEC3ED0A68CA0BE2365C233C7E2C83DFD { public: // System.Int32 Mirror.NetworkManagerMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkManagerMode_t53B2212CEC3ED0A68CA0BE2365C233C7E2C83DFD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Mirror.NetworkReader struct NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 : public RuntimeObject { public: // System.ArraySegment`1<System.Byte> Mirror.NetworkReader::buffer ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___buffer_0; // System.Int32 Mirror.NetworkReader::Position int32_t ___Position_1; public: inline static int32_t get_offset_of_buffer_0() { return static_cast<int32_t>(offsetof(NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9, ___buffer_0)); } inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE get_buffer_0() const { return ___buffer_0; } inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE * get_address_of_buffer_0() { return &___buffer_0; } inline void set_buffer_0(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE value) { ___buffer_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___buffer_0))->____array_0), (void*)NULL); } inline static int32_t get_offset_of_Position_1() { return static_cast<int32_t>(offsetof(NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9, ___Position_1)); } inline int32_t get_Position_1() const { return ___Position_1; } inline int32_t* get_address_of_Position_1() { return &___Position_1; } inline void set_Position_1(int32_t value) { ___Position_1 = value; } }; // Mirror.PlayerSpawnMethod struct PlayerSpawnMethod_t621298130B9992D978B1AC813054DBE1D43D7D96 { public: // System.Int32 Mirror.PlayerSpawnMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlayerSpawnMethod_t621298130B9992D978B1AC813054DBE1D43D7D96, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Mirror.SceneOperation struct SceneOperation_t43180D185C1D8F6FF33FC8A61F3AC3528627667E { public: // System.Byte Mirror.SceneOperation::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SceneOperation_t43180D185C1D8F6FF33FC8A61F3AC3528627667E, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // Mirror.SyncMode struct SyncMode_t01A8CEC78393EC5639637113BC865A2E829842C2 { public: // System.Int32 Mirror.SyncMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SyncMode_t01A8CEC78393EC5639637113BC865A2E829842C2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.UInt32,Mirror.NetworkIdentity> struct Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E, ___dictionary_0)); } inline Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E, ___current_3)); } inline KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2_Enumerator<System.UInt32,System.Object> struct Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___current_3)); } inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA get_current_3() const { return ___current_3; } inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.IntPtr UnityEngine.AsyncOperation::m_Ptr intptr_t ___m_Ptr_0; // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * ___m_completeCallback_1; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } inline static int32_t get_offset_of_m_completeCallback_1() { return static_cast<int32_t>(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_completeCallback_1)); } inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * get_m_completeCallback_1() const { return ___m_completeCallback_1; } inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 ** get_address_of_m_completeCallback_1() { return &___m_completeCallback_1; } inline void set_m_completeCallback_1(Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * value) { ___m_completeCallback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_completeCallback_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { intptr_t ___m_Ptr_0; Il2CppMethodPointer ___m_completeCallback_1; }; // Native definition for COM marshalling of UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { intptr_t ___m_Ptr_0; Il2CppMethodPointer ___m_completeCallback_1; }; // UnityEngine.Bounds struct Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 { public: // UnityEngine.Vector3 UnityEngine.Bounds::m_Center Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Center_0; // UnityEngine.Vector3 UnityEngine.Bounds::m_Extents Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Extents_1; public: inline static int32_t get_offset_of_m_Center_0() { return static_cast<int32_t>(offsetof(Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37, ___m_Center_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Center_0() const { return ___m_Center_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Center_0() { return &___m_Center_0; } inline void set_m_Center_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Center_0 = value; } inline static int32_t get_offset_of_m_Extents_1() { return static_cast<int32_t>(offsetof(Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37, ___m_Extents_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Extents_1() const { return ___m_Extents_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Extents_1() { return &___m_Extents_1; } inline void set_m_Extents_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Extents_1 = value; } }; // UnityEngine.Collision struct Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0 : public RuntimeObject { public: // UnityEngine.Vector3 UnityEngine.Collision::m_Impulse Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Impulse_0; // UnityEngine.Vector3 UnityEngine.Collision::m_RelativeVelocity Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_RelativeVelocity_1; // UnityEngine.Rigidbody UnityEngine.Collision::m_Rigidbody Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___m_Rigidbody_2; // UnityEngine.Collider UnityEngine.Collision::m_Collider Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___m_Collider_3; // System.Int32 UnityEngine.Collision::m_ContactCount int32_t ___m_ContactCount_4; // UnityEngine.ContactPoint[] UnityEngine.Collision::m_ReusedContacts ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* ___m_ReusedContacts_5; // UnityEngine.ContactPoint[] UnityEngine.Collision::m_LegacyContacts ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* ___m_LegacyContacts_6; public: inline static int32_t get_offset_of_m_Impulse_0() { return static_cast<int32_t>(offsetof(Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0, ___m_Impulse_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Impulse_0() const { return ___m_Impulse_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Impulse_0() { return &___m_Impulse_0; } inline void set_m_Impulse_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Impulse_0 = value; } inline static int32_t get_offset_of_m_RelativeVelocity_1() { return static_cast<int32_t>(offsetof(Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0, ___m_RelativeVelocity_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_RelativeVelocity_1() const { return ___m_RelativeVelocity_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_RelativeVelocity_1() { return &___m_RelativeVelocity_1; } inline void set_m_RelativeVelocity_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_RelativeVelocity_1 = value; } inline static int32_t get_offset_of_m_Rigidbody_2() { return static_cast<int32_t>(offsetof(Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0, ___m_Rigidbody_2)); } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_m_Rigidbody_2() const { return ___m_Rigidbody_2; } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_m_Rigidbody_2() { return &___m_Rigidbody_2; } inline void set_m_Rigidbody_2(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value) { ___m_Rigidbody_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Rigidbody_2), (void*)value); } inline static int32_t get_offset_of_m_Collider_3() { return static_cast<int32_t>(offsetof(Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0, ___m_Collider_3)); } inline Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * get_m_Collider_3() const { return ___m_Collider_3; } inline Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 ** get_address_of_m_Collider_3() { return &___m_Collider_3; } inline void set_m_Collider_3(Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * value) { ___m_Collider_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Collider_3), (void*)value); } inline static int32_t get_offset_of_m_ContactCount_4() { return static_cast<int32_t>(offsetof(Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0, ___m_ContactCount_4)); } inline int32_t get_m_ContactCount_4() const { return ___m_ContactCount_4; } inline int32_t* get_address_of_m_ContactCount_4() { return &___m_ContactCount_4; } inline void set_m_ContactCount_4(int32_t value) { ___m_ContactCount_4 = value; } inline static int32_t get_offset_of_m_ReusedContacts_5() { return static_cast<int32_t>(offsetof(Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0, ___m_ReusedContacts_5)); } inline ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* get_m_ReusedContacts_5() const { return ___m_ReusedContacts_5; } inline ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B** get_address_of_m_ReusedContacts_5() { return &___m_ReusedContacts_5; } inline void set_m_ReusedContacts_5(ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* value) { ___m_ReusedContacts_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ReusedContacts_5), (void*)value); } inline static int32_t get_offset_of_m_LegacyContacts_6() { return static_cast<int32_t>(offsetof(Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0, ___m_LegacyContacts_6)); } inline ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* get_m_LegacyContacts_6() const { return ___m_LegacyContacts_6; } inline ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B** get_address_of_m_LegacyContacts_6() { return &___m_LegacyContacts_6; } inline void set_m_LegacyContacts_6(ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* value) { ___m_LegacyContacts_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_LegacyContacts_6), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.Collision struct Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0_marshaled_pinvoke { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Impulse_0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_RelativeVelocity_1; Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___m_Rigidbody_2; Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___m_Collider_3; int32_t ___m_ContactCount_4; ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 * ___m_ReusedContacts_5; ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 * ___m_LegacyContacts_6; }; // Native definition for COM marshalling of UnityEngine.Collision struct Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0_marshaled_com { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Impulse_0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_RelativeVelocity_1; Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___m_Rigidbody_2; Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___m_Collider_3; int32_t ___m_ContactCount_4; ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 * ___m_ReusedContacts_5; ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 * ___m_LegacyContacts_6; }; // UnityEngine.Collision2D struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564 : public RuntimeObject { public: // System.Int32 UnityEngine.Collision2D::m_Collider int32_t ___m_Collider_0; // System.Int32 UnityEngine.Collision2D::m_OtherCollider int32_t ___m_OtherCollider_1; // System.Int32 UnityEngine.Collision2D::m_Rigidbody int32_t ___m_Rigidbody_2; // System.Int32 UnityEngine.Collision2D::m_OtherRigidbody int32_t ___m_OtherRigidbody_3; // UnityEngine.Vector2 UnityEngine.Collision2D::m_RelativeVelocity Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_RelativeVelocity_4; // System.Int32 UnityEngine.Collision2D::m_Enabled int32_t ___m_Enabled_5; // System.Int32 UnityEngine.Collision2D::m_ContactCount int32_t ___m_ContactCount_6; // UnityEngine.ContactPoint2D[] UnityEngine.Collision2D::m_ReusedContacts ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* ___m_ReusedContacts_7; // UnityEngine.ContactPoint2D[] UnityEngine.Collision2D::m_LegacyContacts ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* ___m_LegacyContacts_8; public: inline static int32_t get_offset_of_m_Collider_0() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_Collider_0)); } inline int32_t get_m_Collider_0() const { return ___m_Collider_0; } inline int32_t* get_address_of_m_Collider_0() { return &___m_Collider_0; } inline void set_m_Collider_0(int32_t value) { ___m_Collider_0 = value; } inline static int32_t get_offset_of_m_OtherCollider_1() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_OtherCollider_1)); } inline int32_t get_m_OtherCollider_1() const { return ___m_OtherCollider_1; } inline int32_t* get_address_of_m_OtherCollider_1() { return &___m_OtherCollider_1; } inline void set_m_OtherCollider_1(int32_t value) { ___m_OtherCollider_1 = value; } inline static int32_t get_offset_of_m_Rigidbody_2() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_Rigidbody_2)); } inline int32_t get_m_Rigidbody_2() const { return ___m_Rigidbody_2; } inline int32_t* get_address_of_m_Rigidbody_2() { return &___m_Rigidbody_2; } inline void set_m_Rigidbody_2(int32_t value) { ___m_Rigidbody_2 = value; } inline static int32_t get_offset_of_m_OtherRigidbody_3() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_OtherRigidbody_3)); } inline int32_t get_m_OtherRigidbody_3() const { return ___m_OtherRigidbody_3; } inline int32_t* get_address_of_m_OtherRigidbody_3() { return &___m_OtherRigidbody_3; } inline void set_m_OtherRigidbody_3(int32_t value) { ___m_OtherRigidbody_3 = value; } inline static int32_t get_offset_of_m_RelativeVelocity_4() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_RelativeVelocity_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_RelativeVelocity_4() const { return ___m_RelativeVelocity_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_RelativeVelocity_4() { return &___m_RelativeVelocity_4; } inline void set_m_RelativeVelocity_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_RelativeVelocity_4 = value; } inline static int32_t get_offset_of_m_Enabled_5() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_Enabled_5)); } inline int32_t get_m_Enabled_5() const { return ___m_Enabled_5; } inline int32_t* get_address_of_m_Enabled_5() { return &___m_Enabled_5; } inline void set_m_Enabled_5(int32_t value) { ___m_Enabled_5 = value; } inline static int32_t get_offset_of_m_ContactCount_6() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_ContactCount_6)); } inline int32_t get_m_ContactCount_6() const { return ___m_ContactCount_6; } inline int32_t* get_address_of_m_ContactCount_6() { return &___m_ContactCount_6; } inline void set_m_ContactCount_6(int32_t value) { ___m_ContactCount_6 = value; } inline static int32_t get_offset_of_m_ReusedContacts_7() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_ReusedContacts_7)); } inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* get_m_ReusedContacts_7() const { return ___m_ReusedContacts_7; } inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277** get_address_of_m_ReusedContacts_7() { return &___m_ReusedContacts_7; } inline void set_m_ReusedContacts_7(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* value) { ___m_ReusedContacts_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ReusedContacts_7), (void*)value); } inline static int32_t get_offset_of_m_LegacyContacts_8() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_LegacyContacts_8)); } inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* get_m_LegacyContacts_8() const { return ___m_LegacyContacts_8; } inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277** get_address_of_m_LegacyContacts_8() { return &___m_LegacyContacts_8; } inline void set_m_LegacyContacts_8(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* value) { ___m_LegacyContacts_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_LegacyContacts_8), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.Collision2D struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_pinvoke { int32_t ___m_Collider_0; int32_t ___m_OtherCollider_1; int32_t ___m_Rigidbody_2; int32_t ___m_OtherRigidbody_3; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_RelativeVelocity_4; int32_t ___m_Enabled_5; int32_t ___m_ContactCount_6; ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_ReusedContacts_7; ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_LegacyContacts_8; }; // Native definition for COM marshalling of UnityEngine.Collision2D struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_com { int32_t ___m_Collider_0; int32_t ___m_OtherCollider_1; int32_t ___m_Rigidbody_2; int32_t ___m_OtherRigidbody_3; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_RelativeVelocity_4; int32_t ___m_Enabled_5; int32_t ___m_ContactCount_6; ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_ReusedContacts_7; ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_LegacyContacts_8; }; // UnityEngine.CollisionFlags struct CollisionFlags_t435530D092E80B20FFD0DA008B4F298BF224B903 { public: // System.Int32 UnityEngine.CollisionFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CollisionFlags_t435530D092E80B20FFD0DA008B4F298BF224B903, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.ContactPoint struct ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 { public: // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Point_0; // UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Normal_1; // System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID int32_t ___m_ThisColliderInstanceID_2; // System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID int32_t ___m_OtherColliderInstanceID_3; // System.Single UnityEngine.ContactPoint::m_Separation float ___m_Separation_4; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___m_Point_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___m_Normal_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___m_ThisColliderInstanceID_2)); } inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; } inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; } inline void set_m_ThisColliderInstanceID_2(int32_t value) { ___m_ThisColliderInstanceID_2 = value; } inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___m_OtherColliderInstanceID_3)); } inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; } inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; } inline void set_m_OtherColliderInstanceID_3(int32_t value) { ___m_OtherColliderInstanceID_3 = value; } inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___m_Separation_4)); } inline float get_m_Separation_4() const { return ___m_Separation_4; } inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; } inline void set_m_Separation_4(float value) { ___m_Separation_4 = value; } }; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.IntPtr UnityEngine.Coroutine::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { intptr_t ___m_Ptr_0; }; // UnityEngine.KeyCode struct KeyCode_t1D303F7D061BF4429872E9F109ADDBCB431671F4 { public: // System.Int32 UnityEngine.KeyCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(KeyCode_t1D303F7D061BF4429872E9F109ADDBCB431671F4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.LogType struct LogType_tF490DBF8368BD4EBA703B2824CB76A853820F773 { public: // System.Int32 UnityEngine.LogType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LogType_tF490DBF8368BD4EBA703B2824CB76A853820F773, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.SceneManagement.LoadSceneMode struct LoadSceneMode_tF5060E18B71D524860ECBF7B9B56193B1907E5CC { public: // System.Int32 UnityEngine.SceneManagement.LoadSceneMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LoadSceneMode_tF5060E18B71D524860ECBF7B9B56193B1907E5CC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.SceneManagement.LocalPhysicsMode struct LocalPhysicsMode_t0BC6949E496E4E126141A944F9B5A26939798BE6 { public: // System.Int32 UnityEngine.SceneManagement.LocalPhysicsMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LocalPhysicsMode_t0BC6949E496E4E126141A944F9B5A26939798BE6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.TouchScreenKeyboardType struct TouchScreenKeyboardType_tBD90DFB07923EC19E5EA59FAF26292AC2799A932 { public: // System.Int32 UnityEngine.TouchScreenKeyboardType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchScreenKeyboardType_tBD90DFB07923EC19E5EA59FAF26292AC2799A932, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.ColorBlock struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 { public: // UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_NormalColor_0; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_HighlightedColor_1; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_PressedColor_2; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_SelectedColor_3; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_DisabledColor_4; // System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier float ___m_ColorMultiplier_5; // System.Single UnityEngine.UI.ColorBlock::m_FadeDuration float ___m_FadeDuration_6; public: inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_NormalColor_0)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_NormalColor_0() const { return ___m_NormalColor_0; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; } inline void set_m_NormalColor_0(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_NormalColor_0 = value; } inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_HighlightedColor_1)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; } inline void set_m_HighlightedColor_1(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_HighlightedColor_1 = value; } inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_PressedColor_2)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_PressedColor_2() const { return ___m_PressedColor_2; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; } inline void set_m_PressedColor_2(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_PressedColor_2 = value; } inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_SelectedColor_3)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; } inline void set_m_SelectedColor_3(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_SelectedColor_3 = value; } inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_DisabledColor_4)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; } inline void set_m_DisabledColor_4(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_DisabledColor_4 = value; } inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_ColorMultiplier_5)); } inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; } inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; } inline void set_m_ColorMultiplier_5(float value) { ___m_ColorMultiplier_5 = value; } inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_FadeDuration_6)); } inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; } inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; } inline void set_m_FadeDuration_6(float value) { ___m_FadeDuration_6 = value; } }; // UnityEngine.UI.Image_FillMethod struct FillMethod_tC37E5898D113A8FBF25A6AB6FBA451CC51E211E2 { public: // System.Int32 UnityEngine.UI.Image_FillMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FillMethod_tC37E5898D113A8FBF25A6AB6FBA451CC51E211E2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Image_Type struct Type_tDCB08AB7425CAB70C1E46CC341F877423B5A5E12 { public: // System.Int32 UnityEngine.UI.Image_Type::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Type_tDCB08AB7425CAB70C1E46CC341F877423B5A5E12, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField_CharacterValidation struct CharacterValidation_t03AFB752BBD6215579765978CE67D7159431FC41 { public: // System.Int32 UnityEngine.UI.InputField_CharacterValidation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CharacterValidation_t03AFB752BBD6215579765978CE67D7159431FC41, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField_ContentType struct ContentType_t15FD47A38F32CADD417E3A07C787F1B3997B9AC1 { public: // System.Int32 UnityEngine.UI.InputField_ContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ContentType_t15FD47A38F32CADD417E3A07C787F1B3997B9AC1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField_InputType struct InputType_t43FE97C0C3EE1F7DB81E2F34420780D1DFBF03D2 { public: // System.Int32 UnityEngine.UI.InputField_InputType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputType_t43FE97C0C3EE1F7DB81E2F34420780D1DFBF03D2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField_LineType struct LineType_t3249F1C248D9D12DE265C49F371F2C3618AFEFCE { public: // System.Int32 UnityEngine.UI.InputField_LineType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LineType_t3249F1C248D9D12DE265C49F371F2C3618AFEFCE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Navigation_Mode struct Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F { public: // System.Int32 UnityEngine.UI.Navigation_Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Scrollbar_Direction struct Direction_tCE7C4B78403A18007E901268411DB754E7B784B7 { public: // System.Int32 UnityEngine.UI.Scrollbar_Direction::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Direction_tCE7C4B78403A18007E901268411DB754E7B784B7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Selectable_Transition struct Transition_t1FC449676815A798E758D32E8BE6DC0A2511DF14 { public: // System.Int32 UnityEngine.UI.Selectable_Transition::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Transition_t1FC449676815A798E758D32E8BE6DC0A2511DF14, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Mirror.NetworkClient struct NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15 : public RuntimeObject { public: public: }; struct NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkClient::logger RuntimeObject* ___logger_0; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkMessageDelegate> Mirror.NetworkClient::handlers Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * ___handlers_1; // Mirror.NetworkConnection Mirror.NetworkClient::<connection>k__BackingField NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___U3CconnectionU3Ek__BackingField_2; // Mirror.ConnectState Mirror.NetworkClient::connectState int32_t ___connectState_3; public: inline static int32_t get_offset_of_logger_0() { return static_cast<int32_t>(offsetof(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_StaticFields, ___logger_0)); } inline RuntimeObject* get_logger_0() const { return ___logger_0; } inline RuntimeObject** get_address_of_logger_0() { return &___logger_0; } inline void set_logger_0(RuntimeObject* value) { ___logger_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_0), (void*)value); } inline static int32_t get_offset_of_handlers_1() { return static_cast<int32_t>(offsetof(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_StaticFields, ___handlers_1)); } inline Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * get_handlers_1() const { return ___handlers_1; } inline Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB ** get_address_of_handlers_1() { return &___handlers_1; } inline void set_handlers_1(Dictionary_2_tC3C248F59C2707C10E1B8F9FE8600CF35FE29EDB * value) { ___handlers_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___handlers_1), (void*)value); } inline static int32_t get_offset_of_U3CconnectionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_StaticFields, ___U3CconnectionU3Ek__BackingField_2)); } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_U3CconnectionU3Ek__BackingField_2() const { return ___U3CconnectionU3Ek__BackingField_2; } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_U3CconnectionU3Ek__BackingField_2() { return &___U3CconnectionU3Ek__BackingField_2; } inline void set_U3CconnectionU3Ek__BackingField_2(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value) { ___U3CconnectionU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CconnectionU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_connectState_3() { return static_cast<int32_t>(offsetof(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_StaticFields, ___connectState_3)); } inline int32_t get_connectState_3() const { return ___connectState_3; } inline int32_t* get_address_of_connectState_3() { return &___connectState_3; } inline void set_connectState_3(int32_t value) { ___connectState_3 = value; } }; // Mirror.SceneMessage struct SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE { public: // System.String Mirror.SceneMessage::sceneName String_t* ___sceneName_0; // Mirror.SceneOperation Mirror.SceneMessage::sceneOperation uint8_t ___sceneOperation_1; // System.Boolean Mirror.SceneMessage::customHandling bool ___customHandling_2; public: inline static int32_t get_offset_of_sceneName_0() { return static_cast<int32_t>(offsetof(SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE, ___sceneName_0)); } inline String_t* get_sceneName_0() const { return ___sceneName_0; } inline String_t** get_address_of_sceneName_0() { return &___sceneName_0; } inline void set_sceneName_0(String_t* value) { ___sceneName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___sceneName_0), (void*)value); } inline static int32_t get_offset_of_sceneOperation_1() { return static_cast<int32_t>(offsetof(SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE, ___sceneOperation_1)); } inline uint8_t get_sceneOperation_1() const { return ___sceneOperation_1; } inline uint8_t* get_address_of_sceneOperation_1() { return &___sceneOperation_1; } inline void set_sceneOperation_1(uint8_t value) { ___sceneOperation_1 = value; } inline static int32_t get_offset_of_customHandling_2() { return static_cast<int32_t>(offsetof(SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE, ___customHandling_2)); } inline bool get_customHandling_2() const { return ___customHandling_2; } inline bool* get_address_of_customHandling_2() { return &___customHandling_2; } inline void set_customHandling_2(bool value) { ___customHandling_2 = value; } }; // Native definition for P/Invoke marshalling of Mirror.SceneMessage struct SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_marshaled_pinvoke { char* ___sceneName_0; uint8_t ___sceneOperation_1; int32_t ___customHandling_2; }; // Native definition for COM marshalling of Mirror.SceneMessage struct SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_marshaled_com { Il2CppChar* ___sceneName_0; uint8_t ___sceneOperation_1; int32_t ___customHandling_2; }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // UnityEngine.SceneManagement.LoadSceneParameters struct LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 { public: // UnityEngine.SceneManagement.LoadSceneMode UnityEngine.SceneManagement.LoadSceneParameters::m_LoadSceneMode int32_t ___m_LoadSceneMode_0; // UnityEngine.SceneManagement.LocalPhysicsMode UnityEngine.SceneManagement.LoadSceneParameters::m_LocalPhysicsMode int32_t ___m_LocalPhysicsMode_1; public: inline static int32_t get_offset_of_m_LoadSceneMode_0() { return static_cast<int32_t>(offsetof(LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2, ___m_LoadSceneMode_0)); } inline int32_t get_m_LoadSceneMode_0() const { return ___m_LoadSceneMode_0; } inline int32_t* get_address_of_m_LoadSceneMode_0() { return &___m_LoadSceneMode_0; } inline void set_m_LoadSceneMode_0(int32_t value) { ___m_LoadSceneMode_0 = value; } inline static int32_t get_offset_of_m_LocalPhysicsMode_1() { return static_cast<int32_t>(offsetof(LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2, ___m_LocalPhysicsMode_1)); } inline int32_t get_m_LocalPhysicsMode_1() const { return ___m_LocalPhysicsMode_1; } inline int32_t* get_address_of_m_LocalPhysicsMode_1() { return &___m_LocalPhysicsMode_1; } inline void set_m_LocalPhysicsMode_1(int32_t value) { ___m_LocalPhysicsMode_1 = value; } }; // UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A { public: // UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode int32_t ___m_Mode_0; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_1; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_2; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_3; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_4; public: inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_Mode_0)); } inline int32_t get_m_Mode_0() const { return ___m_Mode_0; } inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; } inline void set_m_Mode_0(int32_t value) { ___m_Mode_0 = value; } inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnUp_1)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; } inline void set_m_SelectOnUp_1(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnUp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value); } inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnDown_2)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; } inline void set_m_SelectOnDown_2(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnDown_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value); } inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnLeft_3)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; } inline void set_m_SelectOnLeft_3(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnLeft_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value); } inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnRight_4)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; } inline void set_m_SelectOnRight_4(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnRight_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_pinvoke { int32_t ___m_Mode_0; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_1; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_2; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_3; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_4; }; // Native definition for COM marshalling of UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_com { int32_t ___m_Mode_0; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_1; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_2; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_3; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_4; }; // Mirror.RemoteCalls.CmdDelegate struct CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF : public MulticastDelegate_t { public: public: }; // System.Action`2<Mirror.Examples.Chat.Player,System.String> struct Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE : public MulticastDelegate_t { public: public: }; // System.Action`2<Mirror.NetworkConnection,Mirror.Examples.Chat.ChatNetworkManager_CreatePlayerMessage> struct Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC : public MulticastDelegate_t { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Predicate`1<UnityEngine.GameObject> struct Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B : public MulticastDelegate_t { public: public: }; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.Collider struct Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.Renderer struct Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.Rigidbody struct Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.Rigidbody2D struct Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.TextMesh struct TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.AI.NavMeshAgent struct NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.Camera struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields { public: // UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPreCull CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPreCull_4; // UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPreRender CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPreRender_5; // UnityEngine.Camera_CameraCallback UnityEngine.Camera::onPostRender CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPostRender_6; public: inline static int32_t get_offset_of_onPreCull_4() { return static_cast<int32_t>(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPreCull_4)); } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPreCull_4() const { return ___onPreCull_4; } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPreCull_4() { return &___onPreCull_4; } inline void set_onPreCull_4(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value) { ___onPreCull_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPreCull_4), (void*)value); } inline static int32_t get_offset_of_onPreRender_5() { return static_cast<int32_t>(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPreRender_5)); } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPreRender_5() const { return ___onPreRender_5; } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPreRender_5() { return &___onPreRender_5; } inline void set_onPreRender_5(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value) { ___onPreRender_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPreRender_5), (void*)value); } inline static int32_t get_offset_of_onPostRender_6() { return static_cast<int32_t>(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPostRender_6)); } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPostRender_6() const { return ___onPostRender_6; } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPostRender_6() { return &___onPostRender_6; } inline void set_onPostRender_6(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value) { ___onPostRender_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPostRender_6), (void*)value); } }; // UnityEngine.CapsuleCollider struct CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 : public Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 { public: public: }; // UnityEngine.CharacterController struct CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E : public Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 { public: public: }; // UnityEngine.Collider2D struct Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.RectTransform struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 : public Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 { public: public: }; struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_StaticFields { public: // UnityEngine.RectTransform_ReapplyDrivenProperties UnityEngine.RectTransform::reapplyDrivenProperties ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * ___reapplyDrivenProperties_4; public: inline static int32_t get_offset_of_reapplyDrivenProperties_4() { return static_cast<int32_t>(offsetof(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_StaticFields, ___reapplyDrivenProperties_4)); } inline ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * get_reapplyDrivenProperties_4() const { return ___reapplyDrivenProperties_4; } inline ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE ** get_address_of_reapplyDrivenProperties_4() { return &___reapplyDrivenProperties_4; } inline void set_reapplyDrivenProperties_4(ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * value) { ___reapplyDrivenProperties_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___reapplyDrivenProperties_4), (void*)value); } }; // Mirror.Examples.Chat.ChatWindow struct ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.UI.InputField Mirror.Examples.Chat.ChatWindow::chatMessage InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___chatMessage_5; // UnityEngine.UI.Text Mirror.Examples.Chat.ChatWindow::chatHistory Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___chatHistory_6; // UnityEngine.UI.Scrollbar Mirror.Examples.Chat.ChatWindow::scrollbar Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * ___scrollbar_7; public: inline static int32_t get_offset_of_chatMessage_5() { return static_cast<int32_t>(offsetof(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B, ___chatMessage_5)); } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_chatMessage_5() const { return ___chatMessage_5; } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_chatMessage_5() { return &___chatMessage_5; } inline void set_chatMessage_5(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value) { ___chatMessage_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___chatMessage_5), (void*)value); } inline static int32_t get_offset_of_chatHistory_6() { return static_cast<int32_t>(offsetof(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B, ___chatHistory_6)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_chatHistory_6() const { return ___chatHistory_6; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_chatHistory_6() { return &___chatHistory_6; } inline void set_chatHistory_6(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___chatHistory_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___chatHistory_6), (void*)value); } inline static int32_t get_offset_of_scrollbar_7() { return static_cast<int32_t>(offsetof(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B, ___scrollbar_7)); } inline Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * get_scrollbar_7() const { return ___scrollbar_7; } inline Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 ** get_address_of_scrollbar_7() { return &___scrollbar_7; } inline void set_scrollbar_7(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * value) { ___scrollbar_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___scrollbar_7), (void*)value); } }; struct ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_StaticFields { public: // UnityEngine.ILogger Mirror.Examples.Chat.ChatWindow::logger RuntimeObject* ___logger_4; public: inline static int32_t get_offset_of_logger_4() { return static_cast<int32_t>(offsetof(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_StaticFields, ___logger_4)); } inline RuntimeObject* get_logger_4() const { return ___logger_4; } inline RuntimeObject** get_address_of_logger_4() { return &___logger_4; } inline void set_logger_4(RuntimeObject* value) { ___logger_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_4), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator struct PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.PhysicsScene Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator::physicsScene PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 ___physicsScene_4; // UnityEngine.PhysicsScene2D Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator::physicsScene2D PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene2D_5; // System.Boolean Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator::simulatePhysicsScene bool ___simulatePhysicsScene_6; // System.Boolean Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator::simulatePhysicsScene2D bool ___simulatePhysicsScene2D_7; public: inline static int32_t get_offset_of_physicsScene_4() { return static_cast<int32_t>(offsetof(PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC, ___physicsScene_4)); } inline PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 get_physicsScene_4() const { return ___physicsScene_4; } inline PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 * get_address_of_physicsScene_4() { return &___physicsScene_4; } inline void set_physicsScene_4(PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 value) { ___physicsScene_4 = value; } inline static int32_t get_offset_of_physicsScene2D_5() { return static_cast<int32_t>(offsetof(PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC, ___physicsScene2D_5)); } inline PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 get_physicsScene2D_5() const { return ___physicsScene2D_5; } inline PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * get_address_of_physicsScene2D_5() { return &___physicsScene2D_5; } inline void set_physicsScene2D_5(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 value) { ___physicsScene2D_5 = value; } inline static int32_t get_offset_of_simulatePhysicsScene_6() { return static_cast<int32_t>(offsetof(PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC, ___simulatePhysicsScene_6)); } inline bool get_simulatePhysicsScene_6() const { return ___simulatePhysicsScene_6; } inline bool* get_address_of_simulatePhysicsScene_6() { return &___simulatePhysicsScene_6; } inline void set_simulatePhysicsScene_6(bool value) { ___simulatePhysicsScene_6 = value; } inline static int32_t get_offset_of_simulatePhysicsScene2D_7() { return static_cast<int32_t>(offsetof(PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC, ___simulatePhysicsScene2D_7)); } inline bool get_simulatePhysicsScene2D_7() const { return ___simulatePhysicsScene2D_7; } inline bool* get_address_of_simulatePhysicsScene2D_7() { return &___simulatePhysicsScene2D_7; } inline void set_simulatePhysicsScene2D_7(bool value) { ___simulatePhysicsScene2D_7 = value; } }; // Mirror.Examples.Tanks.TankGameManager struct TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Int32 Mirror.Examples.Tanks.TankGameManager::MinimumPlayersForGame int32_t ___MinimumPlayersForGame_4; // Mirror.Examples.Tanks.Tank Mirror.Examples.Tanks.TankGameManager::LocalPlayer Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * ___LocalPlayer_5; // UnityEngine.GameObject Mirror.Examples.Tanks.TankGameManager::StartPanel GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___StartPanel_6; // UnityEngine.GameObject Mirror.Examples.Tanks.TankGameManager::GameOverPanel GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___GameOverPanel_7; // UnityEngine.GameObject Mirror.Examples.Tanks.TankGameManager::HealthTextLabel GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___HealthTextLabel_8; // UnityEngine.GameObject Mirror.Examples.Tanks.TankGameManager::ScoreTextLabel GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___ScoreTextLabel_9; // UnityEngine.UI.Text Mirror.Examples.Tanks.TankGameManager::HealthText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___HealthText_10; // UnityEngine.UI.Text Mirror.Examples.Tanks.TankGameManager::ScoreText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___ScoreText_11; // UnityEngine.UI.Text Mirror.Examples.Tanks.TankGameManager::PlayerNameText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___PlayerNameText_12; // UnityEngine.UI.Text Mirror.Examples.Tanks.TankGameManager::WinnerNameText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___WinnerNameText_13; // System.Boolean Mirror.Examples.Tanks.TankGameManager::IsGameReady bool ___IsGameReady_14; // System.Boolean Mirror.Examples.Tanks.TankGameManager::IsGameOver bool ___IsGameOver_15; // System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank> Mirror.Examples.Tanks.TankGameManager::players List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * ___players_16; public: inline static int32_t get_offset_of_MinimumPlayersForGame_4() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___MinimumPlayersForGame_4)); } inline int32_t get_MinimumPlayersForGame_4() const { return ___MinimumPlayersForGame_4; } inline int32_t* get_address_of_MinimumPlayersForGame_4() { return &___MinimumPlayersForGame_4; } inline void set_MinimumPlayersForGame_4(int32_t value) { ___MinimumPlayersForGame_4 = value; } inline static int32_t get_offset_of_LocalPlayer_5() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___LocalPlayer_5)); } inline Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * get_LocalPlayer_5() const { return ___LocalPlayer_5; } inline Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 ** get_address_of_LocalPlayer_5() { return &___LocalPlayer_5; } inline void set_LocalPlayer_5(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * value) { ___LocalPlayer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___LocalPlayer_5), (void*)value); } inline static int32_t get_offset_of_StartPanel_6() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___StartPanel_6)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_StartPanel_6() const { return ___StartPanel_6; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_StartPanel_6() { return &___StartPanel_6; } inline void set_StartPanel_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___StartPanel_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___StartPanel_6), (void*)value); } inline static int32_t get_offset_of_GameOverPanel_7() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___GameOverPanel_7)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_GameOverPanel_7() const { return ___GameOverPanel_7; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_GameOverPanel_7() { return &___GameOverPanel_7; } inline void set_GameOverPanel_7(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___GameOverPanel_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___GameOverPanel_7), (void*)value); } inline static int32_t get_offset_of_HealthTextLabel_8() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___HealthTextLabel_8)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_HealthTextLabel_8() const { return ___HealthTextLabel_8; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_HealthTextLabel_8() { return &___HealthTextLabel_8; } inline void set_HealthTextLabel_8(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___HealthTextLabel_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___HealthTextLabel_8), (void*)value); } inline static int32_t get_offset_of_ScoreTextLabel_9() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___ScoreTextLabel_9)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_ScoreTextLabel_9() const { return ___ScoreTextLabel_9; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_ScoreTextLabel_9() { return &___ScoreTextLabel_9; } inline void set_ScoreTextLabel_9(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___ScoreTextLabel_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___ScoreTextLabel_9), (void*)value); } inline static int32_t get_offset_of_HealthText_10() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___HealthText_10)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_HealthText_10() const { return ___HealthText_10; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_HealthText_10() { return &___HealthText_10; } inline void set_HealthText_10(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___HealthText_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___HealthText_10), (void*)value); } inline static int32_t get_offset_of_ScoreText_11() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___ScoreText_11)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_ScoreText_11() const { return ___ScoreText_11; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_ScoreText_11() { return &___ScoreText_11; } inline void set_ScoreText_11(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___ScoreText_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ScoreText_11), (void*)value); } inline static int32_t get_offset_of_PlayerNameText_12() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___PlayerNameText_12)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_PlayerNameText_12() const { return ___PlayerNameText_12; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_PlayerNameText_12() { return &___PlayerNameText_12; } inline void set_PlayerNameText_12(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___PlayerNameText_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___PlayerNameText_12), (void*)value); } inline static int32_t get_offset_of_WinnerNameText_13() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___WinnerNameText_13)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_WinnerNameText_13() const { return ___WinnerNameText_13; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_WinnerNameText_13() { return &___WinnerNameText_13; } inline void set_WinnerNameText_13(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___WinnerNameText_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___WinnerNameText_13), (void*)value); } inline static int32_t get_offset_of_IsGameReady_14() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___IsGameReady_14)); } inline bool get_IsGameReady_14() const { return ___IsGameReady_14; } inline bool* get_address_of_IsGameReady_14() { return &___IsGameReady_14; } inline void set_IsGameReady_14(bool value) { ___IsGameReady_14 = value; } inline static int32_t get_offset_of_IsGameOver_15() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___IsGameOver_15)); } inline bool get_IsGameOver_15() const { return ___IsGameOver_15; } inline bool* get_address_of_IsGameOver_15() { return &___IsGameOver_15; } inline void set_IsGameOver_15(bool value) { ___IsGameOver_15 = value; } inline static int32_t get_offset_of_players_16() { return static_cast<int32_t>(offsetof(TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3, ___players_16)); } inline List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * get_players_16() const { return ___players_16; } inline List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 ** get_address_of_players_16() { return &___players_16; } inline void set_players_16(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * value) { ___players_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___players_16), (void*)value); } }; // Mirror.NetworkBehaviour struct NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Single Mirror.NetworkBehaviour::lastSyncTime float ___lastSyncTime_5; // Mirror.SyncMode Mirror.NetworkBehaviour::syncMode int32_t ___syncMode_6; // System.Single Mirror.NetworkBehaviour::syncInterval float ___syncInterval_7; // System.UInt64 Mirror.NetworkBehaviour::<syncVarDirtyBits>k__BackingField uint64_t ___U3CsyncVarDirtyBitsU3Ek__BackingField_8; // System.UInt64 Mirror.NetworkBehaviour::syncVarHookGuard uint64_t ___syncVarHookGuard_9; // System.Collections.Generic.List`1<Mirror.SyncObject> Mirror.NetworkBehaviour::syncObjects List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 * ___syncObjects_10; // Mirror.NetworkIdentity Mirror.NetworkBehaviour::netIdentityCache NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___netIdentityCache_11; public: inline static int32_t get_offset_of_lastSyncTime_5() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___lastSyncTime_5)); } inline float get_lastSyncTime_5() const { return ___lastSyncTime_5; } inline float* get_address_of_lastSyncTime_5() { return &___lastSyncTime_5; } inline void set_lastSyncTime_5(float value) { ___lastSyncTime_5 = value; } inline static int32_t get_offset_of_syncMode_6() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncMode_6)); } inline int32_t get_syncMode_6() const { return ___syncMode_6; } inline int32_t* get_address_of_syncMode_6() { return &___syncMode_6; } inline void set_syncMode_6(int32_t value) { ___syncMode_6 = value; } inline static int32_t get_offset_of_syncInterval_7() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncInterval_7)); } inline float get_syncInterval_7() const { return ___syncInterval_7; } inline float* get_address_of_syncInterval_7() { return &___syncInterval_7; } inline void set_syncInterval_7(float value) { ___syncInterval_7 = value; } inline static int32_t get_offset_of_U3CsyncVarDirtyBitsU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___U3CsyncVarDirtyBitsU3Ek__BackingField_8)); } inline uint64_t get_U3CsyncVarDirtyBitsU3Ek__BackingField_8() const { return ___U3CsyncVarDirtyBitsU3Ek__BackingField_8; } inline uint64_t* get_address_of_U3CsyncVarDirtyBitsU3Ek__BackingField_8() { return &___U3CsyncVarDirtyBitsU3Ek__BackingField_8; } inline void set_U3CsyncVarDirtyBitsU3Ek__BackingField_8(uint64_t value) { ___U3CsyncVarDirtyBitsU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_syncVarHookGuard_9() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncVarHookGuard_9)); } inline uint64_t get_syncVarHookGuard_9() const { return ___syncVarHookGuard_9; } inline uint64_t* get_address_of_syncVarHookGuard_9() { return &___syncVarHookGuard_9; } inline void set_syncVarHookGuard_9(uint64_t value) { ___syncVarHookGuard_9 = value; } inline static int32_t get_offset_of_syncObjects_10() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncObjects_10)); } inline List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 * get_syncObjects_10() const { return ___syncObjects_10; } inline List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 ** get_address_of_syncObjects_10() { return &___syncObjects_10; } inline void set_syncObjects_10(List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 * value) { ___syncObjects_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___syncObjects_10), (void*)value); } inline static int32_t get_offset_of_netIdentityCache_11() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___netIdentityCache_11)); } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_netIdentityCache_11() const { return ___netIdentityCache_11; } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_netIdentityCache_11() { return &___netIdentityCache_11; } inline void set_netIdentityCache_11(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value) { ___netIdentityCache_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___netIdentityCache_11), (void*)value); } }; struct NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkBehaviour::logger RuntimeObject* ___logger_4; public: inline static int32_t get_offset_of_logger_4() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_StaticFields, ___logger_4)); } inline RuntimeObject* get_logger_4() const { return ___logger_4; } inline RuntimeObject** get_address_of_logger_4() { return &___logger_4; } inline void set_logger_4(RuntimeObject* value) { ___logger_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_4), (void*)value); } }; // Mirror.NetworkIdentity struct NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // Mirror.NetworkBehaviour[] Mirror.NetworkIdentity::networkBehavioursCache NetworkBehaviourU5BU5D_t88F442C3B8452017C596F9367CB7F74F7B07C8CC* ___networkBehavioursCache_5; // System.Boolean Mirror.NetworkIdentity::<isClient>k__BackingField bool ___U3CisClientU3Ek__BackingField_6; // System.Boolean Mirror.NetworkIdentity::<isServer>k__BackingField bool ___U3CisServerU3Ek__BackingField_7; // System.Boolean Mirror.NetworkIdentity::<hasAuthority>k__BackingField bool ___U3ChasAuthorityU3Ek__BackingField_8; // System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkConnection> Mirror.NetworkIdentity::observers Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * ___observers_9; // System.UInt32 Mirror.NetworkIdentity::<netId>k__BackingField uint32_t ___U3CnetIdU3Ek__BackingField_10; // System.UInt64 Mirror.NetworkIdentity::sceneId uint64_t ___sceneId_11; // System.Boolean Mirror.NetworkIdentity::serverOnly bool ___serverOnly_12; // System.Boolean Mirror.NetworkIdentity::destroyCalled bool ___destroyCalled_13; // Mirror.NetworkConnection Mirror.NetworkIdentity::<connectionToServer>k__BackingField NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___U3CconnectionToServerU3Ek__BackingField_14; // Mirror.NetworkConnectionToClient Mirror.NetworkIdentity::_connectionToClient NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * ____connectionToClient_15; // Mirror.NetworkVisibility Mirror.NetworkIdentity::visibilityCache NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07 * ___visibilityCache_17; // System.String Mirror.NetworkIdentity::m_AssetId String_t* ___m_AssetId_18; // System.Boolean Mirror.NetworkIdentity::hasSpawned bool ___hasSpawned_22; // System.Boolean Mirror.NetworkIdentity::<SpawnedFromInstantiate>k__BackingField bool ___U3CSpawnedFromInstantiateU3Ek__BackingField_23; // System.Boolean Mirror.NetworkIdentity::clientStarted bool ___clientStarted_24; // System.Boolean Mirror.NetworkIdentity::hadAuthority bool ___hadAuthority_26; public: inline static int32_t get_offset_of_networkBehavioursCache_5() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___networkBehavioursCache_5)); } inline NetworkBehaviourU5BU5D_t88F442C3B8452017C596F9367CB7F74F7B07C8CC* get_networkBehavioursCache_5() const { return ___networkBehavioursCache_5; } inline NetworkBehaviourU5BU5D_t88F442C3B8452017C596F9367CB7F74F7B07C8CC** get_address_of_networkBehavioursCache_5() { return &___networkBehavioursCache_5; } inline void set_networkBehavioursCache_5(NetworkBehaviourU5BU5D_t88F442C3B8452017C596F9367CB7F74F7B07C8CC* value) { ___networkBehavioursCache_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___networkBehavioursCache_5), (void*)value); } inline static int32_t get_offset_of_U3CisClientU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___U3CisClientU3Ek__BackingField_6)); } inline bool get_U3CisClientU3Ek__BackingField_6() const { return ___U3CisClientU3Ek__BackingField_6; } inline bool* get_address_of_U3CisClientU3Ek__BackingField_6() { return &___U3CisClientU3Ek__BackingField_6; } inline void set_U3CisClientU3Ek__BackingField_6(bool value) { ___U3CisClientU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CisServerU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___U3CisServerU3Ek__BackingField_7)); } inline bool get_U3CisServerU3Ek__BackingField_7() const { return ___U3CisServerU3Ek__BackingField_7; } inline bool* get_address_of_U3CisServerU3Ek__BackingField_7() { return &___U3CisServerU3Ek__BackingField_7; } inline void set_U3CisServerU3Ek__BackingField_7(bool value) { ___U3CisServerU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3ChasAuthorityU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___U3ChasAuthorityU3Ek__BackingField_8)); } inline bool get_U3ChasAuthorityU3Ek__BackingField_8() const { return ___U3ChasAuthorityU3Ek__BackingField_8; } inline bool* get_address_of_U3ChasAuthorityU3Ek__BackingField_8() { return &___U3ChasAuthorityU3Ek__BackingField_8; } inline void set_U3ChasAuthorityU3Ek__BackingField_8(bool value) { ___U3ChasAuthorityU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_observers_9() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___observers_9)); } inline Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * get_observers_9() const { return ___observers_9; } inline Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 ** get_address_of_observers_9() { return &___observers_9; } inline void set_observers_9(Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * value) { ___observers_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___observers_9), (void*)value); } inline static int32_t get_offset_of_U3CnetIdU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___U3CnetIdU3Ek__BackingField_10)); } inline uint32_t get_U3CnetIdU3Ek__BackingField_10() const { return ___U3CnetIdU3Ek__BackingField_10; } inline uint32_t* get_address_of_U3CnetIdU3Ek__BackingField_10() { return &___U3CnetIdU3Ek__BackingField_10; } inline void set_U3CnetIdU3Ek__BackingField_10(uint32_t value) { ___U3CnetIdU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_sceneId_11() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___sceneId_11)); } inline uint64_t get_sceneId_11() const { return ___sceneId_11; } inline uint64_t* get_address_of_sceneId_11() { return &___sceneId_11; } inline void set_sceneId_11(uint64_t value) { ___sceneId_11 = value; } inline static int32_t get_offset_of_serverOnly_12() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___serverOnly_12)); } inline bool get_serverOnly_12() const { return ___serverOnly_12; } inline bool* get_address_of_serverOnly_12() { return &___serverOnly_12; } inline void set_serverOnly_12(bool value) { ___serverOnly_12 = value; } inline static int32_t get_offset_of_destroyCalled_13() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___destroyCalled_13)); } inline bool get_destroyCalled_13() const { return ___destroyCalled_13; } inline bool* get_address_of_destroyCalled_13() { return &___destroyCalled_13; } inline void set_destroyCalled_13(bool value) { ___destroyCalled_13 = value; } inline static int32_t get_offset_of_U3CconnectionToServerU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___U3CconnectionToServerU3Ek__BackingField_14)); } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_U3CconnectionToServerU3Ek__BackingField_14() const { return ___U3CconnectionToServerU3Ek__BackingField_14; } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_U3CconnectionToServerU3Ek__BackingField_14() { return &___U3CconnectionToServerU3Ek__BackingField_14; } inline void set_U3CconnectionToServerU3Ek__BackingField_14(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value) { ___U3CconnectionToServerU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CconnectionToServerU3Ek__BackingField_14), (void*)value); } inline static int32_t get_offset_of__connectionToClient_15() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ____connectionToClient_15)); } inline NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * get__connectionToClient_15() const { return ____connectionToClient_15; } inline NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A ** get_address_of__connectionToClient_15() { return &____connectionToClient_15; } inline void set__connectionToClient_15(NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * value) { ____connectionToClient_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____connectionToClient_15), (void*)value); } inline static int32_t get_offset_of_visibilityCache_17() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___visibilityCache_17)); } inline NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07 * get_visibilityCache_17() const { return ___visibilityCache_17; } inline NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07 ** get_address_of_visibilityCache_17() { return &___visibilityCache_17; } inline void set_visibilityCache_17(NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07 * value) { ___visibilityCache_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___visibilityCache_17), (void*)value); } inline static int32_t get_offset_of_m_AssetId_18() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___m_AssetId_18)); } inline String_t* get_m_AssetId_18() const { return ___m_AssetId_18; } inline String_t** get_address_of_m_AssetId_18() { return &___m_AssetId_18; } inline void set_m_AssetId_18(String_t* value) { ___m_AssetId_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AssetId_18), (void*)value); } inline static int32_t get_offset_of_hasSpawned_22() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___hasSpawned_22)); } inline bool get_hasSpawned_22() const { return ___hasSpawned_22; } inline bool* get_address_of_hasSpawned_22() { return &___hasSpawned_22; } inline void set_hasSpawned_22(bool value) { ___hasSpawned_22 = value; } inline static int32_t get_offset_of_U3CSpawnedFromInstantiateU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___U3CSpawnedFromInstantiateU3Ek__BackingField_23)); } inline bool get_U3CSpawnedFromInstantiateU3Ek__BackingField_23() const { return ___U3CSpawnedFromInstantiateU3Ek__BackingField_23; } inline bool* get_address_of_U3CSpawnedFromInstantiateU3Ek__BackingField_23() { return &___U3CSpawnedFromInstantiateU3Ek__BackingField_23; } inline void set_U3CSpawnedFromInstantiateU3Ek__BackingField_23(bool value) { ___U3CSpawnedFromInstantiateU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_clientStarted_24() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___clientStarted_24)); } inline bool get_clientStarted_24() const { return ___clientStarted_24; } inline bool* get_address_of_clientStarted_24() { return &___clientStarted_24; } inline void set_clientStarted_24(bool value) { ___clientStarted_24 = value; } inline static int32_t get_offset_of_hadAuthority_26() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6, ___hadAuthority_26)); } inline bool get_hadAuthority_26() const { return ___hadAuthority_26; } inline bool* get_address_of_hadAuthority_26() { return &___hadAuthority_26; } inline void set_hadAuthority_26(bool value) { ___hadAuthority_26 = value; } }; struct NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkIdentity::logger RuntimeObject* ___logger_4; // System.Collections.Generic.Dictionary`2<System.UInt32,Mirror.NetworkIdentity> Mirror.NetworkIdentity::spawned Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * ___spawned_16; // System.Collections.Generic.Dictionary`2<System.UInt64,Mirror.NetworkIdentity> Mirror.NetworkIdentity::sceneIds Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C * ___sceneIds_19; // System.UInt32 Mirror.NetworkIdentity::nextNetworkId uint32_t ___nextNetworkId_20; // Mirror.NetworkIdentity_ClientAuthorityCallback Mirror.NetworkIdentity::clientAuthorityCallback ClientAuthorityCallback_t661AE911AB52266E53A07F3C757CAF292AE3E041 * ___clientAuthorityCallback_21; // Mirror.NetworkIdentity Mirror.NetworkIdentity::previousLocalPlayer NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___previousLocalPlayer_25; // System.Collections.Generic.HashSet`1<Mirror.NetworkConnection> Mirror.NetworkIdentity::newObservers HashSet_1_t88C982F0214E22EE005391488913223DBE0F6D05 * ___newObservers_27; public: inline static int32_t get_offset_of_logger_4() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields, ___logger_4)); } inline RuntimeObject* get_logger_4() const { return ___logger_4; } inline RuntimeObject** get_address_of_logger_4() { return &___logger_4; } inline void set_logger_4(RuntimeObject* value) { ___logger_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_4), (void*)value); } inline static int32_t get_offset_of_spawned_16() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields, ___spawned_16)); } inline Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * get_spawned_16() const { return ___spawned_16; } inline Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 ** get_address_of_spawned_16() { return &___spawned_16; } inline void set_spawned_16(Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * value) { ___spawned_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___spawned_16), (void*)value); } inline static int32_t get_offset_of_sceneIds_19() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields, ___sceneIds_19)); } inline Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C * get_sceneIds_19() const { return ___sceneIds_19; } inline Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C ** get_address_of_sceneIds_19() { return &___sceneIds_19; } inline void set_sceneIds_19(Dictionary_2_tA1C4AE7C6548102346AE92D5AF868D200E74F27C * value) { ___sceneIds_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___sceneIds_19), (void*)value); } inline static int32_t get_offset_of_nextNetworkId_20() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields, ___nextNetworkId_20)); } inline uint32_t get_nextNetworkId_20() const { return ___nextNetworkId_20; } inline uint32_t* get_address_of_nextNetworkId_20() { return &___nextNetworkId_20; } inline void set_nextNetworkId_20(uint32_t value) { ___nextNetworkId_20 = value; } inline static int32_t get_offset_of_clientAuthorityCallback_21() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields, ___clientAuthorityCallback_21)); } inline ClientAuthorityCallback_t661AE911AB52266E53A07F3C757CAF292AE3E041 * get_clientAuthorityCallback_21() const { return ___clientAuthorityCallback_21; } inline ClientAuthorityCallback_t661AE911AB52266E53A07F3C757CAF292AE3E041 ** get_address_of_clientAuthorityCallback_21() { return &___clientAuthorityCallback_21; } inline void set_clientAuthorityCallback_21(ClientAuthorityCallback_t661AE911AB52266E53A07F3C757CAF292AE3E041 * value) { ___clientAuthorityCallback_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___clientAuthorityCallback_21), (void*)value); } inline static int32_t get_offset_of_previousLocalPlayer_25() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields, ___previousLocalPlayer_25)); } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_previousLocalPlayer_25() const { return ___previousLocalPlayer_25; } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_previousLocalPlayer_25() { return &___previousLocalPlayer_25; } inline void set_previousLocalPlayer_25(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value) { ___previousLocalPlayer_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___previousLocalPlayer_25), (void*)value); } inline static int32_t get_offset_of_newObservers_27() { return static_cast<int32_t>(offsetof(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields, ___newObservers_27)); } inline HashSet_1_t88C982F0214E22EE005391488913223DBE0F6D05 * get_newObservers_27() const { return ___newObservers_27; } inline HashSet_1_t88C982F0214E22EE005391488913223DBE0F6D05 ** get_address_of_newObservers_27() { return &___newObservers_27; } inline void set_newObservers_27(HashSet_1_t88C982F0214E22EE005391488913223DBE0F6D05 * value) { ___newObservers_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___newObservers_27), (void*)value); } }; // Mirror.NetworkManager struct NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Boolean Mirror.NetworkManager::dontDestroyOnLoad bool ___dontDestroyOnLoad_5; // System.Boolean Mirror.NetworkManager::runInBackground bool ___runInBackground_6; // System.Boolean Mirror.NetworkManager::autoStartServerBuild bool ___autoStartServerBuild_7; // System.Boolean Mirror.NetworkManager::showDebugMessages bool ___showDebugMessages_8; // System.Int32 Mirror.NetworkManager::serverTickRate int32_t ___serverTickRate_9; // System.String Mirror.NetworkManager::offlineScene String_t* ___offlineScene_10; // System.String Mirror.NetworkManager::onlineScene String_t* ___onlineScene_11; // Mirror.Transport Mirror.NetworkManager::transport Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * ___transport_12; // System.String Mirror.NetworkManager::networkAddress String_t* ___networkAddress_13; // System.Int32 Mirror.NetworkManager::maxConnections int32_t ___maxConnections_14; // System.Boolean Mirror.NetworkManager::disconnectInactiveConnections bool ___disconnectInactiveConnections_15; // System.Single Mirror.NetworkManager::disconnectInactiveTimeout float ___disconnectInactiveTimeout_16; // Mirror.NetworkAuthenticator Mirror.NetworkManager::authenticator NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * ___authenticator_17; // UnityEngine.GameObject Mirror.NetworkManager::playerPrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerPrefab_18; // System.Boolean Mirror.NetworkManager::autoCreatePlayer bool ___autoCreatePlayer_19; // Mirror.PlayerSpawnMethod Mirror.NetworkManager::playerSpawnMethod int32_t ___playerSpawnMethod_20; // System.Collections.Generic.List`1<UnityEngine.GameObject> Mirror.NetworkManager::spawnPrefabs List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * ___spawnPrefabs_21; // System.Boolean Mirror.NetworkManager::isNetworkActive bool ___isNetworkActive_23; // System.Boolean Mirror.NetworkManager::clientLoadedScene bool ___clientLoadedScene_25; // Mirror.NetworkManagerMode Mirror.NetworkManager::<mode>k__BackingField int32_t ___U3CmodeU3Ek__BackingField_26; // System.Boolean Mirror.NetworkManager::finishStartHostPending bool ___finishStartHostPending_27; // Mirror.SceneOperation Mirror.NetworkManager::clientSceneOperation uint8_t ___clientSceneOperation_30; public: inline static int32_t get_offset_of_dontDestroyOnLoad_5() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___dontDestroyOnLoad_5)); } inline bool get_dontDestroyOnLoad_5() const { return ___dontDestroyOnLoad_5; } inline bool* get_address_of_dontDestroyOnLoad_5() { return &___dontDestroyOnLoad_5; } inline void set_dontDestroyOnLoad_5(bool value) { ___dontDestroyOnLoad_5 = value; } inline static int32_t get_offset_of_runInBackground_6() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___runInBackground_6)); } inline bool get_runInBackground_6() const { return ___runInBackground_6; } inline bool* get_address_of_runInBackground_6() { return &___runInBackground_6; } inline void set_runInBackground_6(bool value) { ___runInBackground_6 = value; } inline static int32_t get_offset_of_autoStartServerBuild_7() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___autoStartServerBuild_7)); } inline bool get_autoStartServerBuild_7() const { return ___autoStartServerBuild_7; } inline bool* get_address_of_autoStartServerBuild_7() { return &___autoStartServerBuild_7; } inline void set_autoStartServerBuild_7(bool value) { ___autoStartServerBuild_7 = value; } inline static int32_t get_offset_of_showDebugMessages_8() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___showDebugMessages_8)); } inline bool get_showDebugMessages_8() const { return ___showDebugMessages_8; } inline bool* get_address_of_showDebugMessages_8() { return &___showDebugMessages_8; } inline void set_showDebugMessages_8(bool value) { ___showDebugMessages_8 = value; } inline static int32_t get_offset_of_serverTickRate_9() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___serverTickRate_9)); } inline int32_t get_serverTickRate_9() const { return ___serverTickRate_9; } inline int32_t* get_address_of_serverTickRate_9() { return &___serverTickRate_9; } inline void set_serverTickRate_9(int32_t value) { ___serverTickRate_9 = value; } inline static int32_t get_offset_of_offlineScene_10() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___offlineScene_10)); } inline String_t* get_offlineScene_10() const { return ___offlineScene_10; } inline String_t** get_address_of_offlineScene_10() { return &___offlineScene_10; } inline void set_offlineScene_10(String_t* value) { ___offlineScene_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___offlineScene_10), (void*)value); } inline static int32_t get_offset_of_onlineScene_11() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___onlineScene_11)); } inline String_t* get_onlineScene_11() const { return ___onlineScene_11; } inline String_t** get_address_of_onlineScene_11() { return &___onlineScene_11; } inline void set_onlineScene_11(String_t* value) { ___onlineScene_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___onlineScene_11), (void*)value); } inline static int32_t get_offset_of_transport_12() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___transport_12)); } inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * get_transport_12() const { return ___transport_12; } inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D ** get_address_of_transport_12() { return &___transport_12; } inline void set_transport_12(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * value) { ___transport_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___transport_12), (void*)value); } inline static int32_t get_offset_of_networkAddress_13() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___networkAddress_13)); } inline String_t* get_networkAddress_13() const { return ___networkAddress_13; } inline String_t** get_address_of_networkAddress_13() { return &___networkAddress_13; } inline void set_networkAddress_13(String_t* value) { ___networkAddress_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___networkAddress_13), (void*)value); } inline static int32_t get_offset_of_maxConnections_14() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___maxConnections_14)); } inline int32_t get_maxConnections_14() const { return ___maxConnections_14; } inline int32_t* get_address_of_maxConnections_14() { return &___maxConnections_14; } inline void set_maxConnections_14(int32_t value) { ___maxConnections_14 = value; } inline static int32_t get_offset_of_disconnectInactiveConnections_15() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___disconnectInactiveConnections_15)); } inline bool get_disconnectInactiveConnections_15() const { return ___disconnectInactiveConnections_15; } inline bool* get_address_of_disconnectInactiveConnections_15() { return &___disconnectInactiveConnections_15; } inline void set_disconnectInactiveConnections_15(bool value) { ___disconnectInactiveConnections_15 = value; } inline static int32_t get_offset_of_disconnectInactiveTimeout_16() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___disconnectInactiveTimeout_16)); } inline float get_disconnectInactiveTimeout_16() const { return ___disconnectInactiveTimeout_16; } inline float* get_address_of_disconnectInactiveTimeout_16() { return &___disconnectInactiveTimeout_16; } inline void set_disconnectInactiveTimeout_16(float value) { ___disconnectInactiveTimeout_16 = value; } inline static int32_t get_offset_of_authenticator_17() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___authenticator_17)); } inline NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * get_authenticator_17() const { return ___authenticator_17; } inline NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF ** get_address_of_authenticator_17() { return &___authenticator_17; } inline void set_authenticator_17(NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * value) { ___authenticator_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___authenticator_17), (void*)value); } inline static int32_t get_offset_of_playerPrefab_18() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___playerPrefab_18)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerPrefab_18() const { return ___playerPrefab_18; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerPrefab_18() { return &___playerPrefab_18; } inline void set_playerPrefab_18(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___playerPrefab_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___playerPrefab_18), (void*)value); } inline static int32_t get_offset_of_autoCreatePlayer_19() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___autoCreatePlayer_19)); } inline bool get_autoCreatePlayer_19() const { return ___autoCreatePlayer_19; } inline bool* get_address_of_autoCreatePlayer_19() { return &___autoCreatePlayer_19; } inline void set_autoCreatePlayer_19(bool value) { ___autoCreatePlayer_19 = value; } inline static int32_t get_offset_of_playerSpawnMethod_20() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___playerSpawnMethod_20)); } inline int32_t get_playerSpawnMethod_20() const { return ___playerSpawnMethod_20; } inline int32_t* get_address_of_playerSpawnMethod_20() { return &___playerSpawnMethod_20; } inline void set_playerSpawnMethod_20(int32_t value) { ___playerSpawnMethod_20 = value; } inline static int32_t get_offset_of_spawnPrefabs_21() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___spawnPrefabs_21)); } inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * get_spawnPrefabs_21() const { return ___spawnPrefabs_21; } inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 ** get_address_of_spawnPrefabs_21() { return &___spawnPrefabs_21; } inline void set_spawnPrefabs_21(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * value) { ___spawnPrefabs_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___spawnPrefabs_21), (void*)value); } inline static int32_t get_offset_of_isNetworkActive_23() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___isNetworkActive_23)); } inline bool get_isNetworkActive_23() const { return ___isNetworkActive_23; } inline bool* get_address_of_isNetworkActive_23() { return &___isNetworkActive_23; } inline void set_isNetworkActive_23(bool value) { ___isNetworkActive_23 = value; } inline static int32_t get_offset_of_clientLoadedScene_25() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___clientLoadedScene_25)); } inline bool get_clientLoadedScene_25() const { return ___clientLoadedScene_25; } inline bool* get_address_of_clientLoadedScene_25() { return &___clientLoadedScene_25; } inline void set_clientLoadedScene_25(bool value) { ___clientLoadedScene_25 = value; } inline static int32_t get_offset_of_U3CmodeU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___U3CmodeU3Ek__BackingField_26)); } inline int32_t get_U3CmodeU3Ek__BackingField_26() const { return ___U3CmodeU3Ek__BackingField_26; } inline int32_t* get_address_of_U3CmodeU3Ek__BackingField_26() { return &___U3CmodeU3Ek__BackingField_26; } inline void set_U3CmodeU3Ek__BackingField_26(int32_t value) { ___U3CmodeU3Ek__BackingField_26 = value; } inline static int32_t get_offset_of_finishStartHostPending_27() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___finishStartHostPending_27)); } inline bool get_finishStartHostPending_27() const { return ___finishStartHostPending_27; } inline bool* get_address_of_finishStartHostPending_27() { return &___finishStartHostPending_27; } inline void set_finishStartHostPending_27(bool value) { ___finishStartHostPending_27 = value; } inline static int32_t get_offset_of_clientSceneOperation_30() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___clientSceneOperation_30)); } inline uint8_t get_clientSceneOperation_30() const { return ___clientSceneOperation_30; } inline uint8_t* get_address_of_clientSceneOperation_30() { return &___clientSceneOperation_30; } inline void set_clientSceneOperation_30(uint8_t value) { ___clientSceneOperation_30 = value; } }; struct NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkManager::logger RuntimeObject* ___logger_4; // Mirror.NetworkManager Mirror.NetworkManager::<singleton>k__BackingField NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * ___U3CsingletonU3Ek__BackingField_22; // Mirror.NetworkConnection Mirror.NetworkManager::clientReadyConnection NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___clientReadyConnection_24; // System.String Mirror.NetworkManager::<networkSceneName>k__BackingField String_t* ___U3CnetworkSceneNameU3Ek__BackingField_28; // UnityEngine.AsyncOperation Mirror.NetworkManager::loadingSceneAsync AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * ___loadingSceneAsync_29; // System.Int32 Mirror.NetworkManager::startPositionIndex int32_t ___startPositionIndex_31; // System.Collections.Generic.List`1<UnityEngine.Transform> Mirror.NetworkManager::startPositions List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * ___startPositions_32; public: inline static int32_t get_offset_of_logger_4() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___logger_4)); } inline RuntimeObject* get_logger_4() const { return ___logger_4; } inline RuntimeObject** get_address_of_logger_4() { return &___logger_4; } inline void set_logger_4(RuntimeObject* value) { ___logger_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_4), (void*)value); } inline static int32_t get_offset_of_U3CsingletonU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___U3CsingletonU3Ek__BackingField_22)); } inline NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * get_U3CsingletonU3Ek__BackingField_22() const { return ___U3CsingletonU3Ek__BackingField_22; } inline NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 ** get_address_of_U3CsingletonU3Ek__BackingField_22() { return &___U3CsingletonU3Ek__BackingField_22; } inline void set_U3CsingletonU3Ek__BackingField_22(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * value) { ___U3CsingletonU3Ek__BackingField_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CsingletonU3Ek__BackingField_22), (void*)value); } inline static int32_t get_offset_of_clientReadyConnection_24() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___clientReadyConnection_24)); } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_clientReadyConnection_24() const { return ___clientReadyConnection_24; } inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_clientReadyConnection_24() { return &___clientReadyConnection_24; } inline void set_clientReadyConnection_24(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value) { ___clientReadyConnection_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___clientReadyConnection_24), (void*)value); } inline static int32_t get_offset_of_U3CnetworkSceneNameU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___U3CnetworkSceneNameU3Ek__BackingField_28)); } inline String_t* get_U3CnetworkSceneNameU3Ek__BackingField_28() const { return ___U3CnetworkSceneNameU3Ek__BackingField_28; } inline String_t** get_address_of_U3CnetworkSceneNameU3Ek__BackingField_28() { return &___U3CnetworkSceneNameU3Ek__BackingField_28; } inline void set_U3CnetworkSceneNameU3Ek__BackingField_28(String_t* value) { ___U3CnetworkSceneNameU3Ek__BackingField_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CnetworkSceneNameU3Ek__BackingField_28), (void*)value); } inline static int32_t get_offset_of_loadingSceneAsync_29() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___loadingSceneAsync_29)); } inline AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * get_loadingSceneAsync_29() const { return ___loadingSceneAsync_29; } inline AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 ** get_address_of_loadingSceneAsync_29() { return &___loadingSceneAsync_29; } inline void set_loadingSceneAsync_29(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * value) { ___loadingSceneAsync_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___loadingSceneAsync_29), (void*)value); } inline static int32_t get_offset_of_startPositionIndex_31() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___startPositionIndex_31)); } inline int32_t get_startPositionIndex_31() const { return ___startPositionIndex_31; } inline int32_t* get_address_of_startPositionIndex_31() { return &___startPositionIndex_31; } inline void set_startPositionIndex_31(int32_t value) { ___startPositionIndex_31 = value; } inline static int32_t get_offset_of_startPositions_32() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___startPositions_32)); } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * get_startPositions_32() const { return ___startPositions_32; } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 ** get_address_of_startPositions_32() { return &___startPositions_32; } inline void set_startPositions_32(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * value) { ___startPositions_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___startPositions_32), (void*)value); } }; // UnityEngine.EventSystems.UIBehaviour struct UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; // Mirror.Examples.Additive.AdditiveNetworkManager struct AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 { public: // System.String[] Mirror.Examples.Additive.AdditiveNetworkManager::subScenes StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___subScenes_34; public: inline static int32_t get_offset_of_subScenes_34() { return static_cast<int32_t>(offsetof(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74, ___subScenes_34)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_subScenes_34() const { return ___subScenes_34; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_subScenes_34() { return &___subScenes_34; } inline void set_subScenes_34(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___subScenes_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___subScenes_34), (void*)value); } }; struct AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields { public: // UnityEngine.ILogger Mirror.Examples.Additive.AdditiveNetworkManager::logger RuntimeObject* ___logger_33; public: inline static int32_t get_offset_of_logger_33() { return static_cast<int32_t>(offsetof(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields, ___logger_33)); } inline RuntimeObject* get_logger_33() const { return ___logger_33; } inline RuntimeObject** get_address_of_logger_33() { return &___logger_33; } inline void set_logger_33(RuntimeObject* value) { ___logger_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_33), (void*)value); } }; // Mirror.Examples.Additive.PlayerController struct PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.CharacterController Mirror.Examples.Additive.PlayerController::characterController CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * ___characterController_12; // UnityEngine.CapsuleCollider Mirror.Examples.Additive.PlayerController::capsuleCollider CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * ___capsuleCollider_13; // System.Single Mirror.Examples.Additive.PlayerController::moveSpeed float ___moveSpeed_14; // System.Single Mirror.Examples.Additive.PlayerController::turnSensitivity float ___turnSensitivity_15; // System.Single Mirror.Examples.Additive.PlayerController::maxTurnSpeed float ___maxTurnSpeed_16; // System.Single Mirror.Examples.Additive.PlayerController::horizontal float ___horizontal_17; // System.Single Mirror.Examples.Additive.PlayerController::vertical float ___vertical_18; // System.Single Mirror.Examples.Additive.PlayerController::turn float ___turn_19; // System.Single Mirror.Examples.Additive.PlayerController::jumpSpeed float ___jumpSpeed_20; // System.Boolean Mirror.Examples.Additive.PlayerController::isGrounded bool ___isGrounded_21; // System.Boolean Mirror.Examples.Additive.PlayerController::isFalling bool ___isFalling_22; // UnityEngine.Vector3 Mirror.Examples.Additive.PlayerController::velocity Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_23; public: inline static int32_t get_offset_of_characterController_12() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___characterController_12)); } inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * get_characterController_12() const { return ___characterController_12; } inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E ** get_address_of_characterController_12() { return &___characterController_12; } inline void set_characterController_12(CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * value) { ___characterController_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___characterController_12), (void*)value); } inline static int32_t get_offset_of_capsuleCollider_13() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___capsuleCollider_13)); } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * get_capsuleCollider_13() const { return ___capsuleCollider_13; } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 ** get_address_of_capsuleCollider_13() { return &___capsuleCollider_13; } inline void set_capsuleCollider_13(CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * value) { ___capsuleCollider_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___capsuleCollider_13), (void*)value); } inline static int32_t get_offset_of_moveSpeed_14() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___moveSpeed_14)); } inline float get_moveSpeed_14() const { return ___moveSpeed_14; } inline float* get_address_of_moveSpeed_14() { return &___moveSpeed_14; } inline void set_moveSpeed_14(float value) { ___moveSpeed_14 = value; } inline static int32_t get_offset_of_turnSensitivity_15() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___turnSensitivity_15)); } inline float get_turnSensitivity_15() const { return ___turnSensitivity_15; } inline float* get_address_of_turnSensitivity_15() { return &___turnSensitivity_15; } inline void set_turnSensitivity_15(float value) { ___turnSensitivity_15 = value; } inline static int32_t get_offset_of_maxTurnSpeed_16() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___maxTurnSpeed_16)); } inline float get_maxTurnSpeed_16() const { return ___maxTurnSpeed_16; } inline float* get_address_of_maxTurnSpeed_16() { return &___maxTurnSpeed_16; } inline void set_maxTurnSpeed_16(float value) { ___maxTurnSpeed_16 = value; } inline static int32_t get_offset_of_horizontal_17() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___horizontal_17)); } inline float get_horizontal_17() const { return ___horizontal_17; } inline float* get_address_of_horizontal_17() { return &___horizontal_17; } inline void set_horizontal_17(float value) { ___horizontal_17 = value; } inline static int32_t get_offset_of_vertical_18() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___vertical_18)); } inline float get_vertical_18() const { return ___vertical_18; } inline float* get_address_of_vertical_18() { return &___vertical_18; } inline void set_vertical_18(float value) { ___vertical_18 = value; } inline static int32_t get_offset_of_turn_19() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___turn_19)); } inline float get_turn_19() const { return ___turn_19; } inline float* get_address_of_turn_19() { return &___turn_19; } inline void set_turn_19(float value) { ___turn_19 = value; } inline static int32_t get_offset_of_jumpSpeed_20() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___jumpSpeed_20)); } inline float get_jumpSpeed_20() const { return ___jumpSpeed_20; } inline float* get_address_of_jumpSpeed_20() { return &___jumpSpeed_20; } inline void set_jumpSpeed_20(float value) { ___jumpSpeed_20 = value; } inline static int32_t get_offset_of_isGrounded_21() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___isGrounded_21)); } inline bool get_isGrounded_21() const { return ___isGrounded_21; } inline bool* get_address_of_isGrounded_21() { return &___isGrounded_21; } inline void set_isGrounded_21(bool value) { ___isGrounded_21 = value; } inline static int32_t get_offset_of_isFalling_22() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___isFalling_22)); } inline bool get_isFalling_22() const { return ___isFalling_22; } inline bool* get_address_of_isFalling_22() { return &___isFalling_22; } inline void set_isFalling_22(bool value) { ___isFalling_22 = value; } inline static int32_t get_offset_of_velocity_23() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___velocity_23)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_23() const { return ___velocity_23; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_23() { return &___velocity_23; } inline void set_velocity_23(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___velocity_23 = value; } }; // Mirror.Examples.Additive.RandomColor struct RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.Color32 Mirror.Examples.Additive.RandomColor::color Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_12; // UnityEngine.Material Mirror.Examples.Additive.RandomColor::cachedMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___cachedMaterial_13; public: inline static int32_t get_offset_of_color_12() { return static_cast<int32_t>(offsetof(RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6, ___color_12)); } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_12() const { return ___color_12; } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_12() { return &___color_12; } inline void set_color_12(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value) { ___color_12 = value; } inline static int32_t get_offset_of_cachedMaterial_13() { return static_cast<int32_t>(offsetof(RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6, ___cachedMaterial_13)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_cachedMaterial_13() const { return ___cachedMaterial_13; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_cachedMaterial_13() { return &___cachedMaterial_13; } inline void set_cachedMaterial_13(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___cachedMaterial_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___cachedMaterial_13), (void*)value); } }; // Mirror.Examples.Additive.ShootingTankBehaviour struct ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.Quaternion Mirror.Examples.Additive.ShootingTankBehaviour::rotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_12; // Mirror.NetworkAnimator Mirror.Examples.Additive.ShootingTankBehaviour::networkAnimator NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * ___networkAnimator_13; // System.Single Mirror.Examples.Additive.ShootingTankBehaviour::turnSpeed float ___turnSpeed_14; public: inline static int32_t get_offset_of_rotation_12() { return static_cast<int32_t>(offsetof(ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF, ___rotation_12)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_12() const { return ___rotation_12; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_12() { return &___rotation_12; } inline void set_rotation_12(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___rotation_12 = value; } inline static int32_t get_offset_of_networkAnimator_13() { return static_cast<int32_t>(offsetof(ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF, ___networkAnimator_13)); } inline NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * get_networkAnimator_13() const { return ___networkAnimator_13; } inline NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 ** get_address_of_networkAnimator_13() { return &___networkAnimator_13; } inline void set_networkAnimator_13(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * value) { ___networkAnimator_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___networkAnimator_13), (void*)value); } inline static int32_t get_offset_of_turnSpeed_14() { return static_cast<int32_t>(offsetof(ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF, ___turnSpeed_14)); } inline float get_turnSpeed_14() const { return ___turnSpeed_14; } inline float* get_address_of_turnSpeed_14() { return &___turnSpeed_14; } inline void set_turnSpeed_14(float value) { ___turnSpeed_14 = value; } }; // Mirror.Examples.Additive.ZoneHandler struct ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.String Mirror.Examples.Additive.ZoneHandler::subScene String_t* ___subScene_13; public: inline static int32_t get_offset_of_subScene_13() { return static_cast<int32_t>(offsetof(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569, ___subScene_13)); } inline String_t* get_subScene_13() const { return ___subScene_13; } inline String_t** get_address_of_subScene_13() { return &___subScene_13; } inline void set_subScene_13(String_t* value) { ___subScene_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___subScene_13), (void*)value); } }; struct ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_StaticFields { public: // UnityEngine.ILogger Mirror.Examples.Additive.ZoneHandler::logger RuntimeObject* ___logger_12; public: inline static int32_t get_offset_of_logger_12() { return static_cast<int32_t>(offsetof(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_StaticFields, ___logger_12)); } inline RuntimeObject* get_logger_12() const { return ___logger_12; } inline RuntimeObject** get_address_of_logger_12() { return &___logger_12; } inline void set_logger_12(RuntimeObject* value) { ___logger_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_12), (void*)value); } }; // Mirror.Examples.Basic.Player struct Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.RectTransform Mirror.Examples.Basic.Player::rectTransform RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rectTransform_12; // UnityEngine.UI.Image Mirror.Examples.Basic.Player::image Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___image_13; // UnityEngine.UI.Text Mirror.Examples.Basic.Player::playerNameText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___playerNameText_14; // UnityEngine.UI.Text Mirror.Examples.Basic.Player::playerDataText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___playerDataText_15; // System.Int32 Mirror.Examples.Basic.Player::playerNo int32_t ___playerNo_16; // UnityEngine.Color Mirror.Examples.Basic.Player::playerColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___playerColor_17; // System.Int32 Mirror.Examples.Basic.Player::playerData int32_t ___playerData_18; public: inline static int32_t get_offset_of_rectTransform_12() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___rectTransform_12)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_rectTransform_12() const { return ___rectTransform_12; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_rectTransform_12() { return &___rectTransform_12; } inline void set_rectTransform_12(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___rectTransform_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___rectTransform_12), (void*)value); } inline static int32_t get_offset_of_image_13() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___image_13)); } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get_image_13() const { return ___image_13; } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of_image_13() { return &___image_13; } inline void set_image_13(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value) { ___image_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___image_13), (void*)value); } inline static int32_t get_offset_of_playerNameText_14() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerNameText_14)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_playerNameText_14() const { return ___playerNameText_14; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_playerNameText_14() { return &___playerNameText_14; } inline void set_playerNameText_14(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___playerNameText_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___playerNameText_14), (void*)value); } inline static int32_t get_offset_of_playerDataText_15() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerDataText_15)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_playerDataText_15() const { return ___playerDataText_15; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_playerDataText_15() { return &___playerDataText_15; } inline void set_playerDataText_15(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___playerDataText_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___playerDataText_15), (void*)value); } inline static int32_t get_offset_of_playerNo_16() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerNo_16)); } inline int32_t get_playerNo_16() const { return ___playerNo_16; } inline int32_t* get_address_of_playerNo_16() { return &___playerNo_16; } inline void set_playerNo_16(int32_t value) { ___playerNo_16 = value; } inline static int32_t get_offset_of_playerColor_17() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerColor_17)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_playerColor_17() const { return ___playerColor_17; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_playerColor_17() { return &___playerColor_17; } inline void set_playerColor_17(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___playerColor_17 = value; } inline static int32_t get_offset_of_playerData_18() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerData_18)); } inline int32_t get_playerData_18() const { return ___playerData_18; } inline int32_t* get_address_of_playerData_18() { return &___playerData_18; } inline void set_playerData_18(int32_t value) { ___playerData_18 = value; } }; // Mirror.Examples.Chat.ChatNetworkManager struct ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 { public: // System.String Mirror.Examples.Chat.ChatNetworkManager::<PlayerName>k__BackingField String_t* ___U3CPlayerNameU3Ek__BackingField_33; // Mirror.Examples.Chat.ChatWindow Mirror.Examples.Chat.ChatNetworkManager::chatWindow ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * ___chatWindow_34; public: inline static int32_t get_offset_of_U3CPlayerNameU3Ek__BackingField_33() { return static_cast<int32_t>(offsetof(ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355, ___U3CPlayerNameU3Ek__BackingField_33)); } inline String_t* get_U3CPlayerNameU3Ek__BackingField_33() const { return ___U3CPlayerNameU3Ek__BackingField_33; } inline String_t** get_address_of_U3CPlayerNameU3Ek__BackingField_33() { return &___U3CPlayerNameU3Ek__BackingField_33; } inline void set_U3CPlayerNameU3Ek__BackingField_33(String_t* value) { ___U3CPlayerNameU3Ek__BackingField_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPlayerNameU3Ek__BackingField_33), (void*)value); } inline static int32_t get_offset_of_chatWindow_34() { return static_cast<int32_t>(offsetof(ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355, ___chatWindow_34)); } inline ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * get_chatWindow_34() const { return ___chatWindow_34; } inline ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B ** get_address_of_chatWindow_34() { return &___chatWindow_34; } inline void set_chatWindow_34(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * value) { ___chatWindow_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___chatWindow_34), (void*)value); } }; // Mirror.Examples.Chat.Player struct Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.String Mirror.Examples.Chat.Player::playerName String_t* ___playerName_12; public: inline static int32_t get_offset_of_playerName_12() { return static_cast<int32_t>(offsetof(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707, ___playerName_12)); } inline String_t* get_playerName_12() const { return ___playerName_12; } inline String_t** get_address_of_playerName_12() { return &___playerName_12; } inline void set_playerName_12(String_t* value) { ___playerName_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___playerName_12), (void*)value); } }; struct Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields { public: // System.Action`2<Mirror.Examples.Chat.Player,System.String> Mirror.Examples.Chat.Player::OnMessage Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * ___OnMessage_13; public: inline static int32_t get_offset_of_OnMessage_13() { return static_cast<int32_t>(offsetof(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields, ___OnMessage_13)); } inline Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * get_OnMessage_13() const { return ___OnMessage_13; } inline Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE ** get_address_of_OnMessage_13() { return &___OnMessage_13; } inline void set_OnMessage_13(Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * value) { ___OnMessage_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnMessage_13), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager struct MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 { public: // System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::instances int32_t ___instances_33; // System.String Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::gameScene String_t* ___gameScene_34; // System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene> Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::subScenes List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * ___subScenes_35; public: inline static int32_t get_offset_of_instances_33() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___instances_33)); } inline int32_t get_instances_33() const { return ___instances_33; } inline int32_t* get_address_of_instances_33() { return &___instances_33; } inline void set_instances_33(int32_t value) { ___instances_33 = value; } inline static int32_t get_offset_of_gameScene_34() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___gameScene_34)); } inline String_t* get_gameScene_34() const { return ___gameScene_34; } inline String_t** get_address_of_gameScene_34() { return &___gameScene_34; } inline void set_gameScene_34(String_t* value) { ___gameScene_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___gameScene_34), (void*)value); } inline static int32_t get_offset_of_subScenes_35() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___subScenes_35)); } inline List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * get_subScenes_35() const { return ___subScenes_35; } inline List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 ** get_address_of_subScenes_35() { return &___subScenes_35; } inline void set_subScenes_35(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * value) { ___subScenes_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___subScenes_35), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision struct PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Single Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::force float ___force_12; // UnityEngine.Rigidbody Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::rigidbody3D Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___rigidbody3D_13; public: inline static int32_t get_offset_of_force_12() { return static_cast<int32_t>(offsetof(PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB, ___force_12)); } inline float get_force_12() const { return ___force_12; } inline float* get_address_of_force_12() { return &___force_12; } inline void set_force_12(float value) { ___force_12 = value; } inline static int32_t get_offset_of_rigidbody3D_13() { return static_cast<int32_t>(offsetof(PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB, ___rigidbody3D_13)); } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_rigidbody3D_13() const { return ___rigidbody3D_13; } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_rigidbody3D_13() { return &___rigidbody3D_13; } inline void set_rigidbody3D_13(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value) { ___rigidbody3D_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___rigidbody3D_13), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.PlayerController struct PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.CharacterController Mirror.Examples.MultipleAdditiveScenes.PlayerController::characterController CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * ___characterController_12; // UnityEngine.CapsuleCollider Mirror.Examples.MultipleAdditiveScenes.PlayerController::capsuleCollider CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * ___capsuleCollider_13; // System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::moveSpeed float ___moveSpeed_14; // System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::turnSensitivity float ___turnSensitivity_15; // System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::maxTurnSpeed float ___maxTurnSpeed_16; // System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::horizontal float ___horizontal_17; // System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::vertical float ___vertical_18; // System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::turn float ___turn_19; // System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::jumpSpeed float ___jumpSpeed_20; // System.Boolean Mirror.Examples.MultipleAdditiveScenes.PlayerController::isGrounded bool ___isGrounded_21; // System.Boolean Mirror.Examples.MultipleAdditiveScenes.PlayerController::isFalling bool ___isFalling_22; // UnityEngine.Vector3 Mirror.Examples.MultipleAdditiveScenes.PlayerController::velocity Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_23; public: inline static int32_t get_offset_of_characterController_12() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___characterController_12)); } inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * get_characterController_12() const { return ___characterController_12; } inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E ** get_address_of_characterController_12() { return &___characterController_12; } inline void set_characterController_12(CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * value) { ___characterController_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___characterController_12), (void*)value); } inline static int32_t get_offset_of_capsuleCollider_13() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___capsuleCollider_13)); } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * get_capsuleCollider_13() const { return ___capsuleCollider_13; } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 ** get_address_of_capsuleCollider_13() { return &___capsuleCollider_13; } inline void set_capsuleCollider_13(CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * value) { ___capsuleCollider_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___capsuleCollider_13), (void*)value); } inline static int32_t get_offset_of_moveSpeed_14() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___moveSpeed_14)); } inline float get_moveSpeed_14() const { return ___moveSpeed_14; } inline float* get_address_of_moveSpeed_14() { return &___moveSpeed_14; } inline void set_moveSpeed_14(float value) { ___moveSpeed_14 = value; } inline static int32_t get_offset_of_turnSensitivity_15() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___turnSensitivity_15)); } inline float get_turnSensitivity_15() const { return ___turnSensitivity_15; } inline float* get_address_of_turnSensitivity_15() { return &___turnSensitivity_15; } inline void set_turnSensitivity_15(float value) { ___turnSensitivity_15 = value; } inline static int32_t get_offset_of_maxTurnSpeed_16() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___maxTurnSpeed_16)); } inline float get_maxTurnSpeed_16() const { return ___maxTurnSpeed_16; } inline float* get_address_of_maxTurnSpeed_16() { return &___maxTurnSpeed_16; } inline void set_maxTurnSpeed_16(float value) { ___maxTurnSpeed_16 = value; } inline static int32_t get_offset_of_horizontal_17() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___horizontal_17)); } inline float get_horizontal_17() const { return ___horizontal_17; } inline float* get_address_of_horizontal_17() { return &___horizontal_17; } inline void set_horizontal_17(float value) { ___horizontal_17 = value; } inline static int32_t get_offset_of_vertical_18() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___vertical_18)); } inline float get_vertical_18() const { return ___vertical_18; } inline float* get_address_of_vertical_18() { return &___vertical_18; } inline void set_vertical_18(float value) { ___vertical_18 = value; } inline static int32_t get_offset_of_turn_19() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___turn_19)); } inline float get_turn_19() const { return ___turn_19; } inline float* get_address_of_turn_19() { return &___turn_19; } inline void set_turn_19(float value) { ___turn_19 = value; } inline static int32_t get_offset_of_jumpSpeed_20() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___jumpSpeed_20)); } inline float get_jumpSpeed_20() const { return ___jumpSpeed_20; } inline float* get_address_of_jumpSpeed_20() { return &___jumpSpeed_20; } inline void set_jumpSpeed_20(float value) { ___jumpSpeed_20 = value; } inline static int32_t get_offset_of_isGrounded_21() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___isGrounded_21)); } inline bool get_isGrounded_21() const { return ___isGrounded_21; } inline bool* get_address_of_isGrounded_21() { return &___isGrounded_21; } inline void set_isGrounded_21(bool value) { ___isGrounded_21 = value; } inline static int32_t get_offset_of_isFalling_22() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___isFalling_22)); } inline bool get_isFalling_22() const { return ___isFalling_22; } inline bool* get_address_of_isFalling_22() { return &___isFalling_22; } inline void set_isFalling_22(bool value) { ___isFalling_22 = value; } inline static int32_t get_offset_of_velocity_23() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___velocity_23)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_23() const { return ___velocity_23; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_23() { return &___velocity_23; } inline void set_velocity_23(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___velocity_23 = value; } }; // Mirror.Examples.MultipleAdditiveScenes.PlayerScore struct PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::playerNumber int32_t ___playerNumber_12; // System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::scoreIndex int32_t ___scoreIndex_13; // System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::matchIndex int32_t ___matchIndex_14; // System.UInt32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::score uint32_t ___score_15; // System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::clientMatchIndex int32_t ___clientMatchIndex_16; public: inline static int32_t get_offset_of_playerNumber_12() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___playerNumber_12)); } inline int32_t get_playerNumber_12() const { return ___playerNumber_12; } inline int32_t* get_address_of_playerNumber_12() { return &___playerNumber_12; } inline void set_playerNumber_12(int32_t value) { ___playerNumber_12 = value; } inline static int32_t get_offset_of_scoreIndex_13() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___scoreIndex_13)); } inline int32_t get_scoreIndex_13() const { return ___scoreIndex_13; } inline int32_t* get_address_of_scoreIndex_13() { return &___scoreIndex_13; } inline void set_scoreIndex_13(int32_t value) { ___scoreIndex_13 = value; } inline static int32_t get_offset_of_matchIndex_14() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___matchIndex_14)); } inline int32_t get_matchIndex_14() const { return ___matchIndex_14; } inline int32_t* get_address_of_matchIndex_14() { return &___matchIndex_14; } inline void set_matchIndex_14(int32_t value) { ___matchIndex_14 = value; } inline static int32_t get_offset_of_score_15() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___score_15)); } inline uint32_t get_score_15() const { return ___score_15; } inline uint32_t* get_address_of_score_15() { return &___score_15; } inline void set_score_15(uint32_t value) { ___score_15 = value; } inline static int32_t get_offset_of_clientMatchIndex_16() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___clientMatchIndex_16)); } inline int32_t get_clientMatchIndex_16() const { return ___clientMatchIndex_16; } inline int32_t* get_address_of_clientMatchIndex_16() { return &___clientMatchIndex_16; } inline void set_clientMatchIndex_16(int32_t value) { ___clientMatchIndex_16 = value; } }; // Mirror.Examples.MultipleAdditiveScenes.RandomColor struct RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.Color32 Mirror.Examples.MultipleAdditiveScenes.RandomColor::color Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_12; // UnityEngine.Material Mirror.Examples.MultipleAdditiveScenes.RandomColor::cachedMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___cachedMaterial_13; public: inline static int32_t get_offset_of_color_12() { return static_cast<int32_t>(offsetof(RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455, ___color_12)); } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_12() const { return ___color_12; } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_12() { return &___color_12; } inline void set_color_12(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value) { ___color_12 = value; } inline static int32_t get_offset_of_cachedMaterial_13() { return static_cast<int32_t>(offsetof(RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455, ___cachedMaterial_13)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_cachedMaterial_13() const { return ___cachedMaterial_13; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_cachedMaterial_13() { return &___cachedMaterial_13; } inline void set_cachedMaterial_13(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___cachedMaterial_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___cachedMaterial_13), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.Reward struct Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Boolean Mirror.Examples.MultipleAdditiveScenes.Reward::available bool ___available_13; // Mirror.Examples.MultipleAdditiveScenes.Spawner Mirror.Examples.MultipleAdditiveScenes.Reward::spawner Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * ___spawner_14; // Mirror.Examples.MultipleAdditiveScenes.RandomColor Mirror.Examples.MultipleAdditiveScenes.Reward::randomColor RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * ___randomColor_15; public: inline static int32_t get_offset_of_available_13() { return static_cast<int32_t>(offsetof(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2, ___available_13)); } inline bool get_available_13() const { return ___available_13; } inline bool* get_address_of_available_13() { return &___available_13; } inline void set_available_13(bool value) { ___available_13 = value; } inline static int32_t get_offset_of_spawner_14() { return static_cast<int32_t>(offsetof(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2, ___spawner_14)); } inline Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * get_spawner_14() const { return ___spawner_14; } inline Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 ** get_address_of_spawner_14() { return &___spawner_14; } inline void set_spawner_14(Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * value) { ___spawner_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___spawner_14), (void*)value); } inline static int32_t get_offset_of_randomColor_15() { return static_cast<int32_t>(offsetof(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2, ___randomColor_15)); } inline RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * get_randomColor_15() const { return ___randomColor_15; } inline RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 ** get_address_of_randomColor_15() { return &___randomColor_15; } inline void set_randomColor_15(RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * value) { ___randomColor_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___randomColor_15), (void*)value); } }; struct Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_StaticFields { public: // UnityEngine.ILogger Mirror.Examples.MultipleAdditiveScenes.Reward::logger RuntimeObject* ___logger_12; public: inline static int32_t get_offset_of_logger_12() { return static_cast<int32_t>(offsetof(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_StaticFields, ___logger_12)); } inline RuntimeObject* get_logger_12() const { return ___logger_12; } inline RuntimeObject** get_address_of_logger_12() { return &___logger_12; } inline void set_logger_12(RuntimeObject* value) { ___logger_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_12), (void*)value); } }; // Mirror.Examples.MultipleAdditiveScenes.Spawner struct Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // Mirror.NetworkIdentity Mirror.Examples.MultipleAdditiveScenes.Spawner::prizePrefab NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___prizePrefab_12; public: inline static int32_t get_offset_of_prizePrefab_12() { return static_cast<int32_t>(offsetof(Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4, ___prizePrefab_12)); } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_prizePrefab_12() const { return ___prizePrefab_12; } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_prizePrefab_12() { return &___prizePrefab_12; } inline void set_prizePrefab_12(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value) { ___prizePrefab_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___prizePrefab_12), (void*)value); } }; // Mirror.Examples.NetworkRoom.PlayerController struct PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.CharacterController Mirror.Examples.NetworkRoom.PlayerController::characterController CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * ___characterController_12; // UnityEngine.CapsuleCollider Mirror.Examples.NetworkRoom.PlayerController::capsuleCollider CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * ___capsuleCollider_13; // System.Single Mirror.Examples.NetworkRoom.PlayerController::moveSpeed float ___moveSpeed_14; // System.Single Mirror.Examples.NetworkRoom.PlayerController::turnSensitivity float ___turnSensitivity_15; // System.Single Mirror.Examples.NetworkRoom.PlayerController::maxTurnSpeed float ___maxTurnSpeed_16; // System.Single Mirror.Examples.NetworkRoom.PlayerController::horizontal float ___horizontal_17; // System.Single Mirror.Examples.NetworkRoom.PlayerController::vertical float ___vertical_18; // System.Single Mirror.Examples.NetworkRoom.PlayerController::turn float ___turn_19; // System.Single Mirror.Examples.NetworkRoom.PlayerController::jumpSpeed float ___jumpSpeed_20; // System.Boolean Mirror.Examples.NetworkRoom.PlayerController::isGrounded bool ___isGrounded_21; // System.Boolean Mirror.Examples.NetworkRoom.PlayerController::isFalling bool ___isFalling_22; // UnityEngine.Vector3 Mirror.Examples.NetworkRoom.PlayerController::velocity Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_23; public: inline static int32_t get_offset_of_characterController_12() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___characterController_12)); } inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * get_characterController_12() const { return ___characterController_12; } inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E ** get_address_of_characterController_12() { return &___characterController_12; } inline void set_characterController_12(CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * value) { ___characterController_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___characterController_12), (void*)value); } inline static int32_t get_offset_of_capsuleCollider_13() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___capsuleCollider_13)); } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * get_capsuleCollider_13() const { return ___capsuleCollider_13; } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 ** get_address_of_capsuleCollider_13() { return &___capsuleCollider_13; } inline void set_capsuleCollider_13(CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * value) { ___capsuleCollider_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___capsuleCollider_13), (void*)value); } inline static int32_t get_offset_of_moveSpeed_14() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___moveSpeed_14)); } inline float get_moveSpeed_14() const { return ___moveSpeed_14; } inline float* get_address_of_moveSpeed_14() { return &___moveSpeed_14; } inline void set_moveSpeed_14(float value) { ___moveSpeed_14 = value; } inline static int32_t get_offset_of_turnSensitivity_15() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___turnSensitivity_15)); } inline float get_turnSensitivity_15() const { return ___turnSensitivity_15; } inline float* get_address_of_turnSensitivity_15() { return &___turnSensitivity_15; } inline void set_turnSensitivity_15(float value) { ___turnSensitivity_15 = value; } inline static int32_t get_offset_of_maxTurnSpeed_16() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___maxTurnSpeed_16)); } inline float get_maxTurnSpeed_16() const { return ___maxTurnSpeed_16; } inline float* get_address_of_maxTurnSpeed_16() { return &___maxTurnSpeed_16; } inline void set_maxTurnSpeed_16(float value) { ___maxTurnSpeed_16 = value; } inline static int32_t get_offset_of_horizontal_17() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___horizontal_17)); } inline float get_horizontal_17() const { return ___horizontal_17; } inline float* get_address_of_horizontal_17() { return &___horizontal_17; } inline void set_horizontal_17(float value) { ___horizontal_17 = value; } inline static int32_t get_offset_of_vertical_18() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___vertical_18)); } inline float get_vertical_18() const { return ___vertical_18; } inline float* get_address_of_vertical_18() { return &___vertical_18; } inline void set_vertical_18(float value) { ___vertical_18 = value; } inline static int32_t get_offset_of_turn_19() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___turn_19)); } inline float get_turn_19() const { return ___turn_19; } inline float* get_address_of_turn_19() { return &___turn_19; } inline void set_turn_19(float value) { ___turn_19 = value; } inline static int32_t get_offset_of_jumpSpeed_20() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___jumpSpeed_20)); } inline float get_jumpSpeed_20() const { return ___jumpSpeed_20; } inline float* get_address_of_jumpSpeed_20() { return &___jumpSpeed_20; } inline void set_jumpSpeed_20(float value) { ___jumpSpeed_20 = value; } inline static int32_t get_offset_of_isGrounded_21() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___isGrounded_21)); } inline bool get_isGrounded_21() const { return ___isGrounded_21; } inline bool* get_address_of_isGrounded_21() { return &___isGrounded_21; } inline void set_isGrounded_21(bool value) { ___isGrounded_21 = value; } inline static int32_t get_offset_of_isFalling_22() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___isFalling_22)); } inline bool get_isFalling_22() const { return ___isFalling_22; } inline bool* get_address_of_isFalling_22() { return &___isFalling_22; } inline void set_isFalling_22(bool value) { ___isFalling_22 = value; } inline static int32_t get_offset_of_velocity_23() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___velocity_23)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_23() const { return ___velocity_23; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_23() { return &___velocity_23; } inline void set_velocity_23(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___velocity_23 = value; } }; // Mirror.Examples.NetworkRoom.PlayerScore struct PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Int32 Mirror.Examples.NetworkRoom.PlayerScore::index int32_t ___index_12; // System.UInt32 Mirror.Examples.NetworkRoom.PlayerScore::score uint32_t ___score_13; public: inline static int32_t get_offset_of_index_12() { return static_cast<int32_t>(offsetof(PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6, ___index_12)); } inline int32_t get_index_12() const { return ___index_12; } inline int32_t* get_address_of_index_12() { return &___index_12; } inline void set_index_12(int32_t value) { ___index_12 = value; } inline static int32_t get_offset_of_score_13() { return static_cast<int32_t>(offsetof(PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6, ___score_13)); } inline uint32_t get_score_13() const { return ___score_13; } inline uint32_t* get_address_of_score_13() { return &___score_13; } inline void set_score_13(uint32_t value) { ___score_13 = value; } }; // Mirror.Examples.NetworkRoom.RandomColor struct RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.Color32 Mirror.Examples.NetworkRoom.RandomColor::color Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_12; // UnityEngine.Material Mirror.Examples.NetworkRoom.RandomColor::cachedMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___cachedMaterial_13; public: inline static int32_t get_offset_of_color_12() { return static_cast<int32_t>(offsetof(RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F, ___color_12)); } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_12() const { return ___color_12; } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_12() { return &___color_12; } inline void set_color_12(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value) { ___color_12 = value; } inline static int32_t get_offset_of_cachedMaterial_13() { return static_cast<int32_t>(offsetof(RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F, ___cachedMaterial_13)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_cachedMaterial_13() const { return ___cachedMaterial_13; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_cachedMaterial_13() { return &___cachedMaterial_13; } inline void set_cachedMaterial_13(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___cachedMaterial_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___cachedMaterial_13), (void*)value); } }; // Mirror.Examples.NetworkRoom.Reward struct Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Boolean Mirror.Examples.NetworkRoom.Reward::available bool ___available_13; // Mirror.Examples.NetworkRoom.Spawner Mirror.Examples.NetworkRoom.Reward::spawner Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * ___spawner_14; // System.UInt32 Mirror.Examples.NetworkRoom.Reward::points uint32_t ___points_15; // Mirror.Examples.NetworkRoom.RandomColor Mirror.Examples.NetworkRoom.Reward::randomColor RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * ___randomColor_16; public: inline static int32_t get_offset_of_available_13() { return static_cast<int32_t>(offsetof(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4, ___available_13)); } inline bool get_available_13() const { return ___available_13; } inline bool* get_address_of_available_13() { return &___available_13; } inline void set_available_13(bool value) { ___available_13 = value; } inline static int32_t get_offset_of_spawner_14() { return static_cast<int32_t>(offsetof(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4, ___spawner_14)); } inline Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * get_spawner_14() const { return ___spawner_14; } inline Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC ** get_address_of_spawner_14() { return &___spawner_14; } inline void set_spawner_14(Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * value) { ___spawner_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___spawner_14), (void*)value); } inline static int32_t get_offset_of_points_15() { return static_cast<int32_t>(offsetof(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4, ___points_15)); } inline uint32_t get_points_15() const { return ___points_15; } inline uint32_t* get_address_of_points_15() { return &___points_15; } inline void set_points_15(uint32_t value) { ___points_15 = value; } inline static int32_t get_offset_of_randomColor_16() { return static_cast<int32_t>(offsetof(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4, ___randomColor_16)); } inline RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * get_randomColor_16() const { return ___randomColor_16; } inline RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F ** get_address_of_randomColor_16() { return &___randomColor_16; } inline void set_randomColor_16(RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * value) { ___randomColor_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___randomColor_16), (void*)value); } }; struct Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_StaticFields { public: // UnityEngine.ILogger Mirror.Examples.NetworkRoom.Reward::logger RuntimeObject* ___logger_12; public: inline static int32_t get_offset_of_logger_12() { return static_cast<int32_t>(offsetof(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_StaticFields, ___logger_12)); } inline RuntimeObject* get_logger_12() const { return ___logger_12; } inline RuntimeObject** get_address_of_logger_12() { return &___logger_12; } inline void set_logger_12(RuntimeObject* value) { ___logger_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_12), (void*)value); } }; // Mirror.Examples.NetworkRoom.Spawner struct Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // Mirror.NetworkIdentity Mirror.Examples.NetworkRoom.Spawner::prizePrefab NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___prizePrefab_12; public: inline static int32_t get_offset_of_prizePrefab_12() { return static_cast<int32_t>(offsetof(Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC, ___prizePrefab_12)); } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_prizePrefab_12() const { return ___prizePrefab_12; } inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_prizePrefab_12() { return &___prizePrefab_12; } inline void set_prizePrefab_12(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value) { ___prizePrefab_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___prizePrefab_12), (void*)value); } }; // Mirror.Examples.OneK.MonsterMovement struct MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Single Mirror.Examples.OneK.MonsterMovement::speed float ___speed_12; // System.Single Mirror.Examples.OneK.MonsterMovement::movementProbability float ___movementProbability_13; // System.Single Mirror.Examples.OneK.MonsterMovement::movementDistance float ___movementDistance_14; // System.Boolean Mirror.Examples.OneK.MonsterMovement::moving bool ___moving_15; // UnityEngine.Vector3 Mirror.Examples.OneK.MonsterMovement::start Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___start_16; // UnityEngine.Vector3 Mirror.Examples.OneK.MonsterMovement::destination Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___destination_17; public: inline static int32_t get_offset_of_speed_12() { return static_cast<int32_t>(offsetof(MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4, ___speed_12)); } inline float get_speed_12() const { return ___speed_12; } inline float* get_address_of_speed_12() { return &___speed_12; } inline void set_speed_12(float value) { ___speed_12 = value; } inline static int32_t get_offset_of_movementProbability_13() { return static_cast<int32_t>(offsetof(MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4, ___movementProbability_13)); } inline float get_movementProbability_13() const { return ___movementProbability_13; } inline float* get_address_of_movementProbability_13() { return &___movementProbability_13; } inline void set_movementProbability_13(float value) { ___movementProbability_13 = value; } inline static int32_t get_offset_of_movementDistance_14() { return static_cast<int32_t>(offsetof(MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4, ___movementDistance_14)); } inline float get_movementDistance_14() const { return ___movementDistance_14; } inline float* get_address_of_movementDistance_14() { return &___movementDistance_14; } inline void set_movementDistance_14(float value) { ___movementDistance_14 = value; } inline static int32_t get_offset_of_moving_15() { return static_cast<int32_t>(offsetof(MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4, ___moving_15)); } inline bool get_moving_15() const { return ___moving_15; } inline bool* get_address_of_moving_15() { return &___moving_15; } inline void set_moving_15(bool value) { ___moving_15 = value; } inline static int32_t get_offset_of_start_16() { return static_cast<int32_t>(offsetof(MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4, ___start_16)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_start_16() const { return ___start_16; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_start_16() { return &___start_16; } inline void set_start_16(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___start_16 = value; } inline static int32_t get_offset_of_destination_17() { return static_cast<int32_t>(offsetof(MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4, ___destination_17)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_destination_17() const { return ___destination_17; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_destination_17() { return &___destination_17; } inline void set_destination_17(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___destination_17 = value; } }; // Mirror.Examples.OneK.PlayerMovement struct PlayerMovement_tEA0B6190139E09855FC49E2518EE11D217B5BFC0 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Single Mirror.Examples.OneK.PlayerMovement::speed float ___speed_12; public: inline static int32_t get_offset_of_speed_12() { return static_cast<int32_t>(offsetof(PlayerMovement_tEA0B6190139E09855FC49E2518EE11D217B5BFC0, ___speed_12)); } inline float get_speed_12() const { return ___speed_12; } inline float* get_address_of_speed_12() { return &___speed_12; } inline void set_speed_12(float value) { ___speed_12 = value; } }; // Mirror.Examples.Pong.Ball struct Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Single Mirror.Examples.Pong.Ball::speed float ___speed_12; // UnityEngine.Rigidbody2D Mirror.Examples.Pong.Ball::rigidbody2d Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * ___rigidbody2d_13; public: inline static int32_t get_offset_of_speed_12() { return static_cast<int32_t>(offsetof(Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0, ___speed_12)); } inline float get_speed_12() const { return ___speed_12; } inline float* get_address_of_speed_12() { return &___speed_12; } inline void set_speed_12(float value) { ___speed_12 = value; } inline static int32_t get_offset_of_rigidbody2d_13() { return static_cast<int32_t>(offsetof(Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0, ___rigidbody2d_13)); } inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * get_rigidbody2d_13() const { return ___rigidbody2d_13; } inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 ** get_address_of_rigidbody2d_13() { return &___rigidbody2d_13; } inline void set_rigidbody2d_13(Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * value) { ___rigidbody2d_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___rigidbody2d_13), (void*)value); } }; // Mirror.Examples.Pong.NetworkManagerPong struct NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 { public: // UnityEngine.Transform Mirror.Examples.Pong.NetworkManagerPong::leftRacketSpawn Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___leftRacketSpawn_33; // UnityEngine.Transform Mirror.Examples.Pong.NetworkManagerPong::rightRacketSpawn Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___rightRacketSpawn_34; // UnityEngine.GameObject Mirror.Examples.Pong.NetworkManagerPong::ball GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___ball_35; public: inline static int32_t get_offset_of_leftRacketSpawn_33() { return static_cast<int32_t>(offsetof(NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7, ___leftRacketSpawn_33)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_leftRacketSpawn_33() const { return ___leftRacketSpawn_33; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_leftRacketSpawn_33() { return &___leftRacketSpawn_33; } inline void set_leftRacketSpawn_33(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___leftRacketSpawn_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftRacketSpawn_33), (void*)value); } inline static int32_t get_offset_of_rightRacketSpawn_34() { return static_cast<int32_t>(offsetof(NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7, ___rightRacketSpawn_34)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_rightRacketSpawn_34() const { return ___rightRacketSpawn_34; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_rightRacketSpawn_34() { return &___rightRacketSpawn_34; } inline void set_rightRacketSpawn_34(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___rightRacketSpawn_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightRacketSpawn_34), (void*)value); } inline static int32_t get_offset_of_ball_35() { return static_cast<int32_t>(offsetof(NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7, ___ball_35)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_ball_35() const { return ___ball_35; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_ball_35() { return &___ball_35; } inline void set_ball_35(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___ball_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___ball_35), (void*)value); } }; // Mirror.Examples.Pong.Player struct Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Single Mirror.Examples.Pong.Player::speed float ___speed_12; // UnityEngine.Rigidbody2D Mirror.Examples.Pong.Player::rigidbody2d Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * ___rigidbody2d_13; public: inline static int32_t get_offset_of_speed_12() { return static_cast<int32_t>(offsetof(Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36, ___speed_12)); } inline float get_speed_12() const { return ___speed_12; } inline float* get_address_of_speed_12() { return &___speed_12; } inline void set_speed_12(float value) { ___speed_12 = value; } inline static int32_t get_offset_of_rigidbody2d_13() { return static_cast<int32_t>(offsetof(Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36, ___rigidbody2d_13)); } inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * get_rigidbody2d_13() const { return ___rigidbody2d_13; } inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 ** get_address_of_rigidbody2d_13() { return &___rigidbody2d_13; } inline void set_rigidbody2d_13(Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * value) { ___rigidbody2d_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___rigidbody2d_13), (void*)value); } }; // Mirror.Examples.Tanks.Projectile struct Projectile_t1C5430FC42935877498341CC359F93F1987C4586 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Single Mirror.Examples.Tanks.Projectile::destroyAfter float ___destroyAfter_12; // UnityEngine.Rigidbody Mirror.Examples.Tanks.Projectile::rigidBody Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___rigidBody_13; // System.Single Mirror.Examples.Tanks.Projectile::force float ___force_14; // System.Int32 Mirror.Examples.Tanks.Projectile::damage int32_t ___damage_15; // UnityEngine.GameObject Mirror.Examples.Tanks.Projectile::source GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___source_16; public: inline static int32_t get_offset_of_destroyAfter_12() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___destroyAfter_12)); } inline float get_destroyAfter_12() const { return ___destroyAfter_12; } inline float* get_address_of_destroyAfter_12() { return &___destroyAfter_12; } inline void set_destroyAfter_12(float value) { ___destroyAfter_12 = value; } inline static int32_t get_offset_of_rigidBody_13() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___rigidBody_13)); } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_rigidBody_13() const { return ___rigidBody_13; } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_rigidBody_13() { return &___rigidBody_13; } inline void set_rigidBody_13(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value) { ___rigidBody_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___rigidBody_13), (void*)value); } inline static int32_t get_offset_of_force_14() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___force_14)); } inline float get_force_14() const { return ___force_14; } inline float* get_address_of_force_14() { return &___force_14; } inline void set_force_14(float value) { ___force_14 = value; } inline static int32_t get_offset_of_damage_15() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___damage_15)); } inline int32_t get_damage_15() const { return ___damage_15; } inline int32_t* get_address_of_damage_15() { return &___damage_15; } inline void set_damage_15(int32_t value) { ___damage_15 = value; } inline static int32_t get_offset_of_source_16() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___source_16)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_source_16() const { return ___source_16; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_source_16() { return &___source_16; } inline void set_source_16(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___source_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_16), (void*)value); } }; // Mirror.Examples.Tanks.Tank struct Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // UnityEngine.AI.NavMeshAgent Mirror.Examples.Tanks.Tank::agent NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * ___agent_12; // UnityEngine.Animator Mirror.Examples.Tanks.Tank::animator Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___animator_13; // System.Single Mirror.Examples.Tanks.Tank::rotationSpeed float ___rotationSpeed_14; // UnityEngine.KeyCode Mirror.Examples.Tanks.Tank::shootKey int32_t ___shootKey_15; // UnityEngine.GameObject Mirror.Examples.Tanks.Tank::projectilePrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___projectilePrefab_16; // UnityEngine.Transform Mirror.Examples.Tanks.Tank::projectileMount Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___projectileMount_17; // System.Int32 Mirror.Examples.Tanks.Tank::health int32_t ___health_18; // System.Int32 Mirror.Examples.Tanks.Tank::score int32_t ___score_19; // System.String Mirror.Examples.Tanks.Tank::playerName String_t* ___playerName_20; // System.Boolean Mirror.Examples.Tanks.Tank::allowMovement bool ___allowMovement_21; // System.Boolean Mirror.Examples.Tanks.Tank::isReady bool ___isReady_22; // UnityEngine.TextMesh Mirror.Examples.Tanks.Tank::nameText TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * ___nameText_23; public: inline static int32_t get_offset_of_agent_12() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___agent_12)); } inline NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * get_agent_12() const { return ___agent_12; } inline NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B ** get_address_of_agent_12() { return &___agent_12; } inline void set_agent_12(NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * value) { ___agent_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___agent_12), (void*)value); } inline static int32_t get_offset_of_animator_13() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___animator_13)); } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_animator_13() const { return ___animator_13; } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_animator_13() { return &___animator_13; } inline void set_animator_13(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value) { ___animator_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___animator_13), (void*)value); } inline static int32_t get_offset_of_rotationSpeed_14() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___rotationSpeed_14)); } inline float get_rotationSpeed_14() const { return ___rotationSpeed_14; } inline float* get_address_of_rotationSpeed_14() { return &___rotationSpeed_14; } inline void set_rotationSpeed_14(float value) { ___rotationSpeed_14 = value; } inline static int32_t get_offset_of_shootKey_15() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___shootKey_15)); } inline int32_t get_shootKey_15() const { return ___shootKey_15; } inline int32_t* get_address_of_shootKey_15() { return &___shootKey_15; } inline void set_shootKey_15(int32_t value) { ___shootKey_15 = value; } inline static int32_t get_offset_of_projectilePrefab_16() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___projectilePrefab_16)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_projectilePrefab_16() const { return ___projectilePrefab_16; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_projectilePrefab_16() { return &___projectilePrefab_16; } inline void set_projectilePrefab_16(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___projectilePrefab_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___projectilePrefab_16), (void*)value); } inline static int32_t get_offset_of_projectileMount_17() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___projectileMount_17)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_projectileMount_17() const { return ___projectileMount_17; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_projectileMount_17() { return &___projectileMount_17; } inline void set_projectileMount_17(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___projectileMount_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___projectileMount_17), (void*)value); } inline static int32_t get_offset_of_health_18() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___health_18)); } inline int32_t get_health_18() const { return ___health_18; } inline int32_t* get_address_of_health_18() { return &___health_18; } inline void set_health_18(int32_t value) { ___health_18 = value; } inline static int32_t get_offset_of_score_19() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___score_19)); } inline int32_t get_score_19() const { return ___score_19; } inline int32_t* get_address_of_score_19() { return &___score_19; } inline void set_score_19(int32_t value) { ___score_19 = value; } inline static int32_t get_offset_of_playerName_20() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___playerName_20)); } inline String_t* get_playerName_20() const { return ___playerName_20; } inline String_t** get_address_of_playerName_20() { return &___playerName_20; } inline void set_playerName_20(String_t* value) { ___playerName_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___playerName_20), (void*)value); } inline static int32_t get_offset_of_allowMovement_21() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___allowMovement_21)); } inline bool get_allowMovement_21() const { return ___allowMovement_21; } inline bool* get_address_of_allowMovement_21() { return &___allowMovement_21; } inline void set_allowMovement_21(bool value) { ___allowMovement_21 = value; } inline static int32_t get_offset_of_isReady_22() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___isReady_22)); } inline bool get_isReady_22() const { return ___isReady_22; } inline bool* get_address_of_isReady_22() { return &___isReady_22; } inline void set_isReady_22(bool value) { ___isReady_22 = value; } inline static int32_t get_offset_of_nameText_23() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___nameText_23)); } inline TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * get_nameText_23() const { return ___nameText_23; } inline TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 ** get_address_of_nameText_23() { return &___nameText_23; } inline void set_nameText_23(TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * value) { ___nameText_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameText_23), (void*)value); } }; // Mirror.NetworkAnimator struct NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Boolean Mirror.NetworkAnimator::clientAuthority bool ___clientAuthority_13; // UnityEngine.Animator Mirror.NetworkAnimator::animator Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___animator_14; // System.Int32[] Mirror.NetworkAnimator::lastIntParameters Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___lastIntParameters_15; // System.Single[] Mirror.NetworkAnimator::lastFloatParameters SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___lastFloatParameters_16; // System.Boolean[] Mirror.NetworkAnimator::lastBoolParameters BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___lastBoolParameters_17; // UnityEngine.AnimatorControllerParameter[] Mirror.NetworkAnimator::parameters AnimatorControllerParameterU5BU5D_t51A7788330152A26BE85C81C904CD9C874598EDE* ___parameters_18; // System.Int32[] Mirror.NetworkAnimator::animationHash Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___animationHash_19; // System.Int32[] Mirror.NetworkAnimator::transitionHash Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___transitionHash_20; // System.Single[] Mirror.NetworkAnimator::layerWeight SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___layerWeight_21; // System.Single Mirror.NetworkAnimator::nextSendTime float ___nextSendTime_22; public: inline static int32_t get_offset_of_clientAuthority_13() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___clientAuthority_13)); } inline bool get_clientAuthority_13() const { return ___clientAuthority_13; } inline bool* get_address_of_clientAuthority_13() { return &___clientAuthority_13; } inline void set_clientAuthority_13(bool value) { ___clientAuthority_13 = value; } inline static int32_t get_offset_of_animator_14() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___animator_14)); } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_animator_14() const { return ___animator_14; } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_animator_14() { return &___animator_14; } inline void set_animator_14(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value) { ___animator_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___animator_14), (void*)value); } inline static int32_t get_offset_of_lastIntParameters_15() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___lastIntParameters_15)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_lastIntParameters_15() const { return ___lastIntParameters_15; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_lastIntParameters_15() { return &___lastIntParameters_15; } inline void set_lastIntParameters_15(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___lastIntParameters_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastIntParameters_15), (void*)value); } inline static int32_t get_offset_of_lastFloatParameters_16() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___lastFloatParameters_16)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_lastFloatParameters_16() const { return ___lastFloatParameters_16; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_lastFloatParameters_16() { return &___lastFloatParameters_16; } inline void set_lastFloatParameters_16(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___lastFloatParameters_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastFloatParameters_16), (void*)value); } inline static int32_t get_offset_of_lastBoolParameters_17() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___lastBoolParameters_17)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get_lastBoolParameters_17() const { return ___lastBoolParameters_17; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of_lastBoolParameters_17() { return &___lastBoolParameters_17; } inline void set_lastBoolParameters_17(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ___lastBoolParameters_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastBoolParameters_17), (void*)value); } inline static int32_t get_offset_of_parameters_18() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___parameters_18)); } inline AnimatorControllerParameterU5BU5D_t51A7788330152A26BE85C81C904CD9C874598EDE* get_parameters_18() const { return ___parameters_18; } inline AnimatorControllerParameterU5BU5D_t51A7788330152A26BE85C81C904CD9C874598EDE** get_address_of_parameters_18() { return &___parameters_18; } inline void set_parameters_18(AnimatorControllerParameterU5BU5D_t51A7788330152A26BE85C81C904CD9C874598EDE* value) { ___parameters_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_18), (void*)value); } inline static int32_t get_offset_of_animationHash_19() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___animationHash_19)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_animationHash_19() const { return ___animationHash_19; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_animationHash_19() { return &___animationHash_19; } inline void set_animationHash_19(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___animationHash_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___animationHash_19), (void*)value); } inline static int32_t get_offset_of_transitionHash_20() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___transitionHash_20)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_transitionHash_20() const { return ___transitionHash_20; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_transitionHash_20() { return &___transitionHash_20; } inline void set_transitionHash_20(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___transitionHash_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___transitionHash_20), (void*)value); } inline static int32_t get_offset_of_layerWeight_21() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___layerWeight_21)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_layerWeight_21() const { return ___layerWeight_21; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_layerWeight_21() { return &___layerWeight_21; } inline void set_layerWeight_21(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___layerWeight_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___layerWeight_21), (void*)value); } inline static int32_t get_offset_of_nextSendTime_22() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___nextSendTime_22)); } inline float get_nextSendTime_22() const { return ___nextSendTime_22; } inline float* get_address_of_nextSendTime_22() { return &___nextSendTime_22; } inline void set_nextSendTime_22(float value) { ___nextSendTime_22 = value; } }; struct NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkAnimator::logger RuntimeObject* ___logger_12; public: inline static int32_t get_offset_of_logger_12() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550_StaticFields, ___logger_12)); } inline RuntimeObject* get_logger_12() const { return ___logger_12; } inline RuntimeObject** get_address_of_logger_12() { return &___logger_12; } inline void set_logger_12(RuntimeObject* value) { ___logger_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_12), (void*)value); } }; // Mirror.NetworkRoomManager struct NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 { public: // System.Boolean Mirror.NetworkRoomManager::showRoomGUI bool ___showRoomGUI_34; // System.Int32 Mirror.NetworkRoomManager::minPlayers int32_t ___minPlayers_35; // Mirror.NetworkRoomPlayer Mirror.NetworkRoomManager::roomPlayerPrefab NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F * ___roomPlayerPrefab_36; // System.String Mirror.NetworkRoomManager::RoomScene String_t* ___RoomScene_37; // System.String Mirror.NetworkRoomManager::GameplayScene String_t* ___GameplayScene_38; // System.Collections.Generic.List`1<Mirror.NetworkRoomManager_PendingPlayer> Mirror.NetworkRoomManager::pendingPlayers List_1_t38A5A5E401291927667E9840827169D1FFDA2EFC * ___pendingPlayers_39; // System.Boolean Mirror.NetworkRoomManager::_allPlayersReady bool ____allPlayersReady_40; // System.Collections.Generic.List`1<Mirror.NetworkRoomPlayer> Mirror.NetworkRoomManager::roomSlots List_1_t12E07DEAE79B9E370C8C88598C5BC4D3A5B328A6 * ___roomSlots_41; public: inline static int32_t get_offset_of_showRoomGUI_34() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___showRoomGUI_34)); } inline bool get_showRoomGUI_34() const { return ___showRoomGUI_34; } inline bool* get_address_of_showRoomGUI_34() { return &___showRoomGUI_34; } inline void set_showRoomGUI_34(bool value) { ___showRoomGUI_34 = value; } inline static int32_t get_offset_of_minPlayers_35() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___minPlayers_35)); } inline int32_t get_minPlayers_35() const { return ___minPlayers_35; } inline int32_t* get_address_of_minPlayers_35() { return &___minPlayers_35; } inline void set_minPlayers_35(int32_t value) { ___minPlayers_35 = value; } inline static int32_t get_offset_of_roomPlayerPrefab_36() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___roomPlayerPrefab_36)); } inline NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F * get_roomPlayerPrefab_36() const { return ___roomPlayerPrefab_36; } inline NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F ** get_address_of_roomPlayerPrefab_36() { return &___roomPlayerPrefab_36; } inline void set_roomPlayerPrefab_36(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F * value) { ___roomPlayerPrefab_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___roomPlayerPrefab_36), (void*)value); } inline static int32_t get_offset_of_RoomScene_37() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___RoomScene_37)); } inline String_t* get_RoomScene_37() const { return ___RoomScene_37; } inline String_t** get_address_of_RoomScene_37() { return &___RoomScene_37; } inline void set_RoomScene_37(String_t* value) { ___RoomScene_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___RoomScene_37), (void*)value); } inline static int32_t get_offset_of_GameplayScene_38() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___GameplayScene_38)); } inline String_t* get_GameplayScene_38() const { return ___GameplayScene_38; } inline String_t** get_address_of_GameplayScene_38() { return &___GameplayScene_38; } inline void set_GameplayScene_38(String_t* value) { ___GameplayScene_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___GameplayScene_38), (void*)value); } inline static int32_t get_offset_of_pendingPlayers_39() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___pendingPlayers_39)); } inline List_1_t38A5A5E401291927667E9840827169D1FFDA2EFC * get_pendingPlayers_39() const { return ___pendingPlayers_39; } inline List_1_t38A5A5E401291927667E9840827169D1FFDA2EFC ** get_address_of_pendingPlayers_39() { return &___pendingPlayers_39; } inline void set_pendingPlayers_39(List_1_t38A5A5E401291927667E9840827169D1FFDA2EFC * value) { ___pendingPlayers_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___pendingPlayers_39), (void*)value); } inline static int32_t get_offset_of__allPlayersReady_40() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ____allPlayersReady_40)); } inline bool get__allPlayersReady_40() const { return ____allPlayersReady_40; } inline bool* get_address_of__allPlayersReady_40() { return &____allPlayersReady_40; } inline void set__allPlayersReady_40(bool value) { ____allPlayersReady_40 = value; } inline static int32_t get_offset_of_roomSlots_41() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___roomSlots_41)); } inline List_1_t12E07DEAE79B9E370C8C88598C5BC4D3A5B328A6 * get_roomSlots_41() const { return ___roomSlots_41; } inline List_1_t12E07DEAE79B9E370C8C88598C5BC4D3A5B328A6 ** get_address_of_roomSlots_41() { return &___roomSlots_41; } inline void set_roomSlots_41(List_1_t12E07DEAE79B9E370C8C88598C5BC4D3A5B328A6 * value) { ___roomSlots_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___roomSlots_41), (void*)value); } }; struct NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkRoomManager::logger RuntimeObject* ___logger_33; public: inline static int32_t get_offset_of_logger_33() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516_StaticFields, ___logger_33)); } inline RuntimeObject* get_logger_33() const { return ___logger_33; } inline RuntimeObject** get_address_of_logger_33() { return &___logger_33; } inline void set_logger_33(RuntimeObject* value) { ___logger_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_33), (void*)value); } }; // Mirror.NetworkRoomPlayer struct NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 { public: // System.Boolean Mirror.NetworkRoomPlayer::showRoomGUI bool ___showRoomGUI_13; // System.Boolean Mirror.NetworkRoomPlayer::readyToBegin bool ___readyToBegin_14; // System.Int32 Mirror.NetworkRoomPlayer::index int32_t ___index_15; public: inline static int32_t get_offset_of_showRoomGUI_13() { return static_cast<int32_t>(offsetof(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F, ___showRoomGUI_13)); } inline bool get_showRoomGUI_13() const { return ___showRoomGUI_13; } inline bool* get_address_of_showRoomGUI_13() { return &___showRoomGUI_13; } inline void set_showRoomGUI_13(bool value) { ___showRoomGUI_13 = value; } inline static int32_t get_offset_of_readyToBegin_14() { return static_cast<int32_t>(offsetof(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F, ___readyToBegin_14)); } inline bool get_readyToBegin_14() const { return ___readyToBegin_14; } inline bool* get_address_of_readyToBegin_14() { return &___readyToBegin_14; } inline void set_readyToBegin_14(bool value) { ___readyToBegin_14 = value; } inline static int32_t get_offset_of_index_15() { return static_cast<int32_t>(offsetof(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F, ___index_15)); } inline int32_t get_index_15() const { return ___index_15; } inline int32_t* get_address_of_index_15() { return &___index_15; } inline void set_index_15(int32_t value) { ___index_15 = value; } }; struct NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_StaticFields { public: // UnityEngine.ILogger Mirror.NetworkRoomPlayer::logger RuntimeObject* ___logger_12; public: inline static int32_t get_offset_of_logger_12() { return static_cast<int32_t>(offsetof(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_StaticFields, ___logger_12)); } inline RuntimeObject* get_logger_12() const { return ___logger_12; } inline RuntimeObject** get_address_of_logger_12() { return &___logger_12; } inline void set_logger_12(RuntimeObject* value) { ___logger_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_12), (void*)value); } }; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // UnityEngine.Material UnityEngine.UI.Graphic::m_Material Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___m_Material_6; // UnityEngine.Color UnityEngine.UI.Graphic::m_Color Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_Color_7; // System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate bool ___m_SkipLayoutUpdate_8; // System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate bool ___m_SkipMaterialUpdate_9; // System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget bool ___m_RaycastTarget_10; // UnityEngine.Vector4 UnityEngine.UI.Graphic::m_RaycastPadding Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___m_RaycastPadding_11; // UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___m_RectTransform_12; // UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * ___m_CanvasRenderer_13; // UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___m_Canvas_14; // System.Boolean UnityEngine.UI.Graphic::m_VertsDirty bool ___m_VertsDirty_15; // System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty bool ___m_MaterialDirty_16; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyLayoutCallback_17; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyVertsCallback_18; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyMaterialCallback_19; // UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___m_CachedMesh_22; // UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___m_CachedUvs_23; // UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> UnityEngine.UI.Graphic::m_ColorTweenRunner TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * ___m_ColorTweenRunner_24; // System.Boolean UnityEngine.UI.Graphic::<useLegacyMeshGeneration>k__BackingField bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25; public: inline static int32_t get_offset_of_m_Material_6() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Material_6)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_m_Material_6() const { return ___m_Material_6; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_m_Material_6() { return &___m_Material_6; } inline void set_m_Material_6(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___m_Material_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Material_6), (void*)value); } inline static int32_t get_offset_of_m_Color_7() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Color_7)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_Color_7() const { return ___m_Color_7; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_Color_7() { return &___m_Color_7; } inline void set_m_Color_7(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_Color_7 = value; } inline static int32_t get_offset_of_m_SkipLayoutUpdate_8() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipLayoutUpdate_8)); } inline bool get_m_SkipLayoutUpdate_8() const { return ___m_SkipLayoutUpdate_8; } inline bool* get_address_of_m_SkipLayoutUpdate_8() { return &___m_SkipLayoutUpdate_8; } inline void set_m_SkipLayoutUpdate_8(bool value) { ___m_SkipLayoutUpdate_8 = value; } inline static int32_t get_offset_of_m_SkipMaterialUpdate_9() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipMaterialUpdate_9)); } inline bool get_m_SkipMaterialUpdate_9() const { return ___m_SkipMaterialUpdate_9; } inline bool* get_address_of_m_SkipMaterialUpdate_9() { return &___m_SkipMaterialUpdate_9; } inline void set_m_SkipMaterialUpdate_9(bool value) { ___m_SkipMaterialUpdate_9 = value; } inline static int32_t get_offset_of_m_RaycastTarget_10() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastTarget_10)); } inline bool get_m_RaycastTarget_10() const { return ___m_RaycastTarget_10; } inline bool* get_address_of_m_RaycastTarget_10() { return &___m_RaycastTarget_10; } inline void set_m_RaycastTarget_10(bool value) { ___m_RaycastTarget_10 = value; } inline static int32_t get_offset_of_m_RaycastPadding_11() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastPadding_11)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_m_RaycastPadding_11() const { return ___m_RaycastPadding_11; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_m_RaycastPadding_11() { return &___m_RaycastPadding_11; } inline void set_m_RaycastPadding_11(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___m_RaycastPadding_11 = value; } inline static int32_t get_offset_of_m_RectTransform_12() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RectTransform_12)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_m_RectTransform_12() const { return ___m_RectTransform_12; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_m_RectTransform_12() { return &___m_RectTransform_12; } inline void set_m_RectTransform_12(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___m_RectTransform_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_12), (void*)value); } inline static int32_t get_offset_of_m_CanvasRenderer_13() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CanvasRenderer_13)); } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * get_m_CanvasRenderer_13() const { return ___m_CanvasRenderer_13; } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E ** get_address_of_m_CanvasRenderer_13() { return &___m_CanvasRenderer_13; } inline void set_m_CanvasRenderer_13(CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * value) { ___m_CanvasRenderer_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasRenderer_13), (void*)value); } inline static int32_t get_offset_of_m_Canvas_14() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Canvas_14)); } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * get_m_Canvas_14() const { return ___m_Canvas_14; } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA ** get_address_of_m_Canvas_14() { return &___m_Canvas_14; } inline void set_m_Canvas_14(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * value) { ___m_Canvas_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_14), (void*)value); } inline static int32_t get_offset_of_m_VertsDirty_15() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_VertsDirty_15)); } inline bool get_m_VertsDirty_15() const { return ___m_VertsDirty_15; } inline bool* get_address_of_m_VertsDirty_15() { return &___m_VertsDirty_15; } inline void set_m_VertsDirty_15(bool value) { ___m_VertsDirty_15 = value; } inline static int32_t get_offset_of_m_MaterialDirty_16() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_MaterialDirty_16)); } inline bool get_m_MaterialDirty_16() const { return ___m_MaterialDirty_16; } inline bool* get_address_of_m_MaterialDirty_16() { return &___m_MaterialDirty_16; } inline void set_m_MaterialDirty_16(bool value) { ___m_MaterialDirty_16 = value; } inline static int32_t get_offset_of_m_OnDirtyLayoutCallback_17() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyLayoutCallback_17)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyLayoutCallback_17() const { return ___m_OnDirtyLayoutCallback_17; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyLayoutCallback_17() { return &___m_OnDirtyLayoutCallback_17; } inline void set_m_OnDirtyLayoutCallback_17(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyLayoutCallback_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyLayoutCallback_17), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyVertsCallback_18() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyVertsCallback_18)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyVertsCallback_18() const { return ___m_OnDirtyVertsCallback_18; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyVertsCallback_18() { return &___m_OnDirtyVertsCallback_18; } inline void set_m_OnDirtyVertsCallback_18(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyVertsCallback_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyVertsCallback_18), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyMaterialCallback_19() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyMaterialCallback_19)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyMaterialCallback_19() const { return ___m_OnDirtyMaterialCallback_19; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyMaterialCallback_19() { return &___m_OnDirtyMaterialCallback_19; } inline void set_m_OnDirtyMaterialCallback_19(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyMaterialCallback_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyMaterialCallback_19), (void*)value); } inline static int32_t get_offset_of_m_CachedMesh_22() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedMesh_22)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_m_CachedMesh_22() const { return ___m_CachedMesh_22; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_m_CachedMesh_22() { return &___m_CachedMesh_22; } inline void set_m_CachedMesh_22(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___m_CachedMesh_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedMesh_22), (void*)value); } inline static int32_t get_offset_of_m_CachedUvs_23() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedUvs_23)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_m_CachedUvs_23() const { return ___m_CachedUvs_23; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_m_CachedUvs_23() { return &___m_CachedUvs_23; } inline void set_m_CachedUvs_23(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___m_CachedUvs_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedUvs_23), (void*)value); } inline static int32_t get_offset_of_m_ColorTweenRunner_24() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_ColorTweenRunner_24)); } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * get_m_ColorTweenRunner_24() const { return ___m_ColorTweenRunner_24; } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 ** get_address_of_m_ColorTweenRunner_24() { return &___m_ColorTweenRunner_24; } inline void set_m_ColorTweenRunner_24(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * value) { ___m_ColorTweenRunner_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ColorTweenRunner_24), (void*)value); } inline static int32_t get_offset_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25)); } inline bool get_U3CuseLegacyMeshGenerationU3Ek__BackingField_25() const { return ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25; } inline bool* get_address_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_25() { return &___U3CuseLegacyMeshGenerationU3Ek__BackingField_25; } inline void set_U3CuseLegacyMeshGenerationU3Ek__BackingField_25(bool value) { ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25 = value; } }; struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_DefaultUI_4; // UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___s_WhiteTexture_5; // UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___s_Mesh_20; // UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * ___s_VertexHelper_21; public: inline static int32_t get_offset_of_s_DefaultUI_4() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_DefaultUI_4)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_DefaultUI_4() const { return ___s_DefaultUI_4; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_DefaultUI_4() { return &___s_DefaultUI_4; } inline void set_s_DefaultUI_4(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_DefaultUI_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultUI_4), (void*)value); } inline static int32_t get_offset_of_s_WhiteTexture_5() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_WhiteTexture_5)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_s_WhiteTexture_5() const { return ___s_WhiteTexture_5; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_s_WhiteTexture_5() { return &___s_WhiteTexture_5; } inline void set_s_WhiteTexture_5(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___s_WhiteTexture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_WhiteTexture_5), (void*)value); } inline static int32_t get_offset_of_s_Mesh_20() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_Mesh_20)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_s_Mesh_20() const { return ___s_Mesh_20; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_s_Mesh_20() { return &___s_Mesh_20; } inline void set_s_Mesh_20(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___s_Mesh_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Mesh_20), (void*)value); } inline static int32_t get_offset_of_s_VertexHelper_21() { return static_cast<int32_t>(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_VertexHelper_21)); } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * get_s_VertexHelper_21() const { return ___s_VertexHelper_21; } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 ** get_address_of_s_VertexHelper_21() { return &___s_VertexHelper_21; } inline void set_s_VertexHelper_21(VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * value) { ___s_VertexHelper_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_VertexHelper_21), (void*)value); } }; // UnityEngine.UI.Selectable struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // System.Boolean UnityEngine.UI.Selectable::m_EnableCalled bool ___m_EnableCalled_6; // UnityEngine.UI.Navigation UnityEngine.UI.Selectable::m_Navigation Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A ___m_Navigation_7; // UnityEngine.UI.Selectable_Transition UnityEngine.UI.Selectable::m_Transition int32_t ___m_Transition_8; // UnityEngine.UI.ColorBlock UnityEngine.UI.Selectable::m_Colors ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___m_Colors_9; // UnityEngine.UI.SpriteState UnityEngine.UI.Selectable::m_SpriteState SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E ___m_SpriteState_10; // UnityEngine.UI.AnimationTriggers UnityEngine.UI.Selectable::m_AnimationTriggers AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 * ___m_AnimationTriggers_11; // System.Boolean UnityEngine.UI.Selectable::m_Interactable bool ___m_Interactable_12; // UnityEngine.UI.Graphic UnityEngine.UI.Selectable::m_TargetGraphic Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___m_TargetGraphic_13; // System.Boolean UnityEngine.UI.Selectable::m_GroupsAllowInteraction bool ___m_GroupsAllowInteraction_14; // System.Int32 UnityEngine.UI.Selectable::m_CurrentIndex int32_t ___m_CurrentIndex_15; // System.Boolean UnityEngine.UI.Selectable::<isPointerInside>k__BackingField bool ___U3CisPointerInsideU3Ek__BackingField_16; // System.Boolean UnityEngine.UI.Selectable::<isPointerDown>k__BackingField bool ___U3CisPointerDownU3Ek__BackingField_17; // System.Boolean UnityEngine.UI.Selectable::<hasSelection>k__BackingField bool ___U3ChasSelectionU3Ek__BackingField_18; // System.Collections.Generic.List`1<UnityEngine.CanvasGroup> UnityEngine.UI.Selectable::m_CanvasGroupCache List_1_t34AA4AF4E7352129CA58045901530E41445AC16D * ___m_CanvasGroupCache_19; public: inline static int32_t get_offset_of_m_EnableCalled_6() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_EnableCalled_6)); } inline bool get_m_EnableCalled_6() const { return ___m_EnableCalled_6; } inline bool* get_address_of_m_EnableCalled_6() { return &___m_EnableCalled_6; } inline void set_m_EnableCalled_6(bool value) { ___m_EnableCalled_6 = value; } inline static int32_t get_offset_of_m_Navigation_7() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Navigation_7)); } inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A get_m_Navigation_7() const { return ___m_Navigation_7; } inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A * get_address_of_m_Navigation_7() { return &___m_Navigation_7; } inline void set_m_Navigation_7(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A value) { ___m_Navigation_7 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnUp_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnDown_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnLeft_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnRight_4), (void*)NULL); #endif } inline static int32_t get_offset_of_m_Transition_8() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Transition_8)); } inline int32_t get_m_Transition_8() const { return ___m_Transition_8; } inline int32_t* get_address_of_m_Transition_8() { return &___m_Transition_8; } inline void set_m_Transition_8(int32_t value) { ___m_Transition_8 = value; } inline static int32_t get_offset_of_m_Colors_9() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Colors_9)); } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 get_m_Colors_9() const { return ___m_Colors_9; } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * get_address_of_m_Colors_9() { return &___m_Colors_9; } inline void set_m_Colors_9(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value) { ___m_Colors_9 = value; } inline static int32_t get_offset_of_m_SpriteState_10() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_SpriteState_10)); } inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E get_m_SpriteState_10() const { return ___m_SpriteState_10; } inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E * get_address_of_m_SpriteState_10() { return &___m_SpriteState_10; } inline void set_m_SpriteState_10(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E value) { ___m_SpriteState_10 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_HighlightedSprite_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_PressedSprite_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_SelectedSprite_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_DisabledSprite_3), (void*)NULL); #endif } inline static int32_t get_offset_of_m_AnimationTriggers_11() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_AnimationTriggers_11)); } inline AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 * get_m_AnimationTriggers_11() const { return ___m_AnimationTriggers_11; } inline AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 ** get_address_of_m_AnimationTriggers_11() { return &___m_AnimationTriggers_11; } inline void set_m_AnimationTriggers_11(AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 * value) { ___m_AnimationTriggers_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AnimationTriggers_11), (void*)value); } inline static int32_t get_offset_of_m_Interactable_12() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Interactable_12)); } inline bool get_m_Interactable_12() const { return ___m_Interactable_12; } inline bool* get_address_of_m_Interactable_12() { return &___m_Interactable_12; } inline void set_m_Interactable_12(bool value) { ___m_Interactable_12 = value; } inline static int32_t get_offset_of_m_TargetGraphic_13() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_TargetGraphic_13)); } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * get_m_TargetGraphic_13() const { return ___m_TargetGraphic_13; } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 ** get_address_of_m_TargetGraphic_13() { return &___m_TargetGraphic_13; } inline void set_m_TargetGraphic_13(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * value) { ___m_TargetGraphic_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TargetGraphic_13), (void*)value); } inline static int32_t get_offset_of_m_GroupsAllowInteraction_14() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_GroupsAllowInteraction_14)); } inline bool get_m_GroupsAllowInteraction_14() const { return ___m_GroupsAllowInteraction_14; } inline bool* get_address_of_m_GroupsAllowInteraction_14() { return &___m_GroupsAllowInteraction_14; } inline void set_m_GroupsAllowInteraction_14(bool value) { ___m_GroupsAllowInteraction_14 = value; } inline static int32_t get_offset_of_m_CurrentIndex_15() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_CurrentIndex_15)); } inline int32_t get_m_CurrentIndex_15() const { return ___m_CurrentIndex_15; } inline int32_t* get_address_of_m_CurrentIndex_15() { return &___m_CurrentIndex_15; } inline void set_m_CurrentIndex_15(int32_t value) { ___m_CurrentIndex_15 = value; } inline static int32_t get_offset_of_U3CisPointerInsideU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___U3CisPointerInsideU3Ek__BackingField_16)); } inline bool get_U3CisPointerInsideU3Ek__BackingField_16() const { return ___U3CisPointerInsideU3Ek__BackingField_16; } inline bool* get_address_of_U3CisPointerInsideU3Ek__BackingField_16() { return &___U3CisPointerInsideU3Ek__BackingField_16; } inline void set_U3CisPointerInsideU3Ek__BackingField_16(bool value) { ___U3CisPointerInsideU3Ek__BackingField_16 = value; } inline static int32_t get_offset_of_U3CisPointerDownU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___U3CisPointerDownU3Ek__BackingField_17)); } inline bool get_U3CisPointerDownU3Ek__BackingField_17() const { return ___U3CisPointerDownU3Ek__BackingField_17; } inline bool* get_address_of_U3CisPointerDownU3Ek__BackingField_17() { return &___U3CisPointerDownU3Ek__BackingField_17; } inline void set_U3CisPointerDownU3Ek__BackingField_17(bool value) { ___U3CisPointerDownU3Ek__BackingField_17 = value; } inline static int32_t get_offset_of_U3ChasSelectionU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___U3ChasSelectionU3Ek__BackingField_18)); } inline bool get_U3ChasSelectionU3Ek__BackingField_18() const { return ___U3ChasSelectionU3Ek__BackingField_18; } inline bool* get_address_of_U3ChasSelectionU3Ek__BackingField_18() { return &___U3ChasSelectionU3Ek__BackingField_18; } inline void set_U3ChasSelectionU3Ek__BackingField_18(bool value) { ___U3ChasSelectionU3Ek__BackingField_18 = value; } inline static int32_t get_offset_of_m_CanvasGroupCache_19() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_CanvasGroupCache_19)); } inline List_1_t34AA4AF4E7352129CA58045901530E41445AC16D * get_m_CanvasGroupCache_19() const { return ___m_CanvasGroupCache_19; } inline List_1_t34AA4AF4E7352129CA58045901530E41445AC16D ** get_address_of_m_CanvasGroupCache_19() { return &___m_CanvasGroupCache_19; } inline void set_m_CanvasGroupCache_19(List_1_t34AA4AF4E7352129CA58045901530E41445AC16D * value) { ___m_CanvasGroupCache_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasGroupCache_19), (void*)value); } }; struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD_StaticFields { public: // UnityEngine.UI.Selectable[] UnityEngine.UI.Selectable::s_Selectables SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535* ___s_Selectables_4; // System.Int32 UnityEngine.UI.Selectable::s_SelectableCount int32_t ___s_SelectableCount_5; public: inline static int32_t get_offset_of_s_Selectables_4() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD_StaticFields, ___s_Selectables_4)); } inline SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535* get_s_Selectables_4() const { return ___s_Selectables_4; } inline SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535** get_address_of_s_Selectables_4() { return &___s_Selectables_4; } inline void set_s_Selectables_4(SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535* value) { ___s_Selectables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Selectables_4), (void*)value); } inline static int32_t get_offset_of_s_SelectableCount_5() { return static_cast<int32_t>(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD_StaticFields, ___s_SelectableCount_5)); } inline int32_t get_s_SelectableCount_5() const { return ___s_SelectableCount_5; } inline int32_t* get_address_of_s_SelectableCount_5() { return &___s_SelectableCount_5; } inline void set_s_SelectableCount_5(int32_t value) { ___s_SelectableCount_5 = value; } }; // Mirror.Examples.NetworkRoom.NetworkRoomManagerExt struct NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B : public NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 { public: // System.Boolean Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::showStartButton bool ___showStartButton_42; public: inline static int32_t get_offset_of_showStartButton_42() { return static_cast<int32_t>(offsetof(NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B, ___showStartButton_42)); } inline bool get_showStartButton_42() const { return ___showStartButton_42; } inline bool* get_address_of_showStartButton_42() { return &___showStartButton_42; } inline void set_showStartButton_42(bool value) { ___showStartButton_42 = value; } }; // Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt struct NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C : public NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F { public: public: }; struct NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields { public: // UnityEngine.ILogger Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::logger RuntimeObject* ___logger_16; public: inline static int32_t get_offset_of_logger_16() { return static_cast<int32_t>(offsetof(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields, ___logger_16)); } inline RuntimeObject* get_logger_16() const { return ___logger_16; } inline RuntimeObject** get_address_of_logger_16() { return &___logger_16; } inline void set_logger_16(RuntimeObject* value) { ___logger_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_16), (void*)value); } }; // UnityEngine.UI.InputField struct InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 : public Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD { public: // UnityEngine.TouchScreenKeyboard UnityEngine.UI.InputField::m_Keyboard TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E * ___m_Keyboard_20; // UnityEngine.UI.Text UnityEngine.UI.InputField::m_TextComponent Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___m_TextComponent_22; // UnityEngine.UI.Graphic UnityEngine.UI.InputField::m_Placeholder Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___m_Placeholder_23; // UnityEngine.UI.InputField_ContentType UnityEngine.UI.InputField::m_ContentType int32_t ___m_ContentType_24; // UnityEngine.UI.InputField_InputType UnityEngine.UI.InputField::m_InputType int32_t ___m_InputType_25; // System.Char UnityEngine.UI.InputField::m_AsteriskChar Il2CppChar ___m_AsteriskChar_26; // UnityEngine.TouchScreenKeyboardType UnityEngine.UI.InputField::m_KeyboardType int32_t ___m_KeyboardType_27; // UnityEngine.UI.InputField_LineType UnityEngine.UI.InputField::m_LineType int32_t ___m_LineType_28; // System.Boolean UnityEngine.UI.InputField::m_HideMobileInput bool ___m_HideMobileInput_29; // UnityEngine.UI.InputField_CharacterValidation UnityEngine.UI.InputField::m_CharacterValidation int32_t ___m_CharacterValidation_30; // System.Int32 UnityEngine.UI.InputField::m_CharacterLimit int32_t ___m_CharacterLimit_31; // UnityEngine.UI.InputField_SubmitEvent UnityEngine.UI.InputField::m_OnEndEdit SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 * ___m_OnEndEdit_32; // UnityEngine.UI.InputField_OnChangeEvent UnityEngine.UI.InputField::m_OnValueChanged OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 * ___m_OnValueChanged_33; // UnityEngine.UI.InputField_OnValidateInput UnityEngine.UI.InputField::m_OnValidateInput OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F * ___m_OnValidateInput_34; // UnityEngine.Color UnityEngine.UI.InputField::m_CaretColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_CaretColor_35; // System.Boolean UnityEngine.UI.InputField::m_CustomCaretColor bool ___m_CustomCaretColor_36; // UnityEngine.Color UnityEngine.UI.InputField::m_SelectionColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_SelectionColor_37; // System.String UnityEngine.UI.InputField::m_Text String_t* ___m_Text_38; // System.Single UnityEngine.UI.InputField::m_CaretBlinkRate float ___m_CaretBlinkRate_39; // System.Int32 UnityEngine.UI.InputField::m_CaretWidth int32_t ___m_CaretWidth_40; // System.Boolean UnityEngine.UI.InputField::m_ReadOnly bool ___m_ReadOnly_41; // System.Int32 UnityEngine.UI.InputField::m_CaretPosition int32_t ___m_CaretPosition_42; // System.Int32 UnityEngine.UI.InputField::m_CaretSelectPosition int32_t ___m_CaretSelectPosition_43; // UnityEngine.RectTransform UnityEngine.UI.InputField::caretRectTrans RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___caretRectTrans_44; // UnityEngine.UIVertex[] UnityEngine.UI.InputField::m_CursorVerts UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ___m_CursorVerts_45; // UnityEngine.TextGenerator UnityEngine.UI.InputField::m_InputTextCache TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * ___m_InputTextCache_46; // UnityEngine.CanvasRenderer UnityEngine.UI.InputField::m_CachedInputRenderer CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * ___m_CachedInputRenderer_47; // System.Boolean UnityEngine.UI.InputField::m_PreventFontCallback bool ___m_PreventFontCallback_48; // UnityEngine.Mesh UnityEngine.UI.InputField::m_Mesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___m_Mesh_49; // System.Boolean UnityEngine.UI.InputField::m_AllowInput bool ___m_AllowInput_50; // System.Boolean UnityEngine.UI.InputField::m_ShouldActivateNextUpdate bool ___m_ShouldActivateNextUpdate_51; // System.Boolean UnityEngine.UI.InputField::m_UpdateDrag bool ___m_UpdateDrag_52; // System.Boolean UnityEngine.UI.InputField::m_DragPositionOutOfBounds bool ___m_DragPositionOutOfBounds_53; // System.Boolean UnityEngine.UI.InputField::m_CaretVisible bool ___m_CaretVisible_56; // UnityEngine.Coroutine UnityEngine.UI.InputField::m_BlinkCoroutine Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * ___m_BlinkCoroutine_57; // System.Single UnityEngine.UI.InputField::m_BlinkStartTime float ___m_BlinkStartTime_58; // System.Int32 UnityEngine.UI.InputField::m_DrawStart int32_t ___m_DrawStart_59; // System.Int32 UnityEngine.UI.InputField::m_DrawEnd int32_t ___m_DrawEnd_60; // UnityEngine.Coroutine UnityEngine.UI.InputField::m_DragCoroutine Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * ___m_DragCoroutine_61; // System.String UnityEngine.UI.InputField::m_OriginalText String_t* ___m_OriginalText_62; // System.Boolean UnityEngine.UI.InputField::m_WasCanceled bool ___m_WasCanceled_63; // System.Boolean UnityEngine.UI.InputField::m_HasDoneFocusTransition bool ___m_HasDoneFocusTransition_64; // UnityEngine.WaitForSecondsRealtime UnityEngine.UI.InputField::m_WaitForSecondsRealtime WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * ___m_WaitForSecondsRealtime_65; // System.Boolean UnityEngine.UI.InputField::m_TouchKeyboardAllowsInPlaceEditing bool ___m_TouchKeyboardAllowsInPlaceEditing_66; // UnityEngine.Event UnityEngine.UI.InputField::m_ProcessingEvent Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E * ___m_ProcessingEvent_68; public: inline static int32_t get_offset_of_m_Keyboard_20() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Keyboard_20)); } inline TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E * get_m_Keyboard_20() const { return ___m_Keyboard_20; } inline TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E ** get_address_of_m_Keyboard_20() { return &___m_Keyboard_20; } inline void set_m_Keyboard_20(TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E * value) { ___m_Keyboard_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Keyboard_20), (void*)value); } inline static int32_t get_offset_of_m_TextComponent_22() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_TextComponent_22)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_m_TextComponent_22() const { return ___m_TextComponent_22; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_m_TextComponent_22() { return &___m_TextComponent_22; } inline void set_m_TextComponent_22(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___m_TextComponent_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TextComponent_22), (void*)value); } inline static int32_t get_offset_of_m_Placeholder_23() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Placeholder_23)); } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * get_m_Placeholder_23() const { return ___m_Placeholder_23; } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 ** get_address_of_m_Placeholder_23() { return &___m_Placeholder_23; } inline void set_m_Placeholder_23(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * value) { ___m_Placeholder_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Placeholder_23), (void*)value); } inline static int32_t get_offset_of_m_ContentType_24() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ContentType_24)); } inline int32_t get_m_ContentType_24() const { return ___m_ContentType_24; } inline int32_t* get_address_of_m_ContentType_24() { return &___m_ContentType_24; } inline void set_m_ContentType_24(int32_t value) { ___m_ContentType_24 = value; } inline static int32_t get_offset_of_m_InputType_25() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_InputType_25)); } inline int32_t get_m_InputType_25() const { return ___m_InputType_25; } inline int32_t* get_address_of_m_InputType_25() { return &___m_InputType_25; } inline void set_m_InputType_25(int32_t value) { ___m_InputType_25 = value; } inline static int32_t get_offset_of_m_AsteriskChar_26() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_AsteriskChar_26)); } inline Il2CppChar get_m_AsteriskChar_26() const { return ___m_AsteriskChar_26; } inline Il2CppChar* get_address_of_m_AsteriskChar_26() { return &___m_AsteriskChar_26; } inline void set_m_AsteriskChar_26(Il2CppChar value) { ___m_AsteriskChar_26 = value; } inline static int32_t get_offset_of_m_KeyboardType_27() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_KeyboardType_27)); } inline int32_t get_m_KeyboardType_27() const { return ___m_KeyboardType_27; } inline int32_t* get_address_of_m_KeyboardType_27() { return &___m_KeyboardType_27; } inline void set_m_KeyboardType_27(int32_t value) { ___m_KeyboardType_27 = value; } inline static int32_t get_offset_of_m_LineType_28() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_LineType_28)); } inline int32_t get_m_LineType_28() const { return ___m_LineType_28; } inline int32_t* get_address_of_m_LineType_28() { return &___m_LineType_28; } inline void set_m_LineType_28(int32_t value) { ___m_LineType_28 = value; } inline static int32_t get_offset_of_m_HideMobileInput_29() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_HideMobileInput_29)); } inline bool get_m_HideMobileInput_29() const { return ___m_HideMobileInput_29; } inline bool* get_address_of_m_HideMobileInput_29() { return &___m_HideMobileInput_29; } inline void set_m_HideMobileInput_29(bool value) { ___m_HideMobileInput_29 = value; } inline static int32_t get_offset_of_m_CharacterValidation_30() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CharacterValidation_30)); } inline int32_t get_m_CharacterValidation_30() const { return ___m_CharacterValidation_30; } inline int32_t* get_address_of_m_CharacterValidation_30() { return &___m_CharacterValidation_30; } inline void set_m_CharacterValidation_30(int32_t value) { ___m_CharacterValidation_30 = value; } inline static int32_t get_offset_of_m_CharacterLimit_31() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CharacterLimit_31)); } inline int32_t get_m_CharacterLimit_31() const { return ___m_CharacterLimit_31; } inline int32_t* get_address_of_m_CharacterLimit_31() { return &___m_CharacterLimit_31; } inline void set_m_CharacterLimit_31(int32_t value) { ___m_CharacterLimit_31 = value; } inline static int32_t get_offset_of_m_OnEndEdit_32() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OnEndEdit_32)); } inline SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 * get_m_OnEndEdit_32() const { return ___m_OnEndEdit_32; } inline SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 ** get_address_of_m_OnEndEdit_32() { return &___m_OnEndEdit_32; } inline void set_m_OnEndEdit_32(SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 * value) { ___m_OnEndEdit_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnEndEdit_32), (void*)value); } inline static int32_t get_offset_of_m_OnValueChanged_33() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OnValueChanged_33)); } inline OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 * get_m_OnValueChanged_33() const { return ___m_OnValueChanged_33; } inline OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 ** get_address_of_m_OnValueChanged_33() { return &___m_OnValueChanged_33; } inline void set_m_OnValueChanged_33(OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 * value) { ___m_OnValueChanged_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_33), (void*)value); } inline static int32_t get_offset_of_m_OnValidateInput_34() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OnValidateInput_34)); } inline OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F * get_m_OnValidateInput_34() const { return ___m_OnValidateInput_34; } inline OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F ** get_address_of_m_OnValidateInput_34() { return &___m_OnValidateInput_34; } inline void set_m_OnValidateInput_34(OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F * value) { ___m_OnValidateInput_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnValidateInput_34), (void*)value); } inline static int32_t get_offset_of_m_CaretColor_35() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretColor_35)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_CaretColor_35() const { return ___m_CaretColor_35; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_CaretColor_35() { return &___m_CaretColor_35; } inline void set_m_CaretColor_35(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_CaretColor_35 = value; } inline static int32_t get_offset_of_m_CustomCaretColor_36() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CustomCaretColor_36)); } inline bool get_m_CustomCaretColor_36() const { return ___m_CustomCaretColor_36; } inline bool* get_address_of_m_CustomCaretColor_36() { return &___m_CustomCaretColor_36; } inline void set_m_CustomCaretColor_36(bool value) { ___m_CustomCaretColor_36 = value; } inline static int32_t get_offset_of_m_SelectionColor_37() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_SelectionColor_37)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_SelectionColor_37() const { return ___m_SelectionColor_37; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_SelectionColor_37() { return &___m_SelectionColor_37; } inline void set_m_SelectionColor_37(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_SelectionColor_37 = value; } inline static int32_t get_offset_of_m_Text_38() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Text_38)); } inline String_t* get_m_Text_38() const { return ___m_Text_38; } inline String_t** get_address_of_m_Text_38() { return &___m_Text_38; } inline void set_m_Text_38(String_t* value) { ___m_Text_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Text_38), (void*)value); } inline static int32_t get_offset_of_m_CaretBlinkRate_39() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretBlinkRate_39)); } inline float get_m_CaretBlinkRate_39() const { return ___m_CaretBlinkRate_39; } inline float* get_address_of_m_CaretBlinkRate_39() { return &___m_CaretBlinkRate_39; } inline void set_m_CaretBlinkRate_39(float value) { ___m_CaretBlinkRate_39 = value; } inline static int32_t get_offset_of_m_CaretWidth_40() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretWidth_40)); } inline int32_t get_m_CaretWidth_40() const { return ___m_CaretWidth_40; } inline int32_t* get_address_of_m_CaretWidth_40() { return &___m_CaretWidth_40; } inline void set_m_CaretWidth_40(int32_t value) { ___m_CaretWidth_40 = value; } inline static int32_t get_offset_of_m_ReadOnly_41() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ReadOnly_41)); } inline bool get_m_ReadOnly_41() const { return ___m_ReadOnly_41; } inline bool* get_address_of_m_ReadOnly_41() { return &___m_ReadOnly_41; } inline void set_m_ReadOnly_41(bool value) { ___m_ReadOnly_41 = value; } inline static int32_t get_offset_of_m_CaretPosition_42() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretPosition_42)); } inline int32_t get_m_CaretPosition_42() const { return ___m_CaretPosition_42; } inline int32_t* get_address_of_m_CaretPosition_42() { return &___m_CaretPosition_42; } inline void set_m_CaretPosition_42(int32_t value) { ___m_CaretPosition_42 = value; } inline static int32_t get_offset_of_m_CaretSelectPosition_43() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretSelectPosition_43)); } inline int32_t get_m_CaretSelectPosition_43() const { return ___m_CaretSelectPosition_43; } inline int32_t* get_address_of_m_CaretSelectPosition_43() { return &___m_CaretSelectPosition_43; } inline void set_m_CaretSelectPosition_43(int32_t value) { ___m_CaretSelectPosition_43 = value; } inline static int32_t get_offset_of_caretRectTrans_44() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___caretRectTrans_44)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_caretRectTrans_44() const { return ___caretRectTrans_44; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_caretRectTrans_44() { return &___caretRectTrans_44; } inline void set_caretRectTrans_44(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___caretRectTrans_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___caretRectTrans_44), (void*)value); } inline static int32_t get_offset_of_m_CursorVerts_45() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CursorVerts_45)); } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* get_m_CursorVerts_45() const { return ___m_CursorVerts_45; } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A** get_address_of_m_CursorVerts_45() { return &___m_CursorVerts_45; } inline void set_m_CursorVerts_45(UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* value) { ___m_CursorVerts_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CursorVerts_45), (void*)value); } inline static int32_t get_offset_of_m_InputTextCache_46() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_InputTextCache_46)); } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * get_m_InputTextCache_46() const { return ___m_InputTextCache_46; } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 ** get_address_of_m_InputTextCache_46() { return &___m_InputTextCache_46; } inline void set_m_InputTextCache_46(TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * value) { ___m_InputTextCache_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InputTextCache_46), (void*)value); } inline static int32_t get_offset_of_m_CachedInputRenderer_47() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CachedInputRenderer_47)); } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * get_m_CachedInputRenderer_47() const { return ___m_CachedInputRenderer_47; } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E ** get_address_of_m_CachedInputRenderer_47() { return &___m_CachedInputRenderer_47; } inline void set_m_CachedInputRenderer_47(CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * value) { ___m_CachedInputRenderer_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedInputRenderer_47), (void*)value); } inline static int32_t get_offset_of_m_PreventFontCallback_48() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_PreventFontCallback_48)); } inline bool get_m_PreventFontCallback_48() const { return ___m_PreventFontCallback_48; } inline bool* get_address_of_m_PreventFontCallback_48() { return &___m_PreventFontCallback_48; } inline void set_m_PreventFontCallback_48(bool value) { ___m_PreventFontCallback_48 = value; } inline static int32_t get_offset_of_m_Mesh_49() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Mesh_49)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_m_Mesh_49() const { return ___m_Mesh_49; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_m_Mesh_49() { return &___m_Mesh_49; } inline void set_m_Mesh_49(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___m_Mesh_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Mesh_49), (void*)value); } inline static int32_t get_offset_of_m_AllowInput_50() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_AllowInput_50)); } inline bool get_m_AllowInput_50() const { return ___m_AllowInput_50; } inline bool* get_address_of_m_AllowInput_50() { return &___m_AllowInput_50; } inline void set_m_AllowInput_50(bool value) { ___m_AllowInput_50 = value; } inline static int32_t get_offset_of_m_ShouldActivateNextUpdate_51() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ShouldActivateNextUpdate_51)); } inline bool get_m_ShouldActivateNextUpdate_51() const { return ___m_ShouldActivateNextUpdate_51; } inline bool* get_address_of_m_ShouldActivateNextUpdate_51() { return &___m_ShouldActivateNextUpdate_51; } inline void set_m_ShouldActivateNextUpdate_51(bool value) { ___m_ShouldActivateNextUpdate_51 = value; } inline static int32_t get_offset_of_m_UpdateDrag_52() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_UpdateDrag_52)); } inline bool get_m_UpdateDrag_52() const { return ___m_UpdateDrag_52; } inline bool* get_address_of_m_UpdateDrag_52() { return &___m_UpdateDrag_52; } inline void set_m_UpdateDrag_52(bool value) { ___m_UpdateDrag_52 = value; } inline static int32_t get_offset_of_m_DragPositionOutOfBounds_53() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DragPositionOutOfBounds_53)); } inline bool get_m_DragPositionOutOfBounds_53() const { return ___m_DragPositionOutOfBounds_53; } inline bool* get_address_of_m_DragPositionOutOfBounds_53() { return &___m_DragPositionOutOfBounds_53; } inline void set_m_DragPositionOutOfBounds_53(bool value) { ___m_DragPositionOutOfBounds_53 = value; } inline static int32_t get_offset_of_m_CaretVisible_56() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretVisible_56)); } inline bool get_m_CaretVisible_56() const { return ___m_CaretVisible_56; } inline bool* get_address_of_m_CaretVisible_56() { return &___m_CaretVisible_56; } inline void set_m_CaretVisible_56(bool value) { ___m_CaretVisible_56 = value; } inline static int32_t get_offset_of_m_BlinkCoroutine_57() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_BlinkCoroutine_57)); } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * get_m_BlinkCoroutine_57() const { return ___m_BlinkCoroutine_57; } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 ** get_address_of_m_BlinkCoroutine_57() { return &___m_BlinkCoroutine_57; } inline void set_m_BlinkCoroutine_57(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * value) { ___m_BlinkCoroutine_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_BlinkCoroutine_57), (void*)value); } inline static int32_t get_offset_of_m_BlinkStartTime_58() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_BlinkStartTime_58)); } inline float get_m_BlinkStartTime_58() const { return ___m_BlinkStartTime_58; } inline float* get_address_of_m_BlinkStartTime_58() { return &___m_BlinkStartTime_58; } inline void set_m_BlinkStartTime_58(float value) { ___m_BlinkStartTime_58 = value; } inline static int32_t get_offset_of_m_DrawStart_59() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DrawStart_59)); } inline int32_t get_m_DrawStart_59() const { return ___m_DrawStart_59; } inline int32_t* get_address_of_m_DrawStart_59() { return &___m_DrawStart_59; } inline void set_m_DrawStart_59(int32_t value) { ___m_DrawStart_59 = value; } inline static int32_t get_offset_of_m_DrawEnd_60() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DrawEnd_60)); } inline int32_t get_m_DrawEnd_60() const { return ___m_DrawEnd_60; } inline int32_t* get_address_of_m_DrawEnd_60() { return &___m_DrawEnd_60; } inline void set_m_DrawEnd_60(int32_t value) { ___m_DrawEnd_60 = value; } inline static int32_t get_offset_of_m_DragCoroutine_61() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DragCoroutine_61)); } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * get_m_DragCoroutine_61() const { return ___m_DragCoroutine_61; } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 ** get_address_of_m_DragCoroutine_61() { return &___m_DragCoroutine_61; } inline void set_m_DragCoroutine_61(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * value) { ___m_DragCoroutine_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DragCoroutine_61), (void*)value); } inline static int32_t get_offset_of_m_OriginalText_62() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OriginalText_62)); } inline String_t* get_m_OriginalText_62() const { return ___m_OriginalText_62; } inline String_t** get_address_of_m_OriginalText_62() { return &___m_OriginalText_62; } inline void set_m_OriginalText_62(String_t* value) { ___m_OriginalText_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OriginalText_62), (void*)value); } inline static int32_t get_offset_of_m_WasCanceled_63() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_WasCanceled_63)); } inline bool get_m_WasCanceled_63() const { return ___m_WasCanceled_63; } inline bool* get_address_of_m_WasCanceled_63() { return &___m_WasCanceled_63; } inline void set_m_WasCanceled_63(bool value) { ___m_WasCanceled_63 = value; } inline static int32_t get_offset_of_m_HasDoneFocusTransition_64() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_HasDoneFocusTransition_64)); } inline bool get_m_HasDoneFocusTransition_64() const { return ___m_HasDoneFocusTransition_64; } inline bool* get_address_of_m_HasDoneFocusTransition_64() { return &___m_HasDoneFocusTransition_64; } inline void set_m_HasDoneFocusTransition_64(bool value) { ___m_HasDoneFocusTransition_64 = value; } inline static int32_t get_offset_of_m_WaitForSecondsRealtime_65() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_WaitForSecondsRealtime_65)); } inline WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * get_m_WaitForSecondsRealtime_65() const { return ___m_WaitForSecondsRealtime_65; } inline WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 ** get_address_of_m_WaitForSecondsRealtime_65() { return &___m_WaitForSecondsRealtime_65; } inline void set_m_WaitForSecondsRealtime_65(WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * value) { ___m_WaitForSecondsRealtime_65 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_WaitForSecondsRealtime_65), (void*)value); } inline static int32_t get_offset_of_m_TouchKeyboardAllowsInPlaceEditing_66() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_TouchKeyboardAllowsInPlaceEditing_66)); } inline bool get_m_TouchKeyboardAllowsInPlaceEditing_66() const { return ___m_TouchKeyboardAllowsInPlaceEditing_66; } inline bool* get_address_of_m_TouchKeyboardAllowsInPlaceEditing_66() { return &___m_TouchKeyboardAllowsInPlaceEditing_66; } inline void set_m_TouchKeyboardAllowsInPlaceEditing_66(bool value) { ___m_TouchKeyboardAllowsInPlaceEditing_66 = value; } inline static int32_t get_offset_of_m_ProcessingEvent_68() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ProcessingEvent_68)); } inline Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E * get_m_ProcessingEvent_68() const { return ___m_ProcessingEvent_68; } inline Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E ** get_address_of_m_ProcessingEvent_68() { return &___m_ProcessingEvent_68; } inline void set_m_ProcessingEvent_68(Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E * value) { ___m_ProcessingEvent_68 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ProcessingEvent_68), (void*)value); } }; struct InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_StaticFields { public: // System.Char[] UnityEngine.UI.InputField::kSeparators CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___kSeparators_21; public: inline static int32_t get_offset_of_kSeparators_21() { return static_cast<int32_t>(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_StaticFields, ___kSeparators_21)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_kSeparators_21() const { return ___kSeparators_21; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_kSeparators_21() { return &___kSeparators_21; } inline void set_kSeparators_21(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___kSeparators_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___kSeparators_21), (void*)value); } }; // UnityEngine.UI.MaskableGraphic struct MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE : public Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 { public: // System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculateStencil bool ___m_ShouldRecalculateStencil_26; // UnityEngine.Material UnityEngine.UI.MaskableGraphic::m_MaskMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___m_MaskMaterial_27; // UnityEngine.UI.RectMask2D UnityEngine.UI.MaskableGraphic::m_ParentMask RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * ___m_ParentMask_28; // System.Boolean UnityEngine.UI.MaskableGraphic::m_Maskable bool ___m_Maskable_29; // System.Boolean UnityEngine.UI.MaskableGraphic::m_IsMaskingGraphic bool ___m_IsMaskingGraphic_30; // System.Boolean UnityEngine.UI.MaskableGraphic::m_IncludeForMasking bool ___m_IncludeForMasking_31; // UnityEngine.UI.MaskableGraphic_CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * ___m_OnCullStateChanged_32; // System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate bool ___m_ShouldRecalculate_33; // System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue int32_t ___m_StencilValue_34; // UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___m_Corners_35; public: inline static int32_t get_offset_of_m_ShouldRecalculateStencil_26() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ShouldRecalculateStencil_26)); } inline bool get_m_ShouldRecalculateStencil_26() const { return ___m_ShouldRecalculateStencil_26; } inline bool* get_address_of_m_ShouldRecalculateStencil_26() { return &___m_ShouldRecalculateStencil_26; } inline void set_m_ShouldRecalculateStencil_26(bool value) { ___m_ShouldRecalculateStencil_26 = value; } inline static int32_t get_offset_of_m_MaskMaterial_27() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_MaskMaterial_27)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_m_MaskMaterial_27() const { return ___m_MaskMaterial_27; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_m_MaskMaterial_27() { return &___m_MaskMaterial_27; } inline void set_m_MaskMaterial_27(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___m_MaskMaterial_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_MaskMaterial_27), (void*)value); } inline static int32_t get_offset_of_m_ParentMask_28() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ParentMask_28)); } inline RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * get_m_ParentMask_28() const { return ___m_ParentMask_28; } inline RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 ** get_address_of_m_ParentMask_28() { return &___m_ParentMask_28; } inline void set_m_ParentMask_28(RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * value) { ___m_ParentMask_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ParentMask_28), (void*)value); } inline static int32_t get_offset_of_m_Maskable_29() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_Maskable_29)); } inline bool get_m_Maskable_29() const { return ___m_Maskable_29; } inline bool* get_address_of_m_Maskable_29() { return &___m_Maskable_29; } inline void set_m_Maskable_29(bool value) { ___m_Maskable_29 = value; } inline static int32_t get_offset_of_m_IsMaskingGraphic_30() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_IsMaskingGraphic_30)); } inline bool get_m_IsMaskingGraphic_30() const { return ___m_IsMaskingGraphic_30; } inline bool* get_address_of_m_IsMaskingGraphic_30() { return &___m_IsMaskingGraphic_30; } inline void set_m_IsMaskingGraphic_30(bool value) { ___m_IsMaskingGraphic_30 = value; } inline static int32_t get_offset_of_m_IncludeForMasking_31() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_IncludeForMasking_31)); } inline bool get_m_IncludeForMasking_31() const { return ___m_IncludeForMasking_31; } inline bool* get_address_of_m_IncludeForMasking_31() { return &___m_IncludeForMasking_31; } inline void set_m_IncludeForMasking_31(bool value) { ___m_IncludeForMasking_31 = value; } inline static int32_t get_offset_of_m_OnCullStateChanged_32() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_OnCullStateChanged_32)); } inline CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * get_m_OnCullStateChanged_32() const { return ___m_OnCullStateChanged_32; } inline CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 ** get_address_of_m_OnCullStateChanged_32() { return &___m_OnCullStateChanged_32; } inline void set_m_OnCullStateChanged_32(CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * value) { ___m_OnCullStateChanged_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnCullStateChanged_32), (void*)value); } inline static int32_t get_offset_of_m_ShouldRecalculate_33() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ShouldRecalculate_33)); } inline bool get_m_ShouldRecalculate_33() const { return ___m_ShouldRecalculate_33; } inline bool* get_address_of_m_ShouldRecalculate_33() { return &___m_ShouldRecalculate_33; } inline void set_m_ShouldRecalculate_33(bool value) { ___m_ShouldRecalculate_33 = value; } inline static int32_t get_offset_of_m_StencilValue_34() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_StencilValue_34)); } inline int32_t get_m_StencilValue_34() const { return ___m_StencilValue_34; } inline int32_t* get_address_of_m_StencilValue_34() { return &___m_StencilValue_34; } inline void set_m_StencilValue_34(int32_t value) { ___m_StencilValue_34 = value; } inline static int32_t get_offset_of_m_Corners_35() { return static_cast<int32_t>(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_Corners_35)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_m_Corners_35() const { return ___m_Corners_35; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_m_Corners_35() { return &___m_Corners_35; } inline void set_m_Corners_35(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___m_Corners_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_35), (void*)value); } }; // UnityEngine.UI.Scrollbar struct Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 : public Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD { public: // UnityEngine.RectTransform UnityEngine.UI.Scrollbar::m_HandleRect RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___m_HandleRect_20; // UnityEngine.UI.Scrollbar_Direction UnityEngine.UI.Scrollbar::m_Direction int32_t ___m_Direction_21; // System.Single UnityEngine.UI.Scrollbar::m_Value float ___m_Value_22; // System.Single UnityEngine.UI.Scrollbar::m_Size float ___m_Size_23; // System.Int32 UnityEngine.UI.Scrollbar::m_NumberOfSteps int32_t ___m_NumberOfSteps_24; // UnityEngine.UI.Scrollbar_ScrollEvent UnityEngine.UI.Scrollbar::m_OnValueChanged ScrollEvent_tD181ECDC6DDCEE9E32FBEFB0E657F0001E3099ED * ___m_OnValueChanged_25; // UnityEngine.RectTransform UnityEngine.UI.Scrollbar::m_ContainerRect RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___m_ContainerRect_26; // UnityEngine.Vector2 UnityEngine.UI.Scrollbar::m_Offset Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Offset_27; // UnityEngine.DrivenRectTransformTracker UnityEngine.UI.Scrollbar::m_Tracker DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 ___m_Tracker_28; // UnityEngine.Coroutine UnityEngine.UI.Scrollbar::m_PointerDownRepeat Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * ___m_PointerDownRepeat_29; // System.Boolean UnityEngine.UI.Scrollbar::isPointerDownAndNotDragging bool ___isPointerDownAndNotDragging_30; // System.Boolean UnityEngine.UI.Scrollbar::m_DelayedUpdateVisuals bool ___m_DelayedUpdateVisuals_31; public: inline static int32_t get_offset_of_m_HandleRect_20() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_HandleRect_20)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_m_HandleRect_20() const { return ___m_HandleRect_20; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_m_HandleRect_20() { return &___m_HandleRect_20; } inline void set_m_HandleRect_20(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___m_HandleRect_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_HandleRect_20), (void*)value); } inline static int32_t get_offset_of_m_Direction_21() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_Direction_21)); } inline int32_t get_m_Direction_21() const { return ___m_Direction_21; } inline int32_t* get_address_of_m_Direction_21() { return &___m_Direction_21; } inline void set_m_Direction_21(int32_t value) { ___m_Direction_21 = value; } inline static int32_t get_offset_of_m_Value_22() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_Value_22)); } inline float get_m_Value_22() const { return ___m_Value_22; } inline float* get_address_of_m_Value_22() { return &___m_Value_22; } inline void set_m_Value_22(float value) { ___m_Value_22 = value; } inline static int32_t get_offset_of_m_Size_23() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_Size_23)); } inline float get_m_Size_23() const { return ___m_Size_23; } inline float* get_address_of_m_Size_23() { return &___m_Size_23; } inline void set_m_Size_23(float value) { ___m_Size_23 = value; } inline static int32_t get_offset_of_m_NumberOfSteps_24() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_NumberOfSteps_24)); } inline int32_t get_m_NumberOfSteps_24() const { return ___m_NumberOfSteps_24; } inline int32_t* get_address_of_m_NumberOfSteps_24() { return &___m_NumberOfSteps_24; } inline void set_m_NumberOfSteps_24(int32_t value) { ___m_NumberOfSteps_24 = value; } inline static int32_t get_offset_of_m_OnValueChanged_25() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_OnValueChanged_25)); } inline ScrollEvent_tD181ECDC6DDCEE9E32FBEFB0E657F0001E3099ED * get_m_OnValueChanged_25() const { return ___m_OnValueChanged_25; } inline ScrollEvent_tD181ECDC6DDCEE9E32FBEFB0E657F0001E3099ED ** get_address_of_m_OnValueChanged_25() { return &___m_OnValueChanged_25; } inline void set_m_OnValueChanged_25(ScrollEvent_tD181ECDC6DDCEE9E32FBEFB0E657F0001E3099ED * value) { ___m_OnValueChanged_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_25), (void*)value); } inline static int32_t get_offset_of_m_ContainerRect_26() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_ContainerRect_26)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_m_ContainerRect_26() const { return ___m_ContainerRect_26; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_m_ContainerRect_26() { return &___m_ContainerRect_26; } inline void set_m_ContainerRect_26(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___m_ContainerRect_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ContainerRect_26), (void*)value); } inline static int32_t get_offset_of_m_Offset_27() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_Offset_27)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Offset_27() const { return ___m_Offset_27; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Offset_27() { return &___m_Offset_27; } inline void set_m_Offset_27(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_Offset_27 = value; } inline static int32_t get_offset_of_m_Tracker_28() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_Tracker_28)); } inline DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 get_m_Tracker_28() const { return ___m_Tracker_28; } inline DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 * get_address_of_m_Tracker_28() { return &___m_Tracker_28; } inline void set_m_Tracker_28(DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 value) { ___m_Tracker_28 = value; } inline static int32_t get_offset_of_m_PointerDownRepeat_29() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_PointerDownRepeat_29)); } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * get_m_PointerDownRepeat_29() const { return ___m_PointerDownRepeat_29; } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 ** get_address_of_m_PointerDownRepeat_29() { return &___m_PointerDownRepeat_29; } inline void set_m_PointerDownRepeat_29(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * value) { ___m_PointerDownRepeat_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PointerDownRepeat_29), (void*)value); } inline static int32_t get_offset_of_isPointerDownAndNotDragging_30() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___isPointerDownAndNotDragging_30)); } inline bool get_isPointerDownAndNotDragging_30() const { return ___isPointerDownAndNotDragging_30; } inline bool* get_address_of_isPointerDownAndNotDragging_30() { return &___isPointerDownAndNotDragging_30; } inline void set_isPointerDownAndNotDragging_30(bool value) { ___isPointerDownAndNotDragging_30 = value; } inline static int32_t get_offset_of_m_DelayedUpdateVisuals_31() { return static_cast<int32_t>(offsetof(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28, ___m_DelayedUpdateVisuals_31)); } inline bool get_m_DelayedUpdateVisuals_31() const { return ___m_DelayedUpdateVisuals_31; } inline bool* get_address_of_m_DelayedUpdateVisuals_31() { return &___m_DelayedUpdateVisuals_31; } inline void set_m_DelayedUpdateVisuals_31(bool value) { ___m_DelayedUpdateVisuals_31 = value; } }; // UnityEngine.UI.Image struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C : public MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE { public: // UnityEngine.Sprite UnityEngine.UI.Image::m_Sprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_Sprite_37; // UnityEngine.Sprite UnityEngine.UI.Image::m_OverrideSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_OverrideSprite_38; // UnityEngine.UI.Image_Type UnityEngine.UI.Image::m_Type int32_t ___m_Type_39; // System.Boolean UnityEngine.UI.Image::m_PreserveAspect bool ___m_PreserveAspect_40; // System.Boolean UnityEngine.UI.Image::m_FillCenter bool ___m_FillCenter_41; // UnityEngine.UI.Image_FillMethod UnityEngine.UI.Image::m_FillMethod int32_t ___m_FillMethod_42; // System.Single UnityEngine.UI.Image::m_FillAmount float ___m_FillAmount_43; // System.Boolean UnityEngine.UI.Image::m_FillClockwise bool ___m_FillClockwise_44; // System.Int32 UnityEngine.UI.Image::m_FillOrigin int32_t ___m_FillOrigin_45; // System.Single UnityEngine.UI.Image::m_AlphaHitTestMinimumThreshold float ___m_AlphaHitTestMinimumThreshold_46; // System.Boolean UnityEngine.UI.Image::m_Tracked bool ___m_Tracked_47; // System.Boolean UnityEngine.UI.Image::m_UseSpriteMesh bool ___m_UseSpriteMesh_48; // System.Single UnityEngine.UI.Image::m_PixelsPerUnitMultiplier float ___m_PixelsPerUnitMultiplier_49; // System.Single UnityEngine.UI.Image::m_CachedReferencePixelsPerUnit float ___m_CachedReferencePixelsPerUnit_50; public: inline static int32_t get_offset_of_m_Sprite_37() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Sprite_37)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_Sprite_37() const { return ___m_Sprite_37; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_Sprite_37() { return &___m_Sprite_37; } inline void set_m_Sprite_37(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_Sprite_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Sprite_37), (void*)value); } inline static int32_t get_offset_of_m_OverrideSprite_38() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_OverrideSprite_38)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_OverrideSprite_38() const { return ___m_OverrideSprite_38; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_OverrideSprite_38() { return &___m_OverrideSprite_38; } inline void set_m_OverrideSprite_38(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_OverrideSprite_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OverrideSprite_38), (void*)value); } inline static int32_t get_offset_of_m_Type_39() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Type_39)); } inline int32_t get_m_Type_39() const { return ___m_Type_39; } inline int32_t* get_address_of_m_Type_39() { return &___m_Type_39; } inline void set_m_Type_39(int32_t value) { ___m_Type_39 = value; } inline static int32_t get_offset_of_m_PreserveAspect_40() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_PreserveAspect_40)); } inline bool get_m_PreserveAspect_40() const { return ___m_PreserveAspect_40; } inline bool* get_address_of_m_PreserveAspect_40() { return &___m_PreserveAspect_40; } inline void set_m_PreserveAspect_40(bool value) { ___m_PreserveAspect_40 = value; } inline static int32_t get_offset_of_m_FillCenter_41() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillCenter_41)); } inline bool get_m_FillCenter_41() const { return ___m_FillCenter_41; } inline bool* get_address_of_m_FillCenter_41() { return &___m_FillCenter_41; } inline void set_m_FillCenter_41(bool value) { ___m_FillCenter_41 = value; } inline static int32_t get_offset_of_m_FillMethod_42() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillMethod_42)); } inline int32_t get_m_FillMethod_42() const { return ___m_FillMethod_42; } inline int32_t* get_address_of_m_FillMethod_42() { return &___m_FillMethod_42; } inline void set_m_FillMethod_42(int32_t value) { ___m_FillMethod_42 = value; } inline static int32_t get_offset_of_m_FillAmount_43() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillAmount_43)); } inline float get_m_FillAmount_43() const { return ___m_FillAmount_43; } inline float* get_address_of_m_FillAmount_43() { return &___m_FillAmount_43; } inline void set_m_FillAmount_43(float value) { ___m_FillAmount_43 = value; } inline static int32_t get_offset_of_m_FillClockwise_44() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillClockwise_44)); } inline bool get_m_FillClockwise_44() const { return ___m_FillClockwise_44; } inline bool* get_address_of_m_FillClockwise_44() { return &___m_FillClockwise_44; } inline void set_m_FillClockwise_44(bool value) { ___m_FillClockwise_44 = value; } inline static int32_t get_offset_of_m_FillOrigin_45() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillOrigin_45)); } inline int32_t get_m_FillOrigin_45() const { return ___m_FillOrigin_45; } inline int32_t* get_address_of_m_FillOrigin_45() { return &___m_FillOrigin_45; } inline void set_m_FillOrigin_45(int32_t value) { ___m_FillOrigin_45 = value; } inline static int32_t get_offset_of_m_AlphaHitTestMinimumThreshold_46() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_AlphaHitTestMinimumThreshold_46)); } inline float get_m_AlphaHitTestMinimumThreshold_46() const { return ___m_AlphaHitTestMinimumThreshold_46; } inline float* get_address_of_m_AlphaHitTestMinimumThreshold_46() { return &___m_AlphaHitTestMinimumThreshold_46; } inline void set_m_AlphaHitTestMinimumThreshold_46(float value) { ___m_AlphaHitTestMinimumThreshold_46 = value; } inline static int32_t get_offset_of_m_Tracked_47() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Tracked_47)); } inline bool get_m_Tracked_47() const { return ___m_Tracked_47; } inline bool* get_address_of_m_Tracked_47() { return &___m_Tracked_47; } inline void set_m_Tracked_47(bool value) { ___m_Tracked_47 = value; } inline static int32_t get_offset_of_m_UseSpriteMesh_48() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_UseSpriteMesh_48)); } inline bool get_m_UseSpriteMesh_48() const { return ___m_UseSpriteMesh_48; } inline bool* get_address_of_m_UseSpriteMesh_48() { return &___m_UseSpriteMesh_48; } inline void set_m_UseSpriteMesh_48(bool value) { ___m_UseSpriteMesh_48 = value; } inline static int32_t get_offset_of_m_PixelsPerUnitMultiplier_49() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_PixelsPerUnitMultiplier_49)); } inline float get_m_PixelsPerUnitMultiplier_49() const { return ___m_PixelsPerUnitMultiplier_49; } inline float* get_address_of_m_PixelsPerUnitMultiplier_49() { return &___m_PixelsPerUnitMultiplier_49; } inline void set_m_PixelsPerUnitMultiplier_49(float value) { ___m_PixelsPerUnitMultiplier_49 = value; } inline static int32_t get_offset_of_m_CachedReferencePixelsPerUnit_50() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_CachedReferencePixelsPerUnit_50)); } inline float get_m_CachedReferencePixelsPerUnit_50() const { return ___m_CachedReferencePixelsPerUnit_50; } inline float* get_address_of_m_CachedReferencePixelsPerUnit_50() { return &___m_CachedReferencePixelsPerUnit_50; } inline void set_m_CachedReferencePixelsPerUnit_50(float value) { ___m_CachedReferencePixelsPerUnit_50 = value; } }; struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Image::s_ETC1DefaultUI Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_ETC1DefaultUI_36; // UnityEngine.Vector2[] UnityEngine.UI.Image::s_VertScratch Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___s_VertScratch_51; // UnityEngine.Vector2[] UnityEngine.UI.Image::s_UVScratch Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___s_UVScratch_52; // UnityEngine.Vector3[] UnityEngine.UI.Image::s_Xy Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___s_Xy_53; // UnityEngine.Vector3[] UnityEngine.UI.Image::s_Uv Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___s_Uv_54; // System.Collections.Generic.List`1<UnityEngine.UI.Image> UnityEngine.UI.Image::m_TrackedTexturelessImages List_1_t815A476B0A21E183042059E705F9E505478CD8AE * ___m_TrackedTexturelessImages_55; // System.Boolean UnityEngine.UI.Image::s_Initialized bool ___s_Initialized_56; public: inline static int32_t get_offset_of_s_ETC1DefaultUI_36() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_ETC1DefaultUI_36)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_ETC1DefaultUI_36() const { return ___s_ETC1DefaultUI_36; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_ETC1DefaultUI_36() { return &___s_ETC1DefaultUI_36; } inline void set_s_ETC1DefaultUI_36(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_ETC1DefaultUI_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ETC1DefaultUI_36), (void*)value); } inline static int32_t get_offset_of_s_VertScratch_51() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_VertScratch_51)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_s_VertScratch_51() const { return ___s_VertScratch_51; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_s_VertScratch_51() { return &___s_VertScratch_51; } inline void set_s_VertScratch_51(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___s_VertScratch_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_VertScratch_51), (void*)value); } inline static int32_t get_offset_of_s_UVScratch_52() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_UVScratch_52)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_s_UVScratch_52() const { return ___s_UVScratch_52; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_s_UVScratch_52() { return &___s_UVScratch_52; } inline void set_s_UVScratch_52(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___s_UVScratch_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_UVScratch_52), (void*)value); } inline static int32_t get_offset_of_s_Xy_53() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Xy_53)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_s_Xy_53() const { return ___s_Xy_53; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_s_Xy_53() { return &___s_Xy_53; } inline void set_s_Xy_53(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___s_Xy_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Xy_53), (void*)value); } inline static int32_t get_offset_of_s_Uv_54() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Uv_54)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_s_Uv_54() const { return ___s_Uv_54; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_s_Uv_54() { return &___s_Uv_54; } inline void set_s_Uv_54(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___s_Uv_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Uv_54), (void*)value); } inline static int32_t get_offset_of_m_TrackedTexturelessImages_55() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___m_TrackedTexturelessImages_55)); } inline List_1_t815A476B0A21E183042059E705F9E505478CD8AE * get_m_TrackedTexturelessImages_55() const { return ___m_TrackedTexturelessImages_55; } inline List_1_t815A476B0A21E183042059E705F9E505478CD8AE ** get_address_of_m_TrackedTexturelessImages_55() { return &___m_TrackedTexturelessImages_55; } inline void set_m_TrackedTexturelessImages_55(List_1_t815A476B0A21E183042059E705F9E505478CD8AE * value) { ___m_TrackedTexturelessImages_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedTexturelessImages_55), (void*)value); } inline static int32_t get_offset_of_s_Initialized_56() { return static_cast<int32_t>(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Initialized_56)); } inline bool get_s_Initialized_56() const { return ___s_Initialized_56; } inline bool* get_address_of_s_Initialized_56() { return &___s_Initialized_56; } inline void set_s_Initialized_56(bool value) { ___s_Initialized_56 = value; } }; // UnityEngine.UI.Text struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 : public MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE { public: // UnityEngine.UI.FontData UnityEngine.UI.Text::m_FontData FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 * ___m_FontData_36; // System.String UnityEngine.UI.Text::m_Text String_t* ___m_Text_37; // UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCache TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * ___m_TextCache_38; // UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCacheForLayout TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * ___m_TextCacheForLayout_39; // System.Boolean UnityEngine.UI.Text::m_DisableFontTextureRebuiltCallback bool ___m_DisableFontTextureRebuiltCallback_41; // UnityEngine.UIVertex[] UnityEngine.UI.Text::m_TempVerts UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ___m_TempVerts_42; public: inline static int32_t get_offset_of_m_FontData_36() { return static_cast<int32_t>(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_FontData_36)); } inline FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 * get_m_FontData_36() const { return ___m_FontData_36; } inline FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 ** get_address_of_m_FontData_36() { return &___m_FontData_36; } inline void set_m_FontData_36(FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 * value) { ___m_FontData_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_FontData_36), (void*)value); } inline static int32_t get_offset_of_m_Text_37() { return static_cast<int32_t>(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_Text_37)); } inline String_t* get_m_Text_37() const { return ___m_Text_37; } inline String_t** get_address_of_m_Text_37() { return &___m_Text_37; } inline void set_m_Text_37(String_t* value) { ___m_Text_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Text_37), (void*)value); } inline static int32_t get_offset_of_m_TextCache_38() { return static_cast<int32_t>(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_TextCache_38)); } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * get_m_TextCache_38() const { return ___m_TextCache_38; } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 ** get_address_of_m_TextCache_38() { return &___m_TextCache_38; } inline void set_m_TextCache_38(TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * value) { ___m_TextCache_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TextCache_38), (void*)value); } inline static int32_t get_offset_of_m_TextCacheForLayout_39() { return static_cast<int32_t>(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_TextCacheForLayout_39)); } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * get_m_TextCacheForLayout_39() const { return ___m_TextCacheForLayout_39; } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 ** get_address_of_m_TextCacheForLayout_39() { return &___m_TextCacheForLayout_39; } inline void set_m_TextCacheForLayout_39(TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * value) { ___m_TextCacheForLayout_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TextCacheForLayout_39), (void*)value); } inline static int32_t get_offset_of_m_DisableFontTextureRebuiltCallback_41() { return static_cast<int32_t>(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_DisableFontTextureRebuiltCallback_41)); } inline bool get_m_DisableFontTextureRebuiltCallback_41() const { return ___m_DisableFontTextureRebuiltCallback_41; } inline bool* get_address_of_m_DisableFontTextureRebuiltCallback_41() { return &___m_DisableFontTextureRebuiltCallback_41; } inline void set_m_DisableFontTextureRebuiltCallback_41(bool value) { ___m_DisableFontTextureRebuiltCallback_41 = value; } inline static int32_t get_offset_of_m_TempVerts_42() { return static_cast<int32_t>(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_TempVerts_42)); } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* get_m_TempVerts_42() const { return ___m_TempVerts_42; } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A** get_address_of_m_TempVerts_42() { return &___m_TempVerts_42; } inline void set_m_TempVerts_42(UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* value) { ___m_TempVerts_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TempVerts_42), (void*)value); } }; struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Text::s_DefaultText Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_DefaultText_40; public: inline static int32_t get_offset_of_s_DefaultText_40() { return static_cast<int32_t>(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_StaticFields, ___s_DefaultText_40)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_DefaultText_40() const { return ___s_DefaultText_40; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_DefaultText_40() { return &___s_DefaultText_40; } inline void set_s_DefaultText_40(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_DefaultText_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultText_40), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.ContactPoint[] struct ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B : public RuntimeArray { public: ALIGN_FIELD (8) ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 m_Items[1]; public: inline ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 value) { m_Items[index] = value; } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.SceneManagement.Scene[] struct SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115 : public RuntimeArray { public: ALIGN_FIELD (8) Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE m_Items[1]; public: inline Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE value) { m_Items[index] = value; } }; // !!0 UnityEngine.Component::GetComponent<System.Object>() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_gshared (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void Mirror.NetworkServer::RegisterHandler<System.Object>(System.Action`2<Mirror.NetworkConnection,!!0>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkServer_RegisterHandler_TisRuntimeObject_m87676C2BF35942F8EF74F8FCDD790C669CC305B1_gshared (Action_2_tA28EF8A679D2122A5F5AD0415D583100EF9115A0 * ___handler0, bool ___requireAuthentication1, const RuntimeMethod* method); // System.Boolean Mirror.NetworkConnection::Send<System.Object>(!!0,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkConnection_Send_TisRuntimeObject_m9689B7C00B9CC5C7BDF5615A905FA3039B92B4B5_gshared (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * __this, RuntimeObject * ___msg0, int32_t ___channelId1, const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate<System.Object>(!!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_m4039C8E65629D33E1EC84D2505BF1D5DDC936622_gshared (RuntimeObject * ___original0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent<System.Object>() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Boolean Mirror.NetworkServer::SendToAll<Mirror.SceneMessage>(!!0,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkServer_SendToAll_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_mBF7EDD20CFFF8192F8BA08BC465E70010416565C_gshared (SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE ___msg0, int32_t ___channelId1, bool ___sendToReadyOnly2, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m44F836CB16744D14CB1B3A88585DDC5C11897D6C_gshared (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate<System.Object>(!!0,UnityEngine.Vector3,UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_mB05DEC51C29EF5BB8BD17D055E80217F11E571AA_gshared (RuntimeObject * ___original0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position1, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation2, const RuntimeMethod* method); // System.Void System.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Object>::Find(System.Predicate`1<!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * List_1_Find_mBE8A91B51D29EC296321E6070FCD76081576B31E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___match0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.Int32>(!!0,!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, int32_t ___value0, int32_t* ___fieldValue1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.Int32>(!!0,!!0&,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, int32_t ___value0, int32_t* ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<UnityEngine.Color>(!!0,!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SyncVarEqual_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mF33C98CFE9BA15586141E1F9CAE8B5D8F9C1F733_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___fieldValue1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SetSyncVar<UnityEngine.Color>(!!0,!!0&,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mA18D148D5C167CFA0DA28FB5C0BAE44FD13FBDD6_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.Object>(!!0,!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SyncVarEqual_TisRuntimeObject_m172CF16A6368DC11FDAC19EE90415076BD8CF339_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, RuntimeObject * ___value0, RuntimeObject ** ___fieldValue1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.Object>(!!0,!!0&,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisRuntimeObject_m1E1C29617F9E2437BB762C42343B63E37EC558CC_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, RuntimeObject * ___value0, RuntimeObject ** ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method); // System.Void System.Action`2<System.Object,System.Object>::Invoke(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_m54EE979C4D83695ED736A3177A68C2968C8C4382_gshared (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.UInt32>(!!0,!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, uint32_t ___value0, uint32_t* ___fieldValue1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.UInt32>(!!0,!!0&,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, uint32_t ___value0, uint32_t* ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponentInChildren<System.Object>() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInChildren_TisRuntimeObject_mB377B32275A969E0D1A738DBC693DE8EB3593642_gshared (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<UnityEngine.Color32>(!!0,!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * ___fieldValue1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SetSyncVar<UnityEngine.Color32>(!!0,!!0&,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m12374F2F6F3D2DE9CBF98D3BD63CBB0DA19C69C5_gshared (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * Dictionary_2_get_Values_m868DAE374D8442BD5F1CD20B1A6AD5123898B604_gshared (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F ValueCollection_GetEnumerator_m448E577BC7E4AAC47F0FAD6DB8C1A5E4976BA64C_gshared (ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<UnityEngine.Quaternion>(!!0,!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SyncVarEqual_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_mF3D9D482F4F9DF0D6E80578EB3AC5F4740205F55_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * ___fieldValue1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SetSyncVar<UnityEngine.Quaternion>(!!0,!!0&,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_m14220B08E1B2C90F2F7C3136E78DE37501DBF13D_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.Boolean>(!!0,!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, bool ___value0, bool* ___fieldValue1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.Boolean>(!!0,!!0&,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8_gshared (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, bool ___value0, bool* ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA Dictionary_2_GetEnumerator_m6A635B5826FF065DBCB363B0B0340E3D7F417C66_gshared (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m99C700668AC6D272188471D2D6B784A2B5636C8E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void Mirror.NetworkServer::SendToClientOfPlayer<Mirror.SceneMessage>(Mirror.NetworkIdentity,!!0,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E_gshared (NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___identity0, SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE ___msg1, int32_t ___channelId2, const RuntimeMethod* method); // System.Boolean Mirror.NetworkConnection::Send<Mirror.SceneMessage>(!!0,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkConnection_Send_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m93F37538DCDF6B2C5BBB392CDD917C29DA9E7D1C_gshared (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * __this, SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE ___msg0, int32_t ___channelId1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_gshared_inline (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_gshared_inline (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m98E7736A87EEE37D6247F090557968992AEA3398_gshared (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m5ADAB4D38ED68C6A8596C348E6DE6D346C68F2E9_gshared (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, const RuntimeMethod* method); // System.Void Mirror.NetworkManager::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManager_OnStartServer_m05E1F97124AFA01D00BC671476F834089724C97A (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, const RuntimeMethod* method); // System.Collections.IEnumerator Mirror.Examples.Additive.AdditiveNetworkManager::LoadSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AdditiveNetworkManager_LoadSubScenes_m8116AA35745EBCC60C6C3A294DE91852EDCA37D5 (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method); // UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method); // System.Void Mirror.Examples.Additive.AdditiveNetworkManager/<LoadSubScenes>d__3::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__3__ctor_m10C1A15403DD46D8D5556DA1E5DAC24E5F830703 (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Collections.IEnumerator Mirror.Examples.Additive.AdditiveNetworkManager::UnloadScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AdditiveNetworkManager_UnloadScenes_m614BE51A47C34F56C628FDED27C1A03D03548E04 (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Additive.AdditiveNetworkManager/<UnloadScenes>d__6::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadScenesU3Ed__6__ctor_m3AF47BF7DE6656A947B502F47BCECAAD0F01208D (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void Mirror.NetworkManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManager__ctor_m831DF4BB5F616C10CC2B272AD9DA2C660B3A1924 (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // UnityEngine.ILogger Mirror.LogFactory::GetLogger(System.Type,UnityEngine.LogType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LogFactory_GetLogger_m1325F510684C0DEA3C16231F1D8EE10E9A55D5AC (Type_t * ___type0, int32_t ___defaultLogLevel1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_OnStartServer_m7E498D9B74008DCD512C4A01C847795893A5ED2D (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Rigidbody2D::set_simulated(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_set_simulated_m0C8D3C6B599467E6E791E92E2122282D4A0B055C (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, bool ___value0, const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.Vector2::get_right() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_get_right_m42ED15112D219375D2B6879E62ED925D002F15AF (const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(UnityEngine.Vector2,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___a0, float ___d1, const RuntimeMethod* method); // System.Void UnityEngine.Rigidbody2D::set_velocity(UnityEngine.Vector2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_set_velocity_m56B745344E78C85462843AE623BF0A40764FC2DA (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkServer::get_active() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline (const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.Collision2D::get_transform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Collision2D_get_transform_mC5A1F1938F67668E8B6BDE1048C727C8578AD827 (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<Mirror.Examples.Pong.Player>() inline Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 * Component_GetComponent_TisPlayer_t4E7E08BC683AFF26397BF9716820B0354E4C9A36_m95BADC612950E41A21BD02D15F88D92FC49E6501 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_mC8214E4F028CC2F036CC82BDB81D102A02893499 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___exists0, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.Component::get_transform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Transform::get_position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector3) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___v0, const RuntimeMethod* method); // UnityEngine.Collider2D UnityEngine.Collision2D::get_collider() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * Collision2D_get_collider_mA7687EDB0D47A2F211BFE8DB89266B9AA05CFDDD (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method); // UnityEngine.Bounds UnityEngine.Collider2D::get_bounds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 Collider2D_get_bounds_mAC9477EF790D42A796B09CD1E946129B3054ACA8 (Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Bounds::get_size() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Bounds_get_size_mB1C37E89879C7810BC9F4210033D9277DAFE2C14 (Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 * __this, const RuntimeMethod* method); // System.Single Mirror.Examples.Pong.Ball::HitFactor(UnityEngine.Vector2,UnityEngine.Vector2,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Ball_HitFactor_m15D7B7748C3F204C06A6ED0F80D5CD8476C07F4D (Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___ballPos0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___racketPos1, float ___racketHeight2, const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.Collision2D::get_relativeVelocity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Collision2D_get_relativeVelocity_m021626A3853F4D1E2DA016479096DB6CE9999628 (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, float ___x0, float ___y1, const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.Vector2::get_normalized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_get_normalized_m1F7F7AA3B7AC2414F245395C3785880B847BF7F5 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Void System.Action`2<Mirror.NetworkConnection,Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_mF532F24F1C433A3E35581FC7C3C1553708CA414F (Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_gshared)(__this, ___object0, ___method1, method); } // System.Void Mirror.NetworkServer::RegisterHandler<Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage>(System.Action`2<Mirror.NetworkConnection,!!0>,System.Boolean) inline void NetworkServer_RegisterHandler_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m06395C9526DC43EAA3E3407E590EBA531A2D119F (Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC * ___handler0, bool ___requireAuthentication1, const RuntimeMethod* method) { (( void (*) (Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC *, bool, const RuntimeMethod*))NetworkServer_RegisterHandler_TisRuntimeObject_m87676C2BF35942F8EF74F8FCDD790C669CC305B1_gshared)(___handler0, ___requireAuthentication1, method); } // System.Void Mirror.NetworkManager::OnClientConnect(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManager_OnClientConnect_m23A364AC2D7C3AEE64B43C25453A7BC2378CCC1A (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method); // System.Void Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreatePlayerMessage__ctor_mEEE97DF07DD19EAEC2AD1FC8AF9DF0061D1193BD (CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * __this, const RuntimeMethod* method); // System.String Mirror.Examples.Chat.ChatNetworkManager::get_PlayerName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ChatNetworkManager_get_PlayerName_mC9E6D4EBE57A29C48AC177812F97F54CD78A5E8A_inline (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, const RuntimeMethod* method); // System.Boolean Mirror.NetworkConnection::Send<Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage>(!!0,System.Int32) inline bool NetworkConnection_Send_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m40AEF9D7080327FF13FB0B84D81DFFFE9402A9C7 (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * __this, CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * ___msg0, int32_t ___channelId1, const RuntimeMethod* method) { return (( bool (*) (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 *, CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 *, int32_t, const RuntimeMethod*))NetworkConnection_Send_TisRuntimeObject_m9689B7C00B9CC5C7BDF5615A905FA3039B92B4B5_gshared)(__this, ___msg0, ___channelId1, method); } // !!0 UnityEngine.Object::Instantiate<UnityEngine.GameObject>(!!0) inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m26431AC51B9B7A43FBABD10B4923B72B0C578F33 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___original0, const RuntimeMethod* method) { return (( GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_m4039C8E65629D33E1EC84D2505BF1D5DDC936622_gshared)(___original0, method); } // !!0 UnityEngine.GameObject::GetComponent<Mirror.Examples.Chat.Player>() inline Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * GameObject_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mE0095CB28EAE19DE0B1EFFFD4EEC9E69A8CDDDD8 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // System.Void Mirror.Examples.Chat.Player::set_NetworkplayerName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerName_mB54F6C5CF791D16E93A6DE021176B0D69FCC7DBC (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkServer::AddPlayerForConnection(Mirror.NetworkConnection,UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkServer_AddPlayerForConnection_m487EFEA0D07031952F9E47E700F3E2D390AB5640 (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___player1, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.Component::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Void UnityEngine.GameObject::SetActive(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Action`2<Mirror.Examples.Chat.Player,System.String>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_mC793AA789A19E5831431742A1F9E0B52926DEA63 (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_gshared)(__this, ___object0, ___method1, method); } // System.Void Mirror.Examples.Chat.Player::add_OnMessage(System.Action`2<Mirror.Examples.Chat.Player,System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_add_OnMessage_m069F5EAF266ACF898ED70BB5EFCB71805997C8AD (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * ___value0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::get_isLocalPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Void Mirror.Examples.Chat.ChatWindow::AppendMessage(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatWindow_AppendMessage_mE1A91C965006ED08A6B04FBDC5DF160B3DB6AFB7 (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, String_t* ___message0, const RuntimeMethod* method); // System.String UnityEngine.UI.InputField::get_text() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputField_get_text_m15D0C784A4A104390610325B02216FC2A6F1077C (InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * __this, const RuntimeMethod* method); // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2 (String_t* __this, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // Mirror.NetworkConnection Mirror.NetworkClient::get_connection() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * NetworkClient_get_connection_m5439CD4BADA80C781B783F013464517F581F9557_inline (const RuntimeMethod* method); // Mirror.NetworkIdentity Mirror.NetworkConnection::get_identity() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * NetworkConnection_get_identity_mF8F7D1AA28117C2F53450E6697D2966DB1B16F45_inline (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<Mirror.Examples.Chat.Player>() inline Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * Component_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mFA2775C8DB51F2CBE0B29244BC55ADE6BBF1E791 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Void Mirror.Examples.Chat.Player::CmdSend(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_CmdSend_mF28A6EBFBBA996DB4A39BF137E5735E96601EF07 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void UnityEngine.UI.InputField::set_text(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_set_text_m30EE95E064474DFA2842CA2DD6E831FF3F3500BF (InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Collections.IEnumerator Mirror.Examples.Chat.ChatWindow::AppendAndScroll(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChatWindow_AppendAndScroll_mD6DA1A115041242B324AFBF8A11D1A360B78160C (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void Mirror.Examples.Chat.ChatWindow/<AppendAndScroll>d__8::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAppendAndScrollU3Ed__8__ctor_m0CD5F4CBC2AD01DB8CD5FFB3879760AEF7DD0AB3 (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, const RuntimeMethod* method); // System.Single UnityEngine.Vector3::Distance(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector3_Distance_mB648A79E4A1BAAFBF7B029644638C0D715480677 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method); // System.Single UnityEngine.Time::get_deltaTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290 (const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::MoveTowards(UnityEngine.Vector3,UnityEngine.Vector3,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_MoveTowards_mFB45EE30324E487925CA26EE6C001F0A3D257796 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___current0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___target1, float ___maxDistanceDelta2, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_position(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Single UnityEngine.Random::get_value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872 (const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.Random::get_insideUnitCircle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Random_get_insideUnitCircle_m0A73BD3F48690731663D2425D98687F5AD446190 (const RuntimeMethod* method); // System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(UnityEngine.Vector3,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, float ___d1, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::op_Addition(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method); // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::AddPlayerDelayed(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_AddPlayerDelayed_m744AA3C43907AC569D4680A8B949D059A36041C6 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<AddPlayerDelayed>d__4::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAddPlayerDelayedU3Ed__4__ctor_m1B4F2CD6C6BE6E71F021BC372725179065CA4271 (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::LoadSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_LoadSubScenes_mF477C94E3B5566608028FFD0EF3A631686B0620A (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<LoadSubScenes>d__6::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__6__ctor_mC6A1CF499F3FD475B3BAC34B2CCF368677DF1F23 (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkServer::SendToAll<Mirror.SceneMessage>(!!0,System.Int32,System.Boolean) inline bool NetworkServer_SendToAll_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_mBF7EDD20CFFF8192F8BA08BC465E70010416565C (SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE ___msg0, int32_t ___channelId1, bool ___sendToReadyOnly2, const RuntimeMethod* method) { return (( bool (*) (SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE , int32_t, bool, const RuntimeMethod*))NetworkServer_SendToAll_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_mBF7EDD20CFFF8192F8BA08BC465E70010416565C_gshared)(___msg0, ___channelId1, ___sendToReadyOnly2, method); } // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::UnloadSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_UnloadSubScenes_mFCFCBEF232BAEEFC60ECF91B42B86435C3354661 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method); // Mirror.NetworkManagerMode Mirror.NetworkManager::get_mode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NetworkManager_get_mode_m7DDDC4AFB7EC130F64E6BA4E916235B46C338337_inline (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, const RuntimeMethod* method); // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::UnloadClientSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_UnloadClientSubScenes_m68861DA9038425D2C5434F057F1DF4BC0510AEA4 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<UnloadClientSubScenes>d__9::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadClientSubScenesU3Ed__9__ctor_m8471195B56A77952356B988184E8CB9190AB9E3E (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<UnloadSubScenes>d__10::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadSubScenesU3Ed__10__ctor_m2EC460D1D222E56659D44A6D9E5F0C37A3E8FFD4 (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::.ctor() inline void List_1__ctor_m44F836CB16744D14CB1B3A88585DDC5C11897D6C (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 *, const RuntimeMethod*))List_1__ctor_m44F836CB16744D14CB1B3A88585DDC5C11897D6C_gshared)(__this, method); } // System.Void Mirror.NetworkManager::OnServerAddPlayer(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManager_OnServerAddPlayer_m2E0E936F41E55AFB82D0AB9908A3918A60F237DC (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method); // System.Int32 Mirror.NetworkManager::get_numPlayers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkManager_get_numPlayers_mA4CC3D7D3A2C4967F21E4EC6554CADB2EB239816 (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Transform::get_rotation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate<UnityEngine.GameObject>(!!0,UnityEngine.Vector3,UnityEngine.Quaternion) inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___original0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position1, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation2, const RuntimeMethod* method) { return (( GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 , const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_mB05DEC51C29EF5BB8BD17D055E80217F11E571AA_gshared)(___original0, ___position1, ___rotation2, method); } // System.Void System.Predicate`1<UnityEngine.GameObject>::.ctor(System.Object,System.IntPtr) inline void Predicate_1__ctor_m01D5AA45E9434D3CEAC527D329F0F7BF9D561A1B (Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B *, RuntimeObject *, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared)(__this, ___object0, ___method1, method); } // !0 System.Collections.Generic.List`1<UnityEngine.GameObject>::Find(System.Predicate`1<!0>) inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * List_1_Find_m03A7279A7DC1FF94BF4164238AD8C309A92AF58F (List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * __this, Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * ___match0, const RuntimeMethod* method) { return (( GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*) (List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 *, Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B *, const RuntimeMethod*))List_1_Find_mBE8A91B51D29EC296321E6070FCD76081576B31E_gshared)(__this, ___match0, method); } // System.Void Mirror.NetworkServer::Spawn(UnityEngine.GameObject,Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkServer_Spawn_mE71DE744EA836EE5C4EA51B6FCDDCDB83C1D7846 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___obj0, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___ownerConnection1, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // System.Void Mirror.NetworkServer::Destroy(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkServer_Destroy_m113ADC5542A4627A397C75DC3ECC9BC87F404FFB (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___obj0, const RuntimeMethod* method); // System.Void Mirror.NetworkManager::OnServerDisconnect(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManager_OnServerDisconnect_m2A4B300BE2D36D5FFFA0C7AF59296E527CB10EE2 (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent<Mirror.Examples.NetworkRoom.PlayerScore>() inline PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * GameObject_GetComponent_TisPlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6_mE85424B023694A3ECE8C19C181DA343BAD732319 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // !!0 UnityEngine.GameObject::GetComponent<Mirror.NetworkRoomPlayer>() inline NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F * GameObject_GetComponent_TisNetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_m4EDDC9D17439C18F9912C9A2DA143E1598E6BBC1 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // System.Void Mirror.Examples.NetworkRoom.PlayerScore::set_Networkindex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.SceneManagement.Scene UnityEngine.GameObject::get_scene() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE GameObject_get_scene_m7EBF95ABB5037FEE6811928F2E83C769C53F86C2 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.String UnityEngine.SceneManagement.Scene::get_name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Scene_get_name_m38F195D7CA6417FED310C23E4D8E86150C7835B8 (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE * __this, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method); // UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetActiveScene() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4 (const RuntimeMethod* method); // System.String UnityEngine.SceneManagement.Scene::get_path() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Scene_get_path_m1B2CE5FA0F1875C94621EE44BECD5E5C39EBF8BE (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE * __this, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void UnityEngine.SceneManagement.SceneManager::MoveGameObjectToScene(UnityEngine.GameObject,UnityEngine.SceneManagement.Scene) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneManager_MoveGameObjectToScene_m6A83C5A83445385BC00FBFD155707732A0C80F39 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___go0, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___scene1, const RuntimeMethod* method); // System.Void Mirror.NetworkRoomManager::OnRoomStopClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManager_OnRoomStopClient_mEDB15D3CAF8BAA160A7254456CABA4DF07EC03C6 (NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 * __this, const RuntimeMethod* method); // System.Void Mirror.NetworkRoomManager::OnRoomStopServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManager_OnRoomStopServer_m6F350D2B85CF572DA5CEFA4E379DF1FCB13F82FE (NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 * __this, const RuntimeMethod* method); // System.Void Mirror.NetworkRoomManager::OnGUI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManager_OnGUI_mAB4CC46F1EE70E719EC87F8D78B05093E07CBE43 (NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 * __this, const RuntimeMethod* method); // System.Boolean Mirror.NetworkRoomManager::get_allPlayersReady() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NetworkRoomManager_get_allPlayersReady_mD968D13421EC4A191DD3488C7C6579CC6A00FECA_inline (NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70 (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * __this, float ___x0, float ___y1, float ___width2, float ___height3, const RuntimeMethod* method); // System.Boolean UnityEngine.GUI::Button(UnityEngine.Rect,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUI_Button_m668EE382521BDEA241D719A9CF39B6672E2CA23F (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___position0, String_t* ___text1, const RuntimeMethod* method); // System.Void Mirror.NetworkRoomManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManager__ctor_mB2779CD15817C861DCE98C9357276B1EE617EEA0 (NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 * __this, const RuntimeMethod* method); // System.Boolean Mirror.ILoggerExtensions::LogEnabled(UnityEngine.ILogger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B (RuntimeObject* ___logger0, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::OnStartClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_OnStartClient_mBE0F27A3CDF5C4F76C777885B2D21AB60A9647E8 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Void Mirror.NetworkRoomPlayer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayer__ctor_m022684FAC82553240563C9BCA844841F0F089F62 (NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<UnityEngine.Rigidbody>() inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_m9DC24AA806B0B65E917751F7A3AFDB58861157CE (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Boolean Mirror.NetworkBehaviour::get_isServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_get_isServer_m6CF3499812C1F2679BB924165AA79C59E6D2EBCF (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Rigidbody::set_isKinematic(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody_set_isKinematic_mCF74D680205544826F2DE2CAB929C9F25409A311 (Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * __this, bool ___value0, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.Collision::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Collision_get_gameObject_m5682F872FD28419AA36F0651CE8B19825A21859D (Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.GameObject::CompareTag(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameObject_CompareTag_mA692D8508984DBE4A2FEFD19E29CB1C9D5CDE001 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, String_t* ___tag0, const RuntimeMethod* method); // UnityEngine.ContactPoint[] UnityEngine.Collision::get_contacts() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* Collision_get_contacts_m8C3D39F3332DD2AC623A9FB5F2127CE2754AF54B (Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.ContactPoint::get_normal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ContactPoint_get_normal_m0561937E45F5356C7BB90D861422BD76B36D037A (ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::get_normalized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_normalized_m2FA6DF38F97BDA4CCBDAE12B9FE913A241DAC8D5 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent<Mirror.NetworkIdentity>() inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // Mirror.NetworkConnectionToClient Mirror.NetworkIdentity::get_connectionToClient() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * NetworkIdentity_get_connectionToClient_mF85737F2CC90FC7E77FE8385F35F2FF2E692D82A_inline (NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Rigidbody::AddForce(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody_AddForce_mDFB0D57C25682B826999B0074F5C0FD399C6401D (Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___force0, const RuntimeMethod* method); // UnityEngine.PhysicsScene UnityEngine.PhysicsSceneExtensions::GetPhysicsScene(UnityEngine.SceneManagement.Scene) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 PhysicsSceneExtensions_GetPhysicsScene_m716E028C809F5E276F1C8DEEA8E1BC91AA1C4650 (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___scene0, const RuntimeMethod* method); // System.Boolean UnityEngine.PhysicsScene::IsValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene_IsValid_m550049FC74DBF388732DBA41DD14FEBE576080F9 (PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 * __this, const RuntimeMethod* method); // UnityEngine.PhysicsScene UnityEngine.Physics::get_defaultPhysicsScene() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 Physics_get_defaultPhysicsScene_mA6361488FBAC110DA8397E5E4CB473EBF4191010 (const RuntimeMethod* method); // System.Boolean UnityEngine.PhysicsScene::op_Inequality(UnityEngine.PhysicsScene,UnityEngine.PhysicsScene) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene_op_Inequality_m8B2C2308CD466593FFD7004F31BCB44FF908DE8F (PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 ___lhs0, PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 ___rhs1, const RuntimeMethod* method); // UnityEngine.PhysicsScene2D UnityEngine.PhysicsSceneExtensions2D::GetPhysicsScene2D(UnityEngine.SceneManagement.Scene) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 PhysicsSceneExtensions2D_GetPhysicsScene2D_m4DD2122D5E4B0C287A0B6424D09B7707CD05EF2C (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___scene0, const RuntimeMethod* method); // System.Boolean UnityEngine.PhysicsScene2D::IsValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene2D_IsValid_m6C14E7500CFF0E90E3F03E91907E4DC8B40F9570 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, const RuntimeMethod* method); // UnityEngine.PhysicsScene2D UnityEngine.Physics2D::get_defaultPhysicsScene() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83 (const RuntimeMethod* method); // System.Boolean UnityEngine.PhysicsScene2D::op_Inequality(UnityEngine.PhysicsScene2D,UnityEngine.PhysicsScene2D) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene2D_op_Inequality_mDA9D55CEF7D4F25B5BCD1F0923670572DA9B396E (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___lhs0, PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___rhs1, const RuntimeMethod* method); // System.Void UnityEngine.Behaviour::set_enabled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Behaviour_set_enabled_mDE415591B28853D1CD764C53CB499A2142247F32 (Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 * __this, bool ___value0, const RuntimeMethod* method); // System.Single UnityEngine.Time::get_fixedDeltaTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5 (const RuntimeMethod* method); // System.Void UnityEngine.PhysicsScene::Simulate(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsScene_Simulate_m450CD9964644091DF39087FF5ADCD46615E86232 (PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 * __this, float ___step0, const RuntimeMethod* method); // System.Boolean UnityEngine.PhysicsScene2D::Simulate(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene2D_Simulate_m4CE8979EB6FB0B114B9637ECBBAFE29FCBC10A42 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, float ___step0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // Mirror.NetworkConnection Mirror.NetworkBehaviour::get_connectionToClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * NetworkBehaviour_get_connectionToClient_m59547ED6321FBCB2B5BFF0B58F22202E981C2BD2 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Basic.Player::set_NetworkplayerNo(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerNo_m52257F6B3146D0B08EF56D5E8DF732ADE32FE9DE (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.Color UnityEngine.Random::ColorHSV(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 Random_ColorHSV_m35A32E1CE7C2E42BB084EBCAF521CF03205DBED8 (float ___hueMin0, float ___hueMax1, float ___saturationMin2, float ___saturationMax3, float ___valueMin4, float ___valueMax5, const RuntimeMethod* method); // System.Void Mirror.Examples.Basic.Player::set_NetworkplayerColor(UnityEngine.Color) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerColor_mE4EF912D1ABC83009201BE72761AF49483D81CF2 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::InvokeRepeating(System.String,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour_InvokeRepeating_mB77F4276826FBA696A150831D190875CB5802C70 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, String_t* ___methodName0, float ___time1, float ___repeatRate2, const RuntimeMethod* method); // System.Int32 UnityEngine.Random::Range(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A (int32_t ___min0, int32_t ___max1, const RuntimeMethod* method); // System.Void Mirror.Examples.Basic.Player::set_NetworkplayerData(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerData_mB781A57CD60BDA44FD67B3A50F840ECC5EFFE9B4 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.GameObject::Find(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B (String_t* ___name0, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.GameObject::get_transform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Transform::SetParent(UnityEngine.Transform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___p0, const RuntimeMethod* method); // System.Void UnityEngine.RectTransform::set_anchoredPosition(UnityEngine.Vector2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchoredPosition_m8143009B7D2B786DF8309D1D319F2212EFD24905 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::OnStartLocalPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_OnStartLocalPlayer_m884B22DB458ECACC0E00809576CC2DD2F41DE2B4 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Color__ctor_m679019E6084BF7A6F82590F66F5F695F6A50ECC5 (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * __this, float ___r0, float ___g1, float ___b2, float ___a3, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.Int32>(!!0,!!0&) inline bool NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, int32_t ___value0, int32_t* ___fieldValue1, const RuntimeMethod* method) { return (( bool (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, int32_t, int32_t*, const RuntimeMethod*))NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_gshared)(__this, ___value0, ___fieldValue1, method); } // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.Int32>(!!0,!!0&,System.UInt64) inline void NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, int32_t ___value0, int32_t* ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method) { (( void (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, int32_t, int32_t*, uint64_t, const RuntimeMethod*))NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_gshared)(__this, ___value0, ___fieldValue1, ___dirtyBit2, method); } // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<UnityEngine.Color>(!!0,!!0&) inline bool NetworkBehaviour_SyncVarEqual_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mF33C98CFE9BA15586141E1F9CAE8B5D8F9C1F733 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___fieldValue1, const RuntimeMethod* method) { return (( bool (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *, const RuntimeMethod*))NetworkBehaviour_SyncVarEqual_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mF33C98CFE9BA15586141E1F9CAE8B5D8F9C1F733_gshared)(__this, ___value0, ___fieldValue1, method); } // System.Void Mirror.NetworkBehaviour::SetSyncVar<UnityEngine.Color>(!!0,!!0&,System.UInt64) inline void NetworkBehaviour_SetSyncVar_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mA18D148D5C167CFA0DA28FB5C0BAE44FD13FBDD6 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method) { (( void (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 , Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *, uint64_t, const RuntimeMethod*))NetworkBehaviour_SetSyncVar_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mA18D148D5C167CFA0DA28FB5C0BAE44FD13FBDD6_gshared)(__this, ___value0, ___fieldValue1, ___dirtyBit2, method); } // System.Boolean Mirror.NetworkServer::get_localClientActive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkServer_get_localClientActive_m9C4F4B8848458BB4A2EE6552EDE1E39792C2B3BA (const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::getSyncVarHookGuard(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_getSyncVarHookGuard_m04C7E518D055E786F2EDD648D995543282812D09 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, uint64_t ___dirtyBit0, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::setSyncVarHookGuard(System.UInt64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, uint64_t ___dirtyBit0, bool ___value1, const RuntimeMethod* method); // System.Void Mirror.Examples.Basic.Player::OnPlayerDataChanged(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_OnPlayerDataChanged_m587DF3DEED39CA264A960FEE244D64D1318A5474 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, int32_t ___oldPlayerData0, int32_t ___newPlayerData1, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___initialState1, const RuntimeMethod* method); // System.Void Mirror.NetworkWriterExtensions::WritePackedInt32(Mirror.NetworkWriter,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171 (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, int32_t ___i1, const RuntimeMethod* method); // System.Void Mirror.NetworkWriterExtensions::WriteColor(Mirror.NetworkWriter,UnityEngine.Color) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WriteColor_m7EA61C4CEE7C0F49BCAF7339D1A76F4ECA50626E (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value1, const RuntimeMethod* method); // System.UInt64 Mirror.NetworkBehaviour::get_syncVarDirtyBits() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Void Mirror.NetworkWriterExtensions::WritePackedUInt64(Mirror.NetworkWriter,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, uint64_t ___value1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method); // System.Int32 Mirror.NetworkReaderExtensions::ReadPackedInt32(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0 (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // UnityEngine.Color Mirror.NetworkReaderExtensions::ReadColor(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 NetworkReaderExtensions_ReadColor_m21E0B16FA466A4FDAEC8BE1C80E47C9BAE3217A7 (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // System.UInt64 Mirror.NetworkReaderExtensions::ReadPackedUInt64(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380 (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method); // System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m8B4AD17254118B2904720D55C9B34FB3DCCBD7D4 (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method); // Mirror.PooledNetworkWriter Mirror.NetworkWriterPool::GetWriter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * NetworkWriterPool_GetWriter_m53506C8016911951C82F2F83E45592CE2F9A85AE (const RuntimeMethod* method); // System.Void Mirror.NetworkWriterExtensions::WriteString(Mirror.NetworkWriter,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, String_t* ___value1, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SendCommandInternal(System.Type,System.String,Mirror.NetworkWriter,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SendCommandInternal_m81D09DA3B313767B581AFB3F5BC4535807CC5700 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Type_t * ___invokeClass0, String_t* ___cmdName1, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer2, int32_t ___channelId3, bool ___ignoreAuthority4, const RuntimeMethod* method); // System.Void Mirror.NetworkWriterPool::Recycle(Mirror.PooledNetworkWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterPool_Recycle_m8E7D8C8ED6F0856380CE750DBEF1D0EC5BAF8FB3 (PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * ___writer0, const RuntimeMethod* method); // System.Void Mirror.NetworkBehaviour::SendRPCInternal(System.Type,System.String,Mirror.NetworkWriter,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkBehaviour_SendRPCInternal_m3E76275A3E52E54BF11483D924A21D58285586DF (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Type_t * ___invokeClass0, String_t* ___rpcName1, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer2, int32_t ___channelId3, bool ___excludeOwner4, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.String>(!!0,!!0&) inline bool NetworkBehaviour_SyncVarEqual_TisString_t_m9FE65477E4299FF143A3F1FB9A68D4C038297A6E (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, String_t* ___value0, String_t** ___fieldValue1, const RuntimeMethod* method) { return (( bool (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, String_t*, String_t**, const RuntimeMethod*))NetworkBehaviour_SyncVarEqual_TisRuntimeObject_m172CF16A6368DC11FDAC19EE90415076BD8CF339_gshared)(__this, ___value0, ___fieldValue1, method); } // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.String>(!!0,!!0&,System.UInt64) inline void NetworkBehaviour_SetSyncVar_TisString_t_mB1BE647BB205B4306DAB25A796D7FEB100BD7189 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, String_t* ___value0, String_t** ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method) { (( void (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, String_t*, String_t**, uint64_t, const RuntimeMethod*))NetworkBehaviour_SetSyncVar_TisRuntimeObject_m1E1C29617F9E2437BB762C42343B63E37EC558CC_gshared)(__this, ___value0, ___fieldValue1, ___dirtyBit2, method); } // System.Void Mirror.Examples.Chat.Player::RpcReceive(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_RpcReceive_m010A44E7398D051BB7FDCAD62915A4EA09C5F5E3 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogError(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.String Mirror.NetworkReaderExtensions::ReadString(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // System.Void Mirror.Examples.Chat.Player::UserCode_CmdSend(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_UserCode_CmdSend_mCF846A2C4CD008316D766BD9B9F9A113CA819663 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Action`2<Mirror.Examples.Chat.Player,System.String>::Invoke(!0,!1) inline void Action_2_Invoke_m9B4747ABDFDBD913EE4CC25E8F510CD4D3455B6D (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * __this, Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * ___arg10, String_t* ___arg21, const RuntimeMethod* method) { (( void (*) (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *, Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 *, String_t*, const RuntimeMethod*))Action_2_Invoke_m54EE979C4D83695ED736A3177A68C2968C8C4382_gshared)(__this, ___arg10, ___arg21, method); } // System.Boolean Mirror.NetworkClient::get_active() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkClient_get_active_m80C7ACA728DE7F6F6B5DC6C0E80B5AD0D287EA37 (const RuntimeMethod* method); // System.Void Mirror.Examples.Chat.Player::UserCode_RpcReceive(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_UserCode_RpcReceive_m7A005149584B3AC4258EAB293CB18499FB80922A (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void Mirror.RemoteCalls.CmdDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CmdDelegate__ctor_m25AAD7CB2265BEF6CC263E5F620322D0B874CAD8 (CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void Mirror.RemoteCalls.RemoteCallHelper::RegisterCommandDelegate(System.Type,System.String,Mirror.RemoteCalls.CmdDelegate,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemoteCallHelper_RegisterCommandDelegate_m196440B96E1D7A909D38037A770734FC5139842F (Type_t * ___invokeClass0, String_t* ___cmdName1, CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * ___func2, bool ___ignoreAuthority3, const RuntimeMethod* method); // System.Void Mirror.RemoteCalls.RemoteCallHelper::RegisterRpcDelegate(System.Type,System.String,Mirror.RemoteCalls.CmdDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemoteCallHelper_RegisterRpcDelegate_m3381432C36F433DF9E6D924514BEBAD8B37B7AC9 (Type_t * ___invokeClass0, String_t* ___rpcName1, CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * ___func2, const RuntimeMethod* method); // System.Single UnityEngine.Input::GetAxisRaw(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Input_GetAxisRaw_mC07AC23FD8D04A69CDB07C6399C93FFFAEB0FC5B (String_t* ___axisName0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<UnityEngine.CharacterController>() inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // !!0 UnityEngine.Component::GetComponent<UnityEngine.CapsuleCollider>() inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Void UnityEngine.Collider::set_enabled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Collider_set_enabled_m047B4D830755CD36671F7A60BFAA9C0D61F6C4A1 (Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * __this, bool ___value0, const RuntimeMethod* method); // UnityEngine.Camera UnityEngine.Camera::get_main() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C (const RuntimeMethod* method); // System.Void UnityEngine.Camera::set_orthographic(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Camera_set_orthographic_m38A872FC2D448915EE94C4FB72FB02D4C3F56C52 (Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_localPosition(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_localEulerAngles(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localEulerAngles_mB63076996124DC76E6902A81677A6E3C814C693B (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.Collider::get_enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collider_get_enabled_m03B73B5C97033F939387D1785BDF2619CADAEEB0 (Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * __this, const RuntimeMethod* method); // System.Single UnityEngine.Input::GetAxis(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326 (String_t* ___axisName0, const RuntimeMethod* method); // System.Boolean UnityEngine.Input::GetKey(UnityEngine.KeyCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429 (int32_t ___key0, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::MoveTowards(System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321 (float ___current0, float ___target1, float ___maxDelta2, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Lerp_m8A2A50B945F42D579EDF44D5EE79E85A4DA59616 (float ___a0, float ___b1, float ___t2, const RuntimeMethod* method); // System.Void UnityEngine.Transform::Rotate(System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_Rotate_mA3AE6D55AA9CC88A8F03C2B0B7CB3DB45ABA6A8E (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, float ___xAngle0, float ___yAngle1, float ___zAngle2, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::ClampMagnitude(UnityEngine.Vector3,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_ClampMagnitude_mF85598307D6CF3B4E5BEEB218CEDDCE39CDF3336 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___vector0, float ___maxLength1, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Transform::TransformDirection(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_TransformDirection_m6B5E3F0A7C6323159DEC6D9BC035FB53ADD96E91 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___direction0, const RuntimeMethod* method); // UnityEngine.CollisionFlags UnityEngine.CharacterController::Move(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharacterController_Move_mE0EBC32C72A0BEC18EDEBE748D44309A4BA32E60 (CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___motion0, const RuntimeMethod* method); // System.Boolean UnityEngine.CharacterController::SimpleMove(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharacterController_SimpleMove_m13296E1514AD800B545C45B1824261AB7FFDFF41 (CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___speed0, const RuntimeMethod* method); // System.Boolean UnityEngine.CharacterController::get_isGrounded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharacterController_get_isGrounded_m327A1A1940F225FE81E751F255316BB0D8698CBC (CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.CharacterController::get_velocity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E CharacterController_get_velocity_m13A2C2D13A171D9A6E899C0E472C68FCF5E3D5A6 (CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<Mirror.Examples.MultipleAdditiveScenes.PlayerScore>() inline PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * Component_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m7B6A4CBDF36DAC6F05A925A85F9503868235B98C (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method); // System.Void UnityEngine.GUI::Box(UnityEngine.Rect,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_Box_mA4BA00A35EAEA960B5F645B66F95DA0C59CB09D9 (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___position0, String_t* ___text1, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.UInt32>(!!0,!!0&) inline bool NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, uint32_t ___value0, uint32_t* ___fieldValue1, const RuntimeMethod* method) { return (( bool (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, uint32_t, uint32_t*, const RuntimeMethod*))NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB_gshared)(__this, ___value0, ___fieldValue1, method); } // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.UInt32>(!!0,!!0&,System.UInt64) inline void NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, uint32_t ___value0, uint32_t* ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method) { (( void (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, uint32_t, uint32_t*, uint64_t, const RuntimeMethod*))NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C_gshared)(__this, ___value0, ___fieldValue1, ___dirtyBit2, method); } // System.Void Mirror.NetworkWriterExtensions::WritePackedUInt32(Mirror.NetworkWriter,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WritePackedUInt32_m62071E4BC1B49A2963C82D12E0411140020A48C0 (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, uint32_t ___value1, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_NetworkplayerNumber(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_NetworkplayerNumber_mB1D8FC7DDFA50ACF3118B71B82FD17797269E9F8 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_NetworkscoreIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_NetworkscoreIndex_m0EB06183F96E9F4D3A4ABAD15EA0171B3F1DFD6A (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_NetworkmatchIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_NetworkmatchIndex_mE38D225BFC2E1E25D66C076E9CBC025D121DD3ED (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, int32_t ___value0, const RuntimeMethod* method); // System.UInt32 Mirror.NetworkReaderExtensions::ReadPackedUInt32(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t NetworkReaderExtensions_ReadPackedUInt32_mCE79DF006ABB39CB48E2B9F1553A0AB57ADDC0CF (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_Networkscore(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_Networkscore_m901503AC45EE829EE07429D973D3C42D65F34415 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, uint32_t ___value0, const RuntimeMethod* method); // System.String System.UInt32::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_mFE8BEBC3E66C2EC6D5CB25B31BE498D48E93CAB5 (uint32_t* __this, String_t* ___format0, const RuntimeMethod* method); // System.Void Mirror.Examples.NetworkRoom.PlayerScore::set_Networkscore(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_Networkscore_m2419F0AD2B208971FF2D3C57413A71D3A33400C9 (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, uint32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::Invoke(System.String,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour_Invoke_m4AAB759653B1C6FB0653527F4DDC72D1E9162CC4 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, String_t* ___methodName0, float ___time1, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Transform::get_forward() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_forward_mD850B9ECF892009E3485408DC0D375165B7BF053 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.String UnityEngine.Component::get_tag() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Component_get_tag_m77B4A7356E58F985216CC53966F7A9699454803E (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<Mirror.Examples.Tanks.Tank>() inline Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Void Mirror.Examples.Tanks.Tank::set_Networkhealth(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_Networkhealth_m507DDE5DDB11E1627F66444DB398722F8F4FD183 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, int32_t ___value0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent<Mirror.Examples.Tanks.Tank>() inline Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * GameObject_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m3B73C0CBE3BBEB45E5F900633A89565B3DDC0848 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // System.Void Mirror.Examples.Tanks.Tank::set_Networkscore(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_Networkscore_m07BB7DE07AA067E4B46F4BE1DA8A8A8D531E50F2 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.Color32 UnityEngine.Color32::op_Implicit(UnityEngine.Color) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D Color32_op_Implicit_mD17E8145D2D32EF369EFE349C4D32E839F7D7AA4 (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___c0, const RuntimeMethod* method); // System.Void Mirror.Examples.Additive.RandomColor::set_Networkcolor(UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_set_Networkcolor_mA7548122671BB11BE0060B116365D4421A11CA7A (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponentInChildren<UnityEngine.Renderer>() inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponentInChildren_TisRuntimeObject_mB377B32275A969E0D1A738DBC693DE8EB3593642_gshared)(__this, method); } // UnityEngine.Material UnityEngine.Renderer::get_material() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t8927C00353A72755313F046D0CE85178AE8218EE * Renderer_get_material_mE6B01125502D08EE0D6DFE2EAEC064AD9BB31804 (Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * __this, const RuntimeMethod* method); // UnityEngine.Color UnityEngine.Color32::op_Implicit(UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 Color32_op_Implicit_m63F14F1A14B1A9A3EE4D154413EE229D3E001623 (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___c0, const RuntimeMethod* method); // System.Void UnityEngine.Material::set_color(UnityEngine.Color) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Material_set_color_mC3C88E2389B7132EBF3EB0D1F040545176B795C0 (Material_t8927C00353A72755313F046D0CE85178AE8218EE * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Object::Destroy(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_m3EEDB6ECD49A541EC826EA8E1C8B599F7AF67D30 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___obj0, const RuntimeMethod* method); // UnityEngine.Color UnityEngine.Color::get_black() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 Color_get_black_m67E91EB7017FC74D9AB5ADEF6B6929B7EFC9A982 (const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<UnityEngine.Color32>(!!0,!!0&) inline bool NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * ___fieldValue1, const RuntimeMethod* method) { return (( bool (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D , Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *, const RuntimeMethod*))NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_gshared)(__this, ___value0, ___fieldValue1, method); } // System.Void Mirror.NetworkBehaviour::SetSyncVar<UnityEngine.Color32>(!!0,!!0&,System.UInt64) inline void NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method) { (( void (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D , Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *, uint64_t, const RuntimeMethod*))NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8_gshared)(__this, ___value0, ___fieldValue1, ___dirtyBit2, method); } // System.Void Mirror.Examples.Additive.RandomColor::SetColor(UnityEngine.Color32,UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_SetColor_m6129B89CACF88207A69B7659AF624CEE8C8B8822 (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___oldColor0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___newColor1, const RuntimeMethod* method); // System.Void Mirror.NetworkWriterExtensions::WriteColor32(Mirror.NetworkWriter,UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WriteColor32_mC430555DAD65FA8A1ACA7117122960F6412B3079 (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value1, const RuntimeMethod* method); // UnityEngine.Color32 Mirror.NetworkReaderExtensions::ReadColor32(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D NetworkReaderExtensions_ReadColor32_m7926AFB64529E5FC7C51D390468AAB86722D01F7 (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::set_Networkcolor(UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_set_Networkcolor_mEBB96647EE45564A5F268F79C2CA346FCAB65429 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, const RuntimeMethod* method); // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::SetColor(UnityEngine.Color32,UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_SetColor_m008A39F56E2810F334CB86A9079E9058FF880924 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ____0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___newColor1, const RuntimeMethod* method); // System.Void Mirror.Examples.NetworkRoom.RandomColor::set_Networkcolor(UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_set_Networkcolor_mC71CB232936D5F775205D263B71C9234119B1A41 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, const RuntimeMethod* method); // System.Void Mirror.Examples.NetworkRoom.RandomColor::SetColor(UnityEngine.Color32,UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_SetColor_mE9E8AC419541C8E5E38F1F8300FB897713FCDA77 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___oldColor0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___newColor1, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<Mirror.Examples.MultipleAdditiveScenes.RandomColor>() inline RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * Component_GetComponent_TisRandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455_m86F06E3C3FEC9C6278BBD6B05BDA6DA09D3013E1 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Void Mirror.Examples.MultipleAdditiveScenes.Reward::ClaimPrize(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_ClaimPrize_m7D32C45A67CB57FDE7BA1BC3D23151D8B007170B (Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___player0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent<Mirror.Examples.MultipleAdditiveScenes.PlayerScore>() inline PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * GameObject_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m2F11DD9901C3DE831ACC1A29CDAF294EF83AB7CC (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // System.Void Mirror.Examples.MultipleAdditiveScenes.Spawner::SpawnPrize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_SpawnPrize_mEABE55BB4D832D85538D7CFBC6EC192272D38AEF (Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<Mirror.Examples.NetworkRoom.RandomColor>() inline RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * Component_GetComponent_TisRandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F_m1CE337A1369F603E1BE6A1AEDDA0BBD3676AF02D (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // System.Void Mirror.Examples.NetworkRoom.Reward::ClaimPrize(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_ClaimPrize_m6C16A3DBBF15ADE648EFFDC441BB855A84F89732 (Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___player0, const RuntimeMethod* method); // System.Void Mirror.Examples.NetworkRoom.Spawner::SpawnPrize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_SpawnPrize_m19B8F8C88F45244987B3FF734D57C6C7D9135E0D (Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent<Mirror.NetworkAnimator>() inline NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * Component_GetComponent_TisNetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550_m5FE18D220F643A1AF9C97CA4BB330E8F6915F77C (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m69D9C576D6DD024C709E29EEADBC8041299A3AA7_gshared)(__this, method); } // Mirror.NetworkIdentity Mirror.NetworkBehaviour::get_netIdentity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * NetworkBehaviour_get_netIdentity_m67CAF485E29AFA1CB0540A7ADBE68FCE2326151D (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkConnection>::get_Count() inline int32_t Dictionary_2_get_Count_mCFCED7BF3548A04BD1FFE21FE3441652D23D7346 (Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 *, const RuntimeMethod*))Dictionary_2_get_Count_m12374F2F6F3D2DE9CBF98D3BD63CBB0DA19C69C5_gshared)(__this, method); } // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::ShootNearestPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_ShootNearestPlayer_m2536B0878F33CB4FE80E4A38D5287D0C8AE1D93A (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::get_isClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkBehaviour_get_isClient_m87FF41CC03AD448B05627F3711F8E27C63D5C615 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Quaternion::Slerp(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Quaternion_Slerp_m6D2BD18286254E28D2288B51962EC71F85C7B5C8 (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___a0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___b1, float ___t2, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_rotation(UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_rotation_m1B5F3D4CE984AB31254615C9C71B0E54978583B4 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,Mirror.NetworkConnection>::get_Values() inline ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A * Dictionary_2_get_Values_m206596714FC8B1875F776C020706E6D890070344 (Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * __this, const RuntimeMethod* method) { return (( ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A * (*) (Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 *, const RuntimeMethod*))Dictionary_2_get_Values_m868DAE374D8442BD5F1CD20B1A6AD5123898B604_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Mirror.NetworkConnection>::GetEnumerator() inline Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A ValueCollection_GetEnumerator_m5C016983C9DD084689CB8199AF44DB792080DE72 (ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A * __this, const RuntimeMethod* method) { return (( Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A (*) (ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A *, const RuntimeMethod*))ValueCollection_GetEnumerator_m448E577BC7E4AAC47F0FAD6DB8C1A5E4976BA64C_gshared)(__this, method); } // !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Mirror.NetworkConnection>::get_Current() inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * Enumerator_get_Current_mAF4458A3A011CF42905DA59EAEB9A900045B8BBB_inline (Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A * __this, const RuntimeMethod* method) { return (( NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * (*) (Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A *, const RuntimeMethod*))Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Mirror.NetworkConnection>::MoveNext() inline bool Enumerator_MoveNext_m954A7094A2F7F217A683B279960700558E2F0BA8 (Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A *, const RuntimeMethod*))Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Mirror.NetworkConnection>::Dispose() inline void Enumerator_Dispose_m041C2F116E161FE8A0E193E16E717AA3A4FC3CD8 (Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A *, const RuntimeMethod*))Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared)(__this, method); } // UnityEngine.Vector3 UnityEngine.Vector3::get_down() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_down_mFA85B870E184121D30F66395BB183ECAB9DD8629 (const RuntimeMethod* method); // System.Void UnityEngine.Transform::LookAt(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_LookAt_m996FADE2327B0A4412FF4A5179B8BABD9EB849BA (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition0, const RuntimeMethod* method); // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::set_Networkrotation(UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_set_Networkrotation_mCFEED1FBD935D68240DD114588E2FDB3E31E7A59 (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method); // System.Void Mirror.NetworkAnimator::SetTrigger(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkAnimator_SetTrigger_m426C845158C1277D17B8A5BFCC7A4F423ABD4F01 (NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * __this, String_t* ___triggerName0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<UnityEngine.Quaternion>(!!0,!!0&) inline bool NetworkBehaviour_SyncVarEqual_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_mF3D9D482F4F9DF0D6E80578EB3AC5F4740205F55 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * ___fieldValue1, const RuntimeMethod* method) { return (( bool (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 , Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 *, const RuntimeMethod*))NetworkBehaviour_SyncVarEqual_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_mF3D9D482F4F9DF0D6E80578EB3AC5F4740205F55_gshared)(__this, ___value0, ___fieldValue1, method); } // System.Void Mirror.NetworkBehaviour::SetSyncVar<UnityEngine.Quaternion>(!!0,!!0&,System.UInt64) inline void NetworkBehaviour_SetSyncVar_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_m14220B08E1B2C90F2F7C3136E78DE37501DBF13D (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method) { (( void (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 , Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 *, uint64_t, const RuntimeMethod*))NetworkBehaviour_SetSyncVar_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_m14220B08E1B2C90F2F7C3136E78DE37501DBF13D_gshared)(__this, ___value0, ___fieldValue1, ___dirtyBit2, method); } // System.Void Mirror.NetworkWriterExtensions::WriteQuaternion(Mirror.NetworkWriter,UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WriteQuaternion_m96A981CD95861D3F23358155CD1CCBCDF185D909 (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value1, const RuntimeMethod* method); // UnityEngine.Quaternion Mirror.NetworkReaderExtensions::ReadQuaternion(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 NetworkReaderExtensions_ReadQuaternion_m2946D7DD55E1ED8EDEF82536F0D4246D42A22E19 (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Quaternion::get_identity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Quaternion_get_identity_mF2E565DBCE793A1AE6208056D42CA7C59D83A702 (const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.GameObject::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GameObject_get_gameObject_mD5FFECF7C3AC5039E847DF7A8842478539B701D6 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent<Mirror.Examples.MultipleAdditiveScenes.Reward>() inline Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * GameObject_GetComponent_TisReward_t82A40753189BAB49A979289A29CEC56AE94399D2_m717C2DA0854EF4FDAFC870D3B1AB6844A1EDF169 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // !!0 UnityEngine.GameObject::GetComponent<Mirror.Examples.NetworkRoom.Reward>() inline Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * GameObject_GetComponent_TisReward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_m18D7C4418DD53C9F64B146EE83AEABF3C0AEF08D (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // System.Void UnityEngine.TextMesh::set_text(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextMesh_set_text_m5879B13F5C9E4A1D05155839B89CCDB85BE28A04 (TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * __this, String_t* ___value0, const RuntimeMethod* method); // UnityEngine.Color UnityEngine.Color::get_green() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 Color_get_green_mFF9BD42534D385A0717B1EAD083ADF08712984B9 (const RuntimeMethod* method); // System.Void UnityEngine.TextMesh::set_color(UnityEngine.Color) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextMesh_set_color_m276CE9AB9F88B34C0A9C6DD5300FC1123102D3DE (TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, const RuntimeMethod* method); // System.Boolean Mirror.Examples.Tanks.Tank::get_isDead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tank_get_isDead_m4EBD0982ED98DF2C76D9AE2AA1F16E446CCC26E7 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::get_forward() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_forward_m3082920F8A24AA02E4F542B6771EB0B63A91AC90 (const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Max(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Max_m4CE510E1F1013B33275F01543731A51A58BA0775 (float ___a0, float ___b1, const RuntimeMethod* method); // System.Single UnityEngine.AI.NavMeshAgent::get_speed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float NavMeshAgent_get_speed_m5AA9A1B23412A8F5CE24A5312F6E6D4BA282B173 (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, const RuntimeMethod* method); // System.Void UnityEngine.AI.NavMeshAgent::set_velocity(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavMeshAgent_set_velocity_m3CFD57C08562A9A79AC501773050A18EA0FC791A (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.AI.NavMeshAgent::get_velocity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E NavMeshAgent_get_velocity_mA6F25F6B38D5092BBE6DECD77F8FDB93D5C515C9 (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::get_zero() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_zero_m1A8F7993167785F750B6B01762D22C2597C84EF6 (const RuntimeMethod* method); // System.Boolean UnityEngine.Vector3::op_Inequality(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_m15190A795B416EB699E69E6190DE6F1C1F208710 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___lhs0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rhs1, const RuntimeMethod* method); // System.Void UnityEngine.Animator::SetBool(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetBool_m34E2E9785A47A3AE94E804004425C333C36CCD43 (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, String_t* ___name0, bool ___value1, const RuntimeMethod* method); // System.Boolean UnityEngine.Input::GetKeyDown(UnityEngine.KeyCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetKeyDown_m476116696E71771641BBECBAB1A4C55E69018220 (int32_t ___key0, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::CmdFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_CmdFire_m0171B75256D048D58241A7E9B74EDF09155D4C8E (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::CmdReady(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_CmdReady_m78AAB418AE1DC7B5F798A9BC04FE61067F1BA977 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___playername0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkBehaviour::SyncVarEqual<System.Boolean>(!!0,!!0&) inline bool NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, bool ___value0, bool* ___fieldValue1, const RuntimeMethod* method) { return (( bool (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, bool, bool*, const RuntimeMethod*))NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539_gshared)(__this, ___value0, ___fieldValue1, method); } // System.Void Mirror.NetworkBehaviour::SetSyncVar<System.Boolean>(!!0,!!0&,System.UInt64) inline void NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, bool ___value0, bool* ___fieldValue1, uint64_t ___dirtyBit2, const RuntimeMethod* method) { (( void (*) (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 *, bool, bool*, uint64_t, const RuntimeMethod*))NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8_gshared)(__this, ___value0, ___fieldValue1, ___dirtyBit2, method); } // !!0 UnityEngine.GameObject::GetComponent<Mirror.Examples.Tanks.Projectile>() inline Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * GameObject_GetComponent_TisProjectile_t1C5430FC42935877498341CC359F93F1987C4586_mD606B95216A2ACAAC347F36097DEF62F8166858A (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // System.Void Mirror.Examples.Tanks.Tank::RpcOnFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_RpcOnFire_mEF7A49115867A9BF0A22B24534B380CA9B57E19D (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::UserCode_CmdFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_UserCode_CmdFire_mB685757843B7146FA587A360905BE762599F3070 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Animator::SetTrigger(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_SetTrigger_m2D79D155CABD81B1CC75EFC35D90508B58D7211C (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::UserCode_RpcOnFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_UserCode_RpcOnFire_m72C1C6D425EF97D77C7A4E870E52F1B69327AD27 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4D0DDA7FEDB75304E5FDAF8489A0478EE58A45F2 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::set_NetworkplayerName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::set_NetworkisReady(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_NetworkisReady_m3982E97244753820F657768E93EE51F65BD19F53 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, bool ___value0, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::UserCode_CmdReady(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_UserCode_CmdReady_m00189A9E8401D2AE01228E9EDE0C62193F57FF41 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___playername0, const RuntimeMethod* method); // System.Void Mirror.NetworkWriterExtensions::WriteBoolean(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkWriterExtensions_WriteBoolean_m1286C9865F21B0EB024250572C0ADDC319782162 (NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___value1, const RuntimeMethod* method); // System.Boolean Mirror.NetworkReaderExtensions::ReadBoolean(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkReaderExtensions_ReadBoolean_mA9AED23EBC6083FDFFD749EED46F03BAFC6F0ED8 (NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::set_NetworkallowMovement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, bool ___value0, const RuntimeMethod* method); // Mirror.NetworkManager Mirror.NetworkManager::get_singleton() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * NetworkManager_get_singleton_m3687E70BBF51C41E6F20B606EF0E0E40D13E7641_inline (const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.TankGameManager::GameReadyCheck() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_GameReadyCheck_m3F60D6FED4FD0B67DB7255207A4A88A9CEE141E1 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.TankGameManager::GameOverCheck() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_GameOverCheck_m106F192D1DEECE0B97EF24BB3630E35732F33E05 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.TankGameManager::FindLocalTank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_FindLocalTank_m286379602946290D14961ED273B4A3D1D299206A (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.TankGameManager::ShowReadyMenu() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_ShowReadyMenu_m51D09019A53E7EB05D6E449BABA4B00F1AEF99A3 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.TankGameManager::UpdateStats() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_UpdateStats_m3B3D17022045A97224432D7FD0581F9BF3544BEA (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank>::Clear() inline void List_1_Clear_mA0F0AA9C5F1E217E885EAC135CE2F2136F45289C (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.UInt32,Mirror.NetworkIdentity>::GetEnumerator() inline Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E Dictionary_2_GetEnumerator_mF632AEB48D9B956849730FF51991CA7DAC26612D (Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * __this, const RuntimeMethod* method) { return (( Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E (*) (Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 *, const RuntimeMethod*))Dictionary_2_GetEnumerator_m6A635B5826FF065DBCB363B0B0340E3D7F417C66_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,Mirror.NetworkIdentity>::get_Current() inline KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 Enumerator_get_Current_m5A22240C81E287D939F4D8E1ADC390111675879A_inline (Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 (*) (Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E *, const RuntimeMethod*))Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2<System.UInt32,Mirror.NetworkIdentity>::get_Value() inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * KeyValuePair_2_get_Value_m846C370AE06B4D6452B80350FD41D499B8705AF4_inline (KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 * __this, const RuntimeMethod* method) { return (( NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * (*) (KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank>::Contains(!0) inline bool List_1_Contains_mBF424AC51797ED69205E4AA60177CB5842AD029A (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * __this, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * ___item0, const RuntimeMethod* method) { return (( bool (*) (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 *, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *, const RuntimeMethod*))List_1_Contains_m99C700668AC6D272188471D2D6B784A2B5636C8E_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank>::Add(!0) inline void List_1_Add_mFF7A0506767C9348B92A6059E3F1414DA96D95CB (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * __this, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 *, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,Mirror.NetworkIdentity>::MoveNext() inline bool Enumerator_MoveNext_m67C5F9007588ACD723F2DF188D4F8AA76660CE4D (Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E *, const RuntimeMethod*))Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,Mirror.NetworkIdentity>::Dispose() inline void Enumerator_Dispose_mABDFC6B9C9E8D1289620F4A713E0C817B7F54C61 (Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E *, const RuntimeMethod*))Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared)(__this, method); } // System.Int32 System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank>::get_Count() inline int32_t List_1_get_Count_mA3ECEA98E5D2E36FFF42B0B11B9CE50A2F03D0A9_inline (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank>::GetEnumerator() inline Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2 (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * __this, const RuntimeMethod* method) { return (( Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 (*) (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator<Mirror.Examples.Tanks.Tank>::get_Current() inline Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_inline (Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 * __this, const RuntimeMethod* method) { return (( Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * (*) (Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<Mirror.Examples.Tanks.Tank>::MoveNext() inline bool Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28 (Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<Mirror.Examples.Tanks.Tank>::Dispose() inline void Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2 (Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void Mirror.Examples.Tanks.TankGameManager::AllowTankMovement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_AllowTankMovement_m5FCBE38BE3E84C10D03D1EF5327765B386C398A9 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.TankGameManager::DisallowTankMovement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_DisallowTankMovement_mF3B0B6FDC2991DA85BAC57203DD18787179A80A2 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method); // Mirror.NetworkIdentity Mirror.ClientScene::get_localPlayer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ClientScene_get_localPlayer_m7354A403C57BAD08DDD216140CAD2DADF66E14CB_inline (const RuntimeMethod* method); // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method); // System.Void Mirror.Examples.Tanks.Tank::SendReadyToServer(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_SendReadyToServer_mECA51E145A8E961BC0E0F89E9553D69C21964D45 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___playername0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<Mirror.Examples.Tanks.Tank>::.ctor() inline void List_1__ctor_mE3124E023FDA2BC32372ABD9149DEA3FA0C15AEE (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void Mirror.NetworkServer::SendToClientOfPlayer<Mirror.SceneMessage>(Mirror.NetworkIdentity,!!0,System.Int32) inline void NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E (NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___identity0, SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE ___msg1, int32_t ___channelId2, const RuntimeMethod* method) { (( void (*) (NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 *, SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE , int32_t, const RuntimeMethod*))NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E_gshared)(___identity0, ___msg1, ___channelId2, method); } // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::LoadSceneAsync(System.String,UnityEngine.SceneManagement.LoadSceneMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * SceneManager_LoadSceneAsync_mB19DC1ECA7304F9CB66976DADE6423777750B748 (String_t* ___sceneName0, int32_t ___mode1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, const RuntimeMethod* method); // UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetSceneByName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE SceneManager_GetSceneByName_m1759CF791AED567228B0F161C4FA47D19E728BC9 (String_t* ___name0, const RuntimeMethod* method); // System.Boolean UnityEngine.SceneManagement.Scene::IsValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Scene_IsValid_mC8AE24868A5020050F6A544ECAF5465C2CFB7CED (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE * __this, const RuntimeMethod* method); // UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetSceneByPath(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE SceneManager_GetSceneByPath_mC4BDDF04CBFE46FD75CA9A5D5F6D88BDD7EE89F8 (String_t* ___scenePath0, const RuntimeMethod* method); // UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::UnloadSceneAsync(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * SceneManager_UnloadSceneAsync_mF564BF92447F58313A518206EE15E5DEED0448EF (String_t* ___sceneName0, const RuntimeMethod* method); // UnityEngine.AsyncOperation UnityEngine.Resources::UnloadUnusedAssets() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * Resources_UnloadUnusedAssets_m5BF7EFD195EFFE171CB47FF88CA880D76A751C70 (const RuntimeMethod* method); // System.Void Mirror.MessageBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase__ctor_mDC9103481D5807FBF080F7D92B051ED5F642D916 (MessageBase_t01317AB1C42AAD54FF16B5AE93DE52B1247F07EE * __this, const RuntimeMethod* method); // System.Void Mirror.MessageBase::Serialize(Mirror.NetworkWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase_Serialize_m8E90590039280EE7EBA1A97D327DB02A2BB5D3A1 (MessageBase_t01317AB1C42AAD54FF16B5AE93DE52B1247F07EE * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, const RuntimeMethod* method); // System.Void Mirror.MessageBase::Deserialize(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageBase_Deserialize_m62E25B8BBA1466111E1A2E65F971BB9CC63A2C09 (MessageBase_t01317AB1C42AAD54FF16B5AE93DE52B1247F07EE * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Void UnityEngine.UI.Scrollbar::set_value(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scrollbar_set_value_mEDFFDDF8153EA01B897198648DCFB1D1EA539197 (Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * __this, float ___value0, const RuntimeMethod* method); // System.Void UnityEngine.WaitForSeconds::.ctor(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitForSeconds__ctor_mD298C4CB9532BBBDE172FC40F3397E30504038D4 (WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 * __this, float ___seconds0, const RuntimeMethod* method); // System.Boolean Mirror.NetworkConnection::Send<Mirror.SceneMessage>(!!0,System.Int32) inline bool NetworkConnection_Send_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m93F37538DCDF6B2C5BBB392CDD917C29DA9E7D1C (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * __this, SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE ___msg0, int32_t ___channelId1, const RuntimeMethod* method) { return (( bool (*) (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 *, SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE , int32_t, const RuntimeMethod*))NetworkConnection_Send_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m93F37538DCDF6B2C5BBB392CDD917C29DA9E7D1C_gshared)(__this, ___msg0, ___channelId1, method); } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::<>n__0(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultiSceneNetManager_U3CU3En__0_m49EB438DFDA5B08A2ADA9F9DCA7CE5972644102C (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::get_Count() inline int32_t List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_inline (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 *, const RuntimeMethod*))List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_gshared_inline)(__this, method); } // !0 System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::get_Item(System.Int32) inline Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_inline (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE (*) (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 *, int32_t, const RuntimeMethod*))List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_gshared_inline)(__this, ___index0, method); } // System.Void UnityEngine.SceneManagement.LoadSceneParameters::set_loadSceneMode(UnityEngine.SceneManagement.LoadSceneMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LoadSceneParameters_set_loadSceneMode_m8AAA5796E9D642FC5C2C95831F22E272A28DD152 (LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.SceneManagement.LoadSceneParameters::set_localPhysicsMode(UnityEngine.SceneManagement.LocalPhysicsMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LoadSceneParameters_set_localPhysicsMode_m2631EA535FA759D9FB0D7FEC0D399614800C589D (LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::LoadSceneAsync(System.String,UnityEngine.SceneManagement.LoadSceneParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * SceneManager_LoadSceneAsync_m77AB3010DA4EE548FE973D65A2D983F0CC86254E (String_t* ___sceneName0, LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 ___parameters1, const RuntimeMethod* method); // UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetSceneAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE SceneManager_GetSceneAt_m46AF96028C6A3A09198ABB313E4206D93A8D1F3F (int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::Add(!0) inline void List_1_Add_m98E7736A87EEE37D6247F090557968992AEA3398 (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 *, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE , const RuntimeMethod*))List_1_Add_m98E7736A87EEE37D6247F090557968992AEA3398_gshared)(__this, ___item0, method); } // System.Boolean UnityEngine.SceneManagement.Scene::op_Inequality(UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Scene_op_Inequality_m5EE1812777959596639D8D480998B8DE0DE83F6D (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___lhs0, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___rhs1, const RuntimeMethod* method); // UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::UnloadSceneAsync(UnityEngine.SceneManagement.Scene) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * SceneManager_UnloadSceneAsync_m94D080FDA6440916AA8F8F4FA13B1002C96BB589 (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___scene0, const RuntimeMethod* method); // System.Int32 UnityEngine.SceneManagement.SceneManager::get_sceneCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SceneManager_get_sceneCount_m57B8EB790D8B6673BA840442B4F125121CC5456E (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>::Clear() inline void List_1_Clear_m5ADAB4D38ED68C6A8596C348E6DE6D346C68F2E9 (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 *, const RuntimeMethod*))List_1_Clear_m5ADAB4D38ED68C6A8596C348E6DE6D346C68F2E9_gshared)(__this, method); } // System.Void Mirror.Examples.Pong.NetworkManagerPong/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m894009D897E06C26CC20B2D9F06D36EAB22D361D (U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * __this, const RuntimeMethod* method); // System.String UnityEngine.Object::get_name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_m0C7BC870ED2F0DC5A2FB09628136CD7D1CB82CFB (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * __this, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Additive.AdditiveNetworkManager::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdditiveNetworkManager_OnStartServer_m965EC3A910194057ACEB2CB7D7867417450ED383 (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method) { { // base.OnStartServer(); NetworkManager_OnStartServer_m05E1F97124AFA01D00BC671476F834089724C97A(__this, /*hidden argument*/NULL); // StartCoroutine(LoadSubScenes()); RuntimeObject* L_0 = AdditiveNetworkManager_LoadSubScenes_m8116AA35745EBCC60C6C3A294DE91852EDCA37D5(__this, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Collections.IEnumerator Mirror.Examples.Additive.AdditiveNetworkManager::LoadSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AdditiveNetworkManager_LoadSubScenes_m8116AA35745EBCC60C6C3A294DE91852EDCA37D5 (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdditiveNetworkManager_LoadSubScenes_m8116AA35745EBCC60C6C3A294DE91852EDCA37D5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * L_0 = (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 *)il2cpp_codegen_object_new(U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06_il2cpp_TypeInfo_var); U3CLoadSubScenesU3Ed__3__ctor_m10C1A15403DD46D8D5556DA1E5DAC24E5F830703(L_0, 0, /*hidden argument*/NULL); U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return L_1; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager::OnStopServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdditiveNetworkManager_OnStopServer_mA297BA69543D867B9055E78E40C6852FBC7087DE (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method) { { // StartCoroutine(UnloadScenes()); RuntimeObject* L_0 = AdditiveNetworkManager_UnloadScenes_m614BE51A47C34F56C628FDED27C1A03D03548E04(__this, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager::OnStopClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdditiveNetworkManager_OnStopClient_m604C18F8147D0D4353F912F77898849ACC925C16 (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method) { { // StartCoroutine(UnloadScenes()); RuntimeObject* L_0 = AdditiveNetworkManager_UnloadScenes_m614BE51A47C34F56C628FDED27C1A03D03548E04(__this, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Collections.IEnumerator Mirror.Examples.Additive.AdditiveNetworkManager::UnloadScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AdditiveNetworkManager_UnloadScenes_m614BE51A47C34F56C628FDED27C1A03D03548E04 (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdditiveNetworkManager_UnloadScenes_m614BE51A47C34F56C628FDED27C1A03D03548E04_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * L_0 = (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D *)il2cpp_codegen_object_new(U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D_il2cpp_TypeInfo_var); U3CUnloadScenesU3Ed__6__ctor_m3AF47BF7DE6656A947B502F47BCECAAD0F01208D(L_0, 0, /*hidden argument*/NULL); U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return L_1; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdditiveNetworkManager__ctor_m5CC589415994E9AA3B29BC7DF5C3ABE27016D196 (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdditiveNetworkManager__ctor_m5CC589415994E9AA3B29BC7DF5C3ABE27016D196_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var); NetworkManager__ctor_m831DF4BB5F616C10CC2B272AD9DA2C660B3A1924(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdditiveNetworkManager__cctor_m3721C68070551507B5C1DC67C06BD748EE3C130E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdditiveNetworkManager__cctor_m3721C68070551507B5C1DC67C06BD748EE3C130E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // static readonly ILogger logger = LogFactory.GetLogger(typeof(AdditiveNetworkManager)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LogFactory_t359C989285E6F62B9F073C5F0F5FA52BAB518DB6_il2cpp_TypeInfo_var); RuntimeObject* L_2 = LogFactory_GetLogger_m1325F510684C0DEA3C16231F1D8EE10E9A55D5AC(L_1, 2, /*hidden argument*/NULL); ((AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields*)il2cpp_codegen_static_fields_for(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var))->set_logger_33(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Pong.Ball::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ball_OnStartServer_mD7AFFB3ED60F2313E8BD3714E6EB9450225BCD49 (Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Ball_OnStartServer_mD7AFFB3ED60F2313E8BD3714E6EB9450225BCD49_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // base.OnStartServer(); NetworkBehaviour_OnStartServer_m7E498D9B74008DCD512C4A01C847795893A5ED2D(__this, /*hidden argument*/NULL); // rigidbody2d.simulated = true; Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * L_0 = __this->get_rigidbody2d_13(); NullCheck(L_0); Rigidbody2D_set_simulated_m0C8D3C6B599467E6E791E92E2122282D4A0B055C(L_0, (bool)1, /*hidden argument*/NULL); // rigidbody2d.velocity = Vector2.right * speed; Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * L_1 = __this->get_rigidbody2d_13(); IL2CPP_RUNTIME_CLASS_INIT(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = Vector2_get_right_m42ED15112D219375D2B6879E62ED925D002F15AF(/*hidden argument*/NULL); float L_3 = __this->get_speed_12(); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_1); Rigidbody2D_set_velocity_m56B745344E78C85462843AE623BF0A40764FC2DA(L_1, L_4, /*hidden argument*/NULL); // } return; } } // System.Single Mirror.Examples.Pong.Ball::HitFactor(UnityEngine.Vector2,UnityEngine.Vector2,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Ball_HitFactor_m15D7B7748C3F204C06A6ED0F80D5CD8476C07F4D (Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___ballPos0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___racketPos1, float ___racketHeight2, const RuntimeMethod* method) { { // return (ballPos.y - racketPos.y) / racketHeight; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = ___ballPos0; float L_1 = L_0.get_y_1(); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___racketPos1; float L_3 = L_2.get_y_1(); float L_4 = ___racketHeight2; return ((float)((float)((float)il2cpp_codegen_subtract((float)L_1, (float)L_3))/(float)L_4)); } } // System.Void Mirror.Examples.Pong.Ball::OnCollisionEnter2D(UnityEngine.Collision2D) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ball_OnCollisionEnter2D_m639F898FC298184DB7A550D4591FF78F86D37D9E (Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 * __this, Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * ___col0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Ball_OnCollisionEnter2D_m639F898FC298184DB7A550D4591FF78F86D37D9E_MetadataUsageId); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_1; memset((&V_1), 0, sizeof(V_1)); Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 V_2; memset((&V_2), 0, sizeof(V_2)); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_3; memset((&V_3), 0, sizeof(V_3)); int32_t G_B6_0 = 0; { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // if (col.transform.GetComponent<Player>()) Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * L_1 = ___col0; NullCheck(L_1); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2 = Collision2D_get_transform_mC5A1F1938F67668E8B6BDE1048C727C8578AD827(L_1, /*hidden argument*/NULL); NullCheck(L_2); Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 * L_3 = Component_GetComponent_TisPlayer_t4E7E08BC683AFF26397BF9716820B0354E4C9A36_m95BADC612950E41A21BD02D15F88D92FC49E6501(L_2, /*hidden argument*/Component_GetComponent_TisPlayer_t4E7E08BC683AFF26397BF9716820B0354E4C9A36_m95BADC612950E41A21BD02D15F88D92FC49E6501_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4 = Object_op_Implicit_mC8214E4F028CC2F036CC82BDB81D102A02893499(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0099; } } { // float y = HitFactor(transform.position, // col.transform.position, // col.collider.bounds.size.y); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_5); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_5, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7 = Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline(L_6, /*hidden argument*/NULL); Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * L_8 = ___col0; NullCheck(L_8); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_9 = Collision2D_get_transform_mC5A1F1938F67668E8B6BDE1048C727C8578AD827(L_8, /*hidden argument*/NULL); NullCheck(L_9); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_9, /*hidden argument*/NULL); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_11 = Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline(L_10, /*hidden argument*/NULL); Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * L_12 = ___col0; NullCheck(L_12); Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * L_13 = Collision2D_get_collider_mA7687EDB0D47A2F211BFE8DB89266B9AA05CFDDD(L_12, /*hidden argument*/NULL); NullCheck(L_13); Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 L_14 = Collider2D_get_bounds_mAC9477EF790D42A796B09CD1E946129B3054ACA8(L_13, /*hidden argument*/NULL); V_2 = L_14; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_15 = Bounds_get_size_mB1C37E89879C7810BC9F4210033D9277DAFE2C14((Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 *)(&V_2), /*hidden argument*/NULL); float L_16 = L_15.get_y_3(); float L_17 = Ball_HitFactor_m15D7B7748C3F204C06A6ED0F80D5CD8476C07F4D(__this, L_7, L_11, L_16, /*hidden argument*/NULL); V_0 = L_17; // float x = col.relativeVelocity.x > 0 ? 1 : -1; Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * L_18 = ___col0; NullCheck(L_18); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_19 = Collision2D_get_relativeVelocity_m021626A3853F4D1E2DA016479096DB6CE9999628(L_18, /*hidden argument*/NULL); float L_20 = L_19.get_x_0(); if ((((float)L_20) > ((float)(0.0f)))) { goto IL_0071; } } { G_B6_0 = (-1); goto IL_0072; } IL_0071: { G_B6_0 = 1; } IL_0072: { // Vector2 dir = new Vector2(x, y).normalized; float L_21 = V_0; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_22; memset((&L_22), 0, sizeof(L_22)); Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_22), (((float)((float)G_B6_0))), L_21, /*hidden argument*/NULL); V_3 = L_22; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_23 = Vector2_get_normalized_m1F7F7AA3B7AC2414F245395C3785880B847BF7F5((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_3), /*hidden argument*/NULL); V_1 = L_23; // rigidbody2d.velocity = dir * speed; Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * L_24 = __this->get_rigidbody2d_13(); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_25 = V_1; float L_26 = __this->get_speed_12(); IL2CPP_RUNTIME_CLASS_INIT(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_27 = Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline(L_25, L_26, /*hidden argument*/NULL); NullCheck(L_24); Rigidbody2D_set_velocity_m56B745344E78C85462843AE623BF0A40764FC2DA(L_24, L_27, /*hidden argument*/NULL); } IL_0099: { // } return; } } // System.Void Mirror.Examples.Pong.Ball::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ball__ctor_mE12E9FB8B520A6A781A4376E12AF81B52AE6E8FE (Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Ball__ctor_mE12E9FB8B520A6A781A4376E12AF81B52AE6E8FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float speed = 30; __this->set_speed_12((30.0f)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Pong.Ball::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ball_MirrorProcessed_mFB1DAB2BD5C22993091A42B1A0D0614A2580071F (Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String Mirror.Examples.Chat.ChatNetworkManager::get_PlayerName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ChatNetworkManager_get_PlayerName_mC9E6D4EBE57A29C48AC177812F97F54CD78A5E8A (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, const RuntimeMethod* method) { { // public string PlayerName { get; set; } String_t* L_0 = __this->get_U3CPlayerNameU3Ek__BackingField_33(); return L_0; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager::set_PlayerName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatNetworkManager_set_PlayerName_mF49226B76F439474781A07D32E7CA40AFA58E7B5 (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, String_t* ___value0, const RuntimeMethod* method) { { // public string PlayerName { get; set; } String_t* L_0 = ___value0; __this->set_U3CPlayerNameU3Ek__BackingField_33(L_0); return; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager::SetHostname(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatNetworkManager_SetHostname_m60361EFD7632293E20FD9ECBA21E4853B9D016D0 (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, String_t* ___hostname0, const RuntimeMethod* method) { { // networkAddress = hostname; String_t* L_0 = ___hostname0; ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->set_networkAddress_13(L_0); // } return; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatNetworkManager_OnStartServer_mF0ABA7AB9531AFC89B813B4BB015B27E593A1253 (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatNetworkManager_OnStartServer_mF0ABA7AB9531AFC89B813B4BB015B27E593A1253_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // base.OnStartServer(); NetworkManager_OnStartServer_m05E1F97124AFA01D00BC671476F834089724C97A(__this, /*hidden argument*/NULL); // NetworkServer.RegisterHandler<CreatePlayerMessage>(OnCreatePlayer); Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC * L_0 = (Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC *)il2cpp_codegen_object_new(Action_2_tBEBF1BE968515CC4950E4A276518894E57AD4ADC_il2cpp_TypeInfo_var); Action_2__ctor_mF532F24F1C433A3E35581FC7C3C1553708CA414F(L_0, __this, (intptr_t)((intptr_t)ChatNetworkManager_OnCreatePlayer_m53F8F078A5A19206F9929018F992FA57C28C0975_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_mF532F24F1C433A3E35581FC7C3C1553708CA414F_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_RegisterHandler_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m06395C9526DC43EAA3E3407E590EBA531A2D119F(L_0, (bool)1, /*hidden argument*/NetworkServer_RegisterHandler_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m06395C9526DC43EAA3E3407E590EBA531A2D119F_RuntimeMethod_var); // } return; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager::OnClientConnect(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatNetworkManager_OnClientConnect_m66BD448EC75E3726646087B5EE387E051BC59CA9 (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatNetworkManager_OnClientConnect_m66BD448EC75E3726646087B5EE387E051BC59CA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // base.OnClientConnect(conn); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_0 = ___conn0; NetworkManager_OnClientConnect_m23A364AC2D7C3AEE64B43C25453A7BC2378CCC1A(__this, L_0, /*hidden argument*/NULL); // conn.Send(new CreatePlayerMessage { name = PlayerName }); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_1 = ___conn0; CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * L_2 = (CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 *)il2cpp_codegen_object_new(CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_il2cpp_TypeInfo_var); CreatePlayerMessage__ctor_mEEE97DF07DD19EAEC2AD1FC8AF9DF0061D1193BD(L_2, /*hidden argument*/NULL); CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * L_3 = L_2; String_t* L_4 = ChatNetworkManager_get_PlayerName_mC9E6D4EBE57A29C48AC177812F97F54CD78A5E8A_inline(__this, /*hidden argument*/NULL); NullCheck(L_3); L_3->set_name_0(L_4); NullCheck(L_1); NetworkConnection_Send_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m40AEF9D7080327FF13FB0B84D81DFFFE9402A9C7(L_1, L_3, 0, /*hidden argument*/NetworkConnection_Send_TisCreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_m40AEF9D7080327FF13FB0B84D81DFFFE9402A9C7_RuntimeMethod_var); // } return; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager::OnCreatePlayer(Mirror.NetworkConnection,Mirror.Examples.Chat.ChatNetworkManager_CreatePlayerMessage) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatNetworkManager_OnCreatePlayer_m53F8F078A5A19206F9929018F992FA57C28C0975 (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___connection0, CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * ___createPlayerMessage1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatNetworkManager_OnCreatePlayer_m53F8F078A5A19206F9929018F992FA57C28C0975_MetadataUsageId); s_Il2CppMethodInitialized = true; } GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * V_0 = NULL; { // GameObject playergo = Instantiate(playerPrefab); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->get_playerPrefab_18(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m26431AC51B9B7A43FBABD10B4923B72B0C578F33(L_0, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m26431AC51B9B7A43FBABD10B4923B72B0C578F33_RuntimeMethod_var); V_0 = L_1; // playergo.GetComponent<Player>().playerName = createPlayerMessage.name; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = V_0; NullCheck(L_2); Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * L_3 = GameObject_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mE0095CB28EAE19DE0B1EFFFD4EEC9E69A8CDDDD8(L_2, /*hidden argument*/GameObject_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mE0095CB28EAE19DE0B1EFFFD4EEC9E69A8CDDDD8_RuntimeMethod_var); CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * L_4 = ___createPlayerMessage1; NullCheck(L_4); String_t* L_5 = L_4->get_name_0(); NullCheck(L_3); Player_set_NetworkplayerName_mB54F6C5CF791D16E93A6DE021176B0D69FCC7DBC(L_3, L_5, /*hidden argument*/NULL); // NetworkServer.AddPlayerForConnection(connection, playergo); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_6 = ___connection0; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_AddPlayerForConnection_m487EFEA0D07031952F9E47E700F3E2D390AB5640(L_6, L_7, /*hidden argument*/NULL); // chatWindow.gameObject.SetActive(true); ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * L_8 = __this->get_chatWindow_34(); NullCheck(L_8); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_9 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_8, /*hidden argument*/NULL); NullCheck(L_9); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_9, (bool)1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatNetworkManager__ctor_m8081B140804EDAA6461BF55AE81B35A50AA5E8B7 (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatNetworkManager__ctor_m8081B140804EDAA6461BF55AE81B35A50AA5E8B7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var); NetworkManager__ctor_m831DF4BB5F616C10CC2B272AD9DA2C660B3A1924(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Chat.ChatWindow::Awake() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatWindow_Awake_mAFCA55D996C1F64ADB96DC732FB6BBECD47152D0 (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatWindow_Awake_mAFCA55D996C1F64ADB96DC732FB6BBECD47152D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // Player.OnMessage += OnPlayerMessage; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_0 = (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *)il2cpp_codegen_object_new(Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE_il2cpp_TypeInfo_var); Action_2__ctor_mC793AA789A19E5831431742A1F9E0B52926DEA63(L_0, __this, (intptr_t)((intptr_t)ChatWindow_OnPlayerMessage_mA51B938E5A5CFA205CDEAB15795D7BA0DCD604E1_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_mC793AA789A19E5831431742A1F9E0B52926DEA63_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var); Player_add_OnMessage_m069F5EAF266ACF898ED70BB5EFCB71805997C8AD(L_0, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Chat.ChatWindow::OnPlayerMessage(Mirror.Examples.Chat.Player,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatWindow_OnPlayerMessage_mA51B938E5A5CFA205CDEAB15795D7BA0DCD604E1 (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * ___player0, String_t* ___message1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatWindow_OnPlayerMessage_mA51B938E5A5CFA205CDEAB15795D7BA0DCD604E1_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* G_B3_0 = NULL; { // string prettyMessage = player.isLocalPlayer ? // $"<color=red>{player.playerName}: </color> {message}" : // $"<color=blue>{player.playerName}: </color> {message}"; Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * L_0 = ___player0; NullCheck(L_0); bool L_1 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0020; } } { Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * L_2 = ___player0; NullCheck(L_2); String_t* L_3 = L_2->get_playerName_12(); String_t* L_4 = ___message1; String_t* L_5 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(_stringLiteralEC7AE14A3DFC45ABF6170CB0D4FF24EDE9C494AB, L_3, _stringLiteralDC7FB0020432CE37EFEDFF00BA0492000889A20D, L_4, /*hidden argument*/NULL); G_B3_0 = L_5; goto IL_0036; } IL_0020: { Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * L_6 = ___player0; NullCheck(L_6); String_t* L_7 = L_6->get_playerName_12(); String_t* L_8 = ___message1; String_t* L_9 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(_stringLiteral8ACAA4E0B28437F5FD1A41CE6591A16813F05377, L_7, _stringLiteralDC7FB0020432CE37EFEDFF00BA0492000889A20D, L_8, /*hidden argument*/NULL); G_B3_0 = L_9; } IL_0036: { V_0 = G_B3_0; // AppendMessage(prettyMessage); String_t* L_10 = V_0; ChatWindow_AppendMessage_mE1A91C965006ED08A6B04FBDC5DF160B3DB6AFB7(__this, L_10, /*hidden argument*/NULL); // logger.Log(message); IL2CPP_RUNTIME_CLASS_INIT(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_il2cpp_TypeInfo_var); RuntimeObject* L_11 = ((ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_StaticFields*)il2cpp_codegen_static_fields_for(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_il2cpp_TypeInfo_var))->get_logger_4(); String_t* L_12 = ___message1; NullCheck(L_11); InterfaceActionInvoker1< RuntimeObject * >::Invoke(8 /* System.Void UnityEngine.ILogger::Log(System.Object) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_11, L_12); // } return; } } // System.Void Mirror.Examples.Chat.ChatWindow::OnSend() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatWindow_OnSend_m5193C72C94A08D21DEDE8C51B31B15D1E7C65845 (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatWindow_OnSend_m5193C72C94A08D21DEDE8C51B31B15D1E7C65845_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (chatMessage.text.Trim() == "") InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * L_0 = __this->get_chatMessage_5(); NullCheck(L_0); String_t* L_1 = InputField_get_text_m15D0C784A4A104390610325B02216FC2A6F1077C(L_0, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_1, /*hidden argument*/NULL); bool L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); if (!L_3) { goto IL_001d; } } { // return; return; } IL_001d: { // Player player = NetworkClient.connection.identity.GetComponent<Player>(); IL2CPP_RUNTIME_CLASS_INIT(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_il2cpp_TypeInfo_var); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_4 = NetworkClient_get_connection_m5439CD4BADA80C781B783F013464517F581F9557_inline(/*hidden argument*/NULL); NullCheck(L_4); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_5 = NetworkConnection_get_identity_mF8F7D1AA28117C2F53450E6697D2966DB1B16F45_inline(L_4, /*hidden argument*/NULL); NullCheck(L_5); Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * L_6 = Component_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mFA2775C8DB51F2CBE0B29244BC55ADE6BBF1E791(L_5, /*hidden argument*/Component_GetComponent_TisPlayer_tBEC4FFB14B3B261C1FFC7953264D930457898707_mFA2775C8DB51F2CBE0B29244BC55ADE6BBF1E791_RuntimeMethod_var); // player.CmdSend(chatMessage.text.Trim()); InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * L_7 = __this->get_chatMessage_5(); NullCheck(L_7); String_t* L_8 = InputField_get_text_m15D0C784A4A104390610325B02216FC2A6F1077C(L_7, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_8, /*hidden argument*/NULL); NullCheck(L_6); Player_CmdSend_mF28A6EBFBBA996DB4A39BF137E5735E96601EF07(L_6, L_9, /*hidden argument*/NULL); // chatMessage.text = ""; InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * L_10 = __this->get_chatMessage_5(); NullCheck(L_10); InputField_set_text_m30EE95E064474DFA2842CA2DD6E831FF3F3500BF(L_10, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Chat.ChatWindow::AppendMessage(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatWindow_AppendMessage_mE1A91C965006ED08A6B04FBDC5DF160B3DB6AFB7 (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, String_t* ___message0, const RuntimeMethod* method) { { // StartCoroutine(AppendAndScroll(message)); String_t* L_0 = ___message0; RuntimeObject* L_1 = ChatWindow_AppendAndScroll_mD6DA1A115041242B324AFBF8A11D1A360B78160C(__this, L_0, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Collections.IEnumerator Mirror.Examples.Chat.ChatWindow::AppendAndScroll(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChatWindow_AppendAndScroll_mD6DA1A115041242B324AFBF8A11D1A360B78160C (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatWindow_AppendAndScroll_mD6DA1A115041242B324AFBF8A11D1A360B78160C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * L_0 = (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E *)il2cpp_codegen_object_new(U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E_il2cpp_TypeInfo_var); U3CAppendAndScrollU3Ed__8__ctor_m0CD5F4CBC2AD01DB8CD5FFB3879760AEF7DD0AB3(L_0, 0, /*hidden argument*/NULL); U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * L_2 = L_1; String_t* L_3 = ___message0; NullCheck(L_2); L_2->set_message_3(L_3); return L_2; } } // System.Void Mirror.Examples.Chat.ChatWindow::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatWindow__ctor_mCCD27BACF16829AFA0FD89A67454FAF63FD991E0 (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * __this, const RuntimeMethod* method) { { MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.ChatWindow::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChatWindow__cctor_mC44E3DDE0FB9F5E8CF1DAE2662BD6AE87FC2751A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ChatWindow__cctor_mC44E3DDE0FB9F5E8CF1DAE2662BD6AE87FC2751A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // static readonly ILogger logger = LogFactory.GetLogger(typeof(ChatWindow)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LogFactory_t359C989285E6F62B9F073C5F0F5FA52BAB518DB6_il2cpp_TypeInfo_var); RuntimeObject* L_2 = LogFactory_GetLogger_m1325F510684C0DEA3C16231F1D8EE10E9A55D5AC(L_1, 2, /*hidden argument*/NULL); ((ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_StaticFields*)il2cpp_codegen_static_fields_for(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B_il2cpp_TypeInfo_var))->set_logger_4(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.OneK.MonsterMovement::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonsterMovement_OnStartServer_m00E77A005DD68C6B0B2990DA54374FBAD6689219 (MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4 * __this, const RuntimeMethod* method) { { // start = transform.position; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_0 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_0); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_0, /*hidden argument*/NULL); __this->set_start_16(L_1); // } return; } } // System.Void Mirror.Examples.OneK.MonsterMovement::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonsterMovement_Update_mEAAD7161A6AC058BF962BB81DD5172687CDB4D75 (MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonsterMovement_Update_mEAAD7161A6AC058BF962BB81DD5172687CDB4D75_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0; memset((&V_0), 0, sizeof(V_0)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_1; memset((&V_1), 0, sizeof(V_1)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_2; memset((&V_2), 0, sizeof(V_2)); { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // if (moving) bool L_1 = __this->get_moving_15(); if (!L_1) { goto IL_0066; } } { // if (Vector3.Distance(transform.position, destination) <= 0.01f) Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_2); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_2, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = __this->get_destination_17(); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); float L_5 = Vector3_Distance_mB648A79E4A1BAAFBF7B029644638C0D715480677(L_3, L_4, /*hidden argument*/NULL); if ((!(((float)L_5) <= ((float)(0.00999999978f))))) { goto IL_0038; } } { // moving = false; __this->set_moving_15((bool)0); // } return; } IL_0038: { // transform.position = Vector3.MoveTowards(transform.position, destination, speed * Time.deltaTime); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_7); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_7, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = __this->get_destination_17(); float L_10 = __this->get_speed_12(); float L_11 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = Vector3_MoveTowards_mFB45EE30324E487925CA26EE6C001F0A3D257796(L_8, L_9, ((float)il2cpp_codegen_multiply((float)L_10, (float)L_11)), /*hidden argument*/NULL); NullCheck(L_6); Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91(L_6, L_12, /*hidden argument*/NULL); // } return; } IL_0066: { // float r = Random.value; float L_13 = Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872(/*hidden argument*/NULL); // if (r < movementProbability * Time.deltaTime) float L_14 = __this->get_movementProbability_13(); float L_15 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); if ((!(((float)L_13) < ((float)((float)il2cpp_codegen_multiply((float)L_14, (float)L_15)))))) { goto IL_00d6; } } { // Vector2 circlePos = Random.insideUnitCircle; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_16 = Random_get_insideUnitCircle_m0A73BD3F48690731663D2425D98687F5AD446190(/*hidden argument*/NULL); V_0 = L_16; // Vector3 dir = new Vector3(circlePos.x, 0, circlePos.y); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_17 = V_0; float L_18 = L_17.get_x_0(); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_19 = V_0; float L_20 = L_19.get_y_1(); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_1), L_18, (0.0f), L_20, /*hidden argument*/NULL); // Vector3 dest = transform.position + dir * movementDistance; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_21 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_21); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_22 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_21, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_23 = V_1; float L_24 = __this->get_movementDistance_14(); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_25 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_23, L_24, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_26 = Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline(L_22, L_25, /*hidden argument*/NULL); V_2 = L_26; // if (Vector3.Distance(start, dest) <= movementDistance) Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27 = __this->get_start_16(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_28 = V_2; float L_29 = Vector3_Distance_mB648A79E4A1BAAFBF7B029644638C0D715480677(L_27, L_28, /*hidden argument*/NULL); float L_30 = __this->get_movementDistance_14(); if ((!(((float)L_29) <= ((float)L_30)))) { goto IL_00d6; } } { // destination = dest; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_31 = V_2; __this->set_destination_17(L_31); // moving = true; __this->set_moving_15((bool)1); } IL_00d6: { // } return; } } // System.Void Mirror.Examples.OneK.MonsterMovement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonsterMovement__ctor_m40114417312CB924532254A2F59C02B486E1C3F6 (MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonsterMovement__ctor_m40114417312CB924532254A2F59C02B486E1C3F6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float speed = 1; __this->set_speed_12((1.0f)); // public float movementProbability = 0.5f; __this->set_movementProbability_13((0.5f)); // public float movementDistance = 20; __this->set_movementDistance_14((20.0f)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.OneK.MonsterMovement::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonsterMovement_MirrorProcessed_m2E2E448AD609664FA922E97EE1E80054228465B5 (MonsterMovement_tD2BF9956706C359934E9EB110664570DE0A0CEE4 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::OnServerAddPlayer(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultiSceneNetManager_OnServerAddPlayer_m7848EE492958B497477AE8FC63E4D84D28CC4243 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method) { { // StartCoroutine(AddPlayerDelayed(conn)); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_0 = ___conn0; RuntimeObject* L_1 = MultiSceneNetManager_AddPlayerDelayed_m744AA3C43907AC569D4680A8B949D059A36041C6(__this, L_0, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::AddPlayerDelayed(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_AddPlayerDelayed_m744AA3C43907AC569D4680A8B949D059A36041C6 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultiSceneNetManager_AddPlayerDelayed_m744AA3C43907AC569D4680A8B949D059A36041C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * L_0 = (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 *)il2cpp_codegen_object_new(U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459_il2cpp_TypeInfo_var); U3CAddPlayerDelayedU3Ed__4__ctor_m1B4F2CD6C6BE6E71F021BC372725179065CA4271(L_0, 0, /*hidden argument*/NULL); U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_3(__this); U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * L_2 = L_1; NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_3 = ___conn0; NullCheck(L_2); L_2->set_conn_2(L_3); return L_2; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultiSceneNetManager_OnStartServer_m91AAB5BEA98A659776F182C73B1003E6FFE93406 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method) { { // StartCoroutine(LoadSubScenes()); RuntimeObject* L_0 = MultiSceneNetManager_LoadSubScenes_mF477C94E3B5566608028FFD0EF3A631686B0620A(__this, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::LoadSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_LoadSubScenes_mF477C94E3B5566608028FFD0EF3A631686B0620A (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultiSceneNetManager_LoadSubScenes_mF477C94E3B5566608028FFD0EF3A631686B0620A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * L_0 = (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 *)il2cpp_codegen_object_new(U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34_il2cpp_TypeInfo_var); U3CLoadSubScenesU3Ed__6__ctor_mC6A1CF499F3FD475B3BAC34B2CCF368677DF1F23(L_0, 0, /*hidden argument*/NULL); U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return L_1; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::OnStopServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultiSceneNetManager_OnStopServer_mC019ED289CDC60DBF449475B44A0A4D2782EE1CC (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultiSceneNetManager_OnStopServer_mC019ED289CDC60DBF449475B44A0A4D2782EE1CC_MetadataUsageId); s_Il2CppMethodInitialized = true; } SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE V_0; memset((&V_0), 0, sizeof(V_0)); { // NetworkServer.SendToAll(new SceneMessage { sceneName = gameScene, sceneOperation = SceneOperation.UnloadAdditive }); il2cpp_codegen_initobj((&V_0), sizeof(SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE )); String_t* L_0 = __this->get_gameScene_34(); (&V_0)->set_sceneName_0(L_0); (&V_0)->set_sceneOperation_1(2); SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE L_1 = V_0; IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_SendToAll_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_mBF7EDD20CFFF8192F8BA08BC465E70010416565C(L_1, 0, (bool)0, /*hidden argument*/NetworkServer_SendToAll_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_mBF7EDD20CFFF8192F8BA08BC465E70010416565C_RuntimeMethod_var); // StartCoroutine(UnloadSubScenes()); RuntimeObject* L_2 = MultiSceneNetManager_UnloadSubScenes_mFCFCBEF232BAEEFC60ECF91B42B86435C3354661(__this, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_2, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::OnStopClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultiSceneNetManager_OnStopClient_m3F55FE05E309D57536DABA5F9027305BD8FC4163 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method) { { // if (mode == NetworkManagerMode.ClientOnly) int32_t L_0 = NetworkManager_get_mode_m7DDDC4AFB7EC130F64E6BA4E916235B46C338337_inline(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0016; } } { // StartCoroutine(UnloadClientSubScenes()); RuntimeObject* L_1 = MultiSceneNetManager_UnloadClientSubScenes_m68861DA9038425D2C5434F057F1DF4BC0510AEA4(__this, /*hidden argument*/NULL); MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_1, /*hidden argument*/NULL); } IL_0016: { // } return; } } // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::UnloadClientSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_UnloadClientSubScenes_m68861DA9038425D2C5434F057F1DF4BC0510AEA4 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultiSceneNetManager_UnloadClientSubScenes_m68861DA9038425D2C5434F057F1DF4BC0510AEA4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * L_0 = (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 *)il2cpp_codegen_object_new(U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9_il2cpp_TypeInfo_var); U3CUnloadClientSubScenesU3Ed__9__ctor_m8471195B56A77952356B988184E8CB9190AB9E3E(L_0, 0, /*hidden argument*/NULL); return L_0; } } // System.Collections.IEnumerator Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::UnloadSubScenes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MultiSceneNetManager_UnloadSubScenes_mFCFCBEF232BAEEFC60ECF91B42B86435C3354661 (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultiSceneNetManager_UnloadSubScenes_mFCFCBEF232BAEEFC60ECF91B42B86435C3354661_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * L_0 = (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 *)il2cpp_codegen_object_new(U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5_il2cpp_TypeInfo_var); U3CUnloadSubScenesU3Ed__10__ctor_m2EC460D1D222E56659D44A6D9E5F0C37A3E8FFD4(L_0, 0, /*hidden argument*/NULL); U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * L_1 = L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return L_1; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultiSceneNetManager__ctor_mCD43E50AFE42AFC6EE2169D58C53342445E5824D (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MultiSceneNetManager__ctor_mCD43E50AFE42AFC6EE2169D58C53342445E5824D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public int instances = 3; __this->set_instances_33(3); // readonly List<Scene> subScenes = new List<Scene>(); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_0 = (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 *)il2cpp_codegen_object_new(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2_il2cpp_TypeInfo_var); List_1__ctor_m44F836CB16744D14CB1B3A88585DDC5C11897D6C(L_0, /*hidden argument*/List_1__ctor_m44F836CB16744D14CB1B3A88585DDC5C11897D6C_RuntimeMethod_var); __this->set_subScenes_35(L_0); IL2CPP_RUNTIME_CLASS_INIT(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var); NetworkManager__ctor_m831DF4BB5F616C10CC2B272AD9DA2C660B3A1924(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::<>n__0(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultiSceneNetManager_U3CU3En__0_m49EB438DFDA5B08A2ADA9F9DCA7CE5972644102C (MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method) { { NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_0 = ___conn0; NetworkManager_OnServerAddPlayer_m2E0E936F41E55AFB82D0AB9908A3918A60F237DC(__this, L_0, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Pong.NetworkManagerPong::OnServerAddPlayer(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManagerPong_OnServerAddPlayer_mB3A1275ECBA4A7E54B2CCF681A20CF72EB320A9E (NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7 * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkManagerPong_OnServerAddPlayer_mB3A1275ECBA4A7E54B2CCF681A20CF72EB320A9E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * V_0 = NULL; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * V_1 = NULL; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * G_B3_0 = NULL; Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * G_B6_0 = NULL; List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * G_B6_1 = NULL; NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7 * G_B6_2 = NULL; Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * G_B5_0 = NULL; List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * G_B5_1 = NULL; NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7 * G_B5_2 = NULL; { // Transform start = numPlayers == 0 ? leftRacketSpawn : rightRacketSpawn; int32_t L_0 = NetworkManager_get_numPlayers_mA4CC3D7D3A2C4967F21E4EC6554CADB2EB239816(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0010; } } { Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = __this->get_rightRacketSpawn_34(); G_B3_0 = L_1; goto IL_0016; } IL_0010: { Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2 = __this->get_leftRacketSpawn_33(); G_B3_0 = L_2; } IL_0016: { V_0 = G_B3_0; // GameObject player = Instantiate(playerPrefab, start.position, start.rotation); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->get_playerPrefab_18(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = V_0; NullCheck(L_4); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_4, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6 = V_0; NullCheck(L_6); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_7 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_6, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B(L_3, L_5, L_7, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B_RuntimeMethod_var); V_1 = L_8; // NetworkServer.AddPlayerForConnection(conn, player); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_9 = ___conn0; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_10 = V_1; IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_AddPlayerForConnection_m487EFEA0D07031952F9E47E700F3E2D390AB5640(L_9, L_10, /*hidden argument*/NULL); // if (numPlayers == 2) int32_t L_11 = NetworkManager_get_numPlayers_mA4CC3D7D3A2C4967F21E4EC6554CADB2EB239816(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_11) == ((uint32_t)2)))) { goto IL_0081; } } { // ball = Instantiate(spawnPrefabs.Find(prefab => prefab.name == "Ball")); List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * L_12 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->get_spawnPrefabs_21(); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var); Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * L_13 = ((U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var))->get_U3CU3E9__3_0_1(); Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * L_14 = L_13; G_B5_0 = L_14; G_B5_1 = L_12; G_B5_2 = __this; if (L_14) { G_B6_0 = L_14; G_B6_1 = L_12; G_B6_2 = __this; goto IL_0066; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var); U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * L_15 = ((U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * L_16 = (Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B *)il2cpp_codegen_object_new(Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B_il2cpp_TypeInfo_var); Predicate_1__ctor_m01D5AA45E9434D3CEAC527D329F0F7BF9D561A1B(L_16, L_15, (intptr_t)((intptr_t)U3CU3Ec_U3COnServerAddPlayerU3Eb__3_0_m3202D700BF36BA65DBC9D93191430B4872950567_RuntimeMethod_var), /*hidden argument*/Predicate_1__ctor_m01D5AA45E9434D3CEAC527D329F0F7BF9D561A1B_RuntimeMethod_var); Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B * L_17 = L_16; ((U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var))->set_U3CU3E9__3_0_1(L_17); G_B6_0 = L_17; G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; } IL_0066: { NullCheck(G_B6_1); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_18 = List_1_Find_m03A7279A7DC1FF94BF4164238AD8C309A92AF58F(G_B6_1, G_B6_0, /*hidden argument*/List_1_Find_m03A7279A7DC1FF94BF4164238AD8C309A92AF58F_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_19 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m26431AC51B9B7A43FBABD10B4923B72B0C578F33(L_18, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m26431AC51B9B7A43FBABD10B4923B72B0C578F33_RuntimeMethod_var); NullCheck(G_B6_2); G_B6_2->set_ball_35(L_19); // NetworkServer.Spawn(ball); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_20 = __this->get_ball_35(); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Spawn_mE71DE744EA836EE5C4EA51B6FCDDCDB83C1D7846(L_20, (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 *)NULL, /*hidden argument*/NULL); } IL_0081: { // } return; } } // System.Void Mirror.Examples.Pong.NetworkManagerPong::OnServerDisconnect(Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManagerPong_OnServerDisconnect_mA4D3783D437F528758371DA363D458365E254245 (NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7 * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkManagerPong_OnServerDisconnect_mA4D3783D437F528758371DA363D458365E254245_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (ball != null) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0 = __this->get_ball_35(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { // NetworkServer.Destroy(ball); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = __this->get_ball_35(); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Destroy_m113ADC5542A4627A397C75DC3ECC9BC87F404FFB(L_2, /*hidden argument*/NULL); } IL_0019: { // base.OnServerDisconnect(conn); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_3 = ___conn0; NetworkManager_OnServerDisconnect_m2A4B300BE2D36D5FFFA0C7AF59296E527CB10EE2(__this, L_3, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Pong.NetworkManagerPong::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkManagerPong__ctor_mE13121F397ACA767F31332D3948BFB06931D5B60 (NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkManagerPong__ctor_mE13121F397ACA767F31332D3948BFB06931D5B60_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var); NetworkManager__ctor_m831DF4BB5F616C10CC2B272AD9DA2C660B3A1924(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::OnRoomServerSceneLoadedForPlayer(Mirror.NetworkConnection,UnityEngine.GameObject,UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkRoomManagerExt_OnRoomServerSceneLoadedForPlayer_m675A4E305357F572AF960B377D8F6DD98786B5C2 (NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B * __this, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn0, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___roomPlayer1, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___gamePlayer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomManagerExt_OnRoomServerSceneLoadedForPlayer_m675A4E305357F572AF960B377D8F6DD98786B5C2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // PlayerScore playerScore = gamePlayer.GetComponent<PlayerScore>(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0 = ___gamePlayer2; NullCheck(L_0); PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * L_1 = GameObject_GetComponent_TisPlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6_mE85424B023694A3ECE8C19C181DA343BAD732319(L_0, /*hidden argument*/GameObject_GetComponent_TisPlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6_mE85424B023694A3ECE8C19C181DA343BAD732319_RuntimeMethod_var); // playerScore.index = roomPlayer.GetComponent<NetworkRoomPlayer>().index; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = ___roomPlayer1; NullCheck(L_2); NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F * L_3 = GameObject_GetComponent_TisNetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_m4EDDC9D17439C18F9912C9A2DA143E1598E6BBC1(L_2, /*hidden argument*/GameObject_GetComponent_TisNetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_m4EDDC9D17439C18F9912C9A2DA143E1598E6BBC1_RuntimeMethod_var); NullCheck(L_3); int32_t L_4 = L_3->get_index_15(); NullCheck(L_1); PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E(L_1, L_4, /*hidden argument*/NULL); // return true; return (bool)1; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::OnRoomStopClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManagerExt_OnRoomStopClient_m625C02B9FD84EBA402A2D75DCF538979AEA36E35 (NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomManagerExt_OnRoomStopClient_m625C02B9FD84EBA402A2D75DCF538979AEA36E35_MetadataUsageId); s_Il2CppMethodInitialized = true; } Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE V_0; memset((&V_0), 0, sizeof(V_0)); { // if (gameObject.scene.name == "DontDestroyOnLoad" && !string.IsNullOrEmpty(offlineScene) && SceneManager.GetActiveScene().path != offlineScene) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); NullCheck(L_0); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_1 = GameObject_get_scene_m7EBF95ABB5037FEE6811928F2E83C769C53F86C2(L_0, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = Scene_get_name_m38F195D7CA6417FED310C23E4D8E86150C7835B8((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_0), /*hidden argument*/NULL); bool L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteralD10CD0A2A429ED8AF6B0F046C7594E65D754EED3, /*hidden argument*/NULL); if (!L_3) { goto IL_0056; } } { String_t* L_4 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->get_offlineScene_10(); bool L_5 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0056; } } { IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_6 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); V_0 = L_6; String_t* L_7 = Scene_get_path_m1B2CE5FA0F1875C94621EE44BECD5E5C39EBF8BE((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_0), /*hidden argument*/NULL); String_t* L_8 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->get_offlineScene_10(); bool L_9 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0056; } } { // SceneManager.MoveGameObjectToScene(gameObject, SceneManager.GetActiveScene()); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_10 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_11 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); SceneManager_MoveGameObjectToScene_m6A83C5A83445385BC00FBFD155707732A0C80F39(L_10, L_11, /*hidden argument*/NULL); } IL_0056: { // base.OnRoomStopClient(); NetworkRoomManager_OnRoomStopClient_mEDB15D3CAF8BAA160A7254456CABA4DF07EC03C6(__this, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::OnRoomStopServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManagerExt_OnRoomStopServer_m71A2E3F11B39B3E6B1F49B45FEE3F0FD4328A563 (NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomManagerExt_OnRoomStopServer_m71A2E3F11B39B3E6B1F49B45FEE3F0FD4328A563_MetadataUsageId); s_Il2CppMethodInitialized = true; } Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE V_0; memset((&V_0), 0, sizeof(V_0)); { // if (gameObject.scene.name == "DontDestroyOnLoad" && !string.IsNullOrEmpty(offlineScene) && SceneManager.GetActiveScene().path != offlineScene) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); NullCheck(L_0); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_1 = GameObject_get_scene_m7EBF95ABB5037FEE6811928F2E83C769C53F86C2(L_0, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = Scene_get_name_m38F195D7CA6417FED310C23E4D8E86150C7835B8((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_0), /*hidden argument*/NULL); bool L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteralD10CD0A2A429ED8AF6B0F046C7594E65D754EED3, /*hidden argument*/NULL); if (!L_3) { goto IL_0056; } } { String_t* L_4 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->get_offlineScene_10(); bool L_5 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0056; } } { IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_6 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); V_0 = L_6; String_t* L_7 = Scene_get_path_m1B2CE5FA0F1875C94621EE44BECD5E5C39EBF8BE((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_0), /*hidden argument*/NULL); String_t* L_8 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 *)__this)->get_offlineScene_10(); bool L_9 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0056; } } { // SceneManager.MoveGameObjectToScene(gameObject, SceneManager.GetActiveScene()); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_10 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_11 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); SceneManager_MoveGameObjectToScene_m6A83C5A83445385BC00FBFD155707732A0C80F39(L_10, L_11, /*hidden argument*/NULL); } IL_0056: { // base.OnRoomStopServer(); NetworkRoomManager_OnRoomStopServer_m6F350D2B85CF572DA5CEFA4E379DF1FCB13F82FE(__this, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::OnRoomServerPlayersReady() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManagerExt_OnRoomServerPlayersReady_mDA72159417830C79ABF4690990329E5328F91ADA (NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B * __this, const RuntimeMethod* method) { { // showStartButton = true; __this->set_showStartButton_42((bool)1); // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::OnGUI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManagerExt_OnGUI_mEC6E4EE02E0BA87800F8638A0EE04EB9581E67A6 (NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomManagerExt_OnGUI_mEC6E4EE02E0BA87800F8638A0EE04EB9581E67A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // base.OnGUI(); NetworkRoomManager_OnGUI_mAB4CC46F1EE70E719EC87F8D78B05093E07CBE43(__this, /*hidden argument*/NULL); // if (allPlayersReady && showStartButton && GUI.Button(new Rect(150, 300, 120, 20), "START GAME")) bool L_0 = NetworkRoomManager_get_allPlayersReady_mD968D13421EC4A191DD3488C7C6579CC6A00FECA_inline(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_004e; } } { bool L_1 = __this->get_showStartButton_42(); if (!L_1) { goto IL_004e; } } { Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_2; memset((&L_2), 0, sizeof(L_2)); Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70((&L_2), (150.0f), (300.0f), (120.0f), (20.0f), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(GUI_tBCBBE29117D8093644C6E72B1CE3FB65C2CDCCC1_il2cpp_TypeInfo_var); bool L_3 = GUI_Button_m668EE382521BDEA241D719A9CF39B6672E2CA23F(L_2, _stringLiteral8B5985243F03B6EDAACD24FE81E7936923844EEF, /*hidden argument*/NULL); if (!L_3) { goto IL_004e; } } { // showStartButton = false; __this->set_showStartButton_42((bool)0); // ServerChangeScene(GameplayScene); String_t* L_4 = ((NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 *)__this)->get_GameplayScene_38(); VirtActionInvoker1< String_t* >::Invoke(11 /* System.Void Mirror.NetworkManager::ServerChangeScene(System.String) */, __this, L_4); } IL_004e: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomManagerExt__ctor_m8B27414E3A41CF52B3EBDB2384E52D446E92A407 (NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomManagerExt__ctor_m8B27414E3A41CF52B3EBDB2384E52D446E92A407_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516_il2cpp_TypeInfo_var); NetworkRoomManager__ctor_mB2779CD15817C861DCE98C9357276B1EE617EEA0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::OnStartClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayerExt_OnStartClient_m7E2C833E44799F61430F07B3100753C9D83B874E (NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomPlayerExt_OnStartClient_m7E2C833E44799F61430F07B3100753C9D83B874E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE V_0; memset((&V_0), 0, sizeof(V_0)); { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "OnStartClient {0}", SceneManager.GetActiveScene().path); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); bool L_1 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0032; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "OnStartClient {0}", SceneManager.GetActiveScene().path); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_5 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); V_0 = L_5; String_t* L_6 = Scene_get_path_m1B2CE5FA0F1875C94621EE44BECD5E5C39EBF8BE((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_0), /*hidden argument*/NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6); NullCheck(L_2); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_2, 3, _stringLiteral00802AAE0C28A2554A216E0386A38F9C91EAE6B0, L_4); } IL_0032: { // base.OnStartClient(); NetworkBehaviour_OnStartClient_mBE0F27A3CDF5C4F76C777885B2D21AB60A9647E8(__this, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::OnClientEnterRoom() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayerExt_OnClientEnterRoom_m0AD8C664FAA52E8A3321301164B8D2C8A57DCFB2 (NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomPlayerExt_OnClientEnterRoom_m0AD8C664FAA52E8A3321301164B8D2C8A57DCFB2_MetadataUsageId); s_Il2CppMethodInitialized = true; } Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE V_0; memset((&V_0), 0, sizeof(V_0)); { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "OnClientEnterRoom {0}", SceneManager.GetActiveScene().path); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); bool L_1 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0032; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "OnClientEnterRoom {0}", SceneManager.GetActiveScene().path); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_5 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); V_0 = L_5; String_t* L_6 = Scene_get_path_m1B2CE5FA0F1875C94621EE44BECD5E5C39EBF8BE((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_0), /*hidden argument*/NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6); NullCheck(L_2); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_2, 3, _stringLiteralDEBDDDADBB4F4FC8FEDA3F38CBC1AFBF3B3FA25C, L_4); } IL_0032: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::OnClientExitRoom() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayerExt_OnClientExitRoom_mA7281B7F974F4B98392C06D1200711E19D1CC73C (NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomPlayerExt_OnClientExitRoom_mA7281B7F974F4B98392C06D1200711E19D1CC73C_MetadataUsageId); s_Il2CppMethodInitialized = true; } Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE V_0; memset((&V_0), 0, sizeof(V_0)); { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "OnClientExitRoom {0}", SceneManager.GetActiveScene().path); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); bool L_1 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0032; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "OnClientExitRoom {0}", SceneManager.GetActiveScene().path); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_5 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); V_0 = L_5; String_t* L_6 = Scene_get_path_m1B2CE5FA0F1875C94621EE44BECD5E5C39EBF8BE((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_0), /*hidden argument*/NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6); NullCheck(L_2); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_2, 3, _stringLiteral982CB6D541FC9A8B24606316D87BDED2A3332AF6, L_4); } IL_0032: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::ReadyStateChanged(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayerExt_ReadyStateChanged_m4E1502A687DA1047FB25F6DBBBD1C0F9DEE06BD0 (NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C * __this, bool ____0, bool ___newReadyState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomPlayerExt_ReadyStateChanged_m4E1502A687DA1047FB25F6DBBBD1C0F9DEE06BD0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "ReadyStateChanged {0}", newReadyState); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); bool L_1 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002b; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "ReadyStateChanged {0}", newReadyState); IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->get_logger_16(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; bool L_5 = ___newReadyState1; bool L_6 = L_5; RuntimeObject * L_7 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_6); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_7); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7); NullCheck(L_2); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_2, 3, _stringLiteral14B24B8ECDA64EBE2884E7F8F2DB148A795CCB6D, L_4); } IL_002b: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayerExt__ctor_mBD6AB4DA1776F2BBAD98283F839A44BEFD6C0FE6 (NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomPlayerExt__ctor_mBD6AB4DA1776F2BBAD98283F839A44BEFD6C0FE6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F_il2cpp_TypeInfo_var); NetworkRoomPlayer__ctor_m022684FAC82553240563C9BCA844841F0F089F62(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayerExt__cctor_m5624251682CD66E701E7A42DA5FB66BE864E8760 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkRoomPlayerExt__cctor_m5624251682CD66E701E7A42DA5FB66BE864E8760_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // static readonly ILogger logger = LogFactory.GetLogger(typeof(NetworkRoomPlayerExt)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LogFactory_t359C989285E6F62B9F073C5F0F5FA52BAB518DB6_il2cpp_TypeInfo_var); RuntimeObject* L_2 = LogFactory_GetLogger_m1325F510684C0DEA3C16231F1D8EE10E9A55D5AC(L_1, 2, /*hidden argument*/NULL); ((NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_StaticFields*)il2cpp_codegen_static_fields_for(NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C_il2cpp_TypeInfo_var))->set_logger_16(L_2); return; } } // System.Void Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkRoomPlayerExt_MirrorProcessed_mCBD061C0BA87747C61B9F3DA01665F1B4475F157 (NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::OnValidate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsCollision_OnValidate_m2E3F6A4475BBB4016546FED8B4051AE4414106FB (PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PhysicsCollision_OnValidate_m2E3F6A4475BBB4016546FED8B4051AE4414106FB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (rigidbody3D == null) Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_0 = __this->get_rigidbody3D_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { // rigidbody3D = GetComponent<Rigidbody>(); Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_2 = Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_m9DC24AA806B0B65E917751F7A3AFDB58861157CE(__this, /*hidden argument*/Component_GetComponent_TisRigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A_m9DC24AA806B0B65E917751F7A3AFDB58861157CE_RuntimeMethod_var); __this->set_rigidbody3D_13(L_2); } IL_001a: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsCollision_Start_mE92D3D1C1B68B02FE3A6B5160267E929BE4507AA (PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB * __this, const RuntimeMethod* method) { { // rigidbody3D.isKinematic = !isServer; Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_0 = __this->get_rigidbody3D_13(); bool L_1 = NetworkBehaviour_get_isServer_m6CF3499812C1F2679BB924165AA79C59E6D2EBCF(__this, /*hidden argument*/NULL); NullCheck(L_0); Rigidbody_set_isKinematic_mCF74D680205544826F2DE2CAB929C9F25409A311(L_0, (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::OnCollisionStay(UnityEngine.Collision) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsCollision_OnCollisionStay_mC558CB72DEF8B7CEEBA77D9947D494979AB712EC (PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB * __this, Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PhysicsCollision_OnCollisionStay_mC558CB72DEF8B7CEEBA77D9947D494979AB712EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // if (other.gameObject.CompareTag("Player")) Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0 * L_1 = ___other0; NullCheck(L_1); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = Collision_get_gameObject_m5682F872FD28419AA36F0651CE8B19825A21859D(L_1, /*hidden argument*/NULL); NullCheck(L_2); bool L_3 = GameObject_CompareTag_mA692D8508984DBE4A2FEFD19E29CB1C9D5CDE001(L_2, _stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70, /*hidden argument*/NULL); if (!L_3) { goto IL_0093; } } { // Vector3 direction = other.contacts[0].normal; Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0 * L_4 = ___other0; NullCheck(L_4); ContactPointU5BU5D_t1ACD262B1EA44CD48E2039381DE96847F203E62B* L_5 = Collision_get_contacts_m8C3D39F3332DD2AC623A9FB5F2127CE2754AF54B(L_4, /*hidden argument*/NULL); NullCheck(L_5); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ContactPoint_get_normal_m0561937E45F5356C7BB90D861422BD76B36D037A((ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))), /*hidden argument*/NULL); V_0 = L_6; // direction.y = 0; (&V_0)->set_y_3((0.0f)); // direction = direction.normalized; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = Vector3_get_normalized_m2FA6DF38F97BDA4CCBDAE12B9FE913A241DAC8D5((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), /*hidden argument*/NULL); V_0 = L_7; // if (other.gameObject.GetComponent<NetworkIdentity>().connectionToClient.connectionId == NetworkConnection.LocalConnectionId) Collision_tDC11F9B3834FD25DEB8C7DD1C51B635D240BBBF0 * L_8 = ___other0; NullCheck(L_8); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_9 = Collision_get_gameObject_m5682F872FD28419AA36F0651CE8B19825A21859D(L_8, /*hidden argument*/NULL); NullCheck(L_9); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_10 = GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247(L_9, /*hidden argument*/GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247_RuntimeMethod_var); NullCheck(L_10); NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * L_11 = NetworkIdentity_get_connectionToClient_mF85737F2CC90FC7E77FE8385F35F2FF2E692D82A_inline(L_10, /*hidden argument*/NULL); NullCheck(L_11); int32_t L_12 = ((NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 *)L_11)->get_connectionId_4(); if (L_12) { goto IL_007c; } } { // rigidbody3D.AddForce(direction * force * .5f); Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_13 = __this->get_rigidbody3D_13(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_14 = V_0; float L_15 = __this->get_force_12(); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_16 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_14, L_15, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_17 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_16, (0.5f), /*hidden argument*/NULL); NullCheck(L_13); Rigidbody_AddForce_mDFB0D57C25682B826999B0074F5C0FD399C6401D(L_13, L_17, /*hidden argument*/NULL); return; } IL_007c: { // rigidbody3D.AddForce(direction * force); Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_18 = __this->get_rigidbody3D_13(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = V_0; float L_20 = __this->get_force_12(); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_21 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_19, L_20, /*hidden argument*/NULL); NullCheck(L_18); Rigidbody_AddForce_mDFB0D57C25682B826999B0074F5C0FD399C6401D(L_18, L_21, /*hidden argument*/NULL); } IL_0093: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsCollision__ctor_m0580E8118145DF6CFBADB8F4BFF095C5F2B253AE (PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PhysicsCollision__ctor_m0580E8118145DF6CFBADB8F4BFF095C5F2B253AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float force = 12; __this->set_force_12((12.0f)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsCollision_MirrorProcessed_mAAB24A98C2FF7EB6732BDB712F58B093CF7DEE27 (PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator::Awake() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsSimulator_Awake_m5EB9781D06742C3A9FBB542DD5860AB2BD20539E (PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PhysicsSimulator_Awake_m5EB9781D06742C3A9FBB542DD5860AB2BD20539E_MetadataUsageId); s_Il2CppMethodInitialized = true; } PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * G_B3_0 = NULL; PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * G_B2_0 = NULL; int32_t G_B4_0 = 0; PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * G_B4_1 = NULL; PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * G_B6_0 = NULL; PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * G_B5_0 = NULL; int32_t G_B7_0 = 0; PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * G_B7_1 = NULL; { // if (NetworkServer.active) IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (!L_0) { goto IL_0080; } } { // physicsScene = gameObject.scene.GetPhysicsScene(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); NullCheck(L_1); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_2 = GameObject_get_scene_m7EBF95ABB5037FEE6811928F2E83C769C53F86C2(L_1, /*hidden argument*/NULL); PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 L_3 = PhysicsSceneExtensions_GetPhysicsScene_m716E028C809F5E276F1C8DEEA8E1BC91AA1C4650(L_2, /*hidden argument*/NULL); __this->set_physicsScene_4(L_3); // simulatePhysicsScene = physicsScene.IsValid() && physicsScene != Physics.defaultPhysicsScene; PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 * L_4 = __this->get_address_of_physicsScene_4(); bool L_5 = PhysicsScene_IsValid_m550049FC74DBF388732DBA41DD14FEBE576080F9((PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 *)L_4, /*hidden argument*/NULL); G_B2_0 = __this; if (!L_5) { G_B3_0 = __this; goto IL_003d; } } { PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 L_6 = __this->get_physicsScene_4(); PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 L_7 = Physics_get_defaultPhysicsScene_mA6361488FBAC110DA8397E5E4CB473EBF4191010(/*hidden argument*/NULL); bool L_8 = PhysicsScene_op_Inequality_m8B2C2308CD466593FFD7004F31BCB44FF908DE8F(L_6, L_7, /*hidden argument*/NULL); G_B4_0 = ((int32_t)(L_8)); G_B4_1 = G_B2_0; goto IL_003e; } IL_003d: { G_B4_0 = 0; G_B4_1 = G_B3_0; } IL_003e: { NullCheck(G_B4_1); G_B4_1->set_simulatePhysicsScene_6((bool)G_B4_0); // physicsScene2D = gameObject.scene.GetPhysicsScene2D(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_9 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); NullCheck(L_9); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_10 = GameObject_get_scene_m7EBF95ABB5037FEE6811928F2E83C769C53F86C2(L_9, /*hidden argument*/NULL); PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_11 = PhysicsSceneExtensions2D_GetPhysicsScene2D_m4DD2122D5E4B0C287A0B6424D09B7707CD05EF2C(L_10, /*hidden argument*/NULL); __this->set_physicsScene2D_5(L_11); // simulatePhysicsScene2D = physicsScene2D.IsValid() && physicsScene2D != Physics2D.defaultPhysicsScene; PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * L_12 = __this->get_address_of_physicsScene2D_5(); bool L_13 = PhysicsScene2D_IsValid_m6C14E7500CFF0E90E3F03E91907E4DC8B40F9570((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)L_12, /*hidden argument*/NULL); G_B5_0 = __this; if (!L_13) { G_B6_0 = __this; goto IL_0079; } } { PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_14 = __this->get_physicsScene2D_5(); IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var); PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_15 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL); bool L_16 = PhysicsScene2D_op_Inequality_mDA9D55CEF7D4F25B5BCD1F0923670572DA9B396E(L_14, L_15, /*hidden argument*/NULL); G_B7_0 = ((int32_t)(L_16)); G_B7_1 = G_B5_0; goto IL_007a; } IL_0079: { G_B7_0 = 0; G_B7_1 = G_B6_0; } IL_007a: { NullCheck(G_B7_1); G_B7_1->set_simulatePhysicsScene2D_7((bool)G_B7_0); // } return; } IL_0080: { // enabled = false; Behaviour_set_enabled_mDE415591B28853D1CD764C53CB499A2142247F32(__this, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator::FixedUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsSimulator_FixedUpdate_m64646011D38E38ED2147C8ACEFF15C0F371613C6 (PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PhysicsSimulator_FixedUpdate_m64646011D38E38ED2147C8ACEFF15C0F371613C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (!NetworkServer.active) return; IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0008; } } { // if (!NetworkServer.active) return; return; } IL_0008: { // if (simulatePhysicsScene) bool L_1 = __this->get_simulatePhysicsScene_6(); if (!L_1) { goto IL_0020; } } { // physicsScene.Simulate(Time.fixedDeltaTime); PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 * L_2 = __this->get_address_of_physicsScene_4(); float L_3 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); PhysicsScene_Simulate_m450CD9964644091DF39087FF5ADCD46615E86232((PhysicsScene_tEDFCAA935450E8EBB7732353D9AA264A5F711678 *)L_2, L_3, /*hidden argument*/NULL); } IL_0020: { // if (simulatePhysicsScene2D) bool L_4 = __this->get_simulatePhysicsScene2D_7(); if (!L_4) { goto IL_0039; } } { // physicsScene2D.Simulate(Time.fixedDeltaTime); PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * L_5 = __this->get_address_of_physicsScene2D_5(); float L_6 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); PhysicsScene2D_Simulate_m4CE8979EB6FB0B114B9637ECBBAFE29FCBC10A42((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)L_5, L_6, /*hidden argument*/NULL); } IL_0039: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PhysicsSimulator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsSimulator__ctor_m49E31C398F92CEA82738ED31487CCD49BFEFAA26 (PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC * __this, const RuntimeMethod* method) { { MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Basic.Player::OnPlayerDataChanged(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_OnPlayerDataChanged_m587DF3DEED39CA264A960FEE244D64D1318A5474 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, int32_t ___oldPlayerData0, int32_t ___newPlayerData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_OnPlayerDataChanged_m587DF3DEED39CA264A960FEE244D64D1318A5474_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // playerDataText.text = string.Format("Data: {0:000}", newPlayerData); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_0 = __this->get_playerDataText_15(); int32_t L_1 = ___newPlayerData1; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_2); String_t* L_4 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral2124DD2528669ACB4FF5138CDA590F65EC84C5B7, L_3, /*hidden argument*/NULL); NullCheck(L_0); VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, L_4); // } return; } } // System.Void Mirror.Examples.Basic.Player::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_OnStartServer_m30C08226C9E91CE9766F9F741871B669AC05EA21 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_OnStartServer_m30C08226C9E91CE9766F9F741871B669AC05EA21_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // base.OnStartServer(); NetworkBehaviour_OnStartServer_m7E498D9B74008DCD512C4A01C847795893A5ED2D(__this, /*hidden argument*/NULL); // playerNo = connectionToClient.connectionId; NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_0 = NetworkBehaviour_get_connectionToClient_m59547ED6321FBCB2B5BFF0B58F22202E981C2BD2(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = L_0->get_connectionId_4(); Player_set_NetworkplayerNo_m52257F6B3146D0B08EF56D5E8DF732ADE32FE9DE(__this, L_1, /*hidden argument*/NULL); // playerColor = Random.ColorHSV(0f, 1f, 0.9f, 0.9f, 1f, 1f); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_2 = Random_ColorHSV_m35A32E1CE7C2E42BB084EBCAF521CF03205DBED8((0.0f), (1.0f), (0.899999976f), (0.899999976f), (1.0f), (1.0f), /*hidden argument*/NULL); Player_set_NetworkplayerColor_mE4EF912D1ABC83009201BE72761AF49483D81CF2(__this, L_2, /*hidden argument*/NULL); // InvokeRepeating(nameof(UpdateData), 1, 1); MonoBehaviour_InvokeRepeating_mB77F4276826FBA696A150831D190875CB5802C70(__this, _stringLiteral49AD7B24AD287AF0B715B7D9C46F9F1FC4933F0F, (1.0f), (1.0f), /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Basic.Player::UpdateData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_UpdateData_mE7C566930713DA18C25524119962AEF69959DAF7 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_UpdateData_mE7C566930713DA18C25524119962AEF69959DAF7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // playerData = Random.Range(100, 1000); int32_t L_1 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(((int32_t)100), ((int32_t)1000), /*hidden argument*/NULL); Player_set_NetworkplayerData_mB781A57CD60BDA44FD67B3A50F840ECC5EFFE9B4(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Basic.Player::OnStartClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_OnStartClient_m711B408D0BAEBFBE833E56F574D7B6249A1D4F5D (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_OnStartClient_m711B408D0BAEBFBE833E56F574D7B6249A1D4F5D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { // base.OnStartClient(); NetworkBehaviour_OnStartClient_mBE0F27A3CDF5C4F76C777885B2D21AB60A9647E8(__this, /*hidden argument*/NULL); // transform.SetParent(GameObject.Find("PlayersPanel").transform); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_0 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1 = GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B(_stringLiteralA257914E38443638CB2C803543E7DF8B89A3BAE2, /*hidden argument*/NULL); NullCheck(L_1); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_1, /*hidden argument*/NULL); NullCheck(L_0); Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E(L_0, L_2, /*hidden argument*/NULL); // int x = 100 + ((playerNo % 4) * 150); int32_t L_3 = __this->get_playerNo_16(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)100), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_3%(int32_t)4)), (int32_t)((int32_t)150))))); // int y = -170 - ((playerNo / 4) * 80); int32_t L_4 = __this->get_playerNo_16(); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)-170), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_4/(int32_t)4)), (int32_t)((int32_t)80))))); // rectTransform.anchoredPosition = new Vector2(x, y); RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_5 = __this->get_rectTransform_12(); int32_t L_6 = V_0; int32_t L_7 = V_1; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_8; memset((&L_8), 0, sizeof(L_8)); Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_8), (((float)((float)L_6))), (((float)((float)L_7))), /*hidden argument*/NULL); NullCheck(L_5); RectTransform_set_anchoredPosition_m8143009B7D2B786DF8309D1D319F2212EFD24905(L_5, L_8, /*hidden argument*/NULL); // playerNameText.color = playerColor; Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_9 = __this->get_playerNameText_14(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_10 = __this->get_playerColor_17(); NullCheck(L_9); VirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_9, L_10); // playerNameText.text = string.Format("Player {0:00}", playerNo); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_11 = __this->get_playerNameText_14(); int32_t L_12 = __this->get_playerNo_16(); int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); String_t* L_15 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral316AA099130E90EA8BF51C73B1A36B634518FBA1, L_14, /*hidden argument*/NULL); NullCheck(L_11); VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_11, L_15); // } return; } } // System.Void Mirror.Examples.Basic.Player::OnStartLocalPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_OnStartLocalPlayer_mE63B64A64E622ECD769CF17C3066F250079B4187 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { { // base.OnStartLocalPlayer(); NetworkBehaviour_OnStartLocalPlayer_m884B22DB458ECACC0E00809576CC2DD2F41DE2B4(__this, /*hidden argument*/NULL); // image.color = new Color(1f, 1f, 1f, 0.1f); Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * L_0 = __this->get_image_13(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_1; memset((&L_1), 0, sizeof(L_1)); Color__ctor_m679019E6084BF7A6F82590F66F5F695F6A50ECC5((&L_1), (1.0f), (1.0f), (1.0f), (0.100000001f), /*hidden argument*/NULL); NullCheck(L_0); VirtActionInvoker1< Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_0, L_1); // } return; } } // System.Void Mirror.Examples.Basic.Player::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player__ctor_m96744E42C738FA8A86DB28F753A6D336B5D3EA83 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player__ctor_m96744E42C738FA8A86DB28F753A6D336B5D3EA83_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Basic.Player::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_MirrorProcessed_mA9BB565D68FB2662EDF14817C67815B45DB45351 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { { return; } } // System.Int32 Mirror.Examples.Basic.Player::get_NetworkplayerNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Player_get_NetworkplayerNo_m4C75EAF4F5F6FD678F622A2A6E39D61043AE5B38 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_playerNo_16(); return L_0; } } // System.Void Mirror.Examples.Basic.Player::set_NetworkplayerNo(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerNo_m52257F6B3146D0B08EF56D5E8DF732ADE32FE9DE (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_set_NetworkplayerNo_m52257F6B3146D0B08EF56D5E8DF732ADE32FE9DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_playerNo_16(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { int32_t L_3 = __this->get_playerNo_16(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_playerNo_16(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); } IL_0032: { return; } } // UnityEngine.Color Mirror.Examples.Basic.Player::get_NetworkplayerColor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 Player_get_NetworkplayerColor_m7F7AAF8D7C5B1339B7EBA1C140636DA04BC8E7CF (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 V_0; memset((&V_0), 0, sizeof(V_0)); { Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = __this->get_playerColor_17(); return L_0; } } // System.Void Mirror.Examples.Basic.Player::set_NetworkplayerColor(UnityEngine.Color) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerColor_mE4EF912D1ABC83009201BE72761AF49483D81CF2 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_set_NetworkplayerColor_mE4EF912D1ABC83009201BE72761AF49483D81CF2_MetadataUsageId); s_Il2CppMethodInitialized = true; } Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 V_0; memset((&V_0), 0, sizeof(V_0)); { Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = ___value0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * L_1 = __this->get_address_of_playerColor_17(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mF33C98CFE9BA15586141E1F9CAE8B5D8F9C1F733(__this, L_0, (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mF33C98CFE9BA15586141E1F9CAE8B5D8F9C1F733_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_3 = __this->get_playerColor_17(); V_0 = L_3; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_4 = ___value0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * L_5 = __this->get_address_of_playerColor_17(); NetworkBehaviour_SetSyncVar_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mA18D148D5C167CFA0DA28FB5C0BAE44FD13FBDD6(__this, L_4, (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)L_5, ((int64_t)2LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisColor_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_mA18D148D5C167CFA0DA28FB5C0BAE44FD13FBDD6_RuntimeMethod_var); } IL_0032: { return; } } // System.Int32 Mirror.Examples.Basic.Player::get_NetworkplayerData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Player_get_NetworkplayerData_m8D5028EE3D153DE3759F599BA6C768A48BBD3C79 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_playerData_18(); return L_0; } } // System.Void Mirror.Examples.Basic.Player::set_NetworkplayerData(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerData_mB781A57CD60BDA44FD67B3A50F840ECC5EFFE9B4 (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_set_NetworkplayerData_mB781A57CD60BDA44FD67B3A50F840ECC5EFFE9B4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_playerData_18(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_007c; } } { int32_t L_3 = __this->get_playerData_18(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_playerData_18(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)4LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_6 = NetworkServer_get_localClientActive_m9C4F4B8848458BB4A2EE6552EDE1E39792C2B3BA(/*hidden argument*/NULL); if (!L_6) { goto IL_007b; } } { bool L_7 = NetworkBehaviour_getSyncVarHookGuard_m04C7E518D055E786F2EDD648D995543282812D09(__this, ((int64_t)4LL), /*hidden argument*/NULL); if (L_7) { goto IL_007b; } } { NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)4LL), (bool)1, /*hidden argument*/NULL); int32_t L_8 = V_0; int32_t L_9 = ___value0; Player_OnPlayerDataChanged_m587DF3DEED39CA264A960FEE244D64D1318A5474(__this, L_8, L_9, /*hidden argument*/NULL); NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)4LL), (bool)0, /*hidden argument*/NULL); } IL_007b: { } IL_007c: { return; } } // System.Boolean Mirror.Examples.Basic.Player::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Player_SerializeSyncVars_mCDF0DBB42A4252F669F815EE5D0430724971955D (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_SerializeSyncVars_mCDF0DBB42A4252F669F815EE5D0430724971955D_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_0035; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; int32_t L_5 = __this->get_playerNo_16(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_4, L_5, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_7 = __this->get_playerColor_17(); NetworkWriterExtensions_WriteColor_m7EA61C4CEE7C0F49BCAF7339D1A76F4ECA50626E(L_6, L_7, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_8 = ___writer0; int32_t L_9 = __this->get_playerData_18(); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_8, L_9, /*hidden argument*/NULL); return (bool)1; } IL_0035: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_10 = ___writer0; uint64_t L_11 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_10, L_11, /*hidden argument*/NULL); uint64_t L_12 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_12&(int64_t)((int64_t)1LL)))) { goto IL_0065; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_13 = ___writer0; int32_t L_14 = __this->get_playerNo_16(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_13, L_14, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0065: { uint64_t L_15 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_15&(int64_t)((int64_t)2LL)))) { goto IL_0089; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_16 = ___writer0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_17 = __this->get_playerColor_17(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteColor_m7EA61C4CEE7C0F49BCAF7339D1A76F4ECA50626E(L_16, L_17, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0089: { uint64_t L_18 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_18&(int64_t)((int64_t)4LL)))) { goto IL_00ad; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_19 = ___writer0; int32_t L_20 = __this->get_playerData_18(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_19, L_20, /*hidden argument*/NULL); V_0 = (bool)1; } IL_00ad: { bool L_21 = V_0; return L_21; } } // System.Void Mirror.Examples.Basic.Player::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_DeserializeSyncVars_m093AEE35FD76FA9AC298294D8831D0DC3753DF6C (Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_DeserializeSyncVars_m093AEE35FD76FA9AC298294D8831D0DC3753DF6C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int32_t V_1 = 0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; int32_t V_4 = 0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 V_5; memset((&V_5), 0, sizeof(V_5)); int32_t V_6 = 0; { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_0077; } } { int32_t L_3 = __this->get_playerNo_16(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_5 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_4, /*hidden argument*/NULL); Player_set_NetworkplayerNo_m52257F6B3146D0B08EF56D5E8DF732ADE32FE9DE(__this, L_5, /*hidden argument*/NULL); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_6 = __this->get_playerColor_17(); V_2 = L_6; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_7 = ___reader0; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_8 = NetworkReaderExtensions_ReadColor_m21E0B16FA466A4FDAEC8BE1C80E47C9BAE3217A7(L_7, /*hidden argument*/NULL); Player_set_NetworkplayerColor_mE4EF912D1ABC83009201BE72761AF49483D81CF2(__this, L_8, /*hidden argument*/NULL); int32_t L_9 = __this->get_playerData_18(); V_3 = L_9; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_10 = ___reader0; int32_t L_11 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_10, /*hidden argument*/NULL); Player_set_NetworkplayerData_mB781A57CD60BDA44FD67B3A50F840ECC5EFFE9B4(__this, L_11, /*hidden argument*/NULL); int32_t L_12 = V_3; int32_t* L_13 = __this->get_address_of_playerData_18(); bool L_14 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_12, (int32_t*)L_13, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_14) { goto IL_0075; } } { int32_t L_15 = V_3; int32_t L_16 = __this->get_playerData_18(); Player_OnPlayerDataChanged_m587DF3DEED39CA264A960FEE244D64D1318A5474(__this, L_15, L_16, /*hidden argument*/NULL); } IL_0075: { return; } IL_0077: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_17 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_18 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_17, /*hidden argument*/NULL); V_0 = L_18; int64_t L_19 = V_0; if (!((int64_t)((int64_t)L_19&(int64_t)((int64_t)1LL)))) { goto IL_00a5; } } { int32_t L_20 = __this->get_playerNo_16(); V_4 = L_20; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_21 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_22 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_21, /*hidden argument*/NULL); Player_set_NetworkplayerNo_m52257F6B3146D0B08EF56D5E8DF732ADE32FE9DE(__this, L_22, /*hidden argument*/NULL); } IL_00a5: { int64_t L_23 = V_0; if (!((int64_t)((int64_t)L_23&(int64_t)((int64_t)2LL)))) { goto IL_00cc; } } { Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_24 = __this->get_playerColor_17(); V_5 = L_24; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_25 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_26 = NetworkReaderExtensions_ReadColor_m21E0B16FA466A4FDAEC8BE1C80E47C9BAE3217A7(L_25, /*hidden argument*/NULL); Player_set_NetworkplayerColor_mE4EF912D1ABC83009201BE72761AF49483D81CF2(__this, L_26, /*hidden argument*/NULL); } IL_00cc: { int64_t L_27 = V_0; if (!((int64_t)((int64_t)L_27&(int64_t)((int64_t)4LL)))) { goto IL_0119; } } { int32_t L_28 = __this->get_playerData_18(); V_6 = L_28; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_29 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_30 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_29, /*hidden argument*/NULL); Player_set_NetworkplayerData_mB781A57CD60BDA44FD67B3A50F840ECC5EFFE9B4(__this, L_30, /*hidden argument*/NULL); int32_t L_31 = V_6; int32_t* L_32 = __this->get_address_of_playerData_18(); bool L_33 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_31, (int32_t*)L_32, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_33) { goto IL_0118; } } { int32_t L_34 = V_6; int32_t L_35 = __this->get_playerData_18(); Player_OnPlayerDataChanged_m587DF3DEED39CA264A960FEE244D64D1318A5474(__this, L_34, L_35, /*hidden argument*/NULL); } IL_0118: { } IL_0119: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Chat.Player::add_OnMessage(System.Action`2<Mirror.Examples.Chat.Player,System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_add_OnMessage_m069F5EAF266ACF898ED70BB5EFCB71805997C8AD (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_add_OnMessage_m069F5EAF266ACF898ED70BB5EFCB71805997C8AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * V_0 = NULL; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * V_1 = NULL; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var); Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_0 = ((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields*)il2cpp_codegen_static_fields_for(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var))->get_OnMessage_13(); V_0 = L_0; } IL_0006: { Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_1 = V_0; V_1 = L_1; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_2 = V_1; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_3 = ___value0; Delegate_t * L_4 = Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55(L_2, L_3, /*hidden argument*/NULL); V_2 = ((Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *)CastclassSealed((RuntimeObject*)L_4, Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var); Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_5 = V_2; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_6 = V_1; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_7 = InterlockedCompareExchangeImpl<Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *>((Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE **)(((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields*)il2cpp_codegen_static_fields_for(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var))->get_address_of_OnMessage_13()), L_5, L_6); V_0 = L_7; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_8 = V_0; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_9 = V_1; if ((!(((RuntimeObject*)(Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *)L_8) == ((RuntimeObject*)(Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *)L_9)))) { goto IL_0006; } } { return; } } // System.Void Mirror.Examples.Chat.Player::remove_OnMessage(System.Action`2<Mirror.Examples.Chat.Player,System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_remove_OnMessage_m0EE6773B16984A23188BBED763B4421FD0F9A935 (Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_remove_OnMessage_m0EE6773B16984A23188BBED763B4421FD0F9A935_MetadataUsageId); s_Il2CppMethodInitialized = true; } Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * V_0 = NULL; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * V_1 = NULL; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var); Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_0 = ((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields*)il2cpp_codegen_static_fields_for(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var))->get_OnMessage_13(); V_0 = L_0; } IL_0006: { Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_1 = V_0; V_1 = L_1; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_2 = V_1; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_3 = ___value0; Delegate_t * L_4 = Delegate_Remove_m8B4AD17254118B2904720D55C9B34FB3DCCBD7D4(L_2, L_3, /*hidden argument*/NULL); V_2 = ((Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *)CastclassSealed((RuntimeObject*)L_4, Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var); Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_5 = V_2; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_6 = V_1; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_7 = InterlockedCompareExchangeImpl<Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *>((Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE **)(((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields*)il2cpp_codegen_static_fields_for(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var))->get_address_of_OnMessage_13()), L_5, L_6); V_0 = L_7; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_8 = V_0; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_9 = V_1; if ((!(((RuntimeObject*)(Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *)L_8) == ((RuntimeObject*)(Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE *)L_9)))) { goto IL_0006; } } { return; } } // System.Void Mirror.Examples.Chat.Player::CmdSend(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_CmdSend_mF28A6EBFBBA996DB4A39BF137E5735E96601EF07 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_CmdSend_mF28A6EBFBBA996DB4A39BF137E5735E96601EF07_MetadataUsageId); s_Il2CppMethodInitialized = true; } PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterPool_tE8E92B378A1C09F9FF212B4D2EE02264A94E06C0_il2cpp_TypeInfo_var); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_0 = NetworkWriterPool_GetWriter_m53506C8016911951C82F2F83E45592CE2F9A85AE(/*hidden argument*/NULL); V_0 = L_0; PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_1 = V_0; String_t* L_2 = ___message0; IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_1, L_2, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_5 = V_0; NetworkBehaviour_SendCommandInternal_m81D09DA3B313767B581AFB3F5BC4535807CC5700(__this, L_4, _stringLiteralA62A585BE3380C1A4A863C84A536F046C9E03CBD, L_5, ((int32_t)0), (bool)0, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_6 = V_0; NetworkWriterPool_Recycle_m8E7D8C8ED6F0856380CE750DBEF1D0EC5BAF8FB3(L_6, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.Player::RpcReceive(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_RpcReceive_m010A44E7398D051BB7FDCAD62915A4EA09C5F5E3 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_RpcReceive_m010A44E7398D051BB7FDCAD62915A4EA09C5F5E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterPool_tE8E92B378A1C09F9FF212B4D2EE02264A94E06C0_il2cpp_TypeInfo_var); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_0 = NetworkWriterPool_GetWriter_m53506C8016911951C82F2F83E45592CE2F9A85AE(/*hidden argument*/NULL); V_0 = L_0; PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_1 = V_0; String_t* L_2 = ___message0; IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_1, L_2, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_5 = V_0; NetworkBehaviour_SendRPCInternal_m3E76275A3E52E54BF11483D924A21D58285586DF(__this, L_4, _stringLiteral73AA0532A5D726D12C7607CBFEA28DC13C2631D6, L_5, ((int32_t)0), (bool)0, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_6 = V_0; NetworkWriterPool_Recycle_m8E7D8C8ED6F0856380CE750DBEF1D0EC5BAF8FB3(L_6, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.Player::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player__ctor_m32820D4B289A185E02CF84115E0FE3735B7B0DA9 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player__ctor_m32820D4B289A185E02CF84115E0FE3735B7B0DA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.Player::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_MirrorProcessed_mD9C2CFCD1B94F81F269B371E57A364ED6927FC27 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, const RuntimeMethod* method) { { return; } } // System.String Mirror.Examples.Chat.Player::get_NetworkplayerName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Player_get_NetworkplayerName_m3CCA991DD576F42DC93CAAAFEFD4D207D7166AB0 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; { String_t* L_0 = __this->get_playerName_12(); return L_0; } } // System.Void Mirror.Examples.Chat.Player::set_NetworkplayerName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_set_NetworkplayerName_mB54F6C5CF791D16E93A6DE021176B0D69FCC7DBC (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_set_NetworkplayerName_mB54F6C5CF791D16E93A6DE021176B0D69FCC7DBC_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___value0; String_t** L_1 = __this->get_address_of_playerName_12(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisString_t_m9FE65477E4299FF143A3F1FB9A68D4C038297A6E(__this, L_0, (String_t**)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisString_t_m9FE65477E4299FF143A3F1FB9A68D4C038297A6E_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { String_t* L_3 = __this->get_playerName_12(); V_0 = L_3; String_t* L_4 = ___value0; String_t** L_5 = __this->get_address_of_playerName_12(); NetworkBehaviour_SetSyncVar_TisString_t_mB1BE647BB205B4306DAB25A796D7FEB100BD7189(__this, L_4, (String_t**)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisString_t_mB1BE647BB205B4306DAB25A796D7FEB100BD7189_RuntimeMethod_var); } IL_0032: { return; } } // System.Void Mirror.Examples.Chat.Player::UserCode_CmdSend(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_UserCode_CmdSend_mCF846A2C4CD008316D766BD9B9F9A113CA819663 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_UserCode_CmdSend_mCF846A2C4CD008316D766BD9B9F9A113CA819663_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (message.Trim() != "") String_t* L_0 = ___message0; NullCheck(L_0); String_t* L_1 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_0, /*hidden argument*/NULL); bool L_2 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_1, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); if (!L_2) { goto IL_001e; } } { // RpcReceive(message.Trim()); String_t* L_3 = ___message0; NullCheck(L_3); String_t* L_4 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_3, /*hidden argument*/NULL); Player_RpcReceive_m010A44E7398D051BB7FDCAD62915A4EA09C5F5E3(__this, L_4, /*hidden argument*/NULL); } IL_001e: { // } return; } } // System.Void Mirror.Examples.Chat.Player::InvokeUserCode_CmdSend(Mirror.NetworkBehaviour,Mirror.NetworkReader,Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_InvokeUserCode_CmdSend_mD55BE5FA8E7258C2AB51D7FC56FA59F2BF03D7AD (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * ___obj0, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader1, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___senderConnection2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_InvokeUserCode_CmdSend_mD55BE5FA8E7258C2AB51D7FC56FA59F2BF03D7AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(_stringLiteral5BDEA1198904D3083E5EDFAAF1C05CCC233D17AB, /*hidden argument*/NULL); return; } IL_0015: { NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * L_1 = ___obj0; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_2 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); String_t* L_3 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_2, /*hidden argument*/NULL); NullCheck(((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 *)CastclassClass((RuntimeObject*)L_1, Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var))); Player_UserCode_CmdSend_mCF846A2C4CD008316D766BD9B9F9A113CA819663(((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 *)CastclassClass((RuntimeObject*)L_1, Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var)), L_3, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.Player::UserCode_RpcReceive(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_UserCode_RpcReceive_m7A005149584B3AC4258EAB293CB18499FB80922A (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_UserCode_RpcReceive_m7A005149584B3AC4258EAB293CB18499FB80922A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * G_B2_0 = NULL; Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * G_B1_0 = NULL; { // OnMessage?.Invoke(this, message); IL2CPP_RUNTIME_CLASS_INIT(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var); Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_0 = ((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields*)il2cpp_codegen_static_fields_for(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var))->get_OnMessage_13(); Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000a; } } { return; } IL_000a: { String_t* L_2 = ___message0; NullCheck(G_B2_0); Action_2_Invoke_m9B4747ABDFDBD913EE4CC25E8F510CD4D3455B6D(G_B2_0, __this, L_2, /*hidden argument*/Action_2_Invoke_m9B4747ABDFDBD913EE4CC25E8F510CD4D3455B6D_RuntimeMethod_var); // } return; } } // System.Void Mirror.Examples.Chat.Player::InvokeUserCode_RpcReceive(Mirror.NetworkBehaviour,Mirror.NetworkReader,Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_InvokeUserCode_RpcReceive_mFB6FA79E89417F3143E500E5BE953F7394A3475A (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * ___obj0, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader1, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___senderConnection2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_InvokeUserCode_RpcReceive_mFB6FA79E89417F3143E500E5BE953F7394A3475A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_il2cpp_TypeInfo_var); bool L_0 = NetworkClient_get_active_m80C7ACA728DE7F6F6B5DC6C0E80B5AD0D287EA37(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(_stringLiteral1E6987A34AA5BFE464BE8C0FB3158290E5EDAD9D, /*hidden argument*/NULL); return; } IL_0015: { NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * L_1 = ___obj0; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_2 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); String_t* L_3 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_2, /*hidden argument*/NULL); NullCheck(((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 *)CastclassClass((RuntimeObject*)L_1, Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var))); Player_UserCode_RpcReceive_m7A005149584B3AC4258EAB293CB18499FB80922A(((Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 *)CastclassClass((RuntimeObject*)L_1, Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_il2cpp_TypeInfo_var)), L_3, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.Player::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player__cctor_mEDFBF64657884D17F1140D71FC22AA4563008552 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player__cctor_mEDFBF64657884D17F1140D71FC22AA4563008552_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * L_2 = (CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF *)il2cpp_codegen_object_new(CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF_il2cpp_TypeInfo_var); CmdDelegate__ctor_m25AAD7CB2265BEF6CC263E5F620322D0B874CAD8(L_2, NULL, (intptr_t)((intptr_t)Player_InvokeUserCode_CmdSend_mD55BE5FA8E7258C2AB51D7FC56FA59F2BF03D7AD_RuntimeMethod_var), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RemoteCallHelper_t698E15E60D843C81D10564E744E4D9829DB33D02_il2cpp_TypeInfo_var); RemoteCallHelper_RegisterCommandDelegate_m196440B96E1D7A909D38037A770734FC5139842F(L_1, _stringLiteralA62A585BE3380C1A4A863C84A536F046C9E03CBD, L_2, (bool)0, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL); CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * L_5 = (CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF *)il2cpp_codegen_object_new(CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF_il2cpp_TypeInfo_var); CmdDelegate__ctor_m25AAD7CB2265BEF6CC263E5F620322D0B874CAD8(L_5, NULL, (intptr_t)((intptr_t)Player_InvokeUserCode_RpcReceive_mFB6FA79E89417F3143E500E5BE953F7394A3475A_RuntimeMethod_var), /*hidden argument*/NULL); RemoteCallHelper_RegisterRpcDelegate_m3381432C36F433DF9E6D924514BEBAD8B37B7AC9(L_4, _stringLiteral73AA0532A5D726D12C7607CBFEA28DC13C2631D6, L_5, /*hidden argument*/NULL); return; } } // System.Boolean Mirror.Examples.Chat.Player::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Player_SerializeSyncVars_m98C9721889FCF36BA62D0ECD34424E6B0BACF1E7 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_SerializeSyncVars_m98C9721889FCF36BA62D0ECD34424E6B0BACF1E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_001d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; String_t* L_5 = __this->get_playerName_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_4, L_5, /*hidden argument*/NULL); return (bool)1; } IL_001d: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; uint64_t L_7 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_6, L_7, /*hidden argument*/NULL); uint64_t L_8 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_8&(int64_t)((int64_t)1LL)))) { goto IL_004d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_9 = ___writer0; String_t* L_10 = __this->get_playerName_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_9, L_10, /*hidden argument*/NULL); V_0 = (bool)1; } IL_004d: { bool L_11 = V_0; return L_11; } } // System.Void Mirror.Examples.Chat.Player::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_DeserializeSyncVars_mF491B1122707D0393C4BE44AE6A7E4D310ED9642 (Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_DeserializeSyncVars_mF491B1122707D0393C4BE44AE6A7E4D310ED9642_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; String_t* V_1 = NULL; String_t* V_2 = NULL; { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_0025; } } { String_t* L_3 = __this->get_playerName_12(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); String_t* L_5 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_4, /*hidden argument*/NULL); Player_set_NetworkplayerName_mB54F6C5CF791D16E93A6DE021176B0D69FCC7DBC(__this, L_5, /*hidden argument*/NULL); return; } IL_0025: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_6 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_7 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_6, /*hidden argument*/NULL); V_0 = L_7; int64_t L_8 = V_0; if (!((int64_t)((int64_t)L_8&(int64_t)((int64_t)1LL)))) { goto IL_0053; } } { String_t* L_9 = __this->get_playerName_12(); V_2 = L_9; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_10 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); String_t* L_11 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_10, /*hidden argument*/NULL); Player_set_NetworkplayerName_mB54F6C5CF791D16E93A6DE021176B0D69FCC7DBC(__this, L_11, /*hidden argument*/NULL); } IL_0053: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Pong.Player::FixedUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_FixedUpdate_mC62AAA84F5376C5484077731CE40DC7757983717 (Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player_FixedUpdate_mC62AAA84F5376C5484077731CE40DC7757983717_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (isLocalPlayer) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_003c; } } { // rigidbody2d.velocity = new Vector2(0, Input.GetAxisRaw("Vertical")) * speed * Time.fixedDeltaTime; Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * L_1 = __this->get_rigidbody2d_13(); float L_2 = Input_GetAxisRaw_mC07AC23FD8D04A69CDB07C6399C93FFFAEB0FC5B(_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A, /*hidden argument*/NULL); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3; memset((&L_3), 0, sizeof(L_3)); Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_3), (0.0f), L_2, /*hidden argument*/NULL); float L_4 = __this->get_speed_12(); IL2CPP_RUNTIME_CLASS_INIT(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_5 = Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline(L_3, L_4, /*hidden argument*/NULL); float L_6 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7 = Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline(L_5, L_6, /*hidden argument*/NULL); NullCheck(L_1); Rigidbody2D_set_velocity_m56B745344E78C85462843AE623BF0A40764FC2DA(L_1, L_7, /*hidden argument*/NULL); } IL_003c: { // } return; } } // System.Void Mirror.Examples.Pong.Player::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player__ctor_mB7BC24454E901D9C7D2906D6F7EB1C0926101EF5 (Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Player__ctor_mB7BC24454E901D9C7D2906D6F7EB1C0926101EF5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float speed = 30; __this->set_speed_12((30.0f)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Pong.Player::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Player_MirrorProcessed_m2E7AC70D50129AEBFF9AB6D500C62CC82540770A (Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Additive.PlayerController::OnValidate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnValidate_mE0566A3D0A171BAC4065D0FE9728C1F129A56654 (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_OnValidate_mE0566A3D0A171BAC4065D0FE9728C1F129A56654_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (characterController == null) CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_0 = __this->get_characterController_12(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { // characterController = GetComponent<CharacterController>(); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_2 = Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2(__this, /*hidden argument*/Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2_RuntimeMethod_var); __this->set_characterController_12(L_2); } IL_001a: { // if (capsuleCollider == null) CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_3 = __this->get_capsuleCollider_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0034; } } { // capsuleCollider = GetComponent<CapsuleCollider>(); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_5 = Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9(__this, /*hidden argument*/Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9_RuntimeMethod_var); __this->set_capsuleCollider_13(L_5); } IL_0034: { // } return; } } // System.Void Mirror.Examples.Additive.PlayerController::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_Start_m869981526CC17F2B64C8140B0F67204B737E117F (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { { // capsuleCollider.enabled = isServer; CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_0 = __this->get_capsuleCollider_13(); bool L_1 = NetworkBehaviour_get_isServer_m6CF3499812C1F2679BB924165AA79C59E6D2EBCF(__this, /*hidden argument*/NULL); NullCheck(L_0); Collider_set_enabled_m047B4D830755CD36671F7A60BFAA9C0D61F6C4A1(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Additive.PlayerController::OnStartLocalPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnStartLocalPlayer_m11D64FCE3293D9708C01F33DE0A6729011E3DEE3 (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { { // characterController.enabled = true; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_0 = __this->get_characterController_12(); NullCheck(L_0); Collider_set_enabled_m047B4D830755CD36671F7A60BFAA9C0D61F6C4A1(L_0, (bool)1, /*hidden argument*/NULL); // Camera.main.orthographic = false; Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_1 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_1); Camera_set_orthographic_m38A872FC2D448915EE94C4FB72FB02D4C3F56C52(L_1, (bool)0, /*hidden argument*/NULL); // Camera.main.transform.SetParent(transform); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_2 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_2); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_2, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_3); Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E(L_3, L_4, /*hidden argument*/NULL); // Camera.main.transform.localPosition = new Vector3(0f, 3f, -8f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_5 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_5); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_5, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7; memset((&L_7), 0, sizeof(L_7)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_7), (0.0f), (3.0f), (-8.0f), /*hidden argument*/NULL); NullCheck(L_6); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_6, L_7, /*hidden argument*/NULL); // Camera.main.transform.localEulerAngles = new Vector3(10f, 0f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_8 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_8); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_9 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_8, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10; memset((&L_10), 0, sizeof(L_10)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_10), (10.0f), (0.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_9); Transform_set_localEulerAngles_mB63076996124DC76E6902A81677A6E3C814C693B(L_9, L_10, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Additive.PlayerController::OnDisable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnDisable_m4EBBFCD135600C9870BCE1FA8B8EE411018AE5B5 (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_OnDisable_m4EBBFCD135600C9870BCE1FA8B8EE411018AE5B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (isLocalPlayer && Camera.main != null) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0076; } } { Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_1 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_0076; } } { // Camera.main.orthographic = true; Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_3 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_3); Camera_set_orthographic_m38A872FC2D448915EE94C4FB72FB02D4C3F56C52(L_3, (bool)1, /*hidden argument*/NULL); // Camera.main.transform.SetParent(null); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_4 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_4); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_4, /*hidden argument*/NULL); NullCheck(L_5); Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E(L_5, (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 *)NULL, /*hidden argument*/NULL); // Camera.main.transform.localPosition = new Vector3(0f, 70f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_6 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_6); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_6, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; memset((&L_8), 0, sizeof(L_8)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_8), (0.0f), (70.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_7); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_7, L_8, /*hidden argument*/NULL); // Camera.main.transform.localEulerAngles = new Vector3(90f, 0f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_9 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_9); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_10 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_9, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_11; memset((&L_11), 0, sizeof(L_11)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_11), (90.0f), (0.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_10); Transform_set_localEulerAngles_mB63076996124DC76E6902A81677A6E3C814C693B(L_10, L_11, /*hidden argument*/NULL); } IL_0076: { // } return; } } // System.Void Mirror.Examples.Additive.PlayerController::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_Update_mF6D253123525372CF13A62C661EC6AF879092B7B (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_Update_mF6D253123525372CF13A62C661EC6AF879092B7B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (!isLocalPlayer || !characterController.enabled) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0015; } } { CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_1 = __this->get_characterController_12(); NullCheck(L_1); bool L_2 = Collider_get_enabled_m03B73B5C97033F939387D1785BDF2619CADAEEB0(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0016; } } IL_0015: { // return; return; } IL_0016: { // horizontal = Input.GetAxis("Horizontal"); float L_3 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E, /*hidden argument*/NULL); __this->set_horizontal_17(L_3); // vertical = Input.GetAxis("Vertical"); float L_4 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A, /*hidden argument*/NULL); __this->set_vertical_18(L_4); // if (Input.GetKey(KeyCode.Q)) bool L_5 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (!L_5) { goto IL_005d; } } { // turn = Mathf.MoveTowards(turn, -maxTurnSpeed, turnSensitivity); float L_6 = __this->get_turn_19(); float L_7 = __this->get_maxTurnSpeed_16(); float L_8 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_9 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_6, ((-L_7)), L_8, /*hidden argument*/NULL); __this->set_turn_19(L_9); } IL_005d: { // if (Input.GetKey(KeyCode.E)) bool L_10 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (!L_10) { goto IL_0083; } } { // turn = Mathf.MoveTowards(turn, maxTurnSpeed, turnSensitivity); float L_11 = __this->get_turn_19(); float L_12 = __this->get_maxTurnSpeed_16(); float L_13 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_14 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_11, L_12, L_13, /*hidden argument*/NULL); __this->set_turn_19(L_14); } IL_0083: { // if (Input.GetKey(KeyCode.Q) && Input.GetKey(KeyCode.E)) bool L_15 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (!L_15) { goto IL_00b1; } } { bool L_16 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (!L_16) { goto IL_00b1; } } { // turn = Mathf.MoveTowards(turn, 0, turnSensitivity); float L_17 = __this->get_turn_19(); float L_18 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_19 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_17, (0.0f), L_18, /*hidden argument*/NULL); __this->set_turn_19(L_19); } IL_00b1: { // if (!Input.GetKey(KeyCode.Q) && !Input.GetKey(KeyCode.E)) bool L_20 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (L_20) { goto IL_00df; } } { bool L_21 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (L_21) { goto IL_00df; } } { // turn = Mathf.MoveTowards(turn, 0, turnSensitivity); float L_22 = __this->get_turn_19(); float L_23 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_24 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_22, (0.0f), L_23, /*hidden argument*/NULL); __this->set_turn_19(L_24); } IL_00df: { // if (isGrounded) bool L_25 = __this->get_isGrounded_21(); if (!L_25) { goto IL_00ee; } } { // isFalling = false; __this->set_isFalling_22((bool)0); } IL_00ee: { // if ((isGrounded || !isFalling) && jumpSpeed < 1f && Input.GetKey(KeyCode.Space)) bool L_26 = __this->get_isGrounded_21(); if (L_26) { goto IL_00fe; } } { bool L_27 = __this->get_isFalling_22(); if (L_27) { goto IL_0130; } } IL_00fe: { float L_28 = __this->get_jumpSpeed_20(); if ((!(((float)L_28) < ((float)(1.0f))))) { goto IL_0130; } } { bool L_29 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)32), /*hidden argument*/NULL); if (!L_29) { goto IL_0130; } } { // jumpSpeed = Mathf.Lerp(jumpSpeed, 1f, 0.5f); float L_30 = __this->get_jumpSpeed_20(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_31 = Mathf_Lerp_m8A2A50B945F42D579EDF44D5EE79E85A4DA59616(L_30, (1.0f), (0.5f), /*hidden argument*/NULL); __this->set_jumpSpeed_20(L_31); // } return; } IL_0130: { // else if (!isGrounded) bool L_32 = __this->get_isGrounded_21(); if (L_32) { goto IL_014a; } } { // isFalling = true; __this->set_isFalling_22((bool)1); // jumpSpeed = 0; __this->set_jumpSpeed_20((0.0f)); } IL_014a: { // } return; } } // System.Void Mirror.Examples.Additive.PlayerController::FixedUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_FixedUpdate_m0FE76688A79C84635274E7C284C4049FBB228847 (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_FixedUpdate_m0FE76688A79C84635274E7C284C4049FBB228847_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!isLocalPlayer || characterController == null) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0016; } } { CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_1 = __this->get_characterController_12(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_0017; } } IL_0016: { // return; return; } IL_0017: { // transform.Rotate(0f, turn * Time.fixedDeltaTime, 0f); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); float L_4 = __this->get_turn_19(); float L_5 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); NullCheck(L_3); Transform_Rotate_mA3AE6D55AA9CC88A8F03C2B0B7CB3DB45ABA6A8E(L_3, (0.0f), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), (0.0f), /*hidden argument*/NULL); // Vector3 direction = new Vector3(horizontal, jumpSpeed, vertical); float L_6 = __this->get_horizontal_17(); float L_7 = __this->get_jumpSpeed_20(); float L_8 = __this->get_vertical_18(); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), L_6, L_7, L_8, /*hidden argument*/NULL); // direction = Vector3.ClampMagnitude(direction, 1f); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = Vector3_ClampMagnitude_mF85598307D6CF3B4E5BEEB218CEDDCE39CDF3336(L_9, (1.0f), /*hidden argument*/NULL); V_0 = L_10; // direction = transform.TransformDirection(direction); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_11 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = V_0; NullCheck(L_11); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13 = Transform_TransformDirection_m6B5E3F0A7C6323159DEC6D9BC035FB53ADD96E91(L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; // direction *= moveSpeed; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_14 = V_0; float L_15 = __this->get_moveSpeed_14(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_16 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_14, L_15, /*hidden argument*/NULL); V_0 = L_16; // if (jumpSpeed > 0) float L_17 = __this->get_jumpSpeed_20(); if ((!(((float)L_17) > ((float)(0.0f))))) { goto IL_009d; } } { // characterController.Move(direction * Time.fixedDeltaTime); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_18 = __this->get_characterController_12(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = V_0; float L_20 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_21 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_19, L_20, /*hidden argument*/NULL); NullCheck(L_18); CharacterController_Move_mE0EBC32C72A0BEC18EDEBE748D44309A4BA32E60(L_18, L_21, /*hidden argument*/NULL); goto IL_00aa; } IL_009d: { // characterController.SimpleMove(direction); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_22 = __this->get_characterController_12(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_23 = V_0; NullCheck(L_22); CharacterController_SimpleMove_m13296E1514AD800B545C45B1824261AB7FFDFF41(L_22, L_23, /*hidden argument*/NULL); } IL_00aa: { // isGrounded = characterController.isGrounded; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_24 = __this->get_characterController_12(); NullCheck(L_24); bool L_25 = CharacterController_get_isGrounded_m327A1A1940F225FE81E751F255316BB0D8698CBC(L_24, /*hidden argument*/NULL); __this->set_isGrounded_21(L_25); // velocity = characterController.velocity; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_26 = __this->get_characterController_12(); NullCheck(L_26); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27 = CharacterController_get_velocity_m13A2C2D13A171D9A6E899C0E472C68FCF5E3D5A6(L_26, /*hidden argument*/NULL); __this->set_velocity_23(L_27); // } return; } } // System.Void Mirror.Examples.Additive.PlayerController::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController__ctor_mB2D9F1865459A8FC271579219D2DA50D4E884F30 (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController__ctor_mB2D9F1865459A8FC271579219D2DA50D4E884F30_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float moveSpeed = 8f; __this->set_moveSpeed_14((8.0f)); // public float turnSensitivity = 5f; __this->set_turnSensitivity_15((5.0f)); // public float maxTurnSpeed = 150f; __this->set_maxTurnSpeed_16((150.0f)); // public bool isGrounded = true; __this->set_isGrounded_21((bool)1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Additive.PlayerController::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_MirrorProcessed_mE2059563EB667E6BCA69C2196062E868646D5549 (PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::OnValidate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnValidate_m135260056956911117C0437AEA294B59A4F4F92D (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_OnValidate_m135260056956911117C0437AEA294B59A4F4F92D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (characterController == null) CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_0 = __this->get_characterController_12(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { // characterController = GetComponent<CharacterController>(); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_2 = Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2(__this, /*hidden argument*/Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2_RuntimeMethod_var); __this->set_characterController_12(L_2); } IL_001a: { // if (capsuleCollider == null) CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_3 = __this->get_capsuleCollider_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0034; } } { // capsuleCollider = GetComponent<CapsuleCollider>(); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_5 = Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9(__this, /*hidden argument*/Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9_RuntimeMethod_var); __this->set_capsuleCollider_13(L_5); } IL_0034: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_Start_m5914943B81D37ECB7FE24F7A47F58FFE4D316EAB (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { { // capsuleCollider.enabled = isServer; CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_0 = __this->get_capsuleCollider_13(); bool L_1 = NetworkBehaviour_get_isServer_m6CF3499812C1F2679BB924165AA79C59E6D2EBCF(__this, /*hidden argument*/NULL); NullCheck(L_0); Collider_set_enabled_m047B4D830755CD36671F7A60BFAA9C0D61F6C4A1(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::OnStartLocalPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnStartLocalPlayer_m12FF0A0F13032ACCE32CFBB28D2A60ED68264269 (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { { // characterController.enabled = true; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_0 = __this->get_characterController_12(); NullCheck(L_0); Collider_set_enabled_m047B4D830755CD36671F7A60BFAA9C0D61F6C4A1(L_0, (bool)1, /*hidden argument*/NULL); // Camera.main.orthographic = false; Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_1 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_1); Camera_set_orthographic_m38A872FC2D448915EE94C4FB72FB02D4C3F56C52(L_1, (bool)0, /*hidden argument*/NULL); // Camera.main.transform.SetParent(transform); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_2 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_2); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_2, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_3); Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E(L_3, L_4, /*hidden argument*/NULL); // Camera.main.transform.localPosition = new Vector3(0f, 3f, -8f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_5 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_5); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_5, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7; memset((&L_7), 0, sizeof(L_7)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_7), (0.0f), (3.0f), (-8.0f), /*hidden argument*/NULL); NullCheck(L_6); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_6, L_7, /*hidden argument*/NULL); // Camera.main.transform.localEulerAngles = new Vector3(10f, 0f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_8 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_8); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_9 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_8, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10; memset((&L_10), 0, sizeof(L_10)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_10), (10.0f), (0.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_9); Transform_set_localEulerAngles_mB63076996124DC76E6902A81677A6E3C814C693B(L_9, L_10, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::OnDisable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnDisable_mB5227100892B843C61695BB9E0EAD790C6BBFAE7 (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_OnDisable_mB5227100892B843C61695BB9E0EAD790C6BBFAE7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (isLocalPlayer && Camera.main != null) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_008d; } } { Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_1 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_008d; } } { // Camera.main.orthographic = true; Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_3 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_3); Camera_set_orthographic_m38A872FC2D448915EE94C4FB72FB02D4C3F56C52(L_3, (bool)1, /*hidden argument*/NULL); // Camera.main.transform.SetParent(null); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_4 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_4); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_4, /*hidden argument*/NULL); NullCheck(L_5); Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E(L_5, (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 *)NULL, /*hidden argument*/NULL); // SceneManager.MoveGameObjectToScene(Camera.main.gameObject, SceneManager.GetActiveScene()); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_6 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_6); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_6, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_8 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); SceneManager_MoveGameObjectToScene_m6A83C5A83445385BC00FBFD155707732A0C80F39(L_7, L_8, /*hidden argument*/NULL); // Camera.main.transform.localPosition = new Vector3(0f, 70f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_9 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_9); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_10 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_9, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_11; memset((&L_11), 0, sizeof(L_11)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_11), (0.0f), (70.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_10); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_10, L_11, /*hidden argument*/NULL); // Camera.main.transform.localEulerAngles = new Vector3(90f, 0f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_12 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_12); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_13 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_12, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_14; memset((&L_14), 0, sizeof(L_14)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_14), (90.0f), (0.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_13); Transform_set_localEulerAngles_mB63076996124DC76E6902A81677A6E3C814C693B(L_13, L_14, /*hidden argument*/NULL); } IL_008d: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_Update_m435B49D11A7B468FD9064E8B3C4417B7DBFE3CD5 (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_Update_m435B49D11A7B468FD9064E8B3C4417B7DBFE3CD5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (!isLocalPlayer || !characterController.enabled) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0015; } } { CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_1 = __this->get_characterController_12(); NullCheck(L_1); bool L_2 = Collider_get_enabled_m03B73B5C97033F939387D1785BDF2619CADAEEB0(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0016; } } IL_0015: { // return; return; } IL_0016: { // horizontal = Input.GetAxis("Horizontal"); float L_3 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E, /*hidden argument*/NULL); __this->set_horizontal_17(L_3); // vertical = Input.GetAxis("Vertical"); float L_4 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A, /*hidden argument*/NULL); __this->set_vertical_18(L_4); // if (Input.GetKey(KeyCode.Q)) bool L_5 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (!L_5) { goto IL_005d; } } { // turn = Mathf.MoveTowards(turn, -maxTurnSpeed, turnSensitivity); float L_6 = __this->get_turn_19(); float L_7 = __this->get_maxTurnSpeed_16(); float L_8 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_9 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_6, ((-L_7)), L_8, /*hidden argument*/NULL); __this->set_turn_19(L_9); } IL_005d: { // if (Input.GetKey(KeyCode.E)) bool L_10 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (!L_10) { goto IL_0083; } } { // turn = Mathf.MoveTowards(turn, maxTurnSpeed, turnSensitivity); float L_11 = __this->get_turn_19(); float L_12 = __this->get_maxTurnSpeed_16(); float L_13 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_14 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_11, L_12, L_13, /*hidden argument*/NULL); __this->set_turn_19(L_14); } IL_0083: { // if (Input.GetKey(KeyCode.Q) && Input.GetKey(KeyCode.E)) bool L_15 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (!L_15) { goto IL_00b1; } } { bool L_16 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (!L_16) { goto IL_00b1; } } { // turn = Mathf.MoveTowards(turn, 0, turnSensitivity); float L_17 = __this->get_turn_19(); float L_18 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_19 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_17, (0.0f), L_18, /*hidden argument*/NULL); __this->set_turn_19(L_19); } IL_00b1: { // if (!Input.GetKey(KeyCode.Q) && !Input.GetKey(KeyCode.E)) bool L_20 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (L_20) { goto IL_00df; } } { bool L_21 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (L_21) { goto IL_00df; } } { // turn = Mathf.MoveTowards(turn, 0, turnSensitivity); float L_22 = __this->get_turn_19(); float L_23 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_24 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_22, (0.0f), L_23, /*hidden argument*/NULL); __this->set_turn_19(L_24); } IL_00df: { // if (isGrounded) bool L_25 = __this->get_isGrounded_21(); if (!L_25) { goto IL_00ee; } } { // isFalling = false; __this->set_isFalling_22((bool)0); } IL_00ee: { // if ((isGrounded || !isFalling) && jumpSpeed < 1f && Input.GetKey(KeyCode.Space)) bool L_26 = __this->get_isGrounded_21(); if (L_26) { goto IL_00fe; } } { bool L_27 = __this->get_isFalling_22(); if (L_27) { goto IL_0130; } } IL_00fe: { float L_28 = __this->get_jumpSpeed_20(); if ((!(((float)L_28) < ((float)(1.0f))))) { goto IL_0130; } } { bool L_29 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)32), /*hidden argument*/NULL); if (!L_29) { goto IL_0130; } } { // jumpSpeed = Mathf.Lerp(jumpSpeed, 1f, 0.5f); float L_30 = __this->get_jumpSpeed_20(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_31 = Mathf_Lerp_m8A2A50B945F42D579EDF44D5EE79E85A4DA59616(L_30, (1.0f), (0.5f), /*hidden argument*/NULL); __this->set_jumpSpeed_20(L_31); // } return; } IL_0130: { // else if (!isGrounded) bool L_32 = __this->get_isGrounded_21(); if (L_32) { goto IL_014a; } } { // isFalling = true; __this->set_isFalling_22((bool)1); // jumpSpeed = 0; __this->set_jumpSpeed_20((0.0f)); } IL_014a: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::FixedUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_FixedUpdate_m4620D98B4691CE084764D27A831FE481C5A9DD75 (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_FixedUpdate_m4620D98B4691CE084764D27A831FE481C5A9DD75_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!isLocalPlayer || characterController == null) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0016; } } { CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_1 = __this->get_characterController_12(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_0017; } } IL_0016: { // return; return; } IL_0017: { // transform.Rotate(0f, turn * Time.fixedDeltaTime, 0f); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); float L_4 = __this->get_turn_19(); float L_5 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); NullCheck(L_3); Transform_Rotate_mA3AE6D55AA9CC88A8F03C2B0B7CB3DB45ABA6A8E(L_3, (0.0f), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), (0.0f), /*hidden argument*/NULL); // Vector3 direction = new Vector3(horizontal, jumpSpeed, vertical); float L_6 = __this->get_horizontal_17(); float L_7 = __this->get_jumpSpeed_20(); float L_8 = __this->get_vertical_18(); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), L_6, L_7, L_8, /*hidden argument*/NULL); // direction = Vector3.ClampMagnitude(direction, 1f); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = Vector3_ClampMagnitude_mF85598307D6CF3B4E5BEEB218CEDDCE39CDF3336(L_9, (1.0f), /*hidden argument*/NULL); V_0 = L_10; // direction = transform.TransformDirection(direction); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_11 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = V_0; NullCheck(L_11); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13 = Transform_TransformDirection_m6B5E3F0A7C6323159DEC6D9BC035FB53ADD96E91(L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; // direction *= moveSpeed; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_14 = V_0; float L_15 = __this->get_moveSpeed_14(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_16 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_14, L_15, /*hidden argument*/NULL); V_0 = L_16; // if (jumpSpeed > 0) float L_17 = __this->get_jumpSpeed_20(); if ((!(((float)L_17) > ((float)(0.0f))))) { goto IL_009d; } } { // characterController.Move(direction * Time.fixedDeltaTime); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_18 = __this->get_characterController_12(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = V_0; float L_20 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_21 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_19, L_20, /*hidden argument*/NULL); NullCheck(L_18); CharacterController_Move_mE0EBC32C72A0BEC18EDEBE748D44309A4BA32E60(L_18, L_21, /*hidden argument*/NULL); goto IL_00aa; } IL_009d: { // characterController.SimpleMove(direction); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_22 = __this->get_characterController_12(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_23 = V_0; NullCheck(L_22); CharacterController_SimpleMove_m13296E1514AD800B545C45B1824261AB7FFDFF41(L_22, L_23, /*hidden argument*/NULL); } IL_00aa: { // isGrounded = characterController.isGrounded; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_24 = __this->get_characterController_12(); NullCheck(L_24); bool L_25 = CharacterController_get_isGrounded_m327A1A1940F225FE81E751F255316BB0D8698CBC(L_24, /*hidden argument*/NULL); __this->set_isGrounded_21(L_25); // velocity = characterController.velocity; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_26 = __this->get_characterController_12(); NullCheck(L_26); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27 = CharacterController_get_velocity_m13A2C2D13A171D9A6E899C0E472C68FCF5E3D5A6(L_26, /*hidden argument*/NULL); __this->set_velocity_23(L_27); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController__ctor_m03BDF97B824804B2FBB8B7A2F1A925A4C88ED4E6 (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController__ctor_m03BDF97B824804B2FBB8B7A2F1A925A4C88ED4E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float moveSpeed = 8f; __this->set_moveSpeed_14((8.0f)); // public float turnSensitivity = 5f; __this->set_turnSensitivity_15((5.0f)); // public float maxTurnSpeed = 150f; __this->set_maxTurnSpeed_16((150.0f)); // public bool isGrounded = true; __this->set_isGrounded_21((bool)1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerController::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_MirrorProcessed_m0290CBF0832F0A776868EF7B51F937D2903C6113 (PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.NetworkRoom.PlayerController::OnValidate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnValidate_m08B821C54ECF61DEEC7DEEF919124A20F7FC2429 (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_OnValidate_m08B821C54ECF61DEEC7DEEF919124A20F7FC2429_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (characterController == null) CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_0 = __this->get_characterController_12(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { // characterController = GetComponent<CharacterController>(); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_2 = Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2(__this, /*hidden argument*/Component_GetComponent_TisCharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E_m3DB1DD5819F96D7C7F6F19C12138AC48D21DBBF2_RuntimeMethod_var); __this->set_characterController_12(L_2); } IL_001a: { // if (capsuleCollider == null) CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_3 = __this->get_capsuleCollider_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0034; } } { // capsuleCollider = GetComponent<CapsuleCollider>(); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_5 = Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9(__this, /*hidden argument*/Component_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m2B9A09217489CB456933DEA112CA70C10AD3B9F9_RuntimeMethod_var); __this->set_capsuleCollider_13(L_5); } IL_0034: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerController::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_Start_mEC69B3E77EAE8D5CC122494133D99771DB2B2F99 (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { { // capsuleCollider.enabled = isServer; CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_0 = __this->get_capsuleCollider_13(); bool L_1 = NetworkBehaviour_get_isServer_m6CF3499812C1F2679BB924165AA79C59E6D2EBCF(__this, /*hidden argument*/NULL); NullCheck(L_0); Collider_set_enabled_m047B4D830755CD36671F7A60BFAA9C0D61F6C4A1(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerController::OnStartLocalPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnStartLocalPlayer_m46485A8BC1AD7D95D8D2830F8F32814CC4A2045D (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { { // characterController.enabled = true; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_0 = __this->get_characterController_12(); NullCheck(L_0); Collider_set_enabled_m047B4D830755CD36671F7A60BFAA9C0D61F6C4A1(L_0, (bool)1, /*hidden argument*/NULL); // Camera.main.orthographic = false; Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_1 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_1); Camera_set_orthographic_m38A872FC2D448915EE94C4FB72FB02D4C3F56C52(L_1, (bool)0, /*hidden argument*/NULL); // Camera.main.transform.SetParent(transform); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_2 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_2); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_2, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_3); Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E(L_3, L_4, /*hidden argument*/NULL); // Camera.main.transform.localPosition = new Vector3(0f, 3f, -8f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_5 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_5); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_5, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7; memset((&L_7), 0, sizeof(L_7)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_7), (0.0f), (3.0f), (-8.0f), /*hidden argument*/NULL); NullCheck(L_6); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_6, L_7, /*hidden argument*/NULL); // Camera.main.transform.localEulerAngles = new Vector3(10f, 0f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_8 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_8); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_9 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_8, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10; memset((&L_10), 0, sizeof(L_10)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_10), (10.0f), (0.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_9); Transform_set_localEulerAngles_mB63076996124DC76E6902A81677A6E3C814C693B(L_9, L_10, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerController::OnDisable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_OnDisable_mF159E3526F1F5D4285EB09497F4BFE8E32123DBB (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_OnDisable_mF159E3526F1F5D4285EB09497F4BFE8E32123DBB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (isLocalPlayer && Camera.main != null) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0076; } } { Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_1 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_0076; } } { // Camera.main.orthographic = true; Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_3 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_3); Camera_set_orthographic_m38A872FC2D448915EE94C4FB72FB02D4C3F56C52(L_3, (bool)1, /*hidden argument*/NULL); // Camera.main.transform.SetParent(null); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_4 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_4); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_4, /*hidden argument*/NULL); NullCheck(L_5); Transform_SetParent_m24E34EBEF76528C99AFA017F157EE8B3E3116B1E(L_5, (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 *)NULL, /*hidden argument*/NULL); // Camera.main.transform.localPosition = new Vector3(0f, 70f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_6 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_6); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_6, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; memset((&L_8), 0, sizeof(L_8)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_8), (0.0f), (70.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_7); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_7, L_8, /*hidden argument*/NULL); // Camera.main.transform.localEulerAngles = new Vector3(90f, 0f, 0f); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_9 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_9); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_10 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_9, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_11; memset((&L_11), 0, sizeof(L_11)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_11), (90.0f), (0.0f), (0.0f), /*hidden argument*/NULL); NullCheck(L_10); Transform_set_localEulerAngles_mB63076996124DC76E6902A81677A6E3C814C693B(L_10, L_11, /*hidden argument*/NULL); } IL_0076: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerController::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_Update_mA3DFFF442FC0CBE50B89DE2F471AE0DC02590719 (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_Update_mA3DFFF442FC0CBE50B89DE2F471AE0DC02590719_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (!isLocalPlayer) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // horizontal = Input.GetAxis("Horizontal"); float L_1 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E, /*hidden argument*/NULL); __this->set_horizontal_17(L_1); // vertical = Input.GetAxis("Vertical"); float L_2 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A, /*hidden argument*/NULL); __this->set_vertical_18(L_2); // if (Input.GetKey(KeyCode.Q)) bool L_3 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (!L_3) { goto IL_0050; } } { // turn = Mathf.MoveTowards(turn, -maxTurnSpeed, turnSensitivity); float L_4 = __this->get_turn_19(); float L_5 = __this->get_maxTurnSpeed_16(); float L_6 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_7 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_4, ((-L_5)), L_6, /*hidden argument*/NULL); __this->set_turn_19(L_7); } IL_0050: { // if (Input.GetKey(KeyCode.E)) bool L_8 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (!L_8) { goto IL_0076; } } { // turn = Mathf.MoveTowards(turn, maxTurnSpeed, turnSensitivity); float L_9 = __this->get_turn_19(); float L_10 = __this->get_maxTurnSpeed_16(); float L_11 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_12 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_9, L_10, L_11, /*hidden argument*/NULL); __this->set_turn_19(L_12); } IL_0076: { // if (Input.GetKey(KeyCode.Q) && Input.GetKey(KeyCode.E)) bool L_13 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (!L_13) { goto IL_00a4; } } { bool L_14 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (!L_14) { goto IL_00a4; } } { // turn = Mathf.MoveTowards(turn, 0, turnSensitivity); float L_15 = __this->get_turn_19(); float L_16 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_17 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_15, (0.0f), L_16, /*hidden argument*/NULL); __this->set_turn_19(L_17); } IL_00a4: { // if (!Input.GetKey(KeyCode.Q) && !Input.GetKey(KeyCode.E)) bool L_18 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)113), /*hidden argument*/NULL); if (L_18) { goto IL_00d2; } } { bool L_19 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)101), /*hidden argument*/NULL); if (L_19) { goto IL_00d2; } } { // turn = Mathf.MoveTowards(turn, 0, turnSensitivity); float L_20 = __this->get_turn_19(); float L_21 = __this->get_turnSensitivity_15(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_22 = Mathf_MoveTowards_mE0689B09DD10CD59A01EE9E24880A5BA495FD321(L_20, (0.0f), L_21, /*hidden argument*/NULL); __this->set_turn_19(L_22); } IL_00d2: { // if (isGrounded) bool L_23 = __this->get_isGrounded_21(); if (!L_23) { goto IL_00e1; } } { // isFalling = false; __this->set_isFalling_22((bool)0); } IL_00e1: { // if ((isGrounded || !isFalling) && jumpSpeed < 1f && Input.GetKey(KeyCode.Space)) bool L_24 = __this->get_isGrounded_21(); if (L_24) { goto IL_00f1; } } { bool L_25 = __this->get_isFalling_22(); if (L_25) { goto IL_0123; } } IL_00f1: { float L_26 = __this->get_jumpSpeed_20(); if ((!(((float)L_26) < ((float)(1.0f))))) { goto IL_0123; } } { bool L_27 = Input_GetKey_mFDD450A4C61F2930928B12287FFBD1ACCB71E429(((int32_t)32), /*hidden argument*/NULL); if (!L_27) { goto IL_0123; } } { // jumpSpeed = Mathf.Lerp(jumpSpeed, 1f, 0.5f); float L_28 = __this->get_jumpSpeed_20(); IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_29 = Mathf_Lerp_m8A2A50B945F42D579EDF44D5EE79E85A4DA59616(L_28, (1.0f), (0.5f), /*hidden argument*/NULL); __this->set_jumpSpeed_20(L_29); // } return; } IL_0123: { // else if (!isGrounded) bool L_30 = __this->get_isGrounded_21(); if (L_30) { goto IL_013d; } } { // isFalling = true; __this->set_isFalling_22((bool)1); // jumpSpeed = 0; __this->set_jumpSpeed_20((0.0f)); } IL_013d: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerController::FixedUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_FixedUpdate_m711377BBEEE509BCC15443840527D7B10EA562AD (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController_FixedUpdate_m711377BBEEE509BCC15443840527D7B10EA562AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!isLocalPlayer || characterController == null) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0016; } } { CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_1 = __this->get_characterController_12(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_2 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_0017; } } IL_0016: { // return; return; } IL_0017: { // transform.Rotate(0f, turn * Time.fixedDeltaTime, 0f); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); float L_4 = __this->get_turn_19(); float L_5 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); NullCheck(L_3); Transform_Rotate_mA3AE6D55AA9CC88A8F03C2B0B7CB3DB45ABA6A8E(L_3, (0.0f), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), (0.0f), /*hidden argument*/NULL); // Vector3 direction = new Vector3(horizontal, jumpSpeed, vertical); float L_6 = __this->get_horizontal_17(); float L_7 = __this->get_jumpSpeed_20(); float L_8 = __this->get_vertical_18(); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), L_6, L_7, L_8, /*hidden argument*/NULL); // direction = Vector3.ClampMagnitude(direction, 1f); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = Vector3_ClampMagnitude_mF85598307D6CF3B4E5BEEB218CEDDCE39CDF3336(L_9, (1.0f), /*hidden argument*/NULL); V_0 = L_10; // direction = transform.TransformDirection(direction); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_11 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = V_0; NullCheck(L_11); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13 = Transform_TransformDirection_m6B5E3F0A7C6323159DEC6D9BC035FB53ADD96E91(L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; // direction *= moveSpeed; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_14 = V_0; float L_15 = __this->get_moveSpeed_14(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_16 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_14, L_15, /*hidden argument*/NULL); V_0 = L_16; // if (jumpSpeed > 0) float L_17 = __this->get_jumpSpeed_20(); if ((!(((float)L_17) > ((float)(0.0f))))) { goto IL_009d; } } { // characterController.Move(direction * Time.fixedDeltaTime); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_18 = __this->get_characterController_12(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = V_0; float L_20 = Time_get_fixedDeltaTime_m8E94ECFF6A6A1D9B5D60BF82D116D540852484E5(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_21 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_19, L_20, /*hidden argument*/NULL); NullCheck(L_18); CharacterController_Move_mE0EBC32C72A0BEC18EDEBE748D44309A4BA32E60(L_18, L_21, /*hidden argument*/NULL); goto IL_00aa; } IL_009d: { // characterController.SimpleMove(direction); CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_22 = __this->get_characterController_12(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_23 = V_0; NullCheck(L_22); CharacterController_SimpleMove_m13296E1514AD800B545C45B1824261AB7FFDFF41(L_22, L_23, /*hidden argument*/NULL); } IL_00aa: { // isGrounded = characterController.isGrounded; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_24 = __this->get_characterController_12(); NullCheck(L_24); bool L_25 = CharacterController_get_isGrounded_m327A1A1940F225FE81E751F255316BB0D8698CBC(L_24, /*hidden argument*/NULL); __this->set_isGrounded_21(L_25); // velocity = characterController.velocity; CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * L_26 = __this->get_characterController_12(); NullCheck(L_26); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27 = CharacterController_get_velocity_m13A2C2D13A171D9A6E899C0E472C68FCF5E3D5A6(L_26, /*hidden argument*/NULL); __this->set_velocity_23(L_27); // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerController::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController__ctor_m9FAA1AEE837386533C653A795C692B70CE3233E2 (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerController__ctor_m9FAA1AEE837386533C653A795C692B70CE3233E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float moveSpeed = 8f; __this->set_moveSpeed_14((8.0f)); // public float turnSensitivity = 5f; __this->set_turnSensitivity_15((5.0f)); // public float maxTurnSpeed = 150f; __this->set_maxTurnSpeed_16((150.0f)); // public bool isGrounded = true; __this->set_isGrounded_21((bool)1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerController::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerController_MirrorProcessed_m6E44FD9E7CA38837E7406FF2AF6F16AE9E7FDB4A (PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.OneK.PlayerMovement::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerMovement_Update_mE25D2FF7F6DD277D2881621B0A8224B958BEF628 (PlayerMovement_tEA0B6190139E09855FC49E2518EE11D217B5BFC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerMovement_Update_mE25D2FF7F6DD277D2881621B0A8224B958BEF628_MetadataUsageId); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; float V_1 = 0.0f; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_2; memset((&V_2), 0, sizeof(V_2)); { // if (!isLocalPlayer) return; bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { // if (!isLocalPlayer) return; return; } IL_0009: { // float h = Input.GetAxis("Horizontal"); float L_1 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E, /*hidden argument*/NULL); V_0 = L_1; // float v = Input.GetAxis("Vertical"); float L_2 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A, /*hidden argument*/NULL); V_1 = L_2; // Vector3 dir = new Vector3(h, 0, v); float L_3 = V_0; float L_4 = V_1; Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_2), L_3, (0.0f), L_4, /*hidden argument*/NULL); // transform.position += dir.normalized * (Time.deltaTime * speed); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6 = L_5; NullCheck(L_6); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_6, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8 = Vector3_get_normalized_m2FA6DF38F97BDA4CCBDAE12B9FE913A241DAC8D5((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_2), /*hidden argument*/NULL); float L_9 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); float L_10 = __this->get_speed_12(); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_11 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_8, ((float)il2cpp_codegen_multiply((float)L_9, (float)L_10)), /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline(L_7, L_11, /*hidden argument*/NULL); NullCheck(L_6); Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91(L_6, L_12, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.OneK.PlayerMovement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerMovement__ctor_m303E024D0B60C512C65180A6B4FBF591FF48B6D7 (PlayerMovement_tEA0B6190139E09855FC49E2518EE11D217B5BFC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerMovement__ctor_m303E024D0B60C512C65180A6B4FBF591FF48B6D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float speed = 5; __this->set_speed_12((5.0f)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.OneK.PlayerMovement::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerMovement_MirrorProcessed_mC39B4ABC6D18AD10D9AC39EE4CB2ED61279C4E9E (PlayerMovement_tEA0B6190139E09855FC49E2518EE11D217B5BFC0 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::OnGUI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_OnGUI_m38EF24B5FCD512C8849B7525D5210B1EF35DE3EC (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_OnGUI_m38EF24B5FCD512C8849B7525D5210B1EF35DE3EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (!isLocalPlayer && clientMatchIndex < 0) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (L_0) { goto IL_002b; } } { int32_t L_1 = __this->get_clientMatchIndex_16(); if ((((int32_t)L_1) >= ((int32_t)0))) { goto IL_002b; } } { // clientMatchIndex = NetworkClient.connection.identity.GetComponent<PlayerScore>().matchIndex; IL2CPP_RUNTIME_CLASS_INIT(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_il2cpp_TypeInfo_var); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_2 = NetworkClient_get_connection_m5439CD4BADA80C781B783F013464517F581F9557_inline(/*hidden argument*/NULL); NullCheck(L_2); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_3 = NetworkConnection_get_identity_mF8F7D1AA28117C2F53450E6697D2966DB1B16F45_inline(L_2, /*hidden argument*/NULL); NullCheck(L_3); PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * L_4 = Component_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m7B6A4CBDF36DAC6F05A925A85F9503868235B98C(L_3, /*hidden argument*/Component_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m7B6A4CBDF36DAC6F05A925A85F9503868235B98C_RuntimeMethod_var); NullCheck(L_4); int32_t L_5 = L_4->get_matchIndex_14(); __this->set_clientMatchIndex_16(L_5); } IL_002b: { // if (isLocalPlayer || matchIndex == clientMatchIndex) bool L_6 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (L_6) { goto IL_0041; } } { int32_t L_7 = __this->get_matchIndex_14(); int32_t L_8 = __this->get_clientMatchIndex_16(); if ((!(((uint32_t)L_7) == ((uint32_t)L_8)))) { goto IL_008a; } } IL_0041: { // GUI.Box(new Rect(10f + (scoreIndex * 110), 10f, 100f, 25f), $"P{playerNumber}: {score}"); int32_t L_9 = __this->get_scoreIndex_13(); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_10; memset((&L_10), 0, sizeof(L_10)); Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70((&L_10), ((float)il2cpp_codegen_add((float)(10.0f), (float)(((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)((int32_t)110)))))))), (10.0f), (100.0f), (25.0f), /*hidden argument*/NULL); int32_t L_11 = __this->get_playerNumber_12(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_12); uint32_t L_14 = __this->get_score_15(); uint32_t L_15 = L_14; RuntimeObject * L_16 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_15); String_t* L_17 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralD742F5F4365B2AFE21EB9C41068D3381D9739383, L_13, L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(GUI_tBCBBE29117D8093644C6E72B1CE3FB65C2CDCCC1_il2cpp_TypeInfo_var); GUI_Box_mA4BA00A35EAEA960B5F645B66F95DA0C59CB09D9(L_10, L_17, /*hidden argument*/NULL); } IL_008a: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore__ctor_mD7F0C0D6F5D025B8E5D8FA6093D715E3E2D6414D (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore__ctor_mD7F0C0D6F5D025B8E5D8FA6093D715E3E2D6414D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public int clientMatchIndex = -1; __this->set_clientMatchIndex_16((-1)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_MirrorProcessed_m25B3CA4F5C9A58398E303F24D4280E11F473A9E0 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, const RuntimeMethod* method) { { return; } } // System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::get_NetworkplayerNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlayerScore_get_NetworkplayerNumber_m303EFC8065A77BB0475A73DAE872B3EF01F59332 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_playerNumber_12(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_NetworkplayerNumber(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_NetworkplayerNumber_mB1D8FC7DDFA50ACF3118B71B82FD17797269E9F8 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_set_NetworkplayerNumber_mB1D8FC7DDFA50ACF3118B71B82FD17797269E9F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_playerNumber_12(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { int32_t L_3 = __this->get_playerNumber_12(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_playerNumber_12(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); } IL_0032: { return; } } // System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::get_NetworkscoreIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlayerScore_get_NetworkscoreIndex_m8C8494A1CF64D95660E8CCE8D2D9ABB41BCB90DE (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_scoreIndex_13(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_NetworkscoreIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_NetworkscoreIndex_m0EB06183F96E9F4D3A4ABAD15EA0171B3F1DFD6A (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_set_NetworkscoreIndex_m0EB06183F96E9F4D3A4ABAD15EA0171B3F1DFD6A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_scoreIndex_13(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { int32_t L_3 = __this->get_scoreIndex_13(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_scoreIndex_13(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)2LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); } IL_0032: { return; } } // System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::get_NetworkmatchIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlayerScore_get_NetworkmatchIndex_m9701D39E371217218614A45DF88FFBA66F5F6BA8 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_matchIndex_14(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_NetworkmatchIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_NetworkmatchIndex_mE38D225BFC2E1E25D66C076E9CBC025D121DD3ED (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_set_NetworkmatchIndex_mE38D225BFC2E1E25D66C076E9CBC025D121DD3ED_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_matchIndex_14(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { int32_t L_3 = __this->get_matchIndex_14(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_matchIndex_14(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)4LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); } IL_0032: { return; } } // System.UInt32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::get_Networkscore() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t PlayerScore_get_Networkscore_m88B317DAA72A96F8D84C5FCCD1186FAC31CFC8A8 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, const RuntimeMethod* method) { uint32_t V_0 = 0; { uint32_t L_0 = __this->get_score_15(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::set_Networkscore(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_Networkscore_m901503AC45EE829EE07429D973D3C42D65F34415 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_set_Networkscore_m901503AC45EE829EE07429D973D3C42D65F34415_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; { uint32_t L_0 = ___value0; uint32_t* L_1 = __this->get_address_of_score_15(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB(__this, L_0, (uint32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { uint32_t L_3 = __this->get_score_15(); V_0 = L_3; uint32_t L_4 = ___value0; uint32_t* L_5 = __this->get_address_of_score_15(); NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C(__this, L_4, (uint32_t*)L_5, ((int64_t)8LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C_RuntimeMethod_var); } IL_0032: { return; } } // System.Boolean Mirror.Examples.MultipleAdditiveScenes.PlayerScore::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayerScore_SerializeSyncVars_m8049A5A8BCFE146C0B6A5F296A49B12B0D8E0000 (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_SerializeSyncVars_m8049A5A8BCFE146C0B6A5F296A49B12B0D8E0000_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_0041; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; int32_t L_5 = __this->get_playerNumber_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_4, L_5, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; int32_t L_7 = __this->get_scoreIndex_13(); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_6, L_7, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_8 = ___writer0; int32_t L_9 = __this->get_matchIndex_14(); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_8, L_9, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_10 = ___writer0; uint32_t L_11 = __this->get_score_15(); NetworkWriterExtensions_WritePackedUInt32_m62071E4BC1B49A2963C82D12E0411140020A48C0(L_10, L_11, /*hidden argument*/NULL); return (bool)1; } IL_0041: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_12 = ___writer0; uint64_t L_13 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_12, L_13, /*hidden argument*/NULL); uint64_t L_14 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_14&(int64_t)((int64_t)1LL)))) { goto IL_0071; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_15 = ___writer0; int32_t L_16 = __this->get_playerNumber_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_15, L_16, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0071: { uint64_t L_17 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_17&(int64_t)((int64_t)2LL)))) { goto IL_0095; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_18 = ___writer0; int32_t L_19 = __this->get_scoreIndex_13(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_18, L_19, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0095: { uint64_t L_20 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_20&(int64_t)((int64_t)4LL)))) { goto IL_00b9; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_21 = ___writer0; int32_t L_22 = __this->get_matchIndex_14(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_21, L_22, /*hidden argument*/NULL); V_0 = (bool)1; } IL_00b9: { uint64_t L_23 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_23&(int64_t)((int64_t)8LL)))) { goto IL_00dd; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_24 = ___writer0; uint32_t L_25 = __this->get_score_15(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt32_m62071E4BC1B49A2963C82D12E0411140020A48C0(L_24, L_25, /*hidden argument*/NULL); V_0 = (bool)1; } IL_00dd: { bool L_26 = V_0; return L_26; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.PlayerScore::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_DeserializeSyncVars_m22F558810CBD81876D3BB3DCEAEA5E35E75D55FC (PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_DeserializeSyncVars_m22F558810CBD81876D3BB3DCEAEA5E35E75D55FC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; uint32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; uint32_t V_8 = 0; { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_0067; } } { int32_t L_3 = __this->get_playerNumber_12(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_5 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_4, /*hidden argument*/NULL); PlayerScore_set_NetworkplayerNumber_mB1D8FC7DDFA50ACF3118B71B82FD17797269E9F8(__this, L_5, /*hidden argument*/NULL); int32_t L_6 = __this->get_scoreIndex_13(); V_2 = L_6; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_7 = ___reader0; int32_t L_8 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_7, /*hidden argument*/NULL); PlayerScore_set_NetworkscoreIndex_m0EB06183F96E9F4D3A4ABAD15EA0171B3F1DFD6A(__this, L_8, /*hidden argument*/NULL); int32_t L_9 = __this->get_matchIndex_14(); V_3 = L_9; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_10 = ___reader0; int32_t L_11 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_10, /*hidden argument*/NULL); PlayerScore_set_NetworkmatchIndex_mE38D225BFC2E1E25D66C076E9CBC025D121DD3ED(__this, L_11, /*hidden argument*/NULL); uint32_t L_12 = __this->get_score_15(); V_4 = L_12; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_13 = ___reader0; uint32_t L_14 = NetworkReaderExtensions_ReadPackedUInt32_mCE79DF006ABB39CB48E2B9F1553A0AB57ADDC0CF(L_13, /*hidden argument*/NULL); PlayerScore_set_Networkscore_m901503AC45EE829EE07429D973D3C42D65F34415(__this, L_14, /*hidden argument*/NULL); return; } IL_0067: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_15 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_16 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_15, /*hidden argument*/NULL); V_0 = L_16; int64_t L_17 = V_0; if (!((int64_t)((int64_t)L_17&(int64_t)((int64_t)1LL)))) { goto IL_0095; } } { int32_t L_18 = __this->get_playerNumber_12(); V_5 = L_18; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_19 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_20 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_19, /*hidden argument*/NULL); PlayerScore_set_NetworkplayerNumber_mB1D8FC7DDFA50ACF3118B71B82FD17797269E9F8(__this, L_20, /*hidden argument*/NULL); } IL_0095: { int64_t L_21 = V_0; if (!((int64_t)((int64_t)L_21&(int64_t)((int64_t)2LL)))) { goto IL_00bc; } } { int32_t L_22 = __this->get_scoreIndex_13(); V_6 = L_22; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_23 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_24 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_23, /*hidden argument*/NULL); PlayerScore_set_NetworkscoreIndex_m0EB06183F96E9F4D3A4ABAD15EA0171B3F1DFD6A(__this, L_24, /*hidden argument*/NULL); } IL_00bc: { int64_t L_25 = V_0; if (!((int64_t)((int64_t)L_25&(int64_t)((int64_t)4LL)))) { goto IL_00e3; } } { int32_t L_26 = __this->get_matchIndex_14(); V_7 = L_26; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_27 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_28 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_27, /*hidden argument*/NULL); PlayerScore_set_NetworkmatchIndex_mE38D225BFC2E1E25D66C076E9CBC025D121DD3ED(__this, L_28, /*hidden argument*/NULL); } IL_00e3: { int64_t L_29 = V_0; if (!((int64_t)((int64_t)L_29&(int64_t)((int64_t)8LL)))) { goto IL_010a; } } { uint32_t L_30 = __this->get_score_15(); V_8 = L_30; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_31 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint32_t L_32 = NetworkReaderExtensions_ReadPackedUInt32_mCE79DF006ABB39CB48E2B9F1553A0AB57ADDC0CF(L_31, /*hidden argument*/NULL); PlayerScore_set_Networkscore_m901503AC45EE829EE07429D973D3C42D65F34415(__this, L_32, /*hidden argument*/NULL); } IL_010a: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.NetworkRoom.PlayerScore::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_OnStartServer_mA1D10FBDC68F0399C581F0738808427F6AF05D80 (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, const RuntimeMethod* method) { { // index = connectionToClient.connectionId; NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_0 = NetworkBehaviour_get_connectionToClient_m59547ED6321FBCB2B5BFF0B58F22202E981C2BD2(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = L_0->get_connectionId_4(); PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerScore::OnGUI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_OnGUI_m0B2DF3D26F76E84C35BD21A900B7734D73171F1D (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_OnGUI_m0B2DF3D26F76E84C35BD21A900B7734D73171F1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // GUI.Box(new Rect(10f + (index * 110), 10f, 100f, 25f), $"P{index}: {score.ToString("0000000")}"); int32_t L_0 = __this->get_index_12(); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_1; memset((&L_1), 0, sizeof(L_1)); Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70((&L_1), ((float)il2cpp_codegen_add((float)(10.0f), (float)(((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)((int32_t)110)))))))), (10.0f), (100.0f), (25.0f), /*hidden argument*/NULL); int32_t L_2 = __this->get_index_12(); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); uint32_t* L_5 = __this->get_address_of_score_13(); String_t* L_6 = UInt32_ToString_mFE8BEBC3E66C2EC6D5CB25B31BE498D48E93CAB5((uint32_t*)L_5, _stringLiteralF6A577D434AC942DDB38F171010FC5CEBF94E542, /*hidden argument*/NULL); String_t* L_7 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralD742F5F4365B2AFE21EB9C41068D3381D9739383, L_4, L_6, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(GUI_tBCBBE29117D8093644C6E72B1CE3FB65C2CDCCC1_il2cpp_TypeInfo_var); GUI_Box_mA4BA00A35EAEA960B5F645B66F95DA0C59CB09D9(L_1, L_7, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerScore::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore__ctor_mB996E4181A39CCC236BC656E6547F01E670C2968 (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore__ctor_mB996E4181A39CCC236BC656E6547F01E670C2968_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.NetworkRoom.PlayerScore::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_MirrorProcessed_m0891C62CF21C9F79CB787E08090D3D1D0C51782A (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, const RuntimeMethod* method) { { return; } } // System.Int32 Mirror.Examples.NetworkRoom.PlayerScore::get_Networkindex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlayerScore_get_Networkindex_mE3D7F48A3C219731DC11505E37FFE21CBD98AD42 (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_index_12(); return L_0; } } // System.Void Mirror.Examples.NetworkRoom.PlayerScore::set_Networkindex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_index_12(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { int32_t L_3 = __this->get_index_12(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_index_12(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); } IL_0032: { return; } } // System.UInt32 Mirror.Examples.NetworkRoom.PlayerScore::get_Networkscore() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t PlayerScore_get_Networkscore_m96088C3E3DBE5F642F49B5D145B51684EDFD83C3 (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, const RuntimeMethod* method) { uint32_t V_0 = 0; { uint32_t L_0 = __this->get_score_13(); return L_0; } } // System.Void Mirror.Examples.NetworkRoom.PlayerScore::set_Networkscore(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_set_Networkscore_m2419F0AD2B208971FF2D3C57413A71D3A33400C9 (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_set_Networkscore_m2419F0AD2B208971FF2D3C57413A71D3A33400C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; { uint32_t L_0 = ___value0; uint32_t* L_1 = __this->get_address_of_score_13(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB(__this, L_0, (uint32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_mFEC402AECCD2AD77DCD85941ACA3338EBD98BEDB_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { uint32_t L_3 = __this->get_score_13(); V_0 = L_3; uint32_t L_4 = ___value0; uint32_t* L_5 = __this->get_address_of_score_13(); NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C(__this, L_4, (uint32_t*)L_5, ((int64_t)2LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisUInt32_tE60352A06233E4E69DD198BCC67142159F686B15_m73F4F6231A0FFDFB32A68982A5CEB7BB5798AC5C_RuntimeMethod_var); } IL_0032: { return; } } // System.Boolean Mirror.Examples.NetworkRoom.PlayerScore::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayerScore_SerializeSyncVars_mF8357BCB553EEC09211D5DCB4E6B304E0A6D10AC (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_SerializeSyncVars_mF8357BCB553EEC09211D5DCB4E6B304E0A6D10AC_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_0029; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; int32_t L_5 = __this->get_index_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_4, L_5, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; uint32_t L_7 = __this->get_score_13(); NetworkWriterExtensions_WritePackedUInt32_m62071E4BC1B49A2963C82D12E0411140020A48C0(L_6, L_7, /*hidden argument*/NULL); return (bool)1; } IL_0029: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_8 = ___writer0; uint64_t L_9 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_8, L_9, /*hidden argument*/NULL); uint64_t L_10 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_10&(int64_t)((int64_t)1LL)))) { goto IL_0059; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_11 = ___writer0; int32_t L_12 = __this->get_index_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_11, L_12, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0059: { uint64_t L_13 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_13&(int64_t)((int64_t)2LL)))) { goto IL_007d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_14 = ___writer0; uint32_t L_15 = __this->get_score_13(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt32_m62071E4BC1B49A2963C82D12E0411140020A48C0(L_14, L_15, /*hidden argument*/NULL); V_0 = (bool)1; } IL_007d: { bool L_16 = V_0; return L_16; } } // System.Void Mirror.Examples.NetworkRoom.PlayerScore::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerScore_DeserializeSyncVars_mEE5682F2A42618C2B1778700A672427907B365AB (PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlayerScore_DeserializeSyncVars_mEE5682F2A42618C2B1778700A672427907B365AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int32_t V_1 = 0; uint32_t V_2 = 0; int32_t V_3 = 0; uint32_t V_4 = 0; { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_003b; } } { int32_t L_3 = __this->get_index_12(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_5 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_4, /*hidden argument*/NULL); PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E(__this, L_5, /*hidden argument*/NULL); uint32_t L_6 = __this->get_score_13(); V_2 = L_6; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_7 = ___reader0; uint32_t L_8 = NetworkReaderExtensions_ReadPackedUInt32_mCE79DF006ABB39CB48E2B9F1553A0AB57ADDC0CF(L_7, /*hidden argument*/NULL); PlayerScore_set_Networkscore_m2419F0AD2B208971FF2D3C57413A71D3A33400C9(__this, L_8, /*hidden argument*/NULL); return; } IL_003b: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_9 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_10 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_9, /*hidden argument*/NULL); V_0 = L_10; int64_t L_11 = V_0; if (!((int64_t)((int64_t)L_11&(int64_t)((int64_t)1LL)))) { goto IL_0069; } } { int32_t L_12 = __this->get_index_12(); V_3 = L_12; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_13 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_14 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_13, /*hidden argument*/NULL); PlayerScore_set_Networkindex_mCCB600F7E4F44971E082BD7A3EB9F0CC8A53F63E(__this, L_14, /*hidden argument*/NULL); } IL_0069: { int64_t L_15 = V_0; if (!((int64_t)((int64_t)L_15&(int64_t)((int64_t)2LL)))) { goto IL_0090; } } { uint32_t L_16 = __this->get_score_13(); V_4 = L_16; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_17 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint32_t L_18 = NetworkReaderExtensions_ReadPackedUInt32_mCE79DF006ABB39CB48E2B9F1553A0AB57ADDC0CF(L_17, /*hidden argument*/NULL); PlayerScore_set_Networkscore_m2419F0AD2B208971FF2D3C57413A71D3A33400C9(__this, L_18, /*hidden argument*/NULL); } IL_0090: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Tanks.Projectile::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Projectile_OnStartServer_m40D37CC82544C7643AEE17E8B03766EBF2E9AB04 (Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Projectile_OnStartServer_m40D37CC82544C7643AEE17E8B03766EBF2E9AB04_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // Invoke(nameof(DestroySelf), destroyAfter); float L_0 = __this->get_destroyAfter_12(); MonoBehaviour_Invoke_m4AAB759653B1C6FB0653527F4DDC72D1E9162CC4(__this, _stringLiteralF441E5D0E66E334690F8F1B6B7E479CE6D56D781, L_0, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Projectile::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Projectile_Start_m5C230A0906072EE269DD6F18E1AC1CFD7922A29B (Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Projectile_Start_m5C230A0906072EE269DD6F18E1AC1CFD7922A29B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // rigidBody.AddForce(transform.forward * force); Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * L_0 = __this->get_rigidBody_13(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = Transform_get_forward_mD850B9ECF892009E3485408DC0D375165B7BF053(L_1, /*hidden argument*/NULL); float L_3 = __this->get_force_14(); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); Rigidbody_AddForce_mDFB0D57C25682B826999B0074F5C0FD399C6401D(L_0, L_4, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Projectile::DestroySelf() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Projectile_DestroySelf_m5B6B7D0E5482882F2EB27359F06E91F60E3E53FE (Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Projectile_DestroySelf_m5B6B7D0E5482882F2EB27359F06E91F60E3E53FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(_stringLiteral27760DB3510E1FCB3699201F731362D5CB49BE94, /*hidden argument*/NULL); return; } IL_0015: { // NetworkServer.Destroy(gameObject); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Destroy_m113ADC5542A4627A397C75DC3ECC9BC87F404FFB(L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Projectile::OnTriggerEnter(UnityEngine.Collider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Projectile_OnTriggerEnter_mFD17CEE3DC2A51B6EA2D464095F328B99539FD3C (Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * __this, Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___co0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Projectile_OnTriggerEnter_mFD17CEE3DC2A51B6EA2D464095F328B99539FD3C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // if (co.tag.Equals("Player") && co.gameObject != source) Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_1 = ___co0; NullCheck(L_1); String_t* L_2 = Component_get_tag_m77B4A7356E58F985216CC53966F7A9699454803E(L_1, /*hidden argument*/NULL); NullCheck(L_2); bool L_3 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_2, _stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70, /*hidden argument*/NULL); if (!L_3) { goto IL_0065; } } { Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_4 = ___co0; NullCheck(L_4); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_5 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_4, /*hidden argument*/NULL); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = __this->get_source_16(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_7 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_5, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0065; } } { // co.GetComponent<Tank>().health -= damage; Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_8 = ___co0; NullCheck(L_8); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_9 = Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92(L_8, /*hidden argument*/Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92_RuntimeMethod_var); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_10 = L_9; NullCheck(L_10); int32_t L_11 = L_10->get_health_18(); int32_t L_12 = __this->get_damage_15(); NullCheck(L_10); Tank_set_Networkhealth_m507DDE5DDB11E1627F66444DB398722F8F4FD183(L_10, ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); // source.GetComponent<Tank>().score += damage; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_13 = __this->get_source_16(); NullCheck(L_13); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_14 = GameObject_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m3B73C0CBE3BBEB45E5F900633A89565B3DDC0848(L_13, /*hidden argument*/GameObject_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m3B73C0CBE3BBEB45E5F900633A89565B3DDC0848_RuntimeMethod_var); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_15 = L_14; NullCheck(L_15); int32_t L_16 = L_15->get_score_19(); int32_t L_17 = __this->get_damage_15(); NullCheck(L_15); Tank_set_Networkscore_m07BB7DE07AA067E4B46F4BE1DA8A8A8D531E50F2(L_15, ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), /*hidden argument*/NULL); } IL_0065: { // NetworkServer.Destroy(gameObject); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_18 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Destroy_m113ADC5542A4627A397C75DC3ECC9BC87F404FFB(L_18, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Projectile::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Projectile__ctor_mCE92CD2A16DA4259706391DC52BB7E25D233D8AD (Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Projectile__ctor_mCE92CD2A16DA4259706391DC52BB7E25D233D8AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float destroyAfter = 1; __this->set_destroyAfter_12((1.0f)); // public float force = 1000; __this->set_force_14((1000.0f)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Projectile::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Projectile_MirrorProcessed_mA58B5FB7C8A3FD7DF2CBEF4080B6032F27CF8B0A (Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Additive.RandomColor::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_OnStartServer_mA0D2C0ADD514DF8C75A79F4339E193C6A085C68E (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, const RuntimeMethod* method) { { // base.OnStartServer(); NetworkBehaviour_OnStartServer_m7E498D9B74008DCD512C4A01C847795893A5ED2D(__this, /*hidden argument*/NULL); // color = Random.ColorHSV(0f, 1f, 1f, 1f, 0.5f, 1f); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = Random_ColorHSV_m35A32E1CE7C2E42BB084EBCAF521CF03205DBED8((0.0f), (1.0f), (1.0f), (1.0f), (0.5f), (1.0f), /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = Color32_op_Implicit_mD17E8145D2D32EF369EFE349C4D32E839F7D7AA4(L_0, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mA7548122671BB11BE0060B116365D4421A11CA7A(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Additive.RandomColor::SetColor(UnityEngine.Color32,UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_SetColor_m6129B89CACF88207A69B7659AF624CEE8C8B8822 (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___oldColor0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___newColor1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_SetColor_m6129B89CACF88207A69B7659AF624CEE8C8B8822_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (cachedMaterial == null) cachedMaterial = GetComponentInChildren<Renderer>().material; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = __this->get_cachedMaterial_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001f; } } { // if (cachedMaterial == null) cachedMaterial = GetComponentInChildren<Renderer>().material; Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_2 = Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A(__this, /*hidden argument*/Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A_RuntimeMethod_var); NullCheck(L_2); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_3 = Renderer_get_material_mE6B01125502D08EE0D6DFE2EAEC064AD9BB31804(L_2, /*hidden argument*/NULL); __this->set_cachedMaterial_13(L_3); } IL_001f: { // cachedMaterial.color = newColor; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_4 = __this->get_cachedMaterial_13(); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = ___newColor1; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_6 = Color32_op_Implicit_m63F14F1A14B1A9A3EE4D154413EE229D3E001623(L_5, /*hidden argument*/NULL); NullCheck(L_4); Material_set_color_mC3C88E2389B7132EBF3EB0D1F040545176B795C0(L_4, L_6, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Additive.RandomColor::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_OnDestroy_m905DFE23834003F94C6A445EEBF14FBE48A34B40 (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_OnDestroy_m905DFE23834003F94C6A445EEBF14FBE48A34B40_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // Destroy(cachedMaterial); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = __this->get_cachedMaterial_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_Destroy_m3EEDB6ECD49A541EC826EA8E1C8B599F7AF67D30(L_0, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Additive.RandomColor::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor__ctor_mD65E3D099DE76D0FAC4DAB26F2C7C1A56B452C4B (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor__ctor_mD65E3D099DE76D0FAC4DAB26F2C7C1A56B452C4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public Color32 color = Color.black; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = Color_get_black_m67E91EB7017FC74D9AB5ADEF6B6929B7EFC9A982(/*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = Color32_op_Implicit_mD17E8145D2D32EF369EFE349C4D32E839F7D7AA4(L_0, /*hidden argument*/NULL); __this->set_color_12(L_1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Additive.RandomColor::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_MirrorProcessed_mD6C178D6E4B067B4A5D28BE6FAF10B4EB9C41209 (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, const RuntimeMethod* method) { { return; } } // UnityEngine.Color32 Mirror.Examples.Additive.RandomColor::get_Networkcolor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D RandomColor_get_Networkcolor_m5C4D0108223552F14B60361E5C2AC98CEFCA44F3 (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, const RuntimeMethod* method) { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_0; memset((&V_0), 0, sizeof(V_0)); { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = __this->get_color_12(); return L_0; } } // System.Void Mirror.Examples.Additive.RandomColor::set_Networkcolor(UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_set_Networkcolor_mA7548122671BB11BE0060B116365D4421A11CA7A (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_set_Networkcolor_mA7548122671BB11BE0060B116365D4421A11CA7A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_0; memset((&V_0), 0, sizeof(V_0)); { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = ___value0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_1 = __this->get_address_of_color_12(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_0, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_2) { goto IL_007c; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_3 = __this->get_color_12(); V_0 = L_3; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_4 = ___value0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_5 = __this->get_address_of_color_12(); NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8(__this, L_4, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_6 = NetworkServer_get_localClientActive_m9C4F4B8848458BB4A2EE6552EDE1E39792C2B3BA(/*hidden argument*/NULL); if (!L_6) { goto IL_007b; } } { bool L_7 = NetworkBehaviour_getSyncVarHookGuard_m04C7E518D055E786F2EDD648D995543282812D09(__this, ((int64_t)1LL), /*hidden argument*/NULL); if (L_7) { goto IL_007b; } } { NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)1LL), (bool)1, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_8 = V_0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_9 = ___value0; RandomColor_SetColor_m6129B89CACF88207A69B7659AF624CEE8C8B8822(__this, L_8, L_9, /*hidden argument*/NULL); NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)1LL), (bool)0, /*hidden argument*/NULL); } IL_007b: { } IL_007c: { return; } } // System.Boolean Mirror.Examples.Additive.RandomColor::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RandomColor_SerializeSyncVars_m604A072151BBDF55E255A3BD95690CF6709365EE (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_SerializeSyncVars_m604A072151BBDF55E255A3BD95690CF6709365EE_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_001d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = __this->get_color_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteColor32_mC430555DAD65FA8A1ACA7117122960F6412B3079(L_4, L_5, /*hidden argument*/NULL); return (bool)1; } IL_001d: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; uint64_t L_7 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_6, L_7, /*hidden argument*/NULL); uint64_t L_8 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_8&(int64_t)((int64_t)1LL)))) { goto IL_004d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_9 = ___writer0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_10 = __this->get_color_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteColor32_mC430555DAD65FA8A1ACA7117122960F6412B3079(L_9, L_10, /*hidden argument*/NULL); V_0 = (bool)1; } IL_004d: { bool L_11 = V_0; return L_11; } } // System.Void Mirror.Examples.Additive.RandomColor::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_DeserializeSyncVars_m1B40DF5AAEDC406FA542C594F4EFD4BF86B21AB5 (RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_DeserializeSyncVars_m1B40DF5AAEDC406FA542C594F4EFD4BF86B21AB5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_1; memset((&V_1), 0, sizeof(V_1)); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_2; memset((&V_2), 0, sizeof(V_2)); { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_004b; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_3 = __this->get_color_12(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = NetworkReaderExtensions_ReadColor32_m7926AFB64529E5FC7C51D390468AAB86722D01F7(L_4, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mA7548122671BB11BE0060B116365D4421A11CA7A(__this, L_5, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_6 = V_1; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_7 = __this->get_address_of_color_12(); bool L_8 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_6, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_7, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_8) { goto IL_0049; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_9 = V_1; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_10 = __this->get_color_12(); RandomColor_SetColor_m6129B89CACF88207A69B7659AF624CEE8C8B8822(__this, L_9, L_10, /*hidden argument*/NULL); } IL_0049: { return; } IL_004b: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_11 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_12 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_11, /*hidden argument*/NULL); V_0 = L_12; int64_t L_13 = V_0; if (!((int64_t)((int64_t)L_13&(int64_t)((int64_t)1LL)))) { goto IL_009f; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_14 = __this->get_color_12(); V_2 = L_14; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_15 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_16 = NetworkReaderExtensions_ReadColor32_m7926AFB64529E5FC7C51D390468AAB86722D01F7(L_15, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mA7548122671BB11BE0060B116365D4421A11CA7A(__this, L_16, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_17 = V_2; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_18 = __this->get_address_of_color_12(); bool L_19 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_17, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_18, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_19) { goto IL_009e; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_20 = V_2; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_21 = __this->get_color_12(); RandomColor_SetColor_m6129B89CACF88207A69B7659AF624CEE8C8B8822(__this, L_20, L_21, /*hidden argument*/NULL); } IL_009e: { } IL_009f: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_OnStartServer_mAE01C195F6569DF94A4EB9A27936DE58D87804A1 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, const RuntimeMethod* method) { { // base.OnStartServer(); NetworkBehaviour_OnStartServer_m7E498D9B74008DCD512C4A01C847795893A5ED2D(__this, /*hidden argument*/NULL); // color = Random.ColorHSV(0f, 1f, 1f, 1f, 0.5f, 1f); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = Random_ColorHSV_m35A32E1CE7C2E42BB084EBCAF521CF03205DBED8((0.0f), (1.0f), (1.0f), (1.0f), (0.5f), (1.0f), /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = Color32_op_Implicit_mD17E8145D2D32EF369EFE349C4D32E839F7D7AA4(L_0, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mEBB96647EE45564A5F268F79C2CA346FCAB65429(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::SetColor(UnityEngine.Color32,UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_SetColor_m008A39F56E2810F334CB86A9079E9058FF880924 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ____0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___newColor1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_SetColor_m008A39F56E2810F334CB86A9079E9058FF880924_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (cachedMaterial == null) cachedMaterial = GetComponentInChildren<Renderer>().material; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = __this->get_cachedMaterial_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001f; } } { // if (cachedMaterial == null) cachedMaterial = GetComponentInChildren<Renderer>().material; Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_2 = Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A(__this, /*hidden argument*/Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A_RuntimeMethod_var); NullCheck(L_2); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_3 = Renderer_get_material_mE6B01125502D08EE0D6DFE2EAEC064AD9BB31804(L_2, /*hidden argument*/NULL); __this->set_cachedMaterial_13(L_3); } IL_001f: { // cachedMaterial.color = newColor; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_4 = __this->get_cachedMaterial_13(); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = ___newColor1; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_6 = Color32_op_Implicit_m63F14F1A14B1A9A3EE4D154413EE229D3E001623(L_5, /*hidden argument*/NULL); NullCheck(L_4); Material_set_color_mC3C88E2389B7132EBF3EB0D1F040545176B795C0(L_4, L_6, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_OnDestroy_mA7A6F080ED16F0CF28A55CC7EF36E45F14CB325B (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_OnDestroy_mA7A6F080ED16F0CF28A55CC7EF36E45F14CB325B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // Destroy(cachedMaterial); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = __this->get_cachedMaterial_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_Destroy_m3EEDB6ECD49A541EC826EA8E1C8B599F7AF67D30(L_0, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor__ctor_mF1B20EAFE83BF655FE459F0E92F26E6F9E81274D (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor__ctor_mF1B20EAFE83BF655FE459F0E92F26E6F9E81274D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public Color32 color = Color.black; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = Color_get_black_m67E91EB7017FC74D9AB5ADEF6B6929B7EFC9A982(/*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = Color32_op_Implicit_mD17E8145D2D32EF369EFE349C4D32E839F7D7AA4(L_0, /*hidden argument*/NULL); __this->set_color_12(L_1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_MirrorProcessed_mFF0A014CD61653F6F977F710C827172103EBF49F (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, const RuntimeMethod* method) { { return; } } // UnityEngine.Color32 Mirror.Examples.MultipleAdditiveScenes.RandomColor::get_Networkcolor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D RandomColor_get_Networkcolor_mF0E144CF6DC58B84B199ADFB665740D4999D18D9 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, const RuntimeMethod* method) { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_0; memset((&V_0), 0, sizeof(V_0)); { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = __this->get_color_12(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::set_Networkcolor(UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_set_Networkcolor_mEBB96647EE45564A5F268F79C2CA346FCAB65429 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_set_Networkcolor_mEBB96647EE45564A5F268F79C2CA346FCAB65429_MetadataUsageId); s_Il2CppMethodInitialized = true; } Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_0; memset((&V_0), 0, sizeof(V_0)); { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = ___value0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_1 = __this->get_address_of_color_12(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_0, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_2) { goto IL_007c; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_3 = __this->get_color_12(); V_0 = L_3; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_4 = ___value0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_5 = __this->get_address_of_color_12(); NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8(__this, L_4, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_6 = NetworkServer_get_localClientActive_m9C4F4B8848458BB4A2EE6552EDE1E39792C2B3BA(/*hidden argument*/NULL); if (!L_6) { goto IL_007b; } } { bool L_7 = NetworkBehaviour_getSyncVarHookGuard_m04C7E518D055E786F2EDD648D995543282812D09(__this, ((int64_t)1LL), /*hidden argument*/NULL); if (L_7) { goto IL_007b; } } { NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)1LL), (bool)1, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_8 = V_0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_9 = ___value0; RandomColor_SetColor_m008A39F56E2810F334CB86A9079E9058FF880924(__this, L_8, L_9, /*hidden argument*/NULL); NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)1LL), (bool)0, /*hidden argument*/NULL); } IL_007b: { } IL_007c: { return; } } // System.Boolean Mirror.Examples.MultipleAdditiveScenes.RandomColor::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RandomColor_SerializeSyncVars_m44B5A0BC11544BC239366CA3296507CB86B99C07 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_SerializeSyncVars_m44B5A0BC11544BC239366CA3296507CB86B99C07_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_001d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = __this->get_color_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteColor32_mC430555DAD65FA8A1ACA7117122960F6412B3079(L_4, L_5, /*hidden argument*/NULL); return (bool)1; } IL_001d: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; uint64_t L_7 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_6, L_7, /*hidden argument*/NULL); uint64_t L_8 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_8&(int64_t)((int64_t)1LL)))) { goto IL_004d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_9 = ___writer0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_10 = __this->get_color_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteColor32_mC430555DAD65FA8A1ACA7117122960F6412B3079(L_9, L_10, /*hidden argument*/NULL); V_0 = (bool)1; } IL_004d: { bool L_11 = V_0; return L_11; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.RandomColor::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_DeserializeSyncVars_m1AFA5B8DA45C1F135DF862DD5665B97F92B40B65 (RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_DeserializeSyncVars_m1AFA5B8DA45C1F135DF862DD5665B97F92B40B65_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_1; memset((&V_1), 0, sizeof(V_1)); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_2; memset((&V_2), 0, sizeof(V_2)); { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_004b; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_3 = __this->get_color_12(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = NetworkReaderExtensions_ReadColor32_m7926AFB64529E5FC7C51D390468AAB86722D01F7(L_4, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mEBB96647EE45564A5F268F79C2CA346FCAB65429(__this, L_5, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_6 = V_1; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_7 = __this->get_address_of_color_12(); bool L_8 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_6, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_7, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_8) { goto IL_0049; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_9 = V_1; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_10 = __this->get_color_12(); RandomColor_SetColor_m008A39F56E2810F334CB86A9079E9058FF880924(__this, L_9, L_10, /*hidden argument*/NULL); } IL_0049: { return; } IL_004b: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_11 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_12 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_11, /*hidden argument*/NULL); V_0 = L_12; int64_t L_13 = V_0; if (!((int64_t)((int64_t)L_13&(int64_t)((int64_t)1LL)))) { goto IL_009f; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_14 = __this->get_color_12(); V_2 = L_14; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_15 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_16 = NetworkReaderExtensions_ReadColor32_m7926AFB64529E5FC7C51D390468AAB86722D01F7(L_15, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mEBB96647EE45564A5F268F79C2CA346FCAB65429(__this, L_16, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_17 = V_2; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_18 = __this->get_address_of_color_12(); bool L_19 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_17, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_18, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_19) { goto IL_009e; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_20 = V_2; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_21 = __this->get_color_12(); RandomColor_SetColor_m008A39F56E2810F334CB86A9079E9058FF880924(__this, L_20, L_21, /*hidden argument*/NULL); } IL_009e: { } IL_009f: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.NetworkRoom.RandomColor::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_OnStartServer_m6701A5360800D44D3CAF3FE120A9DD919EF6A7C0 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, const RuntimeMethod* method) { { // base.OnStartServer(); NetworkBehaviour_OnStartServer_m7E498D9B74008DCD512C4A01C847795893A5ED2D(__this, /*hidden argument*/NULL); // color = Random.ColorHSV(0f, 1f, 1f, 1f, 0.5f, 1f); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = Random_ColorHSV_m35A32E1CE7C2E42BB084EBCAF521CF03205DBED8((0.0f), (1.0f), (1.0f), (1.0f), (0.5f), (1.0f), /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = Color32_op_Implicit_mD17E8145D2D32EF369EFE349C4D32E839F7D7AA4(L_0, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mC71CB232936D5F775205D263B71C9234119B1A41(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.RandomColor::SetColor(UnityEngine.Color32,UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_SetColor_mE9E8AC419541C8E5E38F1F8300FB897713FCDA77 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___oldColor0, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___newColor1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_SetColor_mE9E8AC419541C8E5E38F1F8300FB897713FCDA77_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (cachedMaterial == null) cachedMaterial = GetComponentInChildren<Renderer>().material; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = __this->get_cachedMaterial_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001f; } } { // if (cachedMaterial == null) cachedMaterial = GetComponentInChildren<Renderer>().material; Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * L_2 = Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A(__this, /*hidden argument*/Component_GetComponentInChildren_TisRenderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C_m8437E06DC2ECF4237CE39AECA6F20CB8CCA5059A_RuntimeMethod_var); NullCheck(L_2); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_3 = Renderer_get_material_mE6B01125502D08EE0D6DFE2EAEC064AD9BB31804(L_2, /*hidden argument*/NULL); __this->set_cachedMaterial_13(L_3); } IL_001f: { // cachedMaterial.color = newColor; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_4 = __this->get_cachedMaterial_13(); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = ___newColor1; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_6 = Color32_op_Implicit_m63F14F1A14B1A9A3EE4D154413EE229D3E001623(L_5, /*hidden argument*/NULL); NullCheck(L_4); Material_set_color_mC3C88E2389B7132EBF3EB0D1F040545176B795C0(L_4, L_6, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.RandomColor::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_OnDestroy_m2CD378A5336A1E88E681FDAB3347F74CAE0F6AA6 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_OnDestroy_m2CD378A5336A1E88E681FDAB3347F74CAE0F6AA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // Destroy(cachedMaterial); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = __this->get_cachedMaterial_13(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_Destroy_m3EEDB6ECD49A541EC826EA8E1C8B599F7AF67D30(L_0, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.RandomColor::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor__ctor_m78D07F08E45E0748485241BAD659B049D8C9D805 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor__ctor_m78D07F08E45E0748485241BAD659B049D8C9D805_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public Color32 color = Color.black; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = Color_get_black_m67E91EB7017FC74D9AB5ADEF6B6929B7EFC9A982(/*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = Color32_op_Implicit_mD17E8145D2D32EF369EFE349C4D32E839F7D7AA4(L_0, /*hidden argument*/NULL); __this->set_color_12(L_1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.NetworkRoom.RandomColor::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_MirrorProcessed_m9FA37D33DA08D2A2FD614FDC805CC960E276FBD0 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, const RuntimeMethod* method) { { return; } } // UnityEngine.Color32 Mirror.Examples.NetworkRoom.RandomColor::get_Networkcolor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D RandomColor_get_Networkcolor_m332BC41AE9DA642F524B6890DB123E6D1CC59539 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, const RuntimeMethod* method) { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_0; memset((&V_0), 0, sizeof(V_0)); { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = __this->get_color_12(); return L_0; } } // System.Void Mirror.Examples.NetworkRoom.RandomColor::set_Networkcolor(UnityEngine.Color32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_set_Networkcolor_mC71CB232936D5F775205D263B71C9234119B1A41 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_set_Networkcolor_mC71CB232936D5F775205D263B71C9234119B1A41_MetadataUsageId); s_Il2CppMethodInitialized = true; } Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_0; memset((&V_0), 0, sizeof(V_0)); { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = ___value0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_1 = __this->get_address_of_color_12(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_0, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_2) { goto IL_007c; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_3 = __this->get_color_12(); V_0 = L_3; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_4 = ___value0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_5 = __this->get_address_of_color_12(); NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8(__this, L_4, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_m5B245C3660742C48386525F99DE3AE4CFEA203C8_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_6 = NetworkServer_get_localClientActive_m9C4F4B8848458BB4A2EE6552EDE1E39792C2B3BA(/*hidden argument*/NULL); if (!L_6) { goto IL_007b; } } { bool L_7 = NetworkBehaviour_getSyncVarHookGuard_m04C7E518D055E786F2EDD648D995543282812D09(__this, ((int64_t)1LL), /*hidden argument*/NULL); if (L_7) { goto IL_007b; } } { NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)1LL), (bool)1, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_8 = V_0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_9 = ___value0; RandomColor_SetColor_mE9E8AC419541C8E5E38F1F8300FB897713FCDA77(__this, L_8, L_9, /*hidden argument*/NULL); NetworkBehaviour_setSyncVarHookGuard_m44C276207929797CD147789B1E2D5EFF0E8D0B98(__this, ((int64_t)1LL), (bool)0, /*hidden argument*/NULL); } IL_007b: { } IL_007c: { return; } } // System.Boolean Mirror.Examples.NetworkRoom.RandomColor::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RandomColor_SerializeSyncVars_m0630CD6E8F22D5E26A9FFB4F4520EEBD45F09936 (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_SerializeSyncVars_m0630CD6E8F22D5E26A9FFB4F4520EEBD45F09936_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_001d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = __this->get_color_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteColor32_mC430555DAD65FA8A1ACA7117122960F6412B3079(L_4, L_5, /*hidden argument*/NULL); return (bool)1; } IL_001d: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; uint64_t L_7 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_6, L_7, /*hidden argument*/NULL); uint64_t L_8 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_8&(int64_t)((int64_t)1LL)))) { goto IL_004d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_9 = ___writer0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_10 = __this->get_color_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteColor32_mC430555DAD65FA8A1ACA7117122960F6412B3079(L_9, L_10, /*hidden argument*/NULL); V_0 = (bool)1; } IL_004d: { bool L_11 = V_0; return L_11; } } // System.Void Mirror.Examples.NetworkRoom.RandomColor::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RandomColor_DeserializeSyncVars_m378F4AA0D07BEEAF85A2E3F031A244B452CC3AED (RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RandomColor_DeserializeSyncVars_m378F4AA0D07BEEAF85A2E3F031A244B452CC3AED_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_1; memset((&V_1), 0, sizeof(V_1)); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D V_2; memset((&V_2), 0, sizeof(V_2)); { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_004b; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_3 = __this->get_color_12(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = NetworkReaderExtensions_ReadColor32_m7926AFB64529E5FC7C51D390468AAB86722D01F7(L_4, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mC71CB232936D5F775205D263B71C9234119B1A41(__this, L_5, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_6 = V_1; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_7 = __this->get_address_of_color_12(); bool L_8 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_6, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_7, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_8) { goto IL_0049; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_9 = V_1; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_10 = __this->get_color_12(); RandomColor_SetColor_mE9E8AC419541C8E5E38F1F8300FB897713FCDA77(__this, L_9, L_10, /*hidden argument*/NULL); } IL_0049: { return; } IL_004b: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_11 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_12 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_11, /*hidden argument*/NULL); V_0 = L_12; int64_t L_13 = V_0; if (!((int64_t)((int64_t)L_13&(int64_t)((int64_t)1LL)))) { goto IL_009f; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_14 = __this->get_color_12(); V_2 = L_14; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_15 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_16 = NetworkReaderExtensions_ReadColor32_m7926AFB64529E5FC7C51D390468AAB86722D01F7(L_15, /*hidden argument*/NULL); RandomColor_set_Networkcolor_mC71CB232936D5F775205D263B71C9234119B1A41(__this, L_16, /*hidden argument*/NULL); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_17 = V_2; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_18 = __this->get_address_of_color_12(); bool L_19 = NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB(__this, L_17, (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)L_18, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisColor32_tDB54A78627878A7D2DE42BB028D64306A18E858D_mE01848BD2A2D11CCFE5F5A457B1FFAEEF45284FB_RuntimeMethod_var); if (L_19) { goto IL_009e; } } { Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_20 = V_2; Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_21 = __this->get_color_12(); RandomColor_SetColor_mE9E8AC419541C8E5E38F1F8300FB897713FCDA77(__this, L_20, L_21, /*hidden argument*/NULL); } IL_009e: { } IL_009f: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.Reward::OnValidate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_OnValidate_m133EC993CA3979212DE06257409C707694BA8E86 (Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward_OnValidate_m133EC993CA3979212DE06257409C707694BA8E86_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (randomColor == null) RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * L_0 = __this->get_randomColor_15(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { // randomColor = GetComponent<RandomColor>(); RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * L_2 = Component_GetComponent_TisRandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455_m86F06E3C3FEC9C6278BBD6B05BDA6DA09D3013E1(__this, /*hidden argument*/Component_GetComponent_TisRandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455_m86F06E3C3FEC9C6278BBD6B05BDA6DA09D3013E1_RuntimeMethod_var); __this->set_randomColor_15(L_2); } IL_001a: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Reward::OnTriggerEnter(UnityEngine.Collider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_OnTriggerEnter_m3AC93B6AC27E050C83CE3833B5076B34ACC30947 (Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * __this, Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward_OnTriggerEnter_m3AC93B6AC27E050C83CE3833B5076B34ACC30947_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // if (other.gameObject.CompareTag("Player")) Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_1 = ___other0; NullCheck(L_1); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_1, /*hidden argument*/NULL); NullCheck(L_2); bool L_3 = GameObject_CompareTag_mA692D8508984DBE4A2FEFD19E29CB1C9D5CDE001(L_2, _stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70, /*hidden argument*/NULL); if (!L_3) { goto IL_0029; } } { // ClaimPrize(other.gameObject); Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_4 = ___other0; NullCheck(L_4); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_5 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_4, /*hidden argument*/NULL); Reward_ClaimPrize_m7D32C45A67CB57FDE7BA1BC3D23151D8B007170B(__this, L_5, /*hidden argument*/NULL); } IL_0029: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Reward::ClaimPrize(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_ClaimPrize_m7D32C45A67CB57FDE7BA1BC3D23151D8B007170B (Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___player0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward_ClaimPrize_m7D32C45A67CB57FDE7BA1BC3D23151D8B007170B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 V_0; memset((&V_0), 0, sizeof(V_0)); uint32_t V_1 = 0; { // if (available) bool L_0 = __this->get_available_13(); if (!L_0) { goto IL_00cf; } } { // available = false; __this->set_available_13((bool)0); // Color prizeColor = randomColor.color; RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * L_1 = __this->get_randomColor_15(); NullCheck(L_1); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_2 = L_1->get_color_12(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_3 = Color32_op_Implicit_m63F14F1A14B1A9A3EE4D154413EE229D3E001623(L_2, /*hidden argument*/NULL); V_0 = L_3; // uint points = (uint)(((prizeColor.r * 255) + (prizeColor.g * 255) + (prizeColor.b * 255)) / 3); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_4 = V_0; float L_5 = L_4.get_r_0(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_6 = V_0; float L_7 = L_6.get_g_1(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_8 = V_0; float L_9 = L_8.get_b_2(); V_1 = (il2cpp_codegen_cast_floating_point<uint32_t, int32_t, float>(((float)((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_5, (float)(255.0f))), (float)((float)il2cpp_codegen_multiply((float)L_7, (float)(255.0f))))), (float)((float)il2cpp_codegen_multiply((float)L_9, (float)(255.0f)))))/(float)(3.0f))))); // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Scored {0} points R:{1} G:{2} B:{3}", points, prizeColor.r, prizeColor.g, prizeColor.b); IL2CPP_RUNTIME_CLASS_INIT(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_il2cpp_TypeInfo_var); RuntimeObject* L_10 = ((Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_StaticFields*)il2cpp_codegen_static_fields_for(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_il2cpp_TypeInfo_var))->get_logger_12(); bool L_11 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00a6; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Scored {0} points R:{1} G:{2} B:{3}", points, prizeColor.r, prizeColor.g, prizeColor.b); IL2CPP_RUNTIME_CLASS_INIT(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_il2cpp_TypeInfo_var); RuntimeObject* L_12 = ((Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_StaticFields*)il2cpp_codegen_static_fields_for(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_il2cpp_TypeInfo_var))->get_logger_12(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_13; uint32_t L_15 = V_1; uint32_t L_16 = L_15; RuntimeObject * L_17 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_17); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_17); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = L_14; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_19 = V_0; float L_20 = L_19.get_r_0(); float L_21 = L_20; RuntimeObject * L_22 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_21); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_22); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_22); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_18; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_24 = V_0; float L_25 = L_24.get_g_1(); float L_26 = L_25; RuntimeObject * L_27 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_26); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_27); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_27); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_28 = L_23; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_29 = V_0; float L_30 = L_29.get_b_2(); float L_31 = L_30; RuntimeObject * L_32 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_31); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_32); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_32); NullCheck(L_12); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_12, 3, _stringLiteralB62CB93772BD03975BD969283294289064F5AF77, L_28); } IL_00a6: { // player.GetComponent<PlayerScore>().score += points; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_33 = ___player0; NullCheck(L_33); PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * L_34 = GameObject_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m2F11DD9901C3DE831ACC1A29CDAF294EF83AB7CC(L_33, /*hidden argument*/GameObject_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m2F11DD9901C3DE831ACC1A29CDAF294EF83AB7CC_RuntimeMethod_var); PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * L_35 = L_34; NullCheck(L_35); uint32_t L_36 = L_35->get_score_15(); uint32_t L_37 = V_1; NullCheck(L_35); PlayerScore_set_Networkscore_m901503AC45EE829EE07429D973D3C42D65F34415(L_35, ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL); // spawner.SpawnPrize(); Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * L_38 = __this->get_spawner_14(); NullCheck(L_38); Spawner_SpawnPrize_mEABE55BB4D832D85538D7CFBC6EC192272D38AEF(L_38, /*hidden argument*/NULL); // NetworkServer.Destroy(gameObject); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_39 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Destroy_m113ADC5542A4627A397C75DC3ECC9BC87F404FFB(L_39, /*hidden argument*/NULL); } IL_00cf: { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Reward::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward__ctor_m6F5029A61786237E62E4E0347459E940921D0838 (Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward__ctor_m6F5029A61786237E62E4E0347459E940921D0838_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public bool available = true; __this->set_available_13((bool)1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Reward::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward__cctor_m88483E8A98B5AD63B31AA8F03968BBDA9295845F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward__cctor_m88483E8A98B5AD63B31AA8F03968BBDA9295845F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // static readonly ILogger logger = LogFactory.GetLogger(typeof(Reward)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LogFactory_t359C989285E6F62B9F073C5F0F5FA52BAB518DB6_il2cpp_TypeInfo_var); RuntimeObject* L_2 = LogFactory_GetLogger_m1325F510684C0DEA3C16231F1D8EE10E9A55D5AC(L_1, 2, /*hidden argument*/NULL); ((Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_StaticFields*)il2cpp_codegen_static_fields_for(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2_il2cpp_TypeInfo_var))->set_logger_12(L_2); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Reward::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_MirrorProcessed_mAE8E5F4E6D8EAC31864AB77BB0D82C72FAF27D45 (Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.NetworkRoom.Reward::OnValidate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_OnValidate_m007493ED137696BFE94510AF9E87D4C192CD68C8 (Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward_OnValidate_m007493ED137696BFE94510AF9E87D4C192CD68C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (randomColor == null) RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * L_0 = __this->get_randomColor_16(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { // randomColor = GetComponent<RandomColor>(); RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * L_2 = Component_GetComponent_TisRandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F_m1CE337A1369F603E1BE6A1AEDDA0BBD3676AF02D(__this, /*hidden argument*/Component_GetComponent_TisRandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F_m1CE337A1369F603E1BE6A1AEDDA0BBD3676AF02D_RuntimeMethod_var); __this->set_randomColor_16(L_2); } IL_001a: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.Reward::OnTriggerEnter(UnityEngine.Collider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_OnTriggerEnter_m7019EB2DECBF814220B1C3AB2A416C582101F60B (Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * __this, Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward_OnTriggerEnter_m7019EB2DECBF814220B1C3AB2A416C582101F60B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // if (other.gameObject.CompareTag("Player")) Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_1 = ___other0; NullCheck(L_1); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_1, /*hidden argument*/NULL); NullCheck(L_2); bool L_3 = GameObject_CompareTag_mA692D8508984DBE4A2FEFD19E29CB1C9D5CDE001(L_2, _stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70, /*hidden argument*/NULL); if (!L_3) { goto IL_0029; } } { // ClaimPrize(other.gameObject); Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_4 = ___other0; NullCheck(L_4); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_5 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_4, /*hidden argument*/NULL); Reward_ClaimPrize_m6C16A3DBBF15ADE648EFFDC441BB855A84F89732(__this, L_5, /*hidden argument*/NULL); } IL_0029: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.Reward::ClaimPrize(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_ClaimPrize_m6C16A3DBBF15ADE648EFFDC441BB855A84F89732 (Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___player0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward_ClaimPrize_m6C16A3DBBF15ADE648EFFDC441BB855A84F89732_MetadataUsageId); s_Il2CppMethodInitialized = true; } Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (available) bool L_0 = __this->get_available_13(); if (!L_0) { goto IL_00de; } } { // available = false; __this->set_available_13((bool)0); // Color prizeColor = randomColor.color; RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * L_1 = __this->get_randomColor_16(); NullCheck(L_1); Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_2 = L_1->get_color_12(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_3 = Color32_op_Implicit_m63F14F1A14B1A9A3EE4D154413EE229D3E001623(L_2, /*hidden argument*/NULL); V_0 = L_3; // points = (uint)(((prizeColor.r * 255) + (prizeColor.g * 255) + (prizeColor.b * 255)) / 3); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_4 = V_0; float L_5 = L_4.get_r_0(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_6 = V_0; float L_7 = L_6.get_g_1(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_8 = V_0; float L_9 = L_8.get_b_2(); __this->set_points_15((il2cpp_codegen_cast_floating_point<uint32_t, int32_t, float>(((float)((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_5, (float)(255.0f))), (float)((float)il2cpp_codegen_multiply((float)L_7, (float)(255.0f))))), (float)((float)il2cpp_codegen_multiply((float)L_9, (float)(255.0f)))))/(float)(3.0f)))))); // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Scored {0} points R:{1} G:{2} B:{3}", points, prizeColor.r, prizeColor.g, prizeColor.b); IL2CPP_RUNTIME_CLASS_INIT(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_il2cpp_TypeInfo_var); RuntimeObject* L_10 = ((Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_StaticFields*)il2cpp_codegen_static_fields_for(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_il2cpp_TypeInfo_var))->get_logger_12(); bool L_11 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00b0; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Scored {0} points R:{1} G:{2} B:{3}", points, prizeColor.r, prizeColor.g, prizeColor.b); IL2CPP_RUNTIME_CLASS_INIT(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_il2cpp_TypeInfo_var); RuntimeObject* L_12 = ((Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_StaticFields*)il2cpp_codegen_static_fields_for(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_il2cpp_TypeInfo_var))->get_logger_12(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_13; uint32_t L_15 = __this->get_points_15(); uint32_t L_16 = L_15; RuntimeObject * L_17 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_17); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_17); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = L_14; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_19 = V_0; float L_20 = L_19.get_r_0(); float L_21 = L_20; RuntimeObject * L_22 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_21); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_22); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_22); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_18; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_24 = V_0; float L_25 = L_24.get_g_1(); float L_26 = L_25; RuntimeObject * L_27 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_26); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_27); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_27); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_28 = L_23; Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_29 = V_0; float L_30 = L_29.get_b_2(); float L_31 = L_30; RuntimeObject * L_32 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_31); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_32); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_32); NullCheck(L_12); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_12, 3, _stringLiteralB62CB93772BD03975BD969283294289064F5AF77, L_28); } IL_00b0: { // player.GetComponent<PlayerScore>().score += points; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_33 = ___player0; NullCheck(L_33); PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * L_34 = GameObject_GetComponent_TisPlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6_mE85424B023694A3ECE8C19C181DA343BAD732319(L_33, /*hidden argument*/GameObject_GetComponent_TisPlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6_mE85424B023694A3ECE8C19C181DA343BAD732319_RuntimeMethod_var); PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 * L_35 = L_34; NullCheck(L_35); uint32_t L_36 = L_35->get_score_13(); uint32_t L_37 = __this->get_points_15(); NullCheck(L_35); PlayerScore_set_Networkscore_m2419F0AD2B208971FF2D3C57413A71D3A33400C9(L_35, ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL); // spawner.SpawnPrize(); Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * L_38 = __this->get_spawner_14(); NullCheck(L_38); Spawner_SpawnPrize_m19B8F8C88F45244987B3FF734D57C6C7D9135E0D(L_38, /*hidden argument*/NULL); // NetworkServer.Destroy(gameObject); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_39 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Destroy_m113ADC5542A4627A397C75DC3ECC9BC87F404FFB(L_39, /*hidden argument*/NULL); } IL_00de: { // } return; } } // System.Void Mirror.Examples.NetworkRoom.Reward::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward__ctor_m9969C1703175B1950296D8F591365EE394C00163 (Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward__ctor_m9969C1703175B1950296D8F591365EE394C00163_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public bool available = true; __this->set_available_13((bool)1); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.NetworkRoom.Reward::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward__cctor_mA089D33415D76882802345C6A6D0D39CAEB3E818 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Reward__cctor_mA089D33415D76882802345C6A6D0D39CAEB3E818_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // static readonly ILogger logger = LogFactory.GetLogger(typeof(Reward)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LogFactory_t359C989285E6F62B9F073C5F0F5FA52BAB518DB6_il2cpp_TypeInfo_var); RuntimeObject* L_2 = LogFactory_GetLogger_m1325F510684C0DEA3C16231F1D8EE10E9A55D5AC(L_1, 2, /*hidden argument*/NULL); ((Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_StaticFields*)il2cpp_codegen_static_fields_for(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_il2cpp_TypeInfo_var))->set_logger_12(L_2); return; } } // System.Void Mirror.Examples.NetworkRoom.Reward::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reward_MirrorProcessed_mEB54435356D9CD8790CAEF1DB6ACC210B28F9396 (Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_Start_mD9F65192165372E4C6646D2960699FF9BD9BA116 (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShootingTankBehaviour_Start_mD9F65192165372E4C6646D2960699FF9BD9BA116_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_000b; } } { return; } IL_000b: { // networkAnimator = GetComponent<NetworkAnimator>(); NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * L_1 = Component_GetComponent_TisNetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550_m5FE18D220F643A1AF9C97CA4BB330E8F6915F77C(__this, /*hidden argument*/Component_GetComponent_TisNetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550_m5FE18D220F643A1AF9C97CA4BB330E8F6915F77C_RuntimeMethod_var); __this->set_networkAnimator_13(L_1); // } return; } } // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_Update_mF12B0B4D8F8F5E7FF15DBFA205EC671A986A220F (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShootingTankBehaviour_Update_mF12B0B4D8F8F5E7FF15DBFA205EC671A986A220F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (isServer && netIdentity.observers.Count > 0) bool L_0 = NetworkBehaviour_get_isServer_m6CF3499812C1F2679BB924165AA79C59E6D2EBCF(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0021; } } { NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_1 = NetworkBehaviour_get_netIdentity_m67CAF485E29AFA1CB0540A7ADBE68FCE2326151D(__this, /*hidden argument*/NULL); NullCheck(L_1); Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * L_2 = L_1->get_observers_9(); NullCheck(L_2); int32_t L_3 = Dictionary_2_get_Count_mCFCED7BF3548A04BD1FFE21FE3441652D23D7346(L_2, /*hidden argument*/Dictionary_2_get_Count_mCFCED7BF3548A04BD1FFE21FE3441652D23D7346_RuntimeMethod_var); if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_0021; } } { // ShootNearestPlayer(); ShootingTankBehaviour_ShootNearestPlayer_m2536B0878F33CB4FE80E4A38D5287D0C8AE1D93A(__this, /*hidden argument*/NULL); } IL_0021: { // if (isClient) bool L_4 = NetworkBehaviour_get_isClient_m87FF41CC03AD448B05627F3711F8E27C63D5C615(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_0050; } } { // transform.rotation = Quaternion.Slerp(transform.rotation, rotation, turnSpeed); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_6); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_7 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_6, /*hidden argument*/NULL); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_8 = __this->get_rotation_12(); float L_9 = __this->get_turnSpeed_14(); IL2CPP_RUNTIME_CLASS_INIT(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_il2cpp_TypeInfo_var); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_10 = Quaternion_Slerp_m6D2BD18286254E28D2288B51962EC71F85C7B5C8(L_7, L_8, L_9, /*hidden argument*/NULL); NullCheck(L_5); Transform_set_rotation_m1B5F3D4CE984AB31254615C9C71B0E54978583B4(L_5, L_10, /*hidden argument*/NULL); } IL_0050: { // } return; } } // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::ShootNearestPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_ShootNearestPlayer_m2536B0878F33CB4FE80E4A38D5287D0C8AE1D93A (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShootingTankBehaviour_ShootNearestPlayer_m2536B0878F33CB4FE80E4A38D5287D0C8AE1D93A_MetadataUsageId); s_Il2CppMethodInitialized = true; } GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * V_0 = NULL; float V_1 = 0.0f; Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A V_2; memset((&V_2), 0, sizeof(V_2)); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * V_3 = NULL; float V_4 = 0.0f; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(_stringLiteral53FEE1A4362A592B4D9ABAF612B7E4A2F52B81AD, /*hidden argument*/NULL); return; } IL_0015: { // GameObject target = null; V_0 = (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)NULL; // float distance = 100f; V_1 = (100.0f); // foreach (NetworkConnection networkConnection in netIdentity.observers.Values) NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_1 = NetworkBehaviour_get_netIdentity_m67CAF485E29AFA1CB0540A7ADBE68FCE2326151D(__this, /*hidden argument*/NULL); NullCheck(L_1); Dictionary_2_tA2BBDBE70FB362315A9DAEFAAF9DABFDAD7E4E59 * L_2 = L_1->get_observers_9(); NullCheck(L_2); ValueCollection_t8F11F550EDD6A6069AD1E314FF28667DAC5A1C2A * L_3 = Dictionary_2_get_Values_m206596714FC8B1875F776C020706E6D890070344(L_2, /*hidden argument*/Dictionary_2_get_Values_m206596714FC8B1875F776C020706E6D890070344_RuntimeMethod_var); NullCheck(L_3); Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A L_4 = ValueCollection_GetEnumerator_m5C016983C9DD084689CB8199AF44DB792080DE72(L_3, /*hidden argument*/ValueCollection_GetEnumerator_m5C016983C9DD084689CB8199AF44DB792080DE72_RuntimeMethod_var); V_2 = L_4; } IL_0033: try { // begin try (depth: 1) { goto IL_0077; } IL_0035: { // foreach (NetworkConnection networkConnection in netIdentity.observers.Values) NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_5 = Enumerator_get_Current_mAF4458A3A011CF42905DA59EAEB9A900045B8BBB_inline((Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A *)(&V_2), /*hidden argument*/Enumerator_get_Current_mAF4458A3A011CF42905DA59EAEB9A900045B8BBB_RuntimeMethod_var); // GameObject tempTarget = networkConnection.identity.gameObject; NullCheck(L_5); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_6 = NetworkConnection_get_identity_mF8F7D1AA28117C2F53450E6697D2966DB1B16F45_inline(L_5, /*hidden argument*/NULL); NullCheck(L_6); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_6, /*hidden argument*/NULL); V_3 = L_7; // float tempDistance = Vector3.Distance(tempTarget.transform.position, transform.position); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = V_3; NullCheck(L_8); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_9 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_8, /*hidden argument*/NULL); NullCheck(L_9); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_9, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_11 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_11); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); float L_13 = Vector3_Distance_mB648A79E4A1BAAFBF7B029644638C0D715480677(L_10, L_12, /*hidden argument*/NULL); V_4 = L_13; // if (target == null || distance > tempDistance) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_15 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_14, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (L_15) { goto IL_0072; } } IL_006d: { float L_16 = V_1; float L_17 = V_4; if ((!(((float)L_16) > ((float)L_17)))) { goto IL_0077; } } IL_0072: { // target = tempTarget; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_18 = V_3; V_0 = L_18; // distance = tempDistance; float L_19 = V_4; V_1 = L_19; } IL_0077: { // foreach (NetworkConnection networkConnection in netIdentity.observers.Values) bool L_20 = Enumerator_MoveNext_m954A7094A2F7F217A683B279960700558E2F0BA8((Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m954A7094A2F7F217A683B279960700558E2F0BA8_RuntimeMethod_var); if (L_20) { goto IL_0035; } } IL_0080: { IL2CPP_LEAVE(0x90, FINALLY_0082); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0082; } FINALLY_0082: { // begin finally (depth: 1) Enumerator_Dispose_m041C2F116E161FE8A0E193E16E717AA3A4FC3CD8((Enumerator_t5A878F4D9E9F073F12CF1E12443DB741EEF1DA3A *)(&V_2), /*hidden argument*/Enumerator_Dispose_m041C2F116E161FE8A0E193E16E717AA3A4FC3CD8_RuntimeMethod_var); IL2CPP_END_FINALLY(130) } // end finally (depth: 1) IL2CPP_CLEANUP(130) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x90, IL_0090) } IL_0090: { // if (target != null) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_21 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_22 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_21, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_22) { goto IL_00da; } } { // transform.LookAt(target.transform.position + Vector3.down); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_23 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_24 = V_0; NullCheck(L_24); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_25 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_24, /*hidden argument*/NULL); NullCheck(L_25); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_26 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27 = Vector3_get_down_mFA85B870E184121D30F66395BB183ECAB9DD8629(/*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_28 = Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline(L_26, L_27, /*hidden argument*/NULL); NullCheck(L_23); Transform_LookAt_m996FADE2327B0A4412FF4A5179B8BABD9EB849BA(L_23, L_28, /*hidden argument*/NULL); // rotation = transform.rotation; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_29 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_29); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_30 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_29, /*hidden argument*/NULL); ShootingTankBehaviour_set_Networkrotation_mCFEED1FBD935D68240DD114588E2FDB3E31E7A59(__this, L_30, /*hidden argument*/NULL); // networkAnimator.SetTrigger("Fire"); NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * L_31 = __this->get_networkAnimator_13(); NullCheck(L_31); NetworkAnimator_SetTrigger_m426C845158C1277D17B8A5BFCC7A4F423ABD4F01(L_31, _stringLiteralD5A6D1524A9CAA0C1FE48522BD4B250F6A827CC8, /*hidden argument*/NULL); } IL_00da: { // } return; } } // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour__ctor_m512CBB9A858A09737F5BA1BB2B80E67C9138C742 (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShootingTankBehaviour__ctor_m512CBB9A858A09737F5BA1BB2B80E67C9138C742_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float turnSpeed = 0.1f; __this->set_turnSpeed_14((0.100000001f)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_MirrorProcessed_m44D5BE9ADB0189F489B2FF369BBC8EBDCB70BC0F (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, const RuntimeMethod* method) { { return; } } // UnityEngine.Quaternion Mirror.Examples.Additive.ShootingTankBehaviour::get_Networkrotation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ShootingTankBehaviour_get_Networkrotation_mAABBF01E91F4B5D4C0AB46A49065E4B6C513CBC6 (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, const RuntimeMethod* method) { Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 V_0; memset((&V_0), 0, sizeof(V_0)); { Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_0 = __this->get_rotation_12(); return L_0; } } // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::set_Networkrotation(UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_set_Networkrotation_mCFEED1FBD935D68240DD114588E2FDB3E31E7A59 (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShootingTankBehaviour_set_Networkrotation_mCFEED1FBD935D68240DD114588E2FDB3E31E7A59_MetadataUsageId); s_Il2CppMethodInitialized = true; } Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 V_0; memset((&V_0), 0, sizeof(V_0)); { Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_0 = ___value0; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * L_1 = __this->get_address_of_rotation_12(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_mF3D9D482F4F9DF0D6E80578EB3AC5F4740205F55(__this, L_0, (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 *)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_mF3D9D482F4F9DF0D6E80578EB3AC5F4740205F55_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_3 = __this->get_rotation_12(); V_0 = L_3; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_4 = ___value0; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * L_5 = __this->get_address_of_rotation_12(); NetworkBehaviour_SetSyncVar_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_m14220B08E1B2C90F2F7C3136E78DE37501DBF13D(__this, L_4, (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 *)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisQuaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_m14220B08E1B2C90F2F7C3136E78DE37501DBF13D_RuntimeMethod_var); } IL_0032: { return; } } // System.Boolean Mirror.Examples.Additive.ShootingTankBehaviour::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ShootingTankBehaviour_SerializeSyncVars_mC0AAD2C7AD3109F862B023AD2D28E918E1D605C7 (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShootingTankBehaviour_SerializeSyncVars_mC0AAD2C7AD3109F862B023AD2D28E918E1D605C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_001d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5 = __this->get_rotation_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteQuaternion_m96A981CD95861D3F23358155CD1CCBCDF185D909(L_4, L_5, /*hidden argument*/NULL); return (bool)1; } IL_001d: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; uint64_t L_7 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_6, L_7, /*hidden argument*/NULL); uint64_t L_8 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_8&(int64_t)((int64_t)1LL)))) { goto IL_004d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_9 = ___writer0; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_10 = __this->get_rotation_12(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteQuaternion_m96A981CD95861D3F23358155CD1CCBCDF185D909(L_9, L_10, /*hidden argument*/NULL); V_0 = (bool)1; } IL_004d: { bool L_11 = V_0; return L_11; } } // System.Void Mirror.Examples.Additive.ShootingTankBehaviour::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShootingTankBehaviour_DeserializeSyncVars_m2DC41C1E6926E0E4EFE77A1DB31C3E2BC79ACC90 (ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ShootingTankBehaviour_DeserializeSyncVars_m2DC41C1E6926E0E4EFE77A1DB31C3E2BC79ACC90_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 V_1; memset((&V_1), 0, sizeof(V_1)); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 V_2; memset((&V_2), 0, sizeof(V_2)); { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_0025; } } { Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_3 = __this->get_rotation_12(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5 = NetworkReaderExtensions_ReadQuaternion_m2946D7DD55E1ED8EDEF82536F0D4246D42A22E19(L_4, /*hidden argument*/NULL); ShootingTankBehaviour_set_Networkrotation_mCFEED1FBD935D68240DD114588E2FDB3E31E7A59(__this, L_5, /*hidden argument*/NULL); return; } IL_0025: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_6 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_7 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_6, /*hidden argument*/NULL); V_0 = L_7; int64_t L_8 = V_0; if (!((int64_t)((int64_t)L_8&(int64_t)((int64_t)1LL)))) { goto IL_0053; } } { Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_9 = __this->get_rotation_12(); V_2 = L_9; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_10 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_11 = NetworkReaderExtensions_ReadQuaternion_m2946D7DD55E1ED8EDEF82536F0D4246D42A22E19(L_10, /*hidden argument*/NULL); ShootingTankBehaviour_set_Networkrotation_mCFEED1FBD935D68240DD114588E2FDB3E31E7A59(__this, L_11, /*hidden argument*/NULL); } IL_0053: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.Spawner::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_OnStartServer_m8268517E6F964C5738A3538A61D1655E0779E3E9 (Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { // for (int i = 0; i < 10; i++) V_0 = 0; goto IL_000e; } IL_0004: { // SpawnPrize(); Spawner_SpawnPrize_mEABE55BB4D832D85538D7CFBC6EC192272D38AEF(__this, /*hidden argument*/NULL); // for (int i = 0; i < 10; i++) int32_t L_0 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)); } IL_000e: { // for (int i = 0; i < 10; i++) int32_t L_1 = V_0; if ((((int32_t)L_1) < ((int32_t)((int32_t)10)))) { goto IL_0004; } } { // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Spawner::SpawnPrize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_SpawnPrize_mEABE55BB4D832D85538D7CFBC6EC192272D38AEF (Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Spawner_SpawnPrize_mEABE55BB4D832D85538D7CFBC6EC192272D38AEF_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { // Vector3 spawnPosition = new Vector3(Random.Range(-19, 20), 1, Random.Range(-19, 20)); int32_t L_0 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(((int32_t)-19), ((int32_t)20), /*hidden argument*/NULL); int32_t L_1 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(((int32_t)-19), ((int32_t)20), /*hidden argument*/NULL); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), (((float)((float)L_0))), (1.0f), (((float)((float)L_1))), /*hidden argument*/NULL); // GameObject newPrize = Instantiate(prizePrefab.gameObject, spawnPosition, Quaternion.identity); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_2 = __this->get_prizePrefab_12(); NullCheck(L_2); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_2, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_il2cpp_TypeInfo_var); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5 = Quaternion_get_identity_mF2E565DBCE793A1AE6208056D42CA7C59D83A702(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B(L_3, L_4, L_5, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B_RuntimeMethod_var); // Reward reward = newPrize.gameObject.GetComponent<Reward>(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7 = L_6; NullCheck(L_7); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = GameObject_get_gameObject_mD5FFECF7C3AC5039E847DF7A8842478539B701D6(L_7, /*hidden argument*/NULL); NullCheck(L_8); Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 * L_9 = GameObject_GetComponent_TisReward_t82A40753189BAB49A979289A29CEC56AE94399D2_m717C2DA0854EF4FDAFC870D3B1AB6844A1EDF169(L_8, /*hidden argument*/GameObject_GetComponent_TisReward_t82A40753189BAB49A979289A29CEC56AE94399D2_m717C2DA0854EF4FDAFC870D3B1AB6844A1EDF169_RuntimeMethod_var); // reward.spawner = this; NullCheck(L_9); L_9->set_spawner_14(__this); // NetworkServer.Spawn(newPrize); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_10 = L_7; IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Spawn_mE71DE744EA836EE5C4EA51B6FCDDCDB83C1D7846(L_10, (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 *)NULL, /*hidden argument*/NULL); // SceneManager.MoveGameObjectToScene(newPrize, gameObject.scene); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_11 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); NullCheck(L_11); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_12 = GameObject_get_scene_m7EBF95ABB5037FEE6811928F2E83C769C53F86C2(L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); SceneManager_MoveGameObjectToScene_m6A83C5A83445385BC00FBFD155707732A0C80F39(L_10, L_12, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Spawner::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner__ctor_mA9E18941126107A0792CB73702FC020B7B149E3A (Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Spawner__ctor_mA9E18941126107A0792CB73702FC020B7B149E3A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.Spawner::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_MirrorProcessed_mC1871A61083877DB59EC02C38D22A6B5B5A8B6C3 (Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.NetworkRoom.Spawner::OnStartServer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_OnStartServer_m60EDF9F0E94D50558C2DB61AA954CF64474C9B3F (Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { // for (int i = 0; i < 10; i++) V_0 = 0; goto IL_000e; } IL_0004: { // SpawnPrize(); Spawner_SpawnPrize_m19B8F8C88F45244987B3FF734D57C6C7D9135E0D(__this, /*hidden argument*/NULL); // for (int i = 0; i < 10; i++) int32_t L_0 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)); } IL_000e: { // for (int i = 0; i < 10; i++) int32_t L_1 = V_0; if ((((int32_t)L_1) < ((int32_t)((int32_t)10)))) { goto IL_0004; } } { // } return; } } // System.Void Mirror.Examples.NetworkRoom.Spawner::SpawnPrize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_SpawnPrize_m19B8F8C88F45244987B3FF734D57C6C7D9135E0D (Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Spawner_SpawnPrize_m19B8F8C88F45244987B3FF734D57C6C7D9135E0D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { // Vector3 spawnPosition = new Vector3(Random.Range(-19, 20), 1, Random.Range(-19, 20)); int32_t L_0 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(((int32_t)-19), ((int32_t)20), /*hidden argument*/NULL); int32_t L_1 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(((int32_t)-19), ((int32_t)20), /*hidden argument*/NULL); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), (((float)((float)L_0))), (1.0f), (((float)((float)L_1))), /*hidden argument*/NULL); // GameObject newPrize = Instantiate(prizePrefab.gameObject, spawnPosition, Quaternion.identity); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_2 = __this->get_prizePrefab_12(); NullCheck(L_2); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_2, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_il2cpp_TypeInfo_var); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5 = Quaternion_get_identity_mF2E565DBCE793A1AE6208056D42CA7C59D83A702(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B(L_3, L_4, L_5, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B_RuntimeMethod_var); // Reward reward = newPrize.gameObject.GetComponent<Reward>(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7 = L_6; NullCheck(L_7); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = GameObject_get_gameObject_mD5FFECF7C3AC5039E847DF7A8842478539B701D6(L_7, /*hidden argument*/NULL); NullCheck(L_8); Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 * L_9 = GameObject_GetComponent_TisReward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_m18D7C4418DD53C9F64B146EE83AEABF3C0AEF08D(L_8, /*hidden argument*/GameObject_GetComponent_TisReward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4_m18D7C4418DD53C9F64B146EE83AEABF3C0AEF08D_RuntimeMethod_var); // reward.spawner = this; NullCheck(L_9); L_9->set_spawner_14(__this); // NetworkServer.Spawn(newPrize); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Spawn_mE71DE744EA836EE5C4EA51B6FCDDCDB83C1D7846(L_7, (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 *)NULL, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.NetworkRoom.Spawner::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner__ctor_mD1805A49123B37F0C47737BA6EA21A6C3F944052 (Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Spawner__ctor_mD1805A49123B37F0C47737BA6EA21A6C3F944052_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.NetworkRoom.Spawner::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spawner_MirrorProcessed_m3611B6001311BC157426F0550DBF602A34335191 (Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean Mirror.Examples.Tanks.Tank::get_isDead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tank_get_isDead_m4EBD0982ED98DF2C76D9AE2AA1F16E446CCC26E7 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { { // public bool isDead => health <= 0; int32_t L_0 = __this->get_health_18(); return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void Mirror.Examples.Tanks.Tank::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_Update_mCE73459E9C27B5F40909F5ECC0149DCBE459C243 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_Update_mCE73459E9C27B5F40909F5ECC0149DCBE459C243_MetadataUsageId); s_Il2CppMethodInitialized = true; } float V_0 = 0.0f; float V_1 = 0.0f; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_2; memset((&V_2), 0, sizeof(V_2)); { // nameText.text = playerName; TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * L_0 = __this->get_nameText_23(); String_t* L_1 = __this->get_playerName_20(); NullCheck(L_0); TextMesh_set_text_m5879B13F5C9E4A1D05155839B89CCDB85BE28A04(L_0, L_1, /*hidden argument*/NULL); // nameText.transform.rotation = Camera.main.transform.rotation; TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * L_2 = __this->get_nameText_23(); NullCheck(L_2); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_2, /*hidden argument*/NULL); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_4 = Camera_get_main_mC337C621B91591CEF89504C97EF64D717C12871C(/*hidden argument*/NULL); NullCheck(L_4); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_4, /*hidden argument*/NULL); NullCheck(L_5); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_6 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_5, /*hidden argument*/NULL); NullCheck(L_3); Transform_set_rotation_m1B5F3D4CE984AB31254615C9C71B0E54978583B4(L_3, L_6, /*hidden argument*/NULL); // if (!isLocalPlayer) bool L_7 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (L_7) { goto IL_0039; } } { // return; return; } IL_0039: { // nameText.color = Color.green; TextMesh_t830C2452CE189A0D35CD9ED26B6B74D506B01273 * L_8 = __this->get_nameText_23(); Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_9 = Color_get_green_mFF9BD42534D385A0717B1EAD083ADF08712984B9(/*hidden argument*/NULL); NullCheck(L_8); TextMesh_set_color_m276CE9AB9F88B34C0A9C6DD5300FC1123102D3DE(L_8, L_9, /*hidden argument*/NULL); // if (!allowMovement) bool L_10 = __this->get_allowMovement_21(); if (L_10) { goto IL_0052; } } { // return; return; } IL_0052: { // if (isDead) bool L_11 = Tank_get_isDead_m4EBD0982ED98DF2C76D9AE2AA1F16E446CCC26E7(__this, /*hidden argument*/NULL); if (!L_11) { goto IL_005b; } } { // return; return; } IL_005b: { // float horizontal = Input.GetAxis("Horizontal"); float L_12 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E, /*hidden argument*/NULL); V_0 = L_12; // transform.Rotate(0, horizontal * rotationSpeed * Time.deltaTime, 0); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_13 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); float L_14 = V_0; float L_15 = __this->get_rotationSpeed_14(); float L_16 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); NullCheck(L_13); Transform_Rotate_mA3AE6D55AA9CC88A8F03C2B0B7CB3DB45ABA6A8E(L_13, (0.0f), ((float)il2cpp_codegen_multiply((float)((float)il2cpp_codegen_multiply((float)L_14, (float)L_15)), (float)L_16)), (0.0f), /*hidden argument*/NULL); // float vertical = Input.GetAxis("Vertical"); float L_17 = Input_GetAxis_m939297DEB2ECF8D8D09AD66EB69979AAD2B62326(_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A, /*hidden argument*/NULL); V_1 = L_17; // Vector3 forward = transform.TransformDirection(Vector3.forward); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_18 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = Vector3_get_forward_m3082920F8A24AA02E4F542B6771EB0B63A91AC90(/*hidden argument*/NULL); NullCheck(L_18); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_20 = Transform_TransformDirection_m6B5E3F0A7C6323159DEC6D9BC035FB53ADD96E91(L_18, L_19, /*hidden argument*/NULL); V_2 = L_20; // agent.velocity = forward * Mathf.Max(vertical, 0) * agent.speed; NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_21 = __this->get_agent_12(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_22 = V_2; float L_23 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Mathf_t4D4AC358D24F6DDC32EC291DDE1DF2C3B752A194_il2cpp_TypeInfo_var); float L_24 = Mathf_Max_m4CE510E1F1013B33275F01543731A51A58BA0775(L_23, (0.0f), /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_25 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_22, L_24, /*hidden argument*/NULL); NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_26 = __this->get_agent_12(); NullCheck(L_26); float L_27 = NavMeshAgent_get_speed_m5AA9A1B23412A8F5CE24A5312F6E6D4BA282B173(L_26, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_28 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_25, L_27, /*hidden argument*/NULL); NullCheck(L_21); NavMeshAgent_set_velocity_m3CFD57C08562A9A79AC501773050A18EA0FC791A(L_21, L_28, /*hidden argument*/NULL); // animator.SetBool("Moving", agent.velocity != Vector3.zero); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_29 = __this->get_animator_13(); NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_30 = __this->get_agent_12(); NullCheck(L_30); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_31 = NavMeshAgent_get_velocity_mA6F25F6B38D5092BBE6DECD77F8FDB93D5C515C9(L_30, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_32 = Vector3_get_zero_m1A8F7993167785F750B6B01762D22C2597C84EF6(/*hidden argument*/NULL); bool L_33 = Vector3_op_Inequality_m15190A795B416EB699E69E6190DE6F1C1F208710(L_31, L_32, /*hidden argument*/NULL); NullCheck(L_29); Animator_SetBool_m34E2E9785A47A3AE94E804004425C333C36CCD43(L_29, _stringLiteral734BC253F0D07DE0F8DFD3592600EA0D229526EC, L_33, /*hidden argument*/NULL); // if (Input.GetKeyDown(shootKey)) int32_t L_34 = __this->get_shootKey_15(); bool L_35 = Input_GetKeyDown_m476116696E71771641BBECBAB1A4C55E69018220(L_34, /*hidden argument*/NULL); if (!L_35) { goto IL_0109; } } { // CmdFire(); Tank_CmdFire_m0171B75256D048D58241A7E9B74EDF09155D4C8E(__this, /*hidden argument*/NULL); } IL_0109: { // } return; } } // System.Void Mirror.Examples.Tanks.Tank::CmdFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_CmdFire_m0171B75256D048D58241A7E9B74EDF09155D4C8E (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_CmdFire_m0171B75256D048D58241A7E9B74EDF09155D4C8E_MetadataUsageId); s_Il2CppMethodInitialized = true; } PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterPool_tE8E92B378A1C09F9FF212B4D2EE02264A94E06C0_il2cpp_TypeInfo_var); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_0 = NetworkWriterPool_GetWriter_m53506C8016911951C82F2F83E45592CE2F9A85AE(/*hidden argument*/NULL); V_0 = L_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_1 = { reinterpret_cast<intptr_t> (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_1, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_3 = V_0; NetworkBehaviour_SendCommandInternal_m81D09DA3B313767B581AFB3F5BC4535807CC5700(__this, L_2, _stringLiteral94E08295939398079899848C6F186D1829FBF770, L_3, ((int32_t)0), (bool)0, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_4 = V_0; NetworkWriterPool_Recycle_m8E7D8C8ED6F0856380CE750DBEF1D0EC5BAF8FB3(L_4, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Tank::RpcOnFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_RpcOnFire_mEF7A49115867A9BF0A22B24534B380CA9B57E19D (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_RpcOnFire_mEF7A49115867A9BF0A22B24534B380CA9B57E19D_MetadataUsageId); s_Il2CppMethodInitialized = true; } PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterPool_tE8E92B378A1C09F9FF212B4D2EE02264A94E06C0_il2cpp_TypeInfo_var); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_0 = NetworkWriterPool_GetWriter_m53506C8016911951C82F2F83E45592CE2F9A85AE(/*hidden argument*/NULL); V_0 = L_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_1 = { reinterpret_cast<intptr_t> (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_1, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_3 = V_0; NetworkBehaviour_SendRPCInternal_m3E76275A3E52E54BF11483D924A21D58285586DF(__this, L_2, _stringLiteral72E65675DF22C714B3ACB6E110695F3C99E6AF9D, L_3, ((int32_t)0), (bool)0, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_4 = V_0; NetworkWriterPool_Recycle_m8E7D8C8ED6F0856380CE750DBEF1D0EC5BAF8FB3(L_4, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Tank::SendReadyToServer(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_SendReadyToServer_mECA51E145A8E961BC0E0F89E9553D69C21964D45 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___playername0, const RuntimeMethod* method) { { // if (!isLocalPlayer) bool L_0 = NetworkBehaviour_get_isLocalPlayer_mFA35EE97B42DEEE92E4FD5562C8C6A1717607DE0(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // CmdReady(playername); String_t* L_1 = ___playername0; Tank_CmdReady_m78AAB418AE1DC7B5F798A9BC04FE61067F1BA977(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Tank::CmdReady(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_CmdReady_m78AAB418AE1DC7B5F798A9BC04FE61067F1BA977 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___playername0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_CmdReady_m78AAB418AE1DC7B5F798A9BC04FE61067F1BA977_MetadataUsageId); s_Il2CppMethodInitialized = true; } PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterPool_tE8E92B378A1C09F9FF212B4D2EE02264A94E06C0_il2cpp_TypeInfo_var); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_0 = NetworkWriterPool_GetWriter_m53506C8016911951C82F2F83E45592CE2F9A85AE(/*hidden argument*/NULL); V_0 = L_0; PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_1 = V_0; String_t* L_2 = ___playername0; IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_1, L_2, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_5 = V_0; NetworkBehaviour_SendCommandInternal_m81D09DA3B313767B581AFB3F5BC4535807CC5700(__this, L_4, _stringLiteral2E701C00640AC4E2F929D6EBA22107C6FB7CBF9F, L_5, ((int32_t)0), (bool)0, /*hidden argument*/NULL); PooledNetworkWriter_t7D974C252C835B625FA8A80A5994EE66A64CB118 * L_6 = V_0; NetworkWriterPool_Recycle_m8E7D8C8ED6F0856380CE750DBEF1D0EC5BAF8FB3(L_6, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Tank::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank__ctor_mD4F3B197D7FE9AC31EC888E8EB318E29AD58F62E (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank__ctor_mD4F3B197D7FE9AC31EC888E8EB318E29AD58F62E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public float rotationSpeed = 100; __this->set_rotationSpeed_14((100.0f)); // public KeyCode shootKey = KeyCode.Space; __this->set_shootKey_15(((int32_t)32)); IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Tank::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_MirrorProcessed_m1BE88C861E30F5CEAC3A6F09612C534D60D429F4 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { { return; } } // System.Int32 Mirror.Examples.Tanks.Tank::get_Networkhealth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tank_get_Networkhealth_m8154246C0B15659EF73C51BCDD4695EC9B60C4F8 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_health_18(); return L_0; } } // System.Void Mirror.Examples.Tanks.Tank::set_Networkhealth(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_Networkhealth_m507DDE5DDB11E1627F66444DB398722F8F4FD183 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_set_Networkhealth_m507DDE5DDB11E1627F66444DB398722F8F4FD183_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_health_18(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { int32_t L_3 = __this->get_health_18(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_health_18(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)1LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); } IL_0032: { return; } } // System.Int32 Mirror.Examples.Tanks.Tank::get_Networkscore() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tank_get_Networkscore_mB26F2F6EC043DA319C17E222F3B2CB6DC4959702 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_score_19(); return L_0; } } // System.Void Mirror.Examples.Tanks.Tank::set_Networkscore(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_Networkscore_m07BB7DE07AA067E4B46F4BE1DA8A8A8D531E50F2 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_set_Networkscore_m07BB7DE07AA067E4B46F4BE1DA8A8A8D531E50F2_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___value0; int32_t* L_1 = __this->get_address_of_score_19(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3(__this, L_0, (int32_t*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m2B8AF1B3A139B3F543BC207AA2FE60B2D9FEF3E3_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { int32_t L_3 = __this->get_score_19(); V_0 = L_3; int32_t L_4 = ___value0; int32_t* L_5 = __this->get_address_of_score_19(); NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF(__this, L_4, (int32_t*)L_5, ((int64_t)2LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_mB92AEF3F7E574E08410F051A969F1C955C85C8EF_RuntimeMethod_var); } IL_0032: { return; } } // System.String Mirror.Examples.Tanks.Tank::get_NetworkplayerName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Tank_get_NetworkplayerName_mD1AEEAD79DC5A5D34EC7F4C6EF55D1EE879CE4C9 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; { String_t* L_0 = __this->get_playerName_20(); return L_0; } } // System.Void Mirror.Examples.Tanks.Tank::set_NetworkplayerName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___value0; String_t** L_1 = __this->get_address_of_playerName_20(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisString_t_m9FE65477E4299FF143A3F1FB9A68D4C038297A6E(__this, L_0, (String_t**)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisString_t_m9FE65477E4299FF143A3F1FB9A68D4C038297A6E_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { String_t* L_3 = __this->get_playerName_20(); V_0 = L_3; String_t* L_4 = ___value0; String_t** L_5 = __this->get_address_of_playerName_20(); NetworkBehaviour_SetSyncVar_TisString_t_mB1BE647BB205B4306DAB25A796D7FEB100BD7189(__this, L_4, (String_t**)L_5, ((int64_t)4LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisString_t_mB1BE647BB205B4306DAB25A796D7FEB100BD7189_RuntimeMethod_var); } IL_0032: { return; } } // System.Boolean Mirror.Examples.Tanks.Tank::get_NetworkallowMovement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tank_get_NetworkallowMovement_mB09D3F7987801B3585D7C1D7CFCF56D608A9C12B (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { bool V_0 = false; { bool L_0 = __this->get_allowMovement_21(); return L_0; } } // System.Void Mirror.Examples.Tanks.Tank::set_NetworkallowMovement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { bool L_0 = ___value0; bool* L_1 = __this->get_address_of_allowMovement_21(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539(__this, L_0, (bool*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { bool L_3 = __this->get_allowMovement_21(); V_0 = L_3; bool L_4 = ___value0; bool* L_5 = __this->get_address_of_allowMovement_21(); NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8(__this, L_4, (bool*)L_5, ((int64_t)8LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8_RuntimeMethod_var); } IL_0032: { return; } } // System.Boolean Mirror.Examples.Tanks.Tank::get_NetworkisReady() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tank_get_NetworkisReady_m6422089BB661BC4E4762EB25799B308407B79AC1 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { bool V_0 = false; { bool L_0 = __this->get_isReady_22(); return L_0; } } // System.Void Mirror.Examples.Tanks.Tank::set_NetworkisReady(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_set_NetworkisReady_m3982E97244753820F657768E93EE51F65BD19F53 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_set_NetworkisReady_m3982E97244753820F657768E93EE51F65BD19F53_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { bool L_0 = ___value0; bool* L_1 = __this->get_address_of_isReady_22(); bool L_2 = NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539(__this, L_0, (bool*)L_1, /*hidden argument*/NetworkBehaviour_SyncVarEqual_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_mFA57E3577D0B6E5B2F30ABDB3743EBAD430C0539_RuntimeMethod_var); if (L_2) { goto IL_0032; } } { bool L_3 = __this->get_isReady_22(); V_0 = L_3; bool L_4 = ___value0; bool* L_5 = __this->get_address_of_isReady_22(); NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8(__this, L_4, (bool*)L_5, ((int64_t)16LL), /*hidden argument*/NetworkBehaviour_SetSyncVar_TisBoolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_m13526032096531A4ED049022ADF72ABCEDB1D7B8_RuntimeMethod_var); } IL_0032: { return; } } // System.Void Mirror.Examples.Tanks.Tank::UserCode_CmdFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_UserCode_CmdFire_mB685757843B7146FA587A360905BE762599F3070 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_UserCode_CmdFire_mB685757843B7146FA587A360905BE762599F3070_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // GameObject projectile = Instantiate(projectilePrefab, projectileMount.position, transform.rotation); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0 = __this->get_projectilePrefab_16(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = __this->get_projectileMount_17(); NullCheck(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_1, /*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_3); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_4 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_5 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B(L_0, L_2, L_4, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m81B599A0051F8F4543E5C73A11585E96E940943B_RuntimeMethod_var); // projectile.GetComponent<Projectile>().source = gameObject; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = L_5; NullCheck(L_6); Projectile_t1C5430FC42935877498341CC359F93F1987C4586 * L_7 = GameObject_GetComponent_TisProjectile_t1C5430FC42935877498341CC359F93F1987C4586_mD606B95216A2ACAAC347F36097DEF62F8166858A(L_6, /*hidden argument*/GameObject_GetComponent_TisProjectile_t1C5430FC42935877498341CC359F93F1987C4586_mD606B95216A2ACAAC347F36097DEF62F8166858A_RuntimeMethod_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); NullCheck(L_7); L_7->set_source_16(L_8); // NetworkServer.Spawn(projectile); IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_Spawn_mE71DE744EA836EE5C4EA51B6FCDDCDB83C1D7846(L_6, (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 *)NULL, /*hidden argument*/NULL); // RpcOnFire(); Tank_RpcOnFire_mEF7A49115867A9BF0A22B24534B380CA9B57E19D(__this, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Tank::InvokeUserCode_CmdFire(Mirror.NetworkBehaviour,Mirror.NetworkReader,Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_InvokeUserCode_CmdFire_m8B187B082DE58CED94A34E2167E0F2A3B0D1EF4A (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * ___obj0, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader1, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___senderConnection2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_InvokeUserCode_CmdFire_m8B187B082DE58CED94A34E2167E0F2A3B0D1EF4A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(_stringLiteral77268F8E0AEA59C91A55EDE2F7B86EEA25D51817, /*hidden argument*/NULL); return; } IL_0015: { NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * L_1 = ___obj0; NullCheck(((Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *)CastclassClass((RuntimeObject*)L_1, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_il2cpp_TypeInfo_var))); Tank_UserCode_CmdFire_mB685757843B7146FA587A360905BE762599F3070(((Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *)CastclassClass((RuntimeObject*)L_1, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Tank::UserCode_RpcOnFire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_UserCode_RpcOnFire_m72C1C6D425EF97D77C7A4E870E52F1B69327AD27 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_UserCode_RpcOnFire_m72C1C6D425EF97D77C7A4E870E52F1B69327AD27_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // animator.SetTrigger("Shoot"); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_0 = __this->get_animator_13(); NullCheck(L_0); Animator_SetTrigger_m2D79D155CABD81B1CC75EFC35D90508B58D7211C(L_0, _stringLiteral63D5B7B61C9A932F0CFFA0506AD506F2DC0E23A8, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Tank::InvokeUserCode_RpcOnFire(Mirror.NetworkBehaviour,Mirror.NetworkReader,Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_InvokeUserCode_RpcOnFire_m49BF45FC7E528190C8B0B33D50FFD1C81F95AE22 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * ___obj0, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader1, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___senderConnection2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_InvokeUserCode_RpcOnFire_m49BF45FC7E528190C8B0B33D50FFD1C81F95AE22_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_il2cpp_TypeInfo_var); bool L_0 = NetworkClient_get_active_m80C7ACA728DE7F6F6B5DC6C0E80B5AD0D287EA37(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(_stringLiteralA7F80BCE9ECBDA5A753E0B76268039021F829D21, /*hidden argument*/NULL); return; } IL_0015: { NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * L_1 = ___obj0; NullCheck(((Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *)CastclassClass((RuntimeObject*)L_1, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_il2cpp_TypeInfo_var))); Tank_UserCode_RpcOnFire_m72C1C6D425EF97D77C7A4E870E52F1B69327AD27(((Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *)CastclassClass((RuntimeObject*)L_1, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Tank::UserCode_CmdReady(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_UserCode_CmdReady_m00189A9E8401D2AE01228E9EDE0C62193F57FF41 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, String_t* ___playername0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_UserCode_CmdReady_m00189A9E8401D2AE01228E9EDE0C62193F57FF41_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (string.IsNullOrEmpty(playername)) String_t* L_0 = ___playername0; bool L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0027; } } { // playerName = "PLAYER" + Random.Range(1, 99); int32_t L_2 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(1, ((int32_t)99), /*hidden argument*/NULL); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); String_t* L_5 = String_Concat_m4D0DDA7FEDB75304E5FDAF8489A0478EE58A45F2(_stringLiteralB35F7D8541174188E8437B60A2FB97F632EAA3EE, L_4, /*hidden argument*/NULL); Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8(__this, L_5, /*hidden argument*/NULL); // } goto IL_002e; } IL_0027: { // playerName = playername; String_t* L_6 = ___playername0; Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8(__this, L_6, /*hidden argument*/NULL); } IL_002e: { // isReady = true; Tank_set_NetworkisReady_m3982E97244753820F657768E93EE51F65BD19F53(__this, (bool)1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.Tank::InvokeUserCode_CmdReady(Mirror.NetworkBehaviour,Mirror.NetworkReader,Mirror.NetworkConnection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_InvokeUserCode_CmdReady_m5B6DE52F097824FD911935253865077442537080 (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * ___obj0, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader1, NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___senderConnection2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_InvokeUserCode_CmdReady_m5B6DE52F097824FD911935253865077442537080_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(_stringLiteralA8AB71C4BB80651069C81E255DEB65CD7D6C8E1A, /*hidden argument*/NULL); return; } IL_0015: { NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * L_1 = ___obj0; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_2 = ___reader1; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); String_t* L_3 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_2, /*hidden argument*/NULL); NullCheck(((Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *)CastclassClass((RuntimeObject*)L_1, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_il2cpp_TypeInfo_var))); Tank_UserCode_CmdReady_m00189A9E8401D2AE01228E9EDE0C62193F57FF41(((Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *)CastclassClass((RuntimeObject*)L_1, Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_il2cpp_TypeInfo_var)), L_3, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Tanks.Tank::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank__cctor_m64F0633CAC66CB4DD7ADCE09884C1DEACDD58D83 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank__cctor_m64F0633CAC66CB4DD7ADCE09884C1DEACDD58D83_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * L_2 = (CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF *)il2cpp_codegen_object_new(CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF_il2cpp_TypeInfo_var); CmdDelegate__ctor_m25AAD7CB2265BEF6CC263E5F620322D0B874CAD8(L_2, NULL, (intptr_t)((intptr_t)Tank_InvokeUserCode_CmdFire_m8B187B082DE58CED94A34E2167E0F2A3B0D1EF4A_RuntimeMethod_var), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RemoteCallHelper_t698E15E60D843C81D10564E744E4D9829DB33D02_il2cpp_TypeInfo_var); RemoteCallHelper_RegisterCommandDelegate_m196440B96E1D7A909D38037A770734FC5139842F(L_1, _stringLiteral94E08295939398079899848C6F186D1829FBF770, L_2, (bool)0, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast<intptr_t> (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL); CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * L_5 = (CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF *)il2cpp_codegen_object_new(CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF_il2cpp_TypeInfo_var); CmdDelegate__ctor_m25AAD7CB2265BEF6CC263E5F620322D0B874CAD8(L_5, NULL, (intptr_t)((intptr_t)Tank_InvokeUserCode_CmdReady_m5B6DE52F097824FD911935253865077442537080_RuntimeMethod_var), /*hidden argument*/NULL); RemoteCallHelper_RegisterCommandDelegate_m196440B96E1D7A909D38037A770734FC5139842F(L_4, _stringLiteral2E701C00640AC4E2F929D6EBA22107C6FB7CBF9F, L_5, (bool)0, /*hidden argument*/NULL); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast<intptr_t> (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_0_0_0_var) }; Type_t * L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL); CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF * L_8 = (CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF *)il2cpp_codegen_object_new(CmdDelegate_t6EA291A026854A08A12F2EE197904131DAFA3AFF_il2cpp_TypeInfo_var); CmdDelegate__ctor_m25AAD7CB2265BEF6CC263E5F620322D0B874CAD8(L_8, NULL, (intptr_t)((intptr_t)Tank_InvokeUserCode_RpcOnFire_m49BF45FC7E528190C8B0B33D50FFD1C81F95AE22_RuntimeMethod_var), /*hidden argument*/NULL); RemoteCallHelper_RegisterRpcDelegate_m3381432C36F433DF9E6D924514BEBAD8B37B7AC9(L_7, _stringLiteral72E65675DF22C714B3ACB6E110695F3C99E6AF9D, L_8, /*hidden argument*/NULL); return; } } // System.Boolean Mirror.Examples.Tanks.Tank::SerializeSyncVars(Mirror.NetworkWriter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tank_SerializeSyncVars_mD43B12580585595D4AC7964264340F8EE7365442 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, bool ___forceAll1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_SerializeSyncVars_mD43B12580585595D4AC7964264340F8EE7365442_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; bool L_1 = ___forceAll1; bool L_2 = NetworkBehaviour_SerializeSyncVars_m4AF8BE097726BA018E3762C14E33BDBF3A5C4819(__this, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ___forceAll1; if (!L_3) { goto IL_004d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_4 = ___writer0; int32_t L_5 = __this->get_health_18(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_4, L_5, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_6 = ___writer0; int32_t L_7 = __this->get_score_19(); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_6, L_7, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_8 = ___writer0; String_t* L_9 = __this->get_playerName_20(); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_8, L_9, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_10 = ___writer0; bool L_11 = __this->get_allowMovement_21(); NetworkWriterExtensions_WriteBoolean_m1286C9865F21B0EB024250572C0ADDC319782162(L_10, L_11, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_12 = ___writer0; bool L_13 = __this->get_isReady_22(); NetworkWriterExtensions_WriteBoolean_m1286C9865F21B0EB024250572C0ADDC319782162(L_12, L_13, /*hidden argument*/NULL); return (bool)1; } IL_004d: { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_14 = ___writer0; uint64_t L_15 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedUInt64_m4AC0ABC95C0965DE0AA4520B6AE43BFA2095701B(L_14, L_15, /*hidden argument*/NULL); uint64_t L_16 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_16&(int64_t)((int64_t)1LL)))) { goto IL_007d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_17 = ___writer0; int32_t L_18 = __this->get_health_18(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_17, L_18, /*hidden argument*/NULL); V_0 = (bool)1; } IL_007d: { uint64_t L_19 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_19&(int64_t)((int64_t)2LL)))) { goto IL_00a1; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_20 = ___writer0; int32_t L_21 = __this->get_score_19(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WritePackedInt32_m03D1FCA3D52085F2B9B879092D3996C4E90AF171(L_20, L_21, /*hidden argument*/NULL); V_0 = (bool)1; } IL_00a1: { uint64_t L_22 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_22&(int64_t)((int64_t)4LL)))) { goto IL_00c5; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_23 = ___writer0; String_t* L_24 = __this->get_playerName_20(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_23, L_24, /*hidden argument*/NULL); V_0 = (bool)1; } IL_00c5: { uint64_t L_25 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_25&(int64_t)((int64_t)8LL)))) { goto IL_00e9; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_26 = ___writer0; bool L_27 = __this->get_allowMovement_21(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteBoolean_m1286C9865F21B0EB024250572C0ADDC319782162(L_26, L_27, /*hidden argument*/NULL); V_0 = (bool)1; } IL_00e9: { uint64_t L_28 = NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline(__this, /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_28&(int64_t)((int64_t)16LL)))) { goto IL_010d; } } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_29 = ___writer0; bool L_30 = __this->get_isReady_22(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteBoolean_m1286C9865F21B0EB024250572C0ADDC319782162(L_29, L_30, /*hidden argument*/NULL); V_0 = (bool)1; } IL_010d: { bool L_31 = V_0; return L_31; } } // System.Void Mirror.Examples.Tanks.Tank::DeserializeSyncVars(Mirror.NetworkReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tank_DeserializeSyncVars_m588EE8294DD17A9A01AB3382A10D7A08A5F58C20 (Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, bool ___initialState1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Tank_DeserializeSyncVars_m588EE8294DD17A9A01AB3382A10D7A08A5F58C20_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; String_t* V_3 = NULL; bool V_4 = false; bool V_5 = false; int32_t V_6 = 0; int32_t V_7 = 0; String_t* V_8 = NULL; bool V_9 = false; bool V_10 = false; { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; bool L_1 = ___initialState1; NetworkBehaviour_DeserializeSyncVars_mC87ECFD6F9C2D5C1306ABDF2CF6498864C84677A(__this, L_0, L_1, /*hidden argument*/NULL); bool L_2 = ___initialState1; if (!L_2) { goto IL_007d; } } { int32_t L_3 = __this->get_health_18(); V_1 = L_3; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_4 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_5 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_4, /*hidden argument*/NULL); Tank_set_Networkhealth_m507DDE5DDB11E1627F66444DB398722F8F4FD183(__this, L_5, /*hidden argument*/NULL); int32_t L_6 = __this->get_score_19(); V_2 = L_6; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_7 = ___reader0; int32_t L_8 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_7, /*hidden argument*/NULL); Tank_set_Networkscore_m07BB7DE07AA067E4B46F4BE1DA8A8A8D531E50F2(__this, L_8, /*hidden argument*/NULL); String_t* L_9 = __this->get_playerName_20(); V_3 = L_9; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_10 = ___reader0; String_t* L_11 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_10, /*hidden argument*/NULL); Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8(__this, L_11, /*hidden argument*/NULL); bool L_12 = __this->get_allowMovement_21(); V_4 = L_12; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_13 = ___reader0; bool L_14 = NetworkReaderExtensions_ReadBoolean_mA9AED23EBC6083FDFFD749EED46F03BAFC6F0ED8(L_13, /*hidden argument*/NULL); Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1(__this, L_14, /*hidden argument*/NULL); bool L_15 = __this->get_isReady_22(); V_5 = L_15; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_16 = ___reader0; bool L_17 = NetworkReaderExtensions_ReadBoolean_mA9AED23EBC6083FDFFD749EED46F03BAFC6F0ED8(L_16, /*hidden argument*/NULL); Tank_set_NetworkisReady_m3982E97244753820F657768E93EE51F65BD19F53(__this, L_17, /*hidden argument*/NULL); return; } IL_007d: { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_18 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); uint64_t L_19 = NetworkReaderExtensions_ReadPackedUInt64_mEAA3ABBEEEDD704AB33210B58A42E68D1FEBF380(L_18, /*hidden argument*/NULL); V_0 = L_19; int64_t L_20 = V_0; if (!((int64_t)((int64_t)L_20&(int64_t)((int64_t)1LL)))) { goto IL_00ab; } } { int32_t L_21 = __this->get_health_18(); V_6 = L_21; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_22 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_23 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_22, /*hidden argument*/NULL); Tank_set_Networkhealth_m507DDE5DDB11E1627F66444DB398722F8F4FD183(__this, L_23, /*hidden argument*/NULL); } IL_00ab: { int64_t L_24 = V_0; if (!((int64_t)((int64_t)L_24&(int64_t)((int64_t)2LL)))) { goto IL_00d2; } } { int32_t L_25 = __this->get_score_19(); V_7 = L_25; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_26 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); int32_t L_27 = NetworkReaderExtensions_ReadPackedInt32_m312D81F4ED2DF3787F1592E03AF7D024AEE23DF0(L_26, /*hidden argument*/NULL); Tank_set_Networkscore_m07BB7DE07AA067E4B46F4BE1DA8A8A8D531E50F2(__this, L_27, /*hidden argument*/NULL); } IL_00d2: { int64_t L_28 = V_0; if (!((int64_t)((int64_t)L_28&(int64_t)((int64_t)4LL)))) { goto IL_00f9; } } { String_t* L_29 = __this->get_playerName_20(); V_8 = L_29; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_30 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); String_t* L_31 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_30, /*hidden argument*/NULL); Tank_set_NetworkplayerName_m1D83D96EFB11F23F886349E3993CA5A96B7ECCE8(__this, L_31, /*hidden argument*/NULL); } IL_00f9: { int64_t L_32 = V_0; if (!((int64_t)((int64_t)L_32&(int64_t)((int64_t)8LL)))) { goto IL_0120; } } { bool L_33 = __this->get_allowMovement_21(); V_9 = L_33; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_34 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); bool L_35 = NetworkReaderExtensions_ReadBoolean_mA9AED23EBC6083FDFFD749EED46F03BAFC6F0ED8(L_34, /*hidden argument*/NULL); Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1(__this, L_35, /*hidden argument*/NULL); } IL_0120: { int64_t L_36 = V_0; if (!((int64_t)((int64_t)L_36&(int64_t)((int64_t)16LL)))) { goto IL_0147; } } { bool L_37 = __this->get_isReady_22(); V_10 = L_37; NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_38 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); bool L_39 = NetworkReaderExtensions_ReadBoolean_mA9AED23EBC6083FDFFD749EED46F03BAFC6F0ED8(L_38, /*hidden argument*/NULL); Tank_set_NetworkisReady_m3982E97244753820F657768E93EE51F65BD19F53(__this, L_39, /*hidden argument*/NULL); } IL_0147: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Tanks.TankGameManager::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_Update_m7E09DE0A18897F0B0719BE3353815983780293D9 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager_Update_m7E09DE0A18897F0B0719BE3353815983780293D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (NetworkManager.singleton.isNetworkActive) IL2CPP_RUNTIME_CLASS_INIT(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var); NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * L_0 = NetworkManager_get_singleton_m3687E70BBF51C41E6F20B606EF0E0E40D13E7641_inline(/*hidden argument*/NULL); NullCheck(L_0); bool L_1 = L_0->get_isNetworkActive_23(); if (!L_1) { goto IL_003a; } } { // GameReadyCheck(); TankGameManager_GameReadyCheck_m3F60D6FED4FD0B67DB7255207A4A88A9CEE141E1(__this, /*hidden argument*/NULL); // GameOverCheck(); TankGameManager_GameOverCheck_m106F192D1DEECE0B97EF24BB3630E35732F33E05(__this, /*hidden argument*/NULL); // if (LocalPlayer == null) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_2 = __this->get_LocalPlayer_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_3 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_2, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_002d; } } { // FindLocalTank(); TankGameManager_FindLocalTank_m286379602946290D14961ED273B4A3D1D299206A(__this, /*hidden argument*/NULL); // } return; } IL_002d: { // ShowReadyMenu(); TankGameManager_ShowReadyMenu_m51D09019A53E7EB05D6E449BABA4B00F1AEF99A3(__this, /*hidden argument*/NULL); // UpdateStats(); TankGameManager_UpdateStats_m3B3D17022045A97224432D7FD0581F9BF3544BEA(__this, /*hidden argument*/NULL); // } return; } IL_003a: { // IsGameReady = false; __this->set_IsGameReady_14((bool)0); // LocalPlayer = null; __this->set_LocalPlayer_5((Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 *)NULL); // players.Clear(); List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_4 = __this->get_players_16(); NullCheck(L_4); List_1_Clear_mA0F0AA9C5F1E217E885EAC135CE2F2136F45289C(L_4, /*hidden argument*/List_1_Clear_mA0F0AA9C5F1E217E885EAC135CE2F2136F45289C_RuntimeMethod_var); // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::ShowReadyMenu() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_ShowReadyMenu_m51D09019A53E7EB05D6E449BABA4B00F1AEF99A3 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager_ShowReadyMenu_m51D09019A53E7EB05D6E449BABA4B00F1AEF99A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (NetworkManager.singleton.mode == NetworkManagerMode.ServerOnly) IL2CPP_RUNTIME_CLASS_INIT(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var); NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * L_0 = NetworkManager_get_singleton_m3687E70BBF51C41E6F20B606EF0E0E40D13E7641_inline(/*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = NetworkManager_get_mode_m7DDDC4AFB7EC130F64E6BA4E916235B46C338337_inline(L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_000e; } } { // return; return; } IL_000e: { // if (LocalPlayer.isReady) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_2 = __this->get_LocalPlayer_5(); NullCheck(L_2); bool L_3 = L_2->get_isReady_22(); if (!L_3) { goto IL_001c; } } { // return; return; } IL_001c: { // StartPanel.SetActive(true); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_4 = __this->get_StartPanel_6(); NullCheck(L_4); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_4, (bool)1, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::GameReadyCheck() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_GameReadyCheck_m3F60D6FED4FD0B67DB7255207A4A88A9CEE141E1 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager_GameReadyCheck_m3F60D6FED4FD0B67DB7255207A4A88A9CEE141E1_MetadataUsageId); s_Il2CppMethodInitialized = true; } Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E V_0; memset((&V_0), 0, sizeof(V_0)); KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 V_1; memset((&V_1), 0, sizeof(V_1)); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * V_2 = NULL; bool V_3 = false; Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { // if (!IsGameReady) bool L_0 = __this->get_IsGameReady_14(); if (L_0) { goto IL_00ea; } } { // foreach (KeyValuePair<uint, NetworkIdentity> kvp in NetworkIdentity.spawned) IL2CPP_RUNTIME_CLASS_INIT(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_il2cpp_TypeInfo_var); Dictionary_2_tC47464E755F7C5EDFD2B178067DAA88CBFDA1817 * L_1 = ((NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_StaticFields*)il2cpp_codegen_static_fields_for(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_il2cpp_TypeInfo_var))->get_spawned_16(); NullCheck(L_1); Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E L_2 = Dictionary_2_GetEnumerator_mF632AEB48D9B956849730FF51991CA7DAC26612D(L_1, /*hidden argument*/Dictionary_2_GetEnumerator_mF632AEB48D9B956849730FF51991CA7DAC26612D_RuntimeMethod_var); V_0 = L_2; } IL_0016: try { // begin try (depth: 1) { goto IL_0050; } IL_0018: { // foreach (KeyValuePair<uint, NetworkIdentity> kvp in NetworkIdentity.spawned) KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 L_3 = Enumerator_get_Current_m5A22240C81E287D939F4D8E1ADC390111675879A_inline((Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E *)(&V_0), /*hidden argument*/Enumerator_get_Current_m5A22240C81E287D939F4D8E1ADC390111675879A_RuntimeMethod_var); V_1 = L_3; // Tank comp = kvp.Value.GetComponent<Tank>(); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_4 = KeyValuePair_2_get_Value_m846C370AE06B4D6452B80350FD41D499B8705AF4_inline((KeyValuePair_2_tF6A5EF660D4FC4E9DA58194349CF757836D69566 *)(&V_1), /*hidden argument*/KeyValuePair_2_get_Value_m846C370AE06B4D6452B80350FD41D499B8705AF4_RuntimeMethod_var); NullCheck(L_4); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_5 = Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92(L_4, /*hidden argument*/Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92_RuntimeMethod_var); V_2 = L_5; // if (comp != null && !players.Contains(comp)) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_6 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_7 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_6, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_7) { goto IL_0050; } } IL_0036: { List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_8 = __this->get_players_16(); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_9 = V_2; NullCheck(L_8); bool L_10 = List_1_Contains_mBF424AC51797ED69205E4AA60177CB5842AD029A(L_8, L_9, /*hidden argument*/List_1_Contains_mBF424AC51797ED69205E4AA60177CB5842AD029A_RuntimeMethod_var); if (L_10) { goto IL_0050; } } IL_0044: { // players.Add(comp); List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_11 = __this->get_players_16(); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_12 = V_2; NullCheck(L_11); List_1_Add_mFF7A0506767C9348B92A6059E3F1414DA96D95CB(L_11, L_12, /*hidden argument*/List_1_Add_mFF7A0506767C9348B92A6059E3F1414DA96D95CB_RuntimeMethod_var); } IL_0050: { // foreach (KeyValuePair<uint, NetworkIdentity> kvp in NetworkIdentity.spawned) bool L_13 = Enumerator_MoveNext_m67C5F9007588ACD723F2DF188D4F8AA76660CE4D((Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m67C5F9007588ACD723F2DF188D4F8AA76660CE4D_RuntimeMethod_var); if (L_13) { goto IL_0018; } } IL_0059: { IL2CPP_LEAVE(0x69, FINALLY_005b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_005b; } FINALLY_005b: { // begin finally (depth: 1) Enumerator_Dispose_mABDFC6B9C9E8D1289620F4A713E0C817B7F54C61((Enumerator_tF24673FC847538CAE1EC25A673C1191D7587366E *)(&V_0), /*hidden argument*/Enumerator_Dispose_mABDFC6B9C9E8D1289620F4A713E0C817B7F54C61_RuntimeMethod_var); IL2CPP_END_FINALLY(91) } // end finally (depth: 1) IL2CPP_CLEANUP(91) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x69, IL_0069) } IL_0069: { // if (players.Count >= MinimumPlayersForGame) List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_14 = __this->get_players_16(); NullCheck(L_14); int32_t L_15 = List_1_get_Count_mA3ECEA98E5D2E36FFF42B0B11B9CE50A2F03D0A9_inline(L_14, /*hidden argument*/List_1_get_Count_mA3ECEA98E5D2E36FFF42B0B11B9CE50A2F03D0A9_RuntimeMethod_var); int32_t L_16 = __this->get_MinimumPlayersForGame_4(); if ((((int32_t)L_15) < ((int32_t)L_16))) { goto IL_00ea; } } { // bool AllReady = true; V_3 = (bool)1; // foreach (Tank tank in players) List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_17 = __this->get_players_16(); NullCheck(L_17); Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 L_18 = List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2(L_17, /*hidden argument*/List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2_RuntimeMethod_var); V_4 = L_18; } IL_008b: try { // begin try (depth: 1) { goto IL_009d; } IL_008d: { // foreach (Tank tank in players) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_19 = Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_inline((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_4), /*hidden argument*/Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_RuntimeMethod_var); // if (!tank.isReady) NullCheck(L_19); bool L_20 = L_19->get_isReady_22(); if (L_20) { goto IL_009d; } } IL_009b: { // AllReady = false; V_3 = (bool)0; } IL_009d: { // foreach (Tank tank in players) bool L_21 = Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_4), /*hidden argument*/Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28_RuntimeMethod_var); if (L_21) { goto IL_008d; } } IL_00a6: { IL2CPP_LEAVE(0xB6, FINALLY_00a8); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00a8; } FINALLY_00a8: { // begin finally (depth: 1) Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_4), /*hidden argument*/Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2_RuntimeMethod_var); IL2CPP_END_FINALLY(168) } // end finally (depth: 1) IL2CPP_CLEANUP(168) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xB6, IL_00b6) } IL_00b6: { // if (AllReady) bool L_22 = V_3; if (!L_22) { goto IL_00ea; } } { // IsGameReady = true; __this->set_IsGameReady_14((bool)1); // AllowTankMovement(); TankGameManager_AllowTankMovement_m5FCBE38BE3E84C10D03D1EF5327765B386C398A9(__this, /*hidden argument*/NULL); // StartPanel.SetActive(false); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_23 = __this->get_StartPanel_6(); NullCheck(L_23); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_23, (bool)0, /*hidden argument*/NULL); // HealthTextLabel.SetActive(true); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_24 = __this->get_HealthTextLabel_8(); NullCheck(L_24); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_24, (bool)1, /*hidden argument*/NULL); // ScoreTextLabel.SetActive(true); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_25 = __this->get_ScoreTextLabel_9(); NullCheck(L_25); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_25, (bool)1, /*hidden argument*/NULL); } IL_00ea: { // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::GameOverCheck() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_GameOverCheck_m106F192D1DEECE0B97EF24BB3630E35732F33E05 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager_GameOverCheck_m106F192D1DEECE0B97EF24BB3630E35732F33E05_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 V_1; memset((&V_1), 0, sizeof(V_1)); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { // if (!IsGameReady) bool L_0 = __this->get_IsGameReady_14(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // if (players.Count == 1) List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_1 = __this->get_players_16(); NullCheck(L_1); int32_t L_2 = List_1_get_Count_mA3ECEA98E5D2E36FFF42B0B11B9CE50A2F03D0A9_inline(L_1, /*hidden argument*/List_1_get_Count_mA3ECEA98E5D2E36FFF42B0B11B9CE50A2F03D0A9_RuntimeMethod_var); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_0018; } } { // return; return; } IL_0018: { // int alivePlayerCount = 0; V_0 = 0; // foreach (Tank tank in players) List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_3 = __this->get_players_16(); NullCheck(L_3); Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 L_4 = List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2(L_3, /*hidden argument*/List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2_RuntimeMethod_var); V_1 = L_4; } IL_0026: try { // begin try (depth: 1) { goto IL_004d; } IL_0028: { // foreach (Tank tank in players) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_5 = Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_inline((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_1), /*hidden argument*/Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_RuntimeMethod_var); V_2 = L_5; // if (!tank.isDead) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_6 = V_2; NullCheck(L_6); bool L_7 = Tank_get_isDead_m4EBD0982ED98DF2C76D9AE2AA1F16E446CCC26E7(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_004d; } } IL_0038: { // alivePlayerCount++; int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); // WinnerNameText.text = tank.playerName; Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_9 = __this->get_WinnerNameText_13(); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_10 = V_2; NullCheck(L_10); String_t* L_11 = L_10->get_playerName_20(); NullCheck(L_9); VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_9, L_11); } IL_004d: { // foreach (Tank tank in players) bool L_12 = Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28_RuntimeMethod_var); if (L_12) { goto IL_0028; } } IL_0056: { IL2CPP_LEAVE(0x66, FINALLY_0058); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0058; } FINALLY_0058: { // begin finally (depth: 1) Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_1), /*hidden argument*/Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2_RuntimeMethod_var); IL2CPP_END_FINALLY(88) } // end finally (depth: 1) IL2CPP_CLEANUP(88) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x66, IL_0066) } IL_0066: { // if (alivePlayerCount == 1) int32_t L_13 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)1)))) { goto IL_0083; } } { // IsGameOver = true; __this->set_IsGameOver_15((bool)1); // GameOverPanel.SetActive(true); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_14 = __this->get_GameOverPanel_7(); NullCheck(L_14); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_14, (bool)1, /*hidden argument*/NULL); // DisallowTankMovement(); TankGameManager_DisallowTankMovement_mF3B0B6FDC2991DA85BAC57203DD18787179A80A2(__this, /*hidden argument*/NULL); } IL_0083: { // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::FindLocalTank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_FindLocalTank_m286379602946290D14961ED273B4A3D1D299206A (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager_FindLocalTank_m286379602946290D14961ED273B4A3D1D299206A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // if (ClientScene.localPlayer == null) IL2CPP_RUNTIME_CLASS_INIT(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_il2cpp_TypeInfo_var); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_0 = ClientScene_get_localPlayer_m7354A403C57BAD08DDD216140CAD2DADF66E14CB_inline(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_000e; } } { // return; return; } IL_000e: { // LocalPlayer = ClientScene.localPlayer.GetComponent<Tank>(); IL2CPP_RUNTIME_CLASS_INIT(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_il2cpp_TypeInfo_var); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_2 = ClientScene_get_localPlayer_m7354A403C57BAD08DDD216140CAD2DADF66E14CB_inline(/*hidden argument*/NULL); NullCheck(L_2); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_3 = Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92(L_2, /*hidden argument*/Component_GetComponent_TisTank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8_m49E4DBA7B1E7AA5E05FCDD4B12D88A86EE757E92_RuntimeMethod_var); __this->set_LocalPlayer_5(L_3); // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::UpdateStats() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_UpdateStats_m3B3D17022045A97224432D7FD0581F9BF3544BEA (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { { // HealthText.text = LocalPlayer.health.ToString(); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_0 = __this->get_HealthText_10(); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_1 = __this->get_LocalPlayer_5(); NullCheck(L_1); int32_t* L_2 = L_1->get_address_of_health_18(); String_t* L_3 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_2, /*hidden argument*/NULL); NullCheck(L_0); VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, L_3); // ScoreText.text = LocalPlayer.score.ToString(); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_4 = __this->get_ScoreText_11(); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_5 = __this->get_LocalPlayer_5(); NullCheck(L_5); int32_t* L_6 = L_5->get_address_of_score_19(); String_t* L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_6, /*hidden argument*/NULL); NullCheck(L_4); VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_4, L_7); // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::ReadyButtonHandler() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_ReadyButtonHandler_m66E6A27042C272A8A4DCAC9438D2CF86A064531C (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { { // LocalPlayer.SendReadyToServer(PlayerNameText.text); Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_0 = __this->get_LocalPlayer_5(); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_1 = __this->get_PlayerNameText_12(); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(74 /* System.String UnityEngine.UI.Text::get_text() */, L_1); NullCheck(L_0); Tank_SendReadyToServer_mECA51E145A8E961BC0E0F89E9553D69C21964D45(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::AllowTankMovement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_AllowTankMovement_m5FCBE38BE3E84C10D03D1EF5327765B386C398A9 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager_AllowTankMovement_m5FCBE38BE3E84C10D03D1EF5327765B386C398A9_MetadataUsageId); s_Il2CppMethodInitialized = true; } Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { // foreach (Tank tank in players) List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_0 = __this->get_players_16(); NullCheck(L_0); Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 L_1 = List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2(L_0, /*hidden argument*/List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2_RuntimeMethod_var); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_001b; } IL_000e: { // foreach (Tank tank in players) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_2 = Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_inline((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_0), /*hidden argument*/Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_RuntimeMethod_var); // tank.allowMovement = true; NullCheck(L_2); Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1(L_2, (bool)1, /*hidden argument*/NULL); } IL_001b: { // foreach (Tank tank in players) bool L_3 = Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28_RuntimeMethod_var); if (L_3) { goto IL_000e; } } IL_0024: { IL2CPP_LEAVE(0x34, FINALLY_0026); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0026; } FINALLY_0026: { // begin finally (depth: 1) Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2_RuntimeMethod_var); IL2CPP_END_FINALLY(38) } // end finally (depth: 1) IL2CPP_CLEANUP(38) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x34, IL_0034) } IL_0034: { // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::DisallowTankMovement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager_DisallowTankMovement_mF3B0B6FDC2991DA85BAC57203DD18787179A80A2 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager_DisallowTankMovement_mF3B0B6FDC2991DA85BAC57203DD18787179A80A2_MetadataUsageId); s_Il2CppMethodInitialized = true; } Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { // foreach (Tank tank in players) List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_0 = __this->get_players_16(); NullCheck(L_0); Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 L_1 = List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2(L_0, /*hidden argument*/List_1_GetEnumerator_mA26CF040412A7DE713DD251B587EEB3DE01112E2_RuntimeMethod_var); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_001b; } IL_000e: { // foreach (Tank tank in players) Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 * L_2 = Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_inline((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_0), /*hidden argument*/Enumerator_get_Current_m65F4CF533B99C247C8EF4B6C7D937E2ACE9E7758_RuntimeMethod_var); // tank.allowMovement = false; NullCheck(L_2); Tank_set_NetworkallowMovement_m3123BD5652FAA14441A3E7AE757B37F463BE25B1(L_2, (bool)0, /*hidden argument*/NULL); } IL_001b: { // foreach (Tank tank in players) bool L_3 = Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m8EA77FBF74AF22322D2E725126330A6C4222BB28_RuntimeMethod_var); if (L_3) { goto IL_000e; } } IL_0024: { IL2CPP_LEAVE(0x34, FINALLY_0026); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0026; } FINALLY_0026: { // begin finally (depth: 1) Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2((Enumerator_tF4E0A4AB76B74C95DB92B5BDF7D5061557850DC4 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m9A30C7E02AB73D90978CDFBC70613248864458B2_RuntimeMethod_var); IL2CPP_END_FINALLY(38) } // end finally (depth: 1) IL2CPP_CLEANUP(38) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x34, IL_0034) } IL_0034: { // } return; } } // System.Void Mirror.Examples.Tanks.TankGameManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TankGameManager__ctor_m2368A709A11F9BBC90492D443C19A0A4C2D00F05 (TankGameManager_t374ABF2D5382087844659CB45BC7BBC9A3CB35B3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TankGameManager__ctor_m2368A709A11F9BBC90492D443C19A0A4C2D00F05_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public int MinimumPlayersForGame = 1; __this->set_MinimumPlayersForGame_4(1); // public List<Tank> players = new List<Tank>(); List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 * L_0 = (List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8 *)il2cpp_codegen_object_new(List_1_t07068F20996791453A642A4B45AF85DFE4A5A7A8_il2cpp_TypeInfo_var); List_1__ctor_mE3124E023FDA2BC32372ABD9149DEA3FA0C15AEE(L_0, /*hidden argument*/List_1__ctor_mE3124E023FDA2BC32372ABD9149DEA3FA0C15AEE_RuntimeMethod_var); __this->set_players_16(L_0); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Additive.ZoneHandler::OnTriggerEnter(UnityEngine.Collider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZoneHandler_OnTriggerEnter_m115F1187C0348FDA4B41C881C5B8AC12F1E0B044 (ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569 * __this, Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ZoneHandler_OnTriggerEnter_m115F1187C0348FDA4B41C881C5B8AC12F1E0B044_MetadataUsageId); s_Il2CppMethodInitialized = true; } SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE V_0; memset((&V_0), 0, sizeof(V_0)); { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(_stringLiteral95F14C5F4C1440E7A605F5353B1040BD67BE423F, /*hidden argument*/NULL); return; } IL_0015: { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Loading {0}", subScene); IL2CPP_RUNTIME_CLASS_INIT(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var); RuntimeObject* L_1 = ((ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_StaticFields*)il2cpp_codegen_static_fields_for(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var))->get_logger_12(); bool L_2 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0040; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Loading {0}", subScene); IL2CPP_RUNTIME_CLASS_INIT(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var); RuntimeObject* L_3 = ((ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_StaticFields*)il2cpp_codegen_static_fields_for(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var))->get_logger_12(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_4; String_t* L_6 = __this->get_subScene_13(); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6); NullCheck(L_3); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_3, 3, _stringLiteral4716B4213F132FA8253DF7BABD6B80EC0B13405B, L_5); } IL_0040: { // NetworkIdentity networkIdentity = other.gameObject.GetComponent<NetworkIdentity>(); Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_7 = ___other0; NullCheck(L_7); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_7, /*hidden argument*/NULL); NullCheck(L_8); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_9 = GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247(L_8, /*hidden argument*/GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247_RuntimeMethod_var); // NetworkServer.SendToClientOfPlayer(networkIdentity, new SceneMessage { sceneName = subScene, sceneOperation = SceneOperation.LoadAdditive }); il2cpp_codegen_initobj((&V_0), sizeof(SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE )); String_t* L_10 = __this->get_subScene_13(); (&V_0)->set_sceneName_0(L_10); (&V_0)->set_sceneOperation_1(1); SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E(L_9, L_11, 0, /*hidden argument*/NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E_RuntimeMethod_var); // } return; } } // System.Void Mirror.Examples.Additive.ZoneHandler::OnTriggerExit(UnityEngine.Collider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZoneHandler_OnTriggerExit_mFBD2006FAF2E2B73DA7EEB6FBB6069EFE2C42A8D (ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569 * __this, Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ZoneHandler_OnTriggerExit_mFBD2006FAF2E2B73DA7EEB6FBB6069EFE2C42A8D_MetadataUsageId); s_Il2CppMethodInitialized = true; } SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE V_0; memset((&V_0), 0, sizeof(V_0)); { IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline(/*hidden argument*/NULL); if (L_0) { goto IL_0015; } } { IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(_stringLiteral64386832B30FAC26704458F68FD5E515EA2F53E6, /*hidden argument*/NULL); return; } IL_0015: { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Unloading {0}", subScene); IL2CPP_RUNTIME_CLASS_INIT(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var); RuntimeObject* L_1 = ((ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_StaticFields*)il2cpp_codegen_static_fields_for(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var))->get_logger_12(); bool L_2 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0040; } } { // if (logger.LogEnabled()) logger.LogFormat(LogType.Log, "Unloading {0}", subScene); IL2CPP_RUNTIME_CLASS_INIT(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var); RuntimeObject* L_3 = ((ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_StaticFields*)il2cpp_codegen_static_fields_for(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var))->get_logger_12(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_4; String_t* L_6 = __this->get_subScene_13(); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6); NullCheck(L_3); InterfaceActionInvoker3< int32_t, String_t*, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(10 /* System.Void UnityEngine.ILogger::LogFormat(UnityEngine.LogType,System.String,System.Object[]) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_3, 3, _stringLiteralAC32ED29C1AAC04B78EED6E5A6AFB17ED29BCFE9, L_5); } IL_0040: { // NetworkIdentity networkIdentity = other.gameObject.GetComponent<NetworkIdentity>(); Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * L_7 = ___other0; NullCheck(L_7); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_7, /*hidden argument*/NULL); NullCheck(L_8); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_9 = GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247(L_8, /*hidden argument*/GameObject_GetComponent_TisNetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6_mFA75ACF3666006F9878974466A488C75BBD28247_RuntimeMethod_var); // NetworkServer.SendToClientOfPlayer(networkIdentity, new SceneMessage { sceneName = subScene, sceneOperation = SceneOperation.UnloadAdditive }); il2cpp_codegen_initobj((&V_0), sizeof(SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE )); String_t* L_10 = __this->get_subScene_13(); (&V_0)->set_sceneName_0(L_10); (&V_0)->set_sceneOperation_1(2); SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E(L_9, L_11, 0, /*hidden argument*/NetworkServer_SendToClientOfPlayer_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m8DE2A13FAAE5AA532BEF3591A919E2BF7189DD2E_RuntimeMethod_var); // } return; } } // System.Void Mirror.Examples.Additive.ZoneHandler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZoneHandler__ctor_mF853C3FDB9E5390F02996485269C5E289458A5ED (ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ZoneHandler__ctor_mF853C3FDB9E5390F02996485269C5E289458A5ED_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4_il2cpp_TypeInfo_var); NetworkBehaviour__ctor_mB98FF8F52DCEBEB3BC7679DE03FA50785207EE78(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Additive.ZoneHandler::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZoneHandler__cctor_m73A953F1598A0B02B8997E9D8963EF176FFC4FF9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ZoneHandler__cctor_m73A953F1598A0B02B8997E9D8963EF176FFC4FF9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // static readonly ILogger logger = LogFactory.GetLogger(typeof(ZoneHandler)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LogFactory_t359C989285E6F62B9F073C5F0F5FA52BAB518DB6_il2cpp_TypeInfo_var); RuntimeObject* L_2 = LogFactory_GetLogger_m1325F510684C0DEA3C16231F1D8EE10E9A55D5AC(L_1, 2, /*hidden argument*/NULL); ((ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_StaticFields*)il2cpp_codegen_static_fields_for(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569_il2cpp_TypeInfo_var))->set_logger_12(L_2); return; } } // System.Void Mirror.Examples.Additive.ZoneHandler::MirrorProcessed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZoneHandler_MirrorProcessed_mD878CD6B2017BB5823CE668EB63EF44327C7C390 (ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569 * __this, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__3__ctor_m10C1A15403DD46D8D5556DA1E5DAC24E5F830703 (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__3_System_IDisposable_Dispose_mDCFA78C76305DC9B04A6CB9ADDA1F31CCEC1F708 (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CLoadSubScenesU3Ed__3_MoveNext_mBD3701D32F9581995389A30C9A4F4E8EF8AB30D8 (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CLoadSubScenesU3Ed__3_MoveNext_mBD3701D32F9581995389A30C9A4F4E8EF8AB30D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * V_1 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0070; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); // logger.Log("Loading Scenes"); IL2CPP_RUNTIME_CLASS_INIT(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var); RuntimeObject* L_4 = ((AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields*)il2cpp_codegen_static_fields_for(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var))->get_logger_33(); NullCheck(L_4); InterfaceActionInvoker1< RuntimeObject * >::Invoke(8 /* System.Void UnityEngine.ILogger::Log(System.Object) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_4, _stringLiteral2F9670AB400BDA0B8502E26772DF292597A50639); // foreach (string sceneName in subScenes) AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * L_5 = V_1; NullCheck(L_5); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = L_5->get_subScenes_34(); __this->set_U3CU3E7__wrap1_3(L_6); __this->set_U3CU3E7__wrap2_4(0); goto IL_00b2; } IL_0042: { // foreach (string sceneName in subScenes) StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = __this->get_U3CU3E7__wrap1_3(); int32_t L_8 = __this->get_U3CU3E7__wrap2_4(); NullCheck(L_7); int32_t L_9 = L_8; String_t* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); __this->set_U3CsceneNameU3E5__4_5(L_10); // yield return SceneManager.LoadSceneAsync(sceneName, LoadSceneMode.Additive); String_t* L_11 = __this->get_U3CsceneNameU3E5__4_5(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_12 = SceneManager_LoadSceneAsync_mB19DC1ECA7304F9CB66976DADE6423777750B748(L_11, 1, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_12); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0070: { __this->set_U3CU3E1__state_0((-1)); // if (logger.LogEnabled()) logger.Log($"Loaded {sceneName}"); IL2CPP_RUNTIME_CLASS_INIT(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var); RuntimeObject* L_13 = ((AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields*)il2cpp_codegen_static_fields_for(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var))->get_logger_33(); bool L_14 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_009d; } } { // if (logger.LogEnabled()) logger.Log($"Loaded {sceneName}"); IL2CPP_RUNTIME_CLASS_INIT(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var); RuntimeObject* L_15 = ((AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields*)il2cpp_codegen_static_fields_for(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var))->get_logger_33(); String_t* L_16 = __this->get_U3CsceneNameU3E5__4_5(); String_t* L_17 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteralF76ACD0E930DEA6BAE9F3D19211EA1A922D696FE, L_16, /*hidden argument*/NULL); NullCheck(L_15); InterfaceActionInvoker1< RuntimeObject * >::Invoke(8 /* System.Void UnityEngine.ILogger::Log(System.Object) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_15, L_17); } IL_009d: { // } __this->set_U3CsceneNameU3E5__4_5((String_t*)NULL); int32_t L_18 = __this->get_U3CU3E7__wrap2_4(); __this->set_U3CU3E7__wrap2_4(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_00b2: { // foreach (string sceneName in subScenes) int32_t L_19 = __this->get_U3CU3E7__wrap2_4(); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = __this->get_U3CU3E7__wrap1_3(); NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))))) { goto IL_0042; } } { __this->set_U3CU3E7__wrap1_3((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)NULL); // } return (bool)0; } } // System.Object Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CLoadSubScenesU3Ed__3_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mA9F006A0CF73E674D7A18668E09E2D5B1969BF7B (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__3_System_Collections_IEnumerator_Reset_m7AF605A8402A80BDDD97B214341B97BF4AF862EA (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CLoadSubScenesU3Ed__3_System_Collections_IEnumerator_Reset_m7AF605A8402A80BDDD97B214341B97BF4AF862EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CLoadSubScenesU3Ed__3_System_Collections_IEnumerator_Reset_m7AF605A8402A80BDDD97B214341B97BF4AF862EA_RuntimeMethod_var); } } // System.Object Mirror.Examples.Additive.AdditiveNetworkManager_<LoadSubScenes>d__3::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CLoadSubScenesU3Ed__3_System_Collections_IEnumerator_get_Current_m065EE142F5C224B870E52E27198E2A813A7B3F82 (U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadScenesU3Ed__6__ctor_m3AF47BF7DE6656A947B502F47BCECAAD0F01208D (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadScenesU3Ed__6_System_IDisposable_Dispose_m6D5CD88D3FF6FF9752CE6086D716E87212171A86 (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * __this, const RuntimeMethod* method) { { return; } } // System.Boolean Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CUnloadScenesU3Ed__6_MoveNext_mA3B13AAAD2792BAFE12FF5373A745018A0A43B93 (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CUnloadScenesU3Ed__6_MoveNext_mA3B13AAAD2792BAFE12FF5373A745018A0A43B93_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * V_1 = NULL; Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE V_2; memset((&V_2), 0, sizeof(V_2)); { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_0022; } case 1: { goto IL_00a7; } case 2: { goto IL_0117; } } } { return (bool)0; } IL_0022: { __this->set_U3CU3E1__state_0((-1)); // logger.Log("Unloading Subscenes"); IL2CPP_RUNTIME_CLASS_INIT(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var); RuntimeObject* L_3 = ((AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields*)il2cpp_codegen_static_fields_for(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var))->get_logger_33(); NullCheck(L_3); InterfaceActionInvoker1< RuntimeObject * >::Invoke(8 /* System.Void UnityEngine.ILogger::Log(System.Object) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_3, _stringLiteralEF0D009D32A58FBC249306BDE39B2CDD7B71D925); // foreach (string sceneName in subScenes) AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 * L_4 = V_1; NullCheck(L_4); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = L_4->get_subScenes_34(); __this->set_U3CU3E7__wrap1_3(L_5); __this->set_U3CU3E7__wrap2_4(0); goto IL_00e9; } IL_0050: { // foreach (string sceneName in subScenes) StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = __this->get_U3CU3E7__wrap1_3(); int32_t L_7 = __this->get_U3CU3E7__wrap2_4(); NullCheck(L_6); int32_t L_8 = L_7; String_t* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); __this->set_U3CsceneNameU3E5__4_5(L_9); // if (SceneManager.GetSceneByName(sceneName).IsValid() || SceneManager.GetSceneByPath(sceneName).IsValid()) String_t* L_10 = __this->get_U3CsceneNameU3E5__4_5(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_11 = SceneManager_GetSceneByName_m1759CF791AED567228B0F161C4FA47D19E728BC9(L_10, /*hidden argument*/NULL); V_2 = L_11; bool L_12 = Scene_IsValid_mC8AE24868A5020050F6A544ECAF5465C2CFB7CED((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_2), /*hidden argument*/NULL); if (L_12) { goto IL_008d; } } { String_t* L_13 = __this->get_U3CsceneNameU3E5__4_5(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_14 = SceneManager_GetSceneByPath_mC4BDDF04CBFE46FD75CA9A5D5F6D88BDD7EE89F8(L_13, /*hidden argument*/NULL); V_2 = L_14; bool L_15 = Scene_IsValid_mC8AE24868A5020050F6A544ECAF5465C2CFB7CED((Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE *)(&V_2), /*hidden argument*/NULL); if (!L_15) { goto IL_00d4; } } IL_008d: { // yield return SceneManager.UnloadSceneAsync(sceneName); String_t* L_16 = __this->get_U3CsceneNameU3E5__4_5(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_17 = SceneManager_UnloadSceneAsync_mF564BF92447F58313A518206EE15E5DEED0448EF(L_16, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_17); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_00a7: { __this->set_U3CU3E1__state_0((-1)); // if (logger.LogEnabled()) logger.Log($"Unloaded {sceneName}"); IL2CPP_RUNTIME_CLASS_INIT(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var); RuntimeObject* L_18 = ((AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields*)il2cpp_codegen_static_fields_for(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var))->get_logger_33(); bool L_19 = ILoggerExtensions_LogEnabled_m2FBC19416D6F64AA30164AA26A5D985B9C607E2B(L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_00d4; } } { // if (logger.LogEnabled()) logger.Log($"Unloaded {sceneName}"); IL2CPP_RUNTIME_CLASS_INIT(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var); RuntimeObject* L_20 = ((AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_StaticFields*)il2cpp_codegen_static_fields_for(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74_il2cpp_TypeInfo_var))->get_logger_33(); String_t* L_21 = __this->get_U3CsceneNameU3E5__4_5(); String_t* L_22 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral113330AFD97C75D01EDBB935D78A700A93157475, L_21, /*hidden argument*/NULL); NullCheck(L_20); InterfaceActionInvoker1< RuntimeObject * >::Invoke(8 /* System.Void UnityEngine.ILogger::Log(System.Object) */, ILogger_t25627AC5B51863702868D31972297B7D633B4583_il2cpp_TypeInfo_var, L_20, L_22); } IL_00d4: { __this->set_U3CsceneNameU3E5__4_5((String_t*)NULL); int32_t L_23 = __this->get_U3CU3E7__wrap2_4(); __this->set_U3CU3E7__wrap2_4(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); } IL_00e9: { // foreach (string sceneName in subScenes) int32_t L_24 = __this->get_U3CU3E7__wrap2_4(); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_25 = __this->get_U3CU3E7__wrap1_3(); NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))) { goto IL_0050; } } { __this->set_U3CU3E7__wrap1_3((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)NULL); // yield return Resources.UnloadUnusedAssets(); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_26 = Resources_UnloadUnusedAssets_m5BF7EFD195EFFE171CB47FF88CA880D76A751C70(/*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_26); __this->set_U3CU3E1__state_0(2); return (bool)1; } IL_0117: { __this->set_U3CU3E1__state_0((-1)); // } return (bool)0; } } // System.Object Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUnloadScenesU3Ed__6_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m5AF97844C173E034B7BA3384DC49D925C865F61E (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadScenesU3Ed__6_System_Collections_IEnumerator_Reset_m8CF0EA4D4C0D1FB805739735EE8CFE689B31E1D9 (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CUnloadScenesU3Ed__6_System_Collections_IEnumerator_Reset_m8CF0EA4D4C0D1FB805739735EE8CFE689B31E1D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CUnloadScenesU3Ed__6_System_Collections_IEnumerator_Reset_m8CF0EA4D4C0D1FB805739735EE8CFE689B31E1D9_RuntimeMethod_var); } } // System.Object Mirror.Examples.Additive.AdditiveNetworkManager_<UnloadScenes>d__6::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUnloadScenesU3Ed__6_System_Collections_IEnumerator_get_Current_m06D5C35DD77143B9DE9DD0C216F0DD6AA66EBD61 (U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Chat.ChatNetworkManager_CreatePlayerMessage::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreatePlayerMessage__ctor_mEEE97DF07DD19EAEC2AD1FC8AF9DF0061D1193BD (CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * __this, const RuntimeMethod* method) { { MessageBase__ctor_mDC9103481D5807FBF080F7D92B051ED5F642D916(__this, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager_CreatePlayerMessage::Serialize(Mirror.NetworkWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreatePlayerMessage_Serialize_mFF9CC816EBFF336DDA3DDA9DA8D3E5C065A97FA6 (CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * __this, NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * ___writer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CreatePlayerMessage_Serialize_mFF9CC816EBFF336DDA3DDA9DA8D3E5C065A97FA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_0 = ___writer0; MessageBase_Serialize_m8E90590039280EE7EBA1A97D327DB02A2BB5D3A1(__this, L_0, /*hidden argument*/NULL); NetworkWriter_t5132AE3A2F4CA663A808D4A914B8F74239B6DD9A * L_1 = ___writer0; String_t* L_2 = __this->get_name_0(); IL2CPP_RUNTIME_CLASS_INIT(NetworkWriterExtensions_t4E0050A4923BB33CFBAF091AFD346DEB02C573A2_il2cpp_TypeInfo_var); NetworkWriterExtensions_WriteString_m31C762A5BBACB77129E085AB7D7A9AEEB9ACA95F(L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void Mirror.Examples.Chat.ChatNetworkManager_CreatePlayerMessage::Deserialize(Mirror.NetworkReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreatePlayerMessage_Deserialize_m94C11045EC198CC4325E1C987DA10046387E71D1 (CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1 * __this, NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CreatePlayerMessage_Deserialize_m94C11045EC198CC4325E1C987DA10046387E71D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_0 = ___reader0; MessageBase_Deserialize_m62E25B8BBA1466111E1A2E65F971BB9CC63A2C09(__this, L_0, /*hidden argument*/NULL); NetworkReader_t1C4ACC42044C39CEE1229C807B9274CF165A7CD9 * L_1 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(NetworkReaderExtensions_t14F164D4D08786641A7DA5C4FE5C03CBB19B9CB8_il2cpp_TypeInfo_var); String_t* L_2 = NetworkReaderExtensions_ReadString_mA74E4612F529683A4AEEDB55C369CDEA32D222CC(L_1, /*hidden argument*/NULL); __this->set_name_0(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAppendAndScrollU3Ed__8__ctor_m0CD5F4CBC2AD01DB8CD5FFB3879760AEF7DD0AB3 (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAppendAndScrollU3Ed__8_System_IDisposable_Dispose_mC0BEADF1C79CC90C60DA50F4D69ACE9B8438F55E (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * __this, const RuntimeMethod* method) { { return; } } // System.Boolean Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CAppendAndScrollU3Ed__8_MoveNext_m56AA638868107D575AFE1017A5CBE468180F0A06 (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CAppendAndScrollU3Ed__8_MoveNext_m56AA638868107D575AFE1017A5CBE468180F0A06_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * V_1 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_0022; } case 1: { goto IL_005a; } case 2: { goto IL_0071; } } } { return (bool)0; } IL_0022: { __this->set_U3CU3E1__state_0((-1)); // chatHistory.text += message + "\n"; ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * L_3 = V_1; NullCheck(L_3); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_4 = L_3->get_chatHistory_6(); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_5 = L_4; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(74 /* System.String UnityEngine.UI.Text::get_text() */, L_5); String_t* L_7 = __this->get_message_3(); String_t* L_8 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_6, L_7, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, /*hidden argument*/NULL); NullCheck(L_5); VirtActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_5, L_8); // yield return null; __this->set_U3CU3E2__current_1(NULL); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_005a: { __this->set_U3CU3E1__state_0((-1)); // yield return null; __this->set_U3CU3E2__current_1(NULL); __this->set_U3CU3E1__state_0(2); return (bool)1; } IL_0071: { __this->set_U3CU3E1__state_0((-1)); // scrollbar.value = 0; ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * L_9 = V_1; NullCheck(L_9); Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * L_10 = L_9->get_scrollbar_7(); NullCheck(L_10); Scrollbar_set_value_mEDFFDDF8153EA01B897198648DCFB1D1EA539197(L_10, (0.0f), /*hidden argument*/NULL); // } return (bool)0; } } // System.Object Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CAppendAndScrollU3Ed__8_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m254161A4F2D04B0020AA3A4BEF26BD5E28868C2D (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAppendAndScrollU3Ed__8_System_Collections_IEnumerator_Reset_mED9C9CB1E1C37C6ABEE641847143DC4ED47B69FF (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CAppendAndScrollU3Ed__8_System_Collections_IEnumerator_Reset_mED9C9CB1E1C37C6ABEE641847143DC4ED47B69FF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CAppendAndScrollU3Ed__8_System_Collections_IEnumerator_Reset_mED9C9CB1E1C37C6ABEE641847143DC4ED47B69FF_RuntimeMethod_var); } } // System.Object Mirror.Examples.Chat.ChatWindow_<AppendAndScroll>d__8::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CAppendAndScrollU3Ed__8_System_Collections_IEnumerator_get_Current_m6FCA847AC94B781C85A9BC133FBBC664DA303BBF (U3CAppendAndScrollU3Ed__8_t70E36D922C99C52BD16B27D5D043E68B481F3A9E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAddPlayerDelayedU3Ed__4__ctor_m1B4F2CD6C6BE6E71F021BC372725179065CA4271 (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAddPlayerDelayedU3Ed__4_System_IDisposable_Dispose_mD1B4A917B415BD45FF9E5674296BB9C76B714B6E (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CAddPlayerDelayedU3Ed__4_MoveNext_m4C3AF10EAA66AB63D30361B922AA1973BF57765B (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CAddPlayerDelayedU3Ed__4_MoveNext_m4C3AF10EAA66AB63D30361B922AA1973BF57765B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * V_1 = NULL; SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE V_2; memset((&V_2), 0, sizeof(V_2)); { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_1 = __this->get_U3CU3E4__this_3(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0037; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); // yield return new WaitForSeconds(.5f); WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 * L_4 = (WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 *)il2cpp_codegen_object_new(WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); WaitForSeconds__ctor_mD298C4CB9532BBBDE172FC40F3397E30504038D4(L_4, (0.5f), /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_4); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0037: { __this->set_U3CU3E1__state_0((-1)); // conn.Send(new SceneMessage { sceneName = gameScene, sceneOperation = SceneOperation.LoadAdditive }); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_5 = __this->get_conn_2(); il2cpp_codegen_initobj((&V_2), sizeof(SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE )); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_6 = V_1; NullCheck(L_6); String_t* L_7 = L_6->get_gameScene_34(); (&V_2)->set_sceneName_0(L_7); (&V_2)->set_sceneOperation_1(1); SceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE L_8 = V_2; NullCheck(L_5); NetworkConnection_Send_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m93F37538DCDF6B2C5BBB392CDD917C29DA9E7D1C(L_5, L_8, 0, /*hidden argument*/NetworkConnection_Send_TisSceneMessage_t0A4957B83C858A02D1D9F152ABB8D249C42751BE_m93F37538DCDF6B2C5BBB392CDD917C29DA9E7D1C_RuntimeMethod_var); // base.OnServerAddPlayer(conn); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_9 = V_1; NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_10 = __this->get_conn_2(); NullCheck(L_9); MultiSceneNetManager_U3CU3En__0_m49EB438DFDA5B08A2ADA9F9DCA7CE5972644102C(L_9, L_10, /*hidden argument*/NULL); // PlayerScore playerScore = conn.identity.GetComponent<PlayerScore>(); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_11 = __this->get_conn_2(); NullCheck(L_11); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_12 = NetworkConnection_get_identity_mF8F7D1AA28117C2F53450E6697D2966DB1B16F45_inline(L_11, /*hidden argument*/NULL); NullCheck(L_12); PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * L_13 = Component_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m7B6A4CBDF36DAC6F05A925A85F9503868235B98C(L_12, /*hidden argument*/Component_GetComponent_TisPlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD_m7B6A4CBDF36DAC6F05A925A85F9503868235B98C_RuntimeMethod_var); // playerScore.playerNumber = conn.connectionId; PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * L_14 = L_13; NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_15 = __this->get_conn_2(); NullCheck(L_15); int32_t L_16 = L_15->get_connectionId_4(); NullCheck(L_14); PlayerScore_set_NetworkplayerNumber_mB1D8FC7DDFA50ACF3118B71B82FD17797269E9F8(L_14, L_16, /*hidden argument*/NULL); // playerScore.scoreIndex = conn.connectionId / subScenes.Count; PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD * L_17 = L_14; NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_18 = __this->get_conn_2(); NullCheck(L_18); int32_t L_19 = L_18->get_connectionId_4(); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_20 = V_1; NullCheck(L_20); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_21 = L_20->get_subScenes_35(); NullCheck(L_21); int32_t L_22 = List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_inline(L_21, /*hidden argument*/List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_RuntimeMethod_var); NullCheck(L_17); PlayerScore_set_NetworkscoreIndex_m0EB06183F96E9F4D3A4ABAD15EA0171B3F1DFD6A(L_17, ((int32_t)((int32_t)L_19/(int32_t)L_22)), /*hidden argument*/NULL); // playerScore.matchIndex = conn.connectionId % subScenes.Count; NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_23 = __this->get_conn_2(); NullCheck(L_23); int32_t L_24 = L_23->get_connectionId_4(); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_25 = V_1; NullCheck(L_25); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_26 = L_25->get_subScenes_35(); NullCheck(L_26); int32_t L_27 = List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_inline(L_26, /*hidden argument*/List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_RuntimeMethod_var); NullCheck(L_17); PlayerScore_set_NetworkmatchIndex_mE38D225BFC2E1E25D66C076E9CBC025D121DD3ED(L_17, ((int32_t)((int32_t)L_24%(int32_t)L_27)), /*hidden argument*/NULL); // if (subScenes.Count > 0) MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_28 = V_1; NullCheck(L_28); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_29 = L_28->get_subScenes_35(); NullCheck(L_29); int32_t L_30 = List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_inline(L_29, /*hidden argument*/List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_RuntimeMethod_var); if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_0114; } } { // SceneManager.MoveGameObjectToScene(conn.identity.gameObject, subScenes[conn.connectionId % subScenes.Count]); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_31 = __this->get_conn_2(); NullCheck(L_31); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_32 = NetworkConnection_get_identity_mF8F7D1AA28117C2F53450E6697D2966DB1B16F45_inline(L_31, /*hidden argument*/NULL); NullCheck(L_32); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_33 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_32, /*hidden argument*/NULL); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_34 = V_1; NullCheck(L_34); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_35 = L_34->get_subScenes_35(); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_36 = __this->get_conn_2(); NullCheck(L_36); int32_t L_37 = L_36->get_connectionId_4(); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_38 = V_1; NullCheck(L_38); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_39 = L_38->get_subScenes_35(); NullCheck(L_39); int32_t L_40 = List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_inline(L_39, /*hidden argument*/List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_RuntimeMethod_var); NullCheck(L_35); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_41 = List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_inline(L_35, ((int32_t)((int32_t)L_37%(int32_t)L_40)), /*hidden argument*/List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); SceneManager_MoveGameObjectToScene_m6A83C5A83445385BC00FBFD155707732A0C80F39(L_33, L_41, /*hidden argument*/NULL); } IL_0114: { // } return (bool)0; } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CAddPlayerDelayedU3Ed__4_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m02208FFC776AC14EA2DA4870C61760E615EDD848 (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CAddPlayerDelayedU3Ed__4_System_Collections_IEnumerator_Reset_mD5F9BF47393862ED66B8C6CEFAEB6F67E15F8791 (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CAddPlayerDelayedU3Ed__4_System_Collections_IEnumerator_Reset_mD5F9BF47393862ED66B8C6CEFAEB6F67E15F8791_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CAddPlayerDelayedU3Ed__4_System_Collections_IEnumerator_Reset_mD5F9BF47393862ED66B8C6CEFAEB6F67E15F8791_RuntimeMethod_var); } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<AddPlayerDelayed>d__4::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CAddPlayerDelayedU3Ed__4_System_Collections_IEnumerator_get_Current_m4E2A236919A884AC43D460F86CC0199C8C454974 (U3CAddPlayerDelayedU3Ed__4_tB8683C30C6057001519C505274FEA21C999E4459 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__6__ctor_mC6A1CF499F3FD475B3BAC34B2CCF368677DF1F23 (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__6_System_IDisposable_Dispose_m6A10E93D14915C6EFAFA43832DD8DA1AE5FCE56D (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CLoadSubScenesU3Ed__6_MoveNext_mA8597A9098F2E19009CA88AC11961D24DDF38EBC (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CLoadSubScenesU3Ed__6_MoveNext_mA8597A9098F2E19009CA88AC11961D24DDF38EBC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * V_1 = NULL; LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_005a; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); // for (int index = 0; index < instances; index++) __this->set_U3CindexU3E5__2_3(0); goto IL_0089; } IL_0027: { // yield return SceneManager.LoadSceneAsync(gameScene, new LoadSceneParameters { loadSceneMode = LoadSceneMode.Additive, localPhysicsMode = LocalPhysicsMode.Physics3D }); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_4 = V_1; NullCheck(L_4); String_t* L_5 = L_4->get_gameScene_34(); il2cpp_codegen_initobj((&V_2), sizeof(LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 )); LoadSceneParameters_set_loadSceneMode_m8AAA5796E9D642FC5C2C95831F22E272A28DD152((LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 *)(&V_2), 1, /*hidden argument*/NULL); LoadSceneParameters_set_localPhysicsMode_m2631EA535FA759D9FB0D7FEC0D399614800C589D((LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 *)(&V_2), 2, /*hidden argument*/NULL); LoadSceneParameters_t98D2B4FCF0184320590305D3F367834287C2CAA2 L_6 = V_2; IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_7 = SceneManager_LoadSceneAsync_m77AB3010DA4EE548FE973D65A2D983F0CC86254E(L_5, L_6, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_7); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_005a: { __this->set_U3CU3E1__state_0((-1)); // subScenes.Add(SceneManager.GetSceneAt(index + 1)); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_8 = V_1; NullCheck(L_8); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_9 = L_8->get_subScenes_35(); int32_t L_10 = __this->get_U3CindexU3E5__2_3(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_11 = SceneManager_GetSceneAt_m46AF96028C6A3A09198ABB313E4206D93A8D1F3F(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)), /*hidden argument*/NULL); NullCheck(L_9); List_1_Add_m98E7736A87EEE37D6247F090557968992AEA3398(L_9, L_11, /*hidden argument*/List_1_Add_m98E7736A87EEE37D6247F090557968992AEA3398_RuntimeMethod_var); // for (int index = 0; index < instances; index++) int32_t L_12 = __this->get_U3CindexU3E5__2_3(); V_3 = L_12; int32_t L_13 = V_3; __this->set_U3CindexU3E5__2_3(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_0089: { // for (int index = 0; index < instances; index++) int32_t L_14 = __this->get_U3CindexU3E5__2_3(); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_15 = V_1; NullCheck(L_15); int32_t L_16 = L_15->get_instances_33(); if ((((int32_t)L_14) < ((int32_t)L_16))) { goto IL_0027; } } { // } return (bool)0; } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CLoadSubScenesU3Ed__6_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m5D64E6D6E09C5767B56223CD2544A299A340CE49 (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CLoadSubScenesU3Ed__6_System_Collections_IEnumerator_Reset_m7CC1DD4CE5819A9A8CC5B3E901C2680341335AB6 (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CLoadSubScenesU3Ed__6_System_Collections_IEnumerator_Reset_m7CC1DD4CE5819A9A8CC5B3E901C2680341335AB6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CLoadSubScenesU3Ed__6_System_Collections_IEnumerator_Reset_m7CC1DD4CE5819A9A8CC5B3E901C2680341335AB6_RuntimeMethod_var); } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<LoadSubScenes>d__6::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CLoadSubScenesU3Ed__6_System_Collections_IEnumerator_get_Current_mF05F55F789607D9B93A7F0F7953CFE392A9870C9 (U3CLoadSubScenesU3Ed__6_t97CD2A77B2BC0024432F7822B271C2A10A9B0B34 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadClientSubScenesU3Ed__9__ctor_m8471195B56A77952356B988184E8CB9190AB9E3E (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadClientSubScenesU3Ed__9_System_IDisposable_Dispose_m22883AE8A93DB42086A432B57DA69BE7DAB30805 (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CUnloadClientSubScenesU3Ed__9_MoveNext_m20876C2C2BEBCA010FB38160D862D7C160AD1246 (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CUnloadClientSubScenesU3Ed__9_MoveNext_m20876C2C2BEBCA010FB38160D862D7C160AD1246_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; int32_t L_1 = V_0; if (!L_1) { goto IL_0010; } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0056; } } { return (bool)0; } IL_0010: { __this->set_U3CU3E1__state_0((-1)); // for (int index = 0; index < SceneManager.sceneCount; index++) __this->set_U3CindexU3E5__2_2(0); goto IL_006d; } IL_0020: { // if (SceneManager.GetSceneAt(index) != SceneManager.GetActiveScene()) int32_t L_3 = __this->get_U3CindexU3E5__2_2(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_4 = SceneManager_GetSceneAt_m46AF96028C6A3A09198ABB313E4206D93A8D1F3F(L_3, /*hidden argument*/NULL); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_5 = SceneManager_GetActiveScene_mB9A5037FFB576B2432D0BFEF6A161B7C4C1921A4(/*hidden argument*/NULL); bool L_6 = Scene_op_Inequality_m5EE1812777959596639D8D480998B8DE0DE83F6D(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_005d; } } { // yield return SceneManager.UnloadSceneAsync(SceneManager.GetSceneAt(index)); int32_t L_7 = __this->get_U3CindexU3E5__2_2(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_8 = SceneManager_GetSceneAt_m46AF96028C6A3A09198ABB313E4206D93A8D1F3F(L_7, /*hidden argument*/NULL); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_9 = SceneManager_UnloadSceneAsync_m94D080FDA6440916AA8F8F4FA13B1002C96BB589(L_8, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_9); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0056: { __this->set_U3CU3E1__state_0((-1)); } IL_005d: { // for (int index = 0; index < SceneManager.sceneCount; index++) int32_t L_10 = __this->get_U3CindexU3E5__2_2(); V_1 = L_10; int32_t L_11 = V_1; __this->set_U3CindexU3E5__2_2(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1))); } IL_006d: { // for (int index = 0; index < SceneManager.sceneCount; index++) int32_t L_12 = __this->get_U3CindexU3E5__2_2(); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); int32_t L_13 = SceneManager_get_sceneCount_m57B8EB790D8B6673BA840442B4F125121CC5456E(/*hidden argument*/NULL); if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_0020; } } { // } return (bool)0; } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUnloadClientSubScenesU3Ed__9_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mCDE87F18990DBE3D0FD55AB09C057239F8EBBD56 (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadClientSubScenesU3Ed__9_System_Collections_IEnumerator_Reset_m7937D169E058A8CAF640A68AE8CBA17BEFCA0B81 (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CUnloadClientSubScenesU3Ed__9_System_Collections_IEnumerator_Reset_m7937D169E058A8CAF640A68AE8CBA17BEFCA0B81_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CUnloadClientSubScenesU3Ed__9_System_Collections_IEnumerator_Reset_m7937D169E058A8CAF640A68AE8CBA17BEFCA0B81_RuntimeMethod_var); } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadClientSubScenes>d__9::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUnloadClientSubScenesU3Ed__9_System_Collections_IEnumerator_get_Current_m4AF3B36141B0A7573AF2A8256A7DD5BE4B05E8C4 (U3CUnloadClientSubScenesU3Ed__9_tEC5CF3053A59E1F96892A940AE1C9FB03075ADE9 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadSubScenesU3Ed__10__ctor_m2EC460D1D222E56659D44A6D9E5F0C37A3E8FFD4 (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadSubScenesU3Ed__10_System_IDisposable_Dispose_mB9121EAE59E57D0414080C8434703A928D46B4DB (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CUnloadSubScenesU3Ed__10_MoveNext_m724DD8070BA155BB95718785202848C1BF68878D (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CUnloadSubScenesU3Ed__10_MoveNext_m724DD8070BA155BB95718785202848C1BF68878D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * V_1 = NULL; int32_t V_2 = 0; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_0022; } case 1: { goto IL_0057; } case 2: { goto IL_00a0; } } } { return (bool)0; } IL_0022: { __this->set_U3CU3E1__state_0((-1)); // for (int index = 0; index < subScenes.Count; index++) __this->set_U3CindexU3E5__2_3(0); goto IL_006e; } IL_0032: { // yield return SceneManager.UnloadSceneAsync(subScenes[index]); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_3 = V_1; NullCheck(L_3); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_4 = L_3->get_subScenes_35(); int32_t L_5 = __this->get_U3CindexU3E5__2_3(); NullCheck(L_4); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_6 = List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_7 = SceneManager_UnloadSceneAsync_m94D080FDA6440916AA8F8F4FA13B1002C96BB589(L_6, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_7); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0057: { __this->set_U3CU3E1__state_0((-1)); // for (int index = 0; index < subScenes.Count; index++) int32_t L_8 = __this->get_U3CindexU3E5__2_3(); V_2 = L_8; int32_t L_9 = V_2; __this->set_U3CindexU3E5__2_3(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))); } IL_006e: { // for (int index = 0; index < subScenes.Count; index++) int32_t L_10 = __this->get_U3CindexU3E5__2_3(); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_11 = V_1; NullCheck(L_11); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_12 = L_11->get_subScenes_35(); NullCheck(L_12); int32_t L_13 = List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_inline(L_12, /*hidden argument*/List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_RuntimeMethod_var); if ((((int32_t)L_10) < ((int32_t)L_13))) { goto IL_0032; } } { // subScenes.Clear(); MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * L_14 = V_1; NullCheck(L_14); List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * L_15 = L_14->get_subScenes_35(); NullCheck(L_15); List_1_Clear_m5ADAB4D38ED68C6A8596C348E6DE6D346C68F2E9(L_15, /*hidden argument*/List_1_Clear_m5ADAB4D38ED68C6A8596C348E6DE6D346C68F2E9_RuntimeMethod_var); // yield return Resources.UnloadUnusedAssets(); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_16 = Resources_UnloadUnusedAssets_m5BF7EFD195EFFE171CB47FF88CA880D76A751C70(/*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_16); __this->set_U3CU3E1__state_0(2); return (bool)1; } IL_00a0: { __this->set_U3CU3E1__state_0((-1)); // } return (bool)0; } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::System.Collections.Generic.IEnumerator<System.Object>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUnloadSubScenesU3Ed__10_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m93ABFBC76012FC91C60B6042B1B52BC5A868E8EB (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUnloadSubScenesU3Ed__10_System_Collections_IEnumerator_Reset_mAD917AC441BFBEDE1B512B24C971D2C5CA76815C (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CUnloadSubScenesU3Ed__10_System_Collections_IEnumerator_Reset_mAD917AC441BFBEDE1B512B24C971D2C5CA76815C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CUnloadSubScenesU3Ed__10_System_Collections_IEnumerator_Reset_mAD917AC441BFBEDE1B512B24C971D2C5CA76815C_RuntimeMethod_var); } } // System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager_<UnloadSubScenes>d__10::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUnloadSubScenesU3Ed__10_System_Collections_IEnumerator_get_Current_mC6FAB99AF236A725B2C65E4C349F39993E17C4AF (U3CUnloadSubScenesU3Ed__10_t8B1810F3FD65FD920F9D2A6F7338F97A315C2BF5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void Mirror.Examples.Pong.NetworkManagerPong_<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m3C1A9542D9AF5DC4382D50DDE4774A718691CE16 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m3C1A9542D9AF5DC4382D50DDE4774A718691CE16_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * L_0 = (U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 *)il2cpp_codegen_object_new(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m894009D897E06C26CC20B2D9F06D36EAB22D361D(L_0, /*hidden argument*/NULL); ((U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void Mirror.Examples.Pong.NetworkManagerPong_<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m894009D897E06C26CC20B2D9F06D36EAB22D361D (U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Boolean Mirror.Examples.Pong.NetworkManagerPong_<>c::<OnServerAddPlayer>b__3_0(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3COnServerAddPlayerU3Eb__3_0_m3202D700BF36BA65DBC9D93191430B4872950567 (U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___prefab0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3COnServerAddPlayerU3Eb__3_0_m3202D700BF36BA65DBC9D93191430B4872950567_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // ball = Instantiate(spawnPrefabs.Find(prefab => prefab.name == "Ball")); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0 = ___prefab0; NullCheck(L_0); String_t* L_1 = Object_get_name_m0C7BC870ED2F0DC5A2FB09628136CD7D1CB82CFB(L_0, /*hidden argument*/NULL); bool L_2 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_1, _stringLiteralAF4FE737DB07A38DC7B9A34B4BA555906EC0EFA9, /*hidden argument*/NULL); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___a0, float ___d1, const RuntimeMethod* method) { Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0; memset((&V_0), 0, sizeof(V_0)); { Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = ___a0; float L_1 = L_0.get_x_0(); float L_2 = ___d1; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3 = ___a0; float L_4 = L_3.get_y_1(); float L_5 = ___d1; Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_6; memset((&L_6), 0, sizeof(L_6)); Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_6), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), /*hidden argument*/NULL); V_0 = L_6; goto IL_0019; } IL_0019: { Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7 = V_0; return L_7; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEE_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkServer_get_active_mF055B10F741C963266FE30D5667E781DBF44DEEEMirror_Examples_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public static bool active { get; internal set; } IL2CPP_RUNTIME_CLASS_INIT(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var); bool L_0 = ((NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_StaticFields*)il2cpp_codegen_static_fields_for(NetworkServer_t4D5B71F56CFD1B4C896E53C0FF169F22060E00AD_il2cpp_TypeInfo_var))->get_U3CactiveU3Ek__BackingField_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___v0, const RuntimeMethod* method) { Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___v0; float L_1 = L_0.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___v0; float L_3 = L_2.get_y_3(); Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4; memset((&L_4), 0, sizeof(L_4)); Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_4), L_1, L_3, /*hidden argument*/NULL); V_0 = L_4; goto IL_0015; } IL_0015: { Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_5 = V_0; return L_5; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, float ___x0, float ___y1, const RuntimeMethod* method) { { float L_0 = ___x0; __this->set_x_0(L_0); float L_1 = ___y1; __this->set_y_1(L_1); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ChatNetworkManager_get_PlayerName_mC9E6D4EBE57A29C48AC177812F97F54CD78A5E8A_inline (ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 * __this, const RuntimeMethod* method) { { // public string PlayerName { get; set; } String_t* L_0 = __this->get_U3CPlayerNameU3Ek__BackingField_33(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * NetworkClient_get_connection_m5439CD4BADA80C781B783F013464517F581F9557_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkClient_get_connection_m5439CD4BADA80C781B783F013464517F581F9557Mirror_Examples_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public static NetworkConnection connection { get; internal set; } IL2CPP_RUNTIME_CLASS_INIT(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_il2cpp_TypeInfo_var); NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * L_0 = ((NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_StaticFields*)il2cpp_codegen_static_fields_for(NetworkClient_tF61522EC557C7933F89A0585FE392566A428AE15_il2cpp_TypeInfo_var))->get_U3CconnectionU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * NetworkConnection_get_identity_mF8F7D1AA28117C2F53450E6697D2966DB1B16F45_inline (NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * __this, const RuntimeMethod* method) { { // public NetworkIdentity identity { get; internal set; } NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_0 = __this->get_U3CidentityU3Ek__BackingField_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method) { { float L_0 = ___x0; __this->set_x_2(L_0); float L_1 = ___y1; __this->set_y_3(L_1); float L_2 = ___z2; __this->set_z_4(L_2); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, float ___d1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a0; float L_1 = L_0.get_x_2(); float L_2 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3 = ___a0; float L_4 = L_3.get_y_3(); float L_5 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___a0; float L_7 = L_6.get_z_4(); float L_8 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9; memset((&L_9), 0, sizeof(L_9)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_9), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), ((float)il2cpp_codegen_multiply((float)L_7, (float)L_8)), /*hidden argument*/NULL); V_0 = L_9; goto IL_0021; } IL_0021: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = V_0; return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a0; float L_1 = L_0.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___b1; float L_3 = L_2.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = ___a0; float L_5 = L_4.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___b1; float L_7 = L_6.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8 = ___a0; float L_9 = L_8.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = ___b1; float L_11 = L_10.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12; memset((&L_12), 0, sizeof(L_12)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_12), ((float)il2cpp_codegen_add((float)L_1, (float)L_3)), ((float)il2cpp_codegen_add((float)L_5, (float)L_7)), ((float)il2cpp_codegen_add((float)L_9, (float)L_11)), /*hidden argument*/NULL); V_0 = L_12; goto IL_0030; } IL_0030: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13 = V_0; return L_13; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NetworkManager_get_mode_m7DDDC4AFB7EC130F64E6BA4E916235B46C338337_inline (NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * __this, const RuntimeMethod* method) { { // public NetworkManagerMode mode { get; private set; } int32_t L_0 = __this->get_U3CmodeU3Ek__BackingField_26(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NetworkRoomManager_get_allPlayersReady_mD968D13421EC4A191DD3488C7C6579CC6A00FECA_inline (NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516 * __this, const RuntimeMethod* method) { { // get => _allPlayersReady; bool L_0 = __this->get__allPlayersReady_40(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * NetworkIdentity_get_connectionToClient_mF85737F2CC90FC7E77FE8385F35F2FF2E692D82A_inline (NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * __this, const RuntimeMethod* method) { { // get => _connectionToClient; NetworkConnectionToClient_t1F03600677CE78028515063A567ADA023FBF2D8A * L_0 = __this->get__connectionToClient_15(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t NetworkBehaviour_get_syncVarDirtyBits_m1690C7716CF78A4CC6360088FB682385EE76C9E3_inline (NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 * __this, const RuntimeMethod* method) { { // protected ulong syncVarDirtyBits { get; private set; } uint64_t L_0 = __this->get_U3CsyncVarDirtyBitsU3Ek__BackingField_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * NetworkManager_get_singleton_m3687E70BBF51C41E6F20B606EF0E0E40D13E7641_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NetworkManager_get_singleton_m3687E70BBF51C41E6F20B606EF0E0E40D13E7641Mirror_Examples_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // public static NetworkManager singleton { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var); NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * L_0 = ((NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields*)il2cpp_codegen_static_fields_for(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_il2cpp_TypeInfo_var))->get_U3CsingletonU3Ek__BackingField_22(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ClientScene_get_localPlayer_m7354A403C57BAD08DDD216140CAD2DADF66E14CB_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ClientScene_get_localPlayer_m7354A403C57BAD08DDD216140CAD2DADF66E14CBMirror_Examples_MetadataUsageId); s_Il2CppMethodInitialized = true; } { // get => _localPlayer; IL2CPP_RUNTIME_CLASS_INIT(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_il2cpp_TypeInfo_var); NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * L_0 = ((ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_StaticFields*)il2cpp_codegen_static_fields_for(ClientScene_t63BF0CA2BC01E3CB28F8F8CDE1C780924EF6E901_il2cpp_TypeInfo_var))->get__localPlayer_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_0 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )__this->get_current_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mB838AF2B314DCFD144C8A3D9EED6D3DD77AE5415_gshared_inline (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE List_1_get_Item_m0A78745CB284E1247172CA282A0E8B41519266B5_gshared_inline (List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL); } IL_000e: { SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115* L_2 = (SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115*)__this->get__items_1(); int32_t L_3 = ___index0; Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((SceneU5BU5D_t8254F77FD1B1FB3E78FF3FA6E14828C0EE0B3115*)L_2, (int32_t)L_3); return L_4; } }
e054c91c509f834a77d6652bd416e75821188ce7
1287fd9d751e5019448269f60a26c15b3dcdb0aa
/verifySequenceOfBST.cpp
0caaab749d3e1fae5dd3e70d0c4f94a3a2322e41
[]
no_license
ygqwan/DSA
ef92c860e026a2fe3b671dad9f13d38a36dbd843
9a32b29502034099679a0e4548af075ffc106733
refs/heads/master
2021-01-19T10:08:40.963843
2014-10-17T09:32:12
2014-10-17T09:32:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,575
cpp
verifySequenceOfBST.cpp
/* ็ป™ๅฎšbst็š„ๅŽ็ปญ้ๅކ็š„ๅบๅˆ—๏ผŒๅˆคๅฎšๆ˜ฏๅฆๆ˜ฏๅˆๆณ•็š„ๅบๅˆ—๏ผŒไนŸๅฐฑๆ˜ฏ่ฏดๆ˜ฏๅฆๅญ˜ๅœจ่ฟ™ไนˆไธ€้ข—ไบŒๅ‰ๆ ‘๏ผŒๆœ‰่ฏฅๅŽ็ปญ้ๅކๅบๅˆ— ๆ€่ทฏ๏ผš 1.ๅบๅˆ—็š„ๆœ€ๅŽไธ€ไธชๅ€ผไธ€ๅฎšๆ˜ฏๆ น่Š‚็‚น 2.้‚ฃไนˆไปŽๅบๅˆ—็ฌฌไธ€ไธชๅ€ผๅผ€ๅง‹ๆ‰พๅˆฐไธ€ๆฎต่ฟž็ปญๅฐไบŽๆ น่Š‚็‚น็š„ๅ€ผ๏ผŒ่ฟ™ๆฎตๆ˜ฏๅทฆๅญๆ ‘ 3. ็›ธไผผ็š„ๅŠžๆณ•ๆ‰พๅณๅญๆ ‘๏ผˆๅฆ‚ๆžœๅœจๅณๅญๆ ‘ๆฎต้‡Œ้ขๅญ˜ๅœจๅฐไบŽๆ น่Š‚็‚น็š„ๅ€ผ๏ผŒ้‚ฃไนˆๅฐฑ้žๆณ•๏ผ‰ 4. ๅฆ‚ๆžœๅญๆ ‘ๆœ‰ไธคไธชๅŠๅ…ถไปฅไธŠ็š„่Š‚็‚น๏ผŒ้‚ฃไนˆ้€’ๅฝ’ๅทฆๅณๅญๆ ‘๏ผˆ้‡ๅคไธŠ้ข3ๆญฅ๏ผ‰ */ #include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #include <string> #include <cstring> using namespace std; bool verifySequenceOfBST(int seq[], int len){ if(seq == NULL || len <= 0) return false; //ๆ น่Š‚็‚น int root = seq[len - 1]; //ๅฏปๆ‰พๆ น่Š‚็‚น็š„ๅทฆๅญๆ ‘ int i = 0; //len - 1 ๆ˜ฏๆŽ’้™คไบ†ๆ น่Š‚็‚น for(; i < len - 1; i++){ if(seq[i] > root){ break; } } //ๅฏปๆ‰พๆ น่Š‚็‚น็š„ๅณๅญๆ ‘, ไธป่ฆๆ˜ฏๅˆคๆ–ญๆ˜ฏๅฆๅˆๆณ• int j = i; for(; j < len - 1; j++){ if(seq[j] < root) return false; } //้€’ๅฝ’ๅˆคๆ–ญๅทฆๅณๅญๆ ‘ๆ˜ฏๅฆๅˆๆณ• //ๅ‡ๅฆ‚ๆ˜ฏๅˆๆณ•็š„ bool left = true; //่‡ณๅฐ‘ๆœ‰ไธคไธช่Š‚็‚น๏ผŒๅƒไธ‡ๆณจๆ„่ฟ™้‡Œๆ˜ฏ่‡ณๅฐ‘ไธคไธช่Š‚็‚น๏ผŒไนŸๅฐฑๆ˜ฏi > 0 ,ๅฆ‚ๆžœiๆ˜ฏ็ญ‰ไบŽ0้‚ฃไนˆๅฐฑๆ˜ฏไธ€ไธช่Š‚็‚น๏ผŒๅณๅญๆ ‘ไนŸไธ€ๆ ทๆ˜ฏไธคไธช if(i > 0) left = verifySequenceOfBST(seq, i); bool right = true; if(j - i > 0){ right = verifySequenceOfBST(seq + i, j - i); } return left && right; } int main(){ int seq[] = {5, 7, 6, 9, 11, 10, 8}; int seq2[] = {7, 4, 6, 5}; cout << verifySequenceOfBST(seq, 7) << endl; }
3be4be1416a1ac7934c9341bc5b6fe13afbf58cf
b93b8f71458b67a4f941560654b54a5cae2971cf
/cli/CommandInterface.cpp
0d045d46c6e6f611a373746b84403cc792b3c7cc
[]
no_license
DBall8/CppUtilities
6087f92426edf7ad0621ed6f532ad609299dfa36
6f6028a79f685203d4a3453395e411b507f16d6f
refs/heads/master
2023-04-28T18:21:24.997700
2023-04-23T17:58:07
2023-04-23T17:58:07
245,681,338
1
0
null
null
null
null
UTF-8
C++
false
false
3,715
cpp
CommandInterface.cpp
#include "CommandInterface.hpp" #include "utilities/strings/Strings.hpp" #include "utilities/print/Print.hpp" using namespace SerialComm; using namespace Strings; const char NEWLINE = '\n'; const char CR = '\r'; namespace Cli { char CommandInterface::inputBuffer_[MAX_LINE_LENGTH]; CommandInterface::CommandInterface(ISerial* pSerial, const Command* commands, uint16_t numCommands, bool quite): pSerial_(pSerial), commands_(commands), numCommands_(numCommands), bufferIndex_(0), enabled_(false), quite_(quite) { } void CommandInterface::enable() { enabled_ = true; } void CommandInterface::disable() { enabled_ = false; } void CommandInterface::update() { if (!enabled_) return; if (pSerial_->isDataAvailable()) { uint16_t remainingSpace = MAX_LINE_LENGTH - bufferIndex_; uint8_t* nextBuffPos = (uint8_t*)&(inputBuffer_[bufferIndex_]); uint16_t bytesReceived = pSerial_->read(nextBuffPos, remainingSpace); bufferIndex_ += bytesReceived; parseInputs(); } } void CommandInterface::parseInputs() { int16_t lineEndIndex = -1; for (uint16_t i=0; i< bufferIndex_; i++) { if (inputBuffer_[i] == NEWLINE) { lineEndIndex = i; break; } } if (lineEndIndex == -1) { // No line end found yet return; } if ((lineEndIndex == 0) || (lineEndIndex == 1) && (inputBuffer_[0] == CR)) { // Empty line given if (!quite_) PRINT(">"); bufferIndex_ = 0; } else { inputBuffer_[lineEndIndex] = '\0'; ArgV argv; uint16_t argc = 0; char* token = strtok(inputBuffer_, ' '); if (token != nullptr) { do{ if (argc >= MAX_NUM_PARAMS) break; // Remove any trailing CR uint16_t tokenLength = strlen(token); if (token[tokenLength - 1] == '\r') { token[tokenLength - 1] = '\0'; } argv[argc] = token; argc++; } while((token = strtok(nullptr, ' ')) != nullptr); } if (argc > 0) { execute(argc, argv); } uint16_t numRemainingBytes = bufferIndex_ - lineEndIndex - 1; if (numRemainingBytes > 0) { copy(inputBuffer_, &(inputBuffer_[lineEndIndex + 1]), numRemainingBytes); bufferIndex_ = numRemainingBytes; // See if there is another command to parse parseInputs(); } else { bufferIndex_ = 0; } } } void CommandInterface::execute(uint16_t argc, ArgV argv) { if (argc <= 0) return; const char* commandName = argv[0]; for (uint16_t i=0; i<numCommands_; i++) { if (strcompare(commandName, commands_[i].name)) { commands_[i].function(argc, argv); return; } } if (!quite_) PRINTLN("Command not supported."); } void CommandInterface::printError(CommandError error) { } }
7624e81a608e0fa1b485d7fcd61f8b61a4d852a3
9d958f4f6151c544b93a082718613fa2a67029f3
/src/CommandProcessor.cpp
e5d1cb2dc0c90b1c422f23b266dc11dda80b5621
[]
no_license
team3990/TechVisionCoproc
03ba21c42a663ffbd9507122741ee01cd6816644
8250c44178ae02de3fff0acc03baac6a61b7895b
refs/heads/master
2020-12-27T15:14:15.829673
2016-01-25T13:42:15
2016-01-25T13:42:15
29,450,942
0
0
null
null
null
null
UTF-8
C++
false
false
5,678
cpp
CommandProcessor.cpp
/* * CommandProcessor.cpp Copyright (C) 2016 Marc Lalonde / team 3990 - Tech For Kids This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA =================================================================================================*/ //In order to add new commands, look for the comment tag INSERT_HERE #include <stdio.h> #include "CommandProcessor.h" #include "DummyCommand.h" #include "ImgSaveCommand.h" #include "Defs.h" #include "LoggingService.h" #include "CameraManager.h" CommandProcessor::CommandProcessor() { m_pCmdProcessingThread= NULL; m_pCommandToProcess= NULL; m_pCameraManager= new CameraManager; m_bStop= false; // Register available commands m_mapCommands_Immediate["stop"]= STOP; m_mapCommands_Immediate["reset"]= RESET; m_mapCommands_Immediate["status"]= STATUS; m_mapCommands_Delayed["saveimg"]= SAVEIMG; m_mapCommands_Delayed["r_saveimg"]= R_SAVEIMG; m_mapCommands_Delayed["test"]= TEST; m_mapCommands_Delayed["r_test"]= R_TEST; // INSERT_HERE: new pair of commands // e.g. m_mapCommands_Delayed["mybrandnewcommand"]= MY_BRAND_NEW_COMMAND; // m_mapCommands_Delayed["r_mybrandnewcommand"]= R_MY_BRAND_NEW_COMMAND; m_pCameraManager->StartCapturing(); } CommandProcessor::~CommandProcessor() { delete m_pCameraManager; } std::string CommandProcessor::GetStatus() { std::string status="Command processor status:\nVersion "+ std::string(VERSION) + "\nImage dump location: "+ std::string(IMAGE_DUMP_LOCATION) +"\n"; std::map<std::string, std::string>::iterator iter; //One day, auto will be used bool bFoundJob= false; for(iter=m_mapCommandsResponses.begin(); iter!=m_mapCommandsResponses.end(); iter++){ status += " " + iter->first + ": " + iter->second + "\n"; bFoundJob= true; } if(bFoundJob == false) status += " No job running\n"; return status; } // Returns the enum associated to the command (string format) int CommandProcessor::GetCommandCodeFromString(std::string strcommand) { if(m_mapCommands_Immediate.count(strcommand)==1) return m_mapCommands_Immediate[strcommand]; if(m_mapCommands_Delayed.count(strcommand)==1) return m_mapCommands_Delayed[strcommand]; return UNKNOWN_CMD; } void CommandProcessor::StopCapture() { m_pCameraManager->StopCapturing(); } void LaunchExecution(void *arg){ VisionCommand *pCmd=(VisionCommand*)arg; pCmd->Execute(); delete pCmd; // Upon deletion, result is sent back to CommandProcessor } // Handles the command: big switch void CommandProcessor::ProcessCmd(std::string command, std::string& response) { int nCommandCode= GetCommandCodeFromString(command); VisionCommand *pCommandObj= NULL; response.clear(); // Process "immediate" commands switch(nCommandCode){ case UNKNOWN_CMD: response="Unknown command"; break; case STOP: if(m_pCmdProcessingThread) delete m_pCmdProcessingThread; m_pCmdProcessingThread= NULL; m_bStop= true; response= "Stopping"; // TODO: initiate shutdown? break; case RESET: if(m_pCmdProcessingThread) delete m_pCmdProcessingThread; m_pCmdProcessingThread= NULL; m_mapCommandsResponses.clear(); response= "Done"; break; case STATUS: response= GetStatus() + m_pCameraManager->GetStatus(); break; } // end processing immediate comands if(response.empty()==false) // We got a response, no need to keep going return; // Process "delayed", request-type commands switch(nCommandCode){ case SAVEIMG: pCommandObj= new ImgSaveCommand(std::string(IMAGE_DUMP_LOCATION), 0); // 0 is for camera number in case we have more than 1 response= "Working on it"; break; case TEST: pCommandObj= new DummyCommand(); response="Started"; break; // INSERT_HERE new request-type commands // Instantiate commmand // Variable <response> should be set to something } if(response.empty()==false){ // We got a response, no need to keep going // check if command not already launched if(m_mapCommandsResponses.find(command)!= m_mapCommandsResponses.end()){ if(pCommandObj) delete pCommandObj; // Command instantiation was useless after all response="Busy"; return; } if(pCommandObj){ pCommandObj->SetContext(command, this, m_pCameraManager); m_mapCommandsResponses[command]= "Still thinking"; m_pCmdProcessingThread = new tthread::thread(LaunchExecution, (void *) pCommandObj); } return; } // Process "delayed", response-type commands switch(nCommandCode){ case R_TEST: case R_SAVEIMG: // INSERT_HERE "case XXX:" lines for new response-type commands // e.g. case R_MY_BRAND_NEW_COMMAND: // Deduce initial request, e.g. if command at this point is r_mytest, initial request was mytest std::string initialrequest= command; initialrequest.erase(0,2); // remove r_ response= m_mapCommandsResponses[initialrequest]; if(response.compare("Still thinking") != 0) m_mapCommandsResponses.erase(initialrequest); // Job is done, make the initial command available again break; } if(response.empty()) response="Error"; }
6bd0a6337588bbe9ca598ab35b2f4924cd754cbc
34628778ce877a369746bf5a5fd909415423c1de
/Arenstorph_model.h
dc28077cec3ecffc81f5a5d3103c1883340e81ec
[]
no_license
Pafaul/OPRS_lin_al
b49dec57048e46b14532ff0183ec3b6bf2779e9a
d05b7706b5d4bae83a77be74608f3a9119594f11
refs/heads/master
2020-04-26T14:44:56.901052
2019-03-10T21:43:57
2019-03-10T21:43:57
173,624,694
0
0
null
null
null
null
UTF-8
C++
false
false
489
h
Arenstorph_model.h
#ifndef ARENSTORPH_MODEL_H #define ARENSTORPH_MODEL_H #include "tvector.h" #include "tmatrix.h" #include "math_model.h" class Arenstorph_model : public math_model { protected: double mu, mu1; public: Arenstorph_model(): mu(0.012277471), mu1(1.0-mu) {;} Arenstorph_model(double t0, double tk, double sampling_increment, const TVector &X); void get_right(const TVector &X, long double t, TVector &Y); ~Arenstorph_model(); }; #endif
91ec817922b201bb7af53ea46cfa95f7cc155aa6
16d2a5bbd33736afc01b953db9c7a55eee7aebfb
/Codeforces/Unreferenced Solutions/CF501C.cpp
6d1b94466c1b930a81a3d1713fa5dfd2678c819b
[]
no_license
DivyanshRoy/Competitive-Programming
c673548a58d197f593c2e86cda1665cb72deac4e
fd6f4d26511b4b4a3a61017484b6c01c74e8ff53
refs/heads/master
2020-04-14T07:46:48.653569
2019-01-01T13:43:56
2019-01-01T13:43:56
163,721,804
0
0
null
null
null
null
UTF-8
C++
false
false
1,547
cpp
CF501C.cpp
#include<bits/stdc++.h> using namespace std; int main() { unsigned int n,i,d,s; cin>>n; if(n==1) { cout<<0; return 0; } bool vis[n]={0}; queue<unsigned int> q; map<unsigned int, pair<unsigned int,unsigned int> > ma; //i then d then s for(i=0;i<n;i++) { cin>>d>>s; if(d==1) { q.push(i); } ma[i]=make_pair(d,s); } vector< pair<unsigned int,unsigned int> > vec; unsigned int un,de; while(!q.empty()) { if(ma[q.front()].first==0) { q.pop(); continue; } if(ma[q.front()].first!=1) { q.push(q.front()); q.pop(); continue; } if(vis[q.front()]) { q.pop(); continue; } vis[q.front()]=1; if(!ma[q.front()].first) { q.pop(); continue; } un=ma[q.front()].second; de=ma[q.front()].first; vec.push_back(make_pair(q.front(),un)); ma[un].second^=q.front(); ma[un].first--; ma[q.front()].first--; if(!vis[un]) { q.push(un); } q.pop(); } cout<<vec.size()<<endl; vector< pair<unsigned int,unsigned int> >::iterator iter; for(iter=vec.begin();iter!=vec.end();iter++) { cout<<iter->first<<" "<<iter->second<<endl; } return 0; }
510de8d674aa32cac5268c2ad3456de6b5b60af9
4799884edf2be923db787b1845f3af5fda31579c
/Dilacio_Gabriel_SEV/VIEW/AuxiliaresView.cpp
bb8c6195b639300985c0fe48cd2cc1787c5ca929
[]
no_license
dilacio/personal
35ab115bcac37b974b02af57c186e0344b71b108
6f18043b9f6ab7b408d4331ff09dbf7d39c84027
refs/heads/master
2020-07-03T19:33:38.735603
2019-08-28T17:39:38
2019-08-28T17:39:38
202,025,707
0
0
null
null
null
null
UTF-8
C++
false
false
17,429
cpp
AuxiliaresView.cpp
#include "AuxiliaresView.h" //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Alta_Puesto() // ACCION : Da de alta un puesto // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Alta_Puesto() { PuestoDTO PuestoDTO; PuestoDAL PuestoDAL; char Nombre[25]; int ID; cout << "Ingrese el nombre del puesto: "; cin.getline (Nombre,25); ID = PuestoDAL.Busco_ID(Nombre); if(ID == 0) { PuestoDTO.SetDescripcion(Nombre); PuestoDTO.SetID_Puesto(PuestoDAL.Mayor_ID()); if (PuestoDAL.Guardar_EnDisco(PuestoDTO)) { cout << "Candidato dada de alta correctamente" << endl; } else { cout << "error al dar de alta la provincia" << endl; } } else { cout << "La provincia ya se encuentra dada de alta"<< endl; } system("pause"); } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Alta_Provincia() // ACCION : Da de alta una Provincia // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Alta_Provincia() { ProvinciaDTO ProvDTO; ProvinciaDAL ProvDAL; char Nombre[40]; int Mayor_ID; system("cls"); cout << "Ingrese el nombre de la provincia: "; cin.getline(Nombre,40); if(!ProvDAL.Existe(Nombre)) { Mayor_ID = ProvDAL.Mayor_ID(); ProvDTO.SetID_Provincia(Mayor_ID); ProvDTO.SetNombre(Nombre); if (ProvDAL.Guardar_EnDisco(ProvDTO)) { cout << "Provincia dada de alta correctamente" << endl; } else { cout << "error al dar de alta la provincia" << endl; } } else { cout << "La provincia ya se encuentra dada de alta"<< endl; } system("pause"); } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Mostrar_Provincias() // ACCION : Lista todas las provincias // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Mostrar_Provincias() { ProvinciaDAL ProvDAL; ProvinciaDTO ProvDTO; int Pos = 0; cout.width(10); cout << left<<"ID"; cout.width(40); cout << left<<"Nombre" << endl ; while (ProvDAL.Leer_DeDisco(Pos,ProvDTO)) { cout.width(10); cout << left << ProvDTO.GetID_Provincia() ; cout.width(40); cout <<left << ProvDTO.GetNombre() << endl; Pos++; } system("pause"); } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Menu () // ACCION : Menu con opciones // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Menu () { bool Salir = false; char Opcion; while (!Salir) { system("cls"); Menu_Datos_Sistema(); cout << " MENU AUXILIARES" << endl; cout << "_______________________________________________________________________________________"<< endl; cout << endl; cout << " A - ALTA DE PROVINCIA" << endl; cout << " B - LISTADO DE PROVINCIAS" << endl; cout << " C - ALTA DE CANDIDATO" << endl; cout << " D - LISTADO DE CANDIDATOS" << endl; cout << " E - ALTA DE PUESTO" << endl; cout << " F - LISTADO DE PUESTO" << endl; cout << " G - ALTA DE PARTIDO" << endl; cout << " H - LISTADO DE PARTIDOS" << endl; cout << " I - LISTADO DE VOTOS" << endl; cout << " J - LISTADO DE VOTANTES" << endl; cout << " S - SALIR" << endl; cout <<endl; cout << "_______________________________________________________________________________________"<< endl; cout <<endl; cout << "Ingrese una opcion: "; cin>>Opcion; cin.ignore(); switch (Opcion) { case 'a': case 'A': { Alta_Provincia(); } break; case 'B': case 'b': { Mostrar_Provincias(); } break; case 'C': case 'c': { Alta_Candidato(); } break; case 'D': case 'd': { Mostrar_Candidatos(); } break; case 'E': case 'e': { Alta_Puesto(); } break; case 'F': case 'f': { Mostrar_Puestos(); } break; case 'G': case 'g': { Alta_Partido(); } break; case 'H': case 'h': { Mostrar_Partidos(); } break; case 'I': case 'i': { Mostrar_Votos(); } break; case 'J': case 'j': { Mostrar_Votantes(); } break; case 'S': case 's': { Salir = true; } break; default: { } break; } } } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Menu_Datos_Sistema() // ACCION : Muestra la cabecera de todas las pantallas // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Menu_Datos_Sistema() { SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 11); cout << "======================================================================================="<< endl; cout << " SEV - SISTEMA ELECTRONICO DE VOTACION" << endl; cout << " GOBIERNO NACIONAL DE LA REPUBLICA ARGENTINA" << endl; cout << " ELECCIONES 2019 - PRESIDENTE/VICEPRESIDENTE/GOBERNADOR" << endl; cout << endl; cout << "======================================================================================="<< endl; cout << endl; SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 10); } //--------------------------------------------------------------------------- // METODO : char AuxiliaresView::ValidarOpcion_char(char *Mensaje, char *MensajeError) // ACCION : Valida un ingreso char // PARAMETROS: char *Mensaje, char *MensajeError // DEVUELVE : opcion seleccionada //--------------------------------------------------------------------------- char AuxiliaresView::ValidarOpcion_char(char *Mensaje, char *MensajeError) { char Result, Ingreso; bool IngresoValido = false; do { cout << Mensaje; cin >> Ingreso; if( (Ingreso >= 97 and Ingreso <= 122) or (Ingreso >= 65 and Ingreso <= 90) ) { IngresoValido = true; } else { cout << MensajeError << endl; cin.ignore(); } } while (!IngresoValido); Result = Ingreso; return Result; } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Alta_Partido() // ACCION : Da de alta una Partido // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Alta_Partido() { PartidoDTO PartDTO; PartidoDAL PartDAL; PuestoDAL PuestoDAL; PuestoDTO PuestoDTO; CandidatoDAL CandDAL; CandidatoDTO CandDTO; int ID; char Nombre[25], Cand[25],Puesto[25]; cout << "Ingrese el nombre del partido: " ; cin.getline(Nombre,50); ID = PartDAL.Busco_ID(Nombre); if (ID == 0) { PartDTO.SetID_Partido(PartDAL.Mayor_ID()); PartDTO.SetNombre(Nombre); for (int i=0; i<3; i++) { cout << "Ingrese el nombre del puesto: " ; cin.getline (Puesto,25); PartDTO.SetID_Puesto(PuestoDAL.Busco_ID(Puesto)); cout << "Ingrese el nombre del candidato: " ; cin.getline (Cand,25); PartDTO.SetID_Candidato(CandDAL.Busco_ID(Cand)); PartDAL.Guardar_EnDisco(PartDTO); } } } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Alta_Candidato() // ACCION : Da de alta un Candidato // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Alta_Candidato() { CandidatoDTO CandDTO; CandidatoDAL CandDAL; char Nombre[25], Apellido[25]; int ID; cout << "Ingrese el Apellido del candidado: "; cin.getline (Apellido,25); cout << "Ingrese el nombre del candidado: "; cin.getline (Nombre,25); ID = CandDAL.Busco_ID(Apellido); if(ID == 0) { CandDTO.SetApellido(Apellido); CandDTO.SetNombre(Nombre); CandDTO.SetID_Candidato(CandDAL.Mayor_ID()); if (CandDAL.Guardar_EnDisco(CandDTO)) { cout << "Candidato dada de alta correctamente" << endl; } else { cout << "error al dar de alta la provincia" << endl; } } else { cout << "La provincia ya se encuentra dada de alta"<< endl; } system("pause"); } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Mostrar_Candidatos() // ACCION : Lista todos los candidatos // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Mostrar_Candidatos() { CandidatoDAL CandDAL; CandidatoDTO CandDTO; int Pos = 0; cout.width(5); cout << left<<"ID"; cout.width(25); cout << left<<"Nombre"; cout.width(25); cout << left<<"Apellido"; cout.width(5); cout << left<<"Votos" << endl ; while (CandDAL.Leer_DeDisco(Pos,CandDTO)) { cout.width(5); cout << left << CandDTO.GetID_Candidato() ; cout.width(25); cout <<left << CandDTO.GetNombre(); cout.width(25); cout <<left << CandDTO.GetApellido(); cout.width(5); cout << left << CandDTO.GetVotos() << endl; Pos++; } system("pause"); } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Mostrar_Puestos() // ACCION : Lista todos los Puestos // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Mostrar_Puestos() { PuestoDAL PuestoDAL; PuestoDTO PuestoDTO; int Pos = 0; cout.width(5); cout << left<<"ID"; cout.width(40); cout << left<<"Descripcion" << endl; cout << endl; while (PuestoDAL.Leer_DeDisco(Pos,PuestoDTO)) { cout.width(5); cout << left << PuestoDTO.GetID_Puesto() ; cout.width(40); cout <<left << PuestoDTO.GetDescripcion() << endl; Pos++; } cout << endl; system("pause"); } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Mostrar_Partidos() // ACCION : Lista todos los Partidos // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Mostrar_Partidos() { PartidoDAL PartDAL; PartidoDTO PartDTO; int Pos = 0; cout.width(10); cout << left<<"ID"; cout.width(50); cout << left<<"Nombre"; cout.width(10); cout << left<<"ID Puesto"; cout.width(10); cout << left<<"ID Candidato" << endl; cout << endl; while (PartDAL.Leer_DeDisco(Pos,PartDTO)) { cout.width(10); cout << left<<PartDTO.GetID_Partido(); cout.width(50); cout << left<<PartDTO.GetNombre(); cout.width(10); cout << left<<PartDTO.GetID_Puesto(); cout.width(10); cout << left<<PartDTO.GetID_Candidato() << endl; Pos++; } cout << endl; system("pause"); } //--------------------------------------------------------------------------- // METODO : int AuxiliaresView::Validar_Int(char *Mensaje, char *MensajeError) // ACCION : valida un ingreso de un caracter // PARAMETROS: char *Mensaje, char *MensajeError // DEVUELVE : Opcion seleccionada //--------------------------------------------------------------------------- int AuxiliaresView::Validar_Int(char *Mensaje, char *MensajeError) { char Ingreso; int Result = 0; bool IngresoValido = false; do { cout << Mensaje; cin >> Ingreso; if(Ingreso >= 49 and Ingreso <= 52 ) { IngresoValido = true; } else { cout << MensajeError << endl; cin.ignore(); } } while (!IngresoValido); Result = Ingreso -48; return Result; } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Mostrar_Votos() // ACCION : Lista todos los Votos // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Mostrar_Votos() { VotoDAL VotDAL; VotoDTO VotDTO; int Pos = 0; cout.width(10); cout << left<<"ID"; cout.width(10); cout << left<<"DNI"; cout.width(25); cout << left<<"ID Presidente"; cout.width(25); cout << left<<"ID VicePresidente" ; cout.width(25); cout << left<<"ID Gobernador" << endl; cout << endl; while (VotDAL.Leer_DeDisco(Pos,VotDTO)) { cout.width(10); cout << left << VotDTO.GetID_Voto() ; cout.width(10); cout << left << VotDTO.GetDNI() ; cout.width(25); cout <<left << VotDTO.GetID_Presidente() ; cout.width(25); cout <<left << VotDTO.GetID_VicePresidente(); cout.width(25); cout <<left << VotDTO.GetID_Gobernador()<< endl; Pos++; } cout << endl; system("pause"); } //--------------------------------------------------------------------------- // METODO : void AuxiliaresView::Mostrar_Votantes() // ACCION : Lista todos los Votantes // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Mostrar_Votantes() { VotanteDAL VotDAL; VotanteDTO VotDTO; int Pos = 0; cout.width(10); cout << left<<"DNI"; cout.width(25); cout << left<<"Nombre"; cout.width(25); cout << left<<"Apellido"; cout.width(30); cout << left<<"Direccion" ; cout.width(15); cout << left<<"Provincia"; cout.width(5); cout << left<<"Edad" << endl; cout << endl; while (VotDAL.Leer_DeDisco(Pos,VotDTO)) { cout.width(10); cout << left<<VotDTO.GetDNI(); cout.width(25); cout << left<<VotDTO.GetNombre(); cout.width(25); cout << left<<VotDTO.GetApellido(); cout.width(30); cout << left<<VotDTO.GetDireccion(); cout.width(15); cout << left<<VotDTO.GetID_Provincia(); cout.width(5); cout << left<<VotDTO.GetEdad() << endl; Pos++; } cout << endl; system("pause"); } //--------------------------------------------------------------------------- // METODO : Menu con ayuda para el usuario // PARAMETROS: NADA // DEVUELVE : NADA //--------------------------------------------------------------------------- void AuxiliaresView::Ayuda() { system("cls"); Menu_Datos_Sistema(); cout << " AYUDA" << endl; cout << "_______________________________________________________________________________________"<< endl; cout << endl; cout << " MODULO ALTA: se ingresa un votante al sistema que no se encuentre en los padrones" <<endl; cout << endl; cout << " CONSULTA PADRONES: Se verifica si el votante se encuentra en los padros y es apto"<<endl; cout << " para votar" <<endl; cout << endl; cout << " VOTAR: en este modulo se puede ingresar un voto, el usuario podra elegir entre los"<<endl; cout << " distintos puestos(presidente, vicepresidente y gobernador), una vez seleccionado el "<<endl; cout << " puesto se le mostrara todos los partidos politicos disponibles para seleccionar, "<<endl; cout << " cuando finalice podra elegir otro puesto, asi esta completar todos los puestos."<<endl; cout << endl; cout << " RESULTADOS DE ELECCION: En este modulo se puede ver como se encuentran los resultados" <<endl; cout << " de las votaciones, aperturado por Puestos y por partido Politico " << endl; cout << endl; system("Pause"); }
e20b0ce6e8ba7b80189a54484bb0c77225a5f258
50b4606bc5532edbc59c848dd129f62553f3cb14
/tests/array_quad.cc
5a42c1f3fa0edd3e7a2848e1c3dde38d26d5a058
[]
no_license
sweatybridge/m3sc
699548b48a758d62d850d3a67b0b8aa0b9080f32
8e5a43af0ba67d3b994a3822386fdd653b7235b3
refs/heads/master
2021-05-01T23:35:38.554135
2017-01-01T01:41:41
2017-01-01T01:41:41
77,752,520
0
0
null
null
null
null
UTF-8
C++
false
false
85,431
cc
array_quad.cc
#include <gtest/gtest.h> extern "C" { int quad_roots(double *a, double *r); } TEST(QuadraticRootTest, Test_1) { double r[3]; double a[] = {5, 6, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-1, r[1], 1e-07); ASSERT_NEAR(-5, r[2], 1e-07); } TEST(QuadraticRootTest, Test_2) { double r[3]; double a[] = {6, 5, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-2, r[1], 1e-07); ASSERT_NEAR(-3, r[2], 1e-07); } TEST(QuadraticRootTest, Test_3) { double r[3]; double a[] = {4, -6, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2, r[1], 1e-07); ASSERT_NEAR(1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_4) { double r[3]; double a[] = {1, -4, 4}; int num_roots = quad_roots(a, r); ASSERT_EQ(1, num_roots); ASSERT_NEAR(0.5, r[1], 1e-07); ASSERT_NEAR(0.5, r[2], 1e-07); } TEST(QuadraticRootTest, Test_5) { double r[3]; double a[] = {10, -4, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(2, r[2], 1e-07); } TEST(QuadraticRootTest, Test_6) { double r[3]; double a[] = {0, 7, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(-3.5, r[2], 1e-07); } TEST(QuadraticRootTest, Test_7) { double r[3]; double a[] = {0, 0, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(1, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(0, r[2], 0.0); } TEST(QuadraticRootTest, Test_8) { double r[3]; double a[] = {3, 1, 0}; int num_roots = quad_roots(a, r); ASSERT_EQ(-1, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(-3, r[2], 1e-07); } TEST(QuadraticRootTest, Test_9) { double r[3]; double a[] = {3, 2, 0}; int num_roots = quad_roots(a, r); ASSERT_EQ(-1, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(-1.5, r[2], 1e-07); } TEST(QuadraticRootTest, Test_10) { double r[3]; double a[] = {0, 2, 0}; int num_roots = quad_roots(a, r); ASSERT_EQ(-1, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(0, r[2], 0.0); } TEST(QuadraticRootTest, Test_11) { double r[3]; double a[] = {0, 0, 0}; int num_roots = quad_roots(a, r); ASSERT_EQ(-2, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(0, r[2], 0.0); } TEST(QuadraticRootTest, Test_12) { double r[3]; double a[] = {2, 0, 0}; int num_roots = quad_roots(a, r); ASSERT_EQ(-3, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(0, r[2], 0.0); } TEST(QuadraticRootTest, Test_13) { double r[3]; double a[] = {8, 0, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0, r[1], 0.0); ASSERT_NEAR(2, r[2], 1e-07); } TEST(QuadraticRootTest, Test_14) { double r[3]; double a[] = {-8, 0, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2, r[1], 1e-07); ASSERT_NEAR(-2, r[2], 1e-07); } TEST(QuadraticRootTest, Test_15) { double r[3]; double a[] = {3, -1000000000, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500000000, r[1], 50.0); ASSERT_NEAR(3e-09, r[2], 3e-16); } TEST(QuadraticRootTest, Test_16) { double r[3]; double a[] = {-3, -1000000000, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500000000, r[1], 50.0); ASSERT_NEAR(-3e-09, r[2], 3e-16); } TEST(QuadraticRootTest, Test_17) { double r[3]; double a[] = {3, 1000000000, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-3e-09, r[1], 3e-16); ASSERT_NEAR(-500000000, r[2], 50.0); } TEST(QuadraticRootTest, Test_18) { double r[3]; double a[] = {-3, 1000000000, 2}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3e-09, r[1], 3e-16); ASSERT_NEAR(-500000000, r[2], 50.0); } TEST(QuadraticRootTest, Test_19) { double r[3]; double a[] = {-3e-199, 4.9994e-198, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.06, r[1], 1e-07); ASSERT_NEAR(-500, r[2], 1e-07); } TEST(QuadraticRootTest, Test_20) { double r[3]; double a[] = {-3e-99, 4.9994e-98, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.06, r[1], 1e-07); ASSERT_NEAR(-500, r[2], 1e-07); } TEST(QuadraticRootTest, Test_21) { double r[3]; double a[] = {-30, 499.94, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.06, r[1], 1e-07); ASSERT_NEAR(-500, r[2], 1e-07); } TEST(QuadraticRootTest, Test_22) { double r[3]; double a[] = {-3e+101, 4.9994e+102, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.06, r[1], 1e-07); ASSERT_NEAR(-500, r[2], 1e-07); } TEST(QuadraticRootTest, Test_23) { double r[3]; double a[] = {-3e+201, 4.9994e+202, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.06, r[1], 1e-07); ASSERT_NEAR(-500, r[2], 1e-07); } TEST(QuadraticRootTest, Test_24) { double r[3]; double a[] = {3e-199, -5.0006e-198, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_25) { double r[3]; double a[] = {3e-99, -5.0006e-98, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_26) { double r[3]; double a[] = {30, -500.06, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_27) { double r[3]; double a[] = {3e+101, -5.0006e+102, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_28) { double r[3]; double a[] = {3e+201, -5.0006e+202, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_29) { double r[3]; double a[] = {-3e-199, -4.9994e-198, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(-0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_30) { double r[3]; double a[] = {-3e-99, -4.9994e-98, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(-0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_31) { double r[3]; double a[] = {-30, -499.94, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(-0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_32) { double r[3]; double a[] = {-3e+101, -4.9994e+102, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(-0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_33) { double r[3]; double a[] = {-3e+201, -4.9994e+202, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(500, r[1], 1e-07); ASSERT_NEAR(-0.06, r[2], 1e-07); } TEST(QuadraticRootTest, Test_34) { double r[3]; double a[] = {1.05e-198, -5.00000021e-196, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(50000, r[1], 1e-07); ASSERT_NEAR(0.0021, r[2], 1e-07); } TEST(QuadraticRootTest, Test_35) { double r[3]; double a[] = {1.05e-98, -5.00000021e-96, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(50000, r[1], 1e-07); ASSERT_NEAR(0.0021, r[2], 1e-07); } TEST(QuadraticRootTest, Test_36) { double r[3]; double a[] = {105, -50000.0021, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(50000, r[1], 1e-07); ASSERT_NEAR(0.0021, r[2], 1e-07); } TEST(QuadraticRootTest, Test_37) { double r[3]; double a[] = {1.05e+102, -5.00000021e+104, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(50000, r[1], 1e-07); ASSERT_NEAR(0.0021, r[2], 1e-07); } TEST(QuadraticRootTest, Test_38) { double r[3]; double a[] = {1.05e+202, -5.00000021e+204, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(50000, r[1], 1e-07); ASSERT_NEAR(0.0021, r[2], 1e-07); } TEST(QuadraticRootTest, Test_39) { double r[3]; double a[] = {-1.05e-198, 4.99999979e-196, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_40) { double r[3]; double a[] = {-1.05e-98, 4.99999979e-96, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_41) { double r[3]; double a[] = {-105, 49999.9979, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_42) { double r[3]; double a[] = {-1.05e+102, 4.99999979e+104, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_43) { double r[3]; double a[] = {-1.05e+202, 4.99999979e+204, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_44) { double r[3]; double a[] = {1.05e-198, 5.00000021e-196, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_45) { double r[3]; double a[] = {1.05e-98, 5.00000021e-96, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_46) { double r[3]; double a[] = {105, 50000.0021, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_47) { double r[3]; double a[] = {1.05e+102, 5.00000021e+104, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_48) { double r[3]; double a[] = {1.05e+202, 5.00000021e+204, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.0021, r[1], 1e-07); ASSERT_NEAR(-50000, r[2], 1e-07); } TEST(QuadraticRootTest, Test_49) { double r[3]; double a[] = {-5.6e-199, 9.99999999944e-195, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5.6e-05, r[1], 1e-07); ASSERT_NEAR(-1000000, r[2], 0.1); } TEST(QuadraticRootTest, Test_50) { double r[3]; double a[] = {-5.6e-99, 9.99999999944e-95, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5.6e-05, r[1], 1e-07); ASSERT_NEAR(-1000000, r[2], 0.1); } TEST(QuadraticRootTest, Test_51) { double r[3]; double a[] = {-56, 999999.999944, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5.6e-05, r[1], 1e-07); ASSERT_NEAR(-1000000, r[2], 0.1); } TEST(QuadraticRootTest, Test_52) { double r[3]; double a[] = {-5.6e+101, 9.99999999944e+105, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5.6e-05, r[1], 1e-07); ASSERT_NEAR(-1000000, r[2], 0.1); } TEST(QuadraticRootTest, Test_53) { double r[3]; double a[] = {-5.6e+201, 9.99999999944e+205, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5.6e-05, r[1], 1e-07); ASSERT_NEAR(-1000000, r[2], 0.1); } TEST(QuadraticRootTest, Test_54) { double r[3]; double a[] = {5.6e-199, -1.000000000056e-194, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_55) { double r[3]; double a[] = {5.6e-99, -1.000000000056e-94, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_56) { double r[3]; double a[] = {56, -1000000.000056, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_57) { double r[3]; double a[] = {5.6e+101, -1.000000000056e+106, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_58) { double r[3]; double a[] = {5.6e+201, -1.000000000056e+206, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_59) { double r[3]; double a[] = {-5.6e-199, -9.99999999944e-195, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(-5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_60) { double r[3]; double a[] = {-5.6e-99, -9.99999999944e-95, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(-5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_61) { double r[3]; double a[] = {-56, -999999.999944, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(-5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_62) { double r[3]; double a[] = {-5.6e+101, -9.99999999944e+105, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(-5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_63) { double r[3]; double a[] = {-5.6e+201, -9.99999999944e+205, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1000000, r[1], 0.1); ASSERT_NEAR(-5.6e-05, r[2], 1e-07); } TEST(QuadraticRootTest, Test_64) { double r[3]; double a[] = {-1.8e-199, 1.4285714285713e-193, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.26e-06, r[1], 1.26e-13); ASSERT_NEAR(-14285714.2857143, r[2], 1.42857142857); } TEST(QuadraticRootTest, Test_65) { double r[3]; double a[] = {-1.8e-99, 1.4285714285713e-93, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.26e-06, r[1], 1.26e-13); ASSERT_NEAR(-14285714.2857143, r[2], 1.42857142857); } TEST(QuadraticRootTest, Test_66) { double r[3]; double a[] = {-18, 14285714.285713, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.26e-06, r[1], 1.26e-13); ASSERT_NEAR(-14285714.2857143, r[2], 1.42857142857); } TEST(QuadraticRootTest, Test_67) { double r[3]; double a[] = {-1.8e+101, 1.4285714285713e+107, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.26e-06, r[1], 1.26e-13); ASSERT_NEAR(-14285714.2857143, r[2], 1.42857142857); } TEST(QuadraticRootTest, Test_68) { double r[3]; double a[] = {-1.8e+201, 1.4285714285713e+207, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.26e-06, r[1], 1.26e-13); ASSERT_NEAR(-14285714.2857143, r[2], 1.42857142857); } TEST(QuadraticRootTest, Test_69) { double r[3]; double a[] = {1.8e-199, -1.42857142857155e-193, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_70) { double r[3]; double a[] = {1.8e-99, -1.42857142857155e-93, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_71) { double r[3]; double a[] = {18, -14285714.2857155, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_72) { double r[3]; double a[] = {1.8e+101, -1.42857142857155e+107, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_73) { double r[3]; double a[] = {1.8e+201, -1.42857142857155e+207, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_74) { double r[3]; double a[] = {-1.8e-199, -1.4285714285713e-193, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(-1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_75) { double r[3]; double a[] = {-1.8e-99, -1.4285714285713e-93, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(-1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_76) { double r[3]; double a[] = {-18, -14285714.285713, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(-1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_77) { double r[3]; double a[] = {-1.8e+101, -1.4285714285713e+107, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(-1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_78) { double r[3]; double a[] = {-1.8e+201, -1.4285714285713e+207, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(14285714.2857143, r[1], 1.42857142857); ASSERT_NEAR(-1.26e-06, r[2], 1.26e-13); } TEST(QuadraticRootTest, Test_79) { double r[3]; double a[] = {-1.2e-199, 4.76190476190476e-192, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.52e-08, r[1], 2.52e-15); ASSERT_NEAR(-476190476.190476, r[2], 47.619047619); } TEST(QuadraticRootTest, Test_80) { double r[3]; double a[] = {-1.2e-99, 4.76190476190476e-92, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.52e-08, r[1], 2.52e-15); ASSERT_NEAR(-476190476.190476, r[2], 47.619047619); } TEST(QuadraticRootTest, Test_81) { double r[3]; double a[] = {-12, 476190476.190476, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.52e-08, r[1], 2.52e-15); ASSERT_NEAR(-476190476.190476, r[2], 47.619047619); } TEST(QuadraticRootTest, Test_82) { double r[3]; double a[] = {-1.2e+101, 4.76190476190476e+108, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.52e-08, r[1], 2.52e-15); ASSERT_NEAR(-476190476.190476, r[2], 47.619047619); } TEST(QuadraticRootTest, Test_83) { double r[3]; double a[] = {-1.2e+201, 4.76190476190476e+208, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.52e-08, r[1], 2.52e-15); ASSERT_NEAR(-476190476.190476, r[2], 47.619047619); } TEST(QuadraticRootTest, Test_84) { double r[3]; double a[] = {1.2e-199, -4.76190476190476e-192, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_85) { double r[3]; double a[] = {1.2e-99, -4.76190476190476e-92, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_86) { double r[3]; double a[] = {12, -476190476.190476, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_87) { double r[3]; double a[] = {1.2e+101, -4.76190476190476e+108, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_88) { double r[3]; double a[] = {1.2e+201, -4.76190476190476e+208, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_89) { double r[3]; double a[] = {-1.2e-199, -4.76190476190476e-192, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(-2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_90) { double r[3]; double a[] = {-1.2e-99, -4.76190476190476e-92, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(-2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_91) { double r[3]; double a[] = {-12, -476190476.190476, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(-2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_92) { double r[3]; double a[] = {-1.2e+101, -4.76190476190476e+108, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(-2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_93) { double r[3]; double a[] = {-1.2e+201, -4.76190476190476e+208, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(476190476.190476, r[1], 47.619047619); ASSERT_NEAR(-2.52e-08, r[2], 2.52e-15); } TEST(QuadraticRootTest, Test_94) { double r[3]; double a[] = {-1e-199, 2.16450216450216e-190, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.62e-10, r[1], 4.62e-17); ASSERT_NEAR(-21645021645.0216, r[2], 2164.5021645); } TEST(QuadraticRootTest, Test_95) { double r[3]; double a[] = {-1e-99, 2.16450216450216e-90, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.62e-10, r[1], 4.62e-17); ASSERT_NEAR(-21645021645.0216, r[2], 2164.5021645); } TEST(QuadraticRootTest, Test_96) { double r[3]; double a[] = {-10, 21645021645.0216, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.62e-10, r[1], 4.62e-17); ASSERT_NEAR(-21645021645.0216, r[2], 2164.5021645); } TEST(QuadraticRootTest, Test_97) { double r[3]; double a[] = {-1e+101, 2.16450216450216e+110, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.62e-10, r[1], 4.62e-17); ASSERT_NEAR(-21645021645.0216, r[2], 2164.5021645); } TEST(QuadraticRootTest, Test_98) { double r[3]; double a[] = {-1e+201, 2.16450216450216e+210, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.62e-10, r[1], 4.62e-17); ASSERT_NEAR(-21645021645.0216, r[2], 2164.5021645); } TEST(QuadraticRootTest, Test_99) { double r[3]; double a[] = {1e-199, -2.16450216450216e-190, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_100) { double r[3]; double a[] = {1e-99, -2.16450216450216e-90, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_101) { double r[3]; double a[] = {10, -21645021645.0216, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_102) { double r[3]; double a[] = {1e+101, -2.16450216450216e+110, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_103) { double r[3]; double a[] = {1e+201, -2.16450216450216e+210, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_104) { double r[3]; double a[] = {-1e-199, -2.16450216450216e-190, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(-4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_105) { double r[3]; double a[] = {-1e-99, -2.16450216450216e-90, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(-4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_106) { double r[3]; double a[] = {-10, -21645021645.0216, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(-4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_107) { double r[3]; double a[] = {-1e+101, -2.16450216450216e+110, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(-4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_108) { double r[3]; double a[] = {-1e+201, -2.16450216450216e+210, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(21645021645.0216, r[1], 2164.5021645); ASSERT_NEAR(-4.62e-10, r[2], 4.62e-17); } TEST(QuadraticRootTest, Test_109) { double r[3]; double a[] = {-9.23076923076923e-200, 1.16550116550117e-188, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.92e-12, r[1], 7.92e-19); ASSERT_NEAR(-1165501165501.17, r[2], 116550.11655); } TEST(QuadraticRootTest, Test_110) { double r[3]; double a[] = {-9.23076923076923e-100, 1.16550116550117e-88, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.92e-12, r[1], 7.92e-19); ASSERT_NEAR(-1165501165501.17, r[2], 116550.11655); } TEST(QuadraticRootTest, Test_111) { double r[3]; double a[] = {-9.23076923076923, 1165501165501.17, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.92e-12, r[1], 7.92e-19); ASSERT_NEAR(-1165501165501.17, r[2], 116550.11655); } TEST(QuadraticRootTest, Test_112) { double r[3]; double a[] = {-9.23076923076923e+100, 1.16550116550117e+112, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.92e-12, r[1], 7.92e-19); ASSERT_NEAR(-1165501165501.17, r[2], 116550.11655); } TEST(QuadraticRootTest, Test_113) { double r[3]; double a[] = {-9.23076923076923e+200, 1.16550116550117e+212, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.92e-12, r[1], 7.92e-19); ASSERT_NEAR(-1165501165501.17, r[2], 116550.11655); } TEST(QuadraticRootTest, Test_114) { double r[3]; double a[] = {9.23076923076923e-200, -1.16550116550117e-188, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_115) { double r[3]; double a[] = {9.23076923076923e-100, -1.16550116550117e-88, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_116) { double r[3]; double a[] = {9.23076923076923, -1165501165501.17, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_117) { double r[3]; double a[] = {9.23076923076923e+100, -1.16550116550117e+112, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_118) { double r[3]; double a[] = {9.23076923076923e+200, -1.16550116550117e+212, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_119) { double r[3]; double a[] = {-9.23076923076923e-200, -1.16550116550117e-188, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(-7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_120) { double r[3]; double a[] = {-9.23076923076923e-100, -1.16550116550117e-88, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(-7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_121) { double r[3]; double a[] = {-9.23076923076923, -1165501165501.17, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(-7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_122) { double r[3]; double a[] = {-9.23076923076923e+100, -1.16550116550117e+112, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(-7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_123) { double r[3]; double a[] = {-9.23076923076923e+200, -1.16550116550117e+212, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1165501165501.17, r[1], 116550.11655); ASSERT_NEAR(-7.92e-12, r[2], 7.92e-19); } TEST(QuadraticRootTest, Test_124) { double r[3]; double a[] = {-9e-200, 6.99300699300699e-187, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.287e-13, r[1], 1.287e-20); ASSERT_NEAR(-69930069930069.9, r[2], 6993006.99301); } TEST(QuadraticRootTest, Test_125) { double r[3]; double a[] = {-9e-100, 6.99300699300699e-87, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.287e-13, r[1], 1.287e-20); ASSERT_NEAR(-69930069930069.9, r[2], 6993006.99301); } TEST(QuadraticRootTest, Test_126) { double r[3]; double a[] = {-9, 69930069930069.9, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.287e-13, r[1], 1.287e-20); ASSERT_NEAR(-69930069930069.9, r[2], 6993006.99301); } TEST(QuadraticRootTest, Test_127) { double r[3]; double a[] = {-9e+100, 6.99300699300699e+113, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.287e-13, r[1], 1.287e-20); ASSERT_NEAR(-69930069930069.9, r[2], 6993006.99301); } TEST(QuadraticRootTest, Test_128) { double r[3]; double a[] = {-9e+200, 6.99300699300699e+213, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.287e-13, r[1], 1.287e-20); ASSERT_NEAR(-69930069930069.9, r[2], 6993006.99301); } TEST(QuadraticRootTest, Test_129) { double r[3]; double a[] = {9e-200, -6.99300699300699e-187, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_130) { double r[3]; double a[] = {9e-100, -6.99300699300699e-87, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_131) { double r[3]; double a[] = {9, -69930069930069.9, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_132) { double r[3]; double a[] = {9e+100, -6.99300699300699e+113, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_133) { double r[3]; double a[] = {9e+200, -6.99300699300699e+213, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_134) { double r[3]; double a[] = {-9e-200, -6.99300699300699e-187, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(-1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_135) { double r[3]; double a[] = {-9e-100, -6.99300699300699e-87, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(-1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_136) { double r[3]; double a[] = {-9, -69930069930069.9, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(-1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_137) { double r[3]; double a[] = {-9e+100, -6.99300699300699e+113, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(-1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_138) { double r[3]; double a[] = {-9e+200, -6.99300699300699e+213, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(69930069930069.9, r[1], 6993006.99301); ASSERT_NEAR(-1.287e-13, r[2], 1.287e-20); } TEST(QuadraticRootTest, Test_139) { double r[3]; double a[] = {-9.05882352941176e-200, 4.52488687782805e-185, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.002e-15, r[1], 2.002e-22); ASSERT_NEAR(-4.52488687782805e+15, r[2], 452488687.783); } TEST(QuadraticRootTest, Test_140) { double r[3]; double a[] = {-9.05882352941176e-100, 4.52488687782805e-85, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.002e-15, r[1], 2.002e-22); ASSERT_NEAR(-4.52488687782805e+15, r[2], 452488687.783); } TEST(QuadraticRootTest, Test_141) { double r[3]; double a[] = {-9.05882352941176, 4.52488687782805e+15, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.002e-15, r[1], 2.002e-22); ASSERT_NEAR(-4.52488687782805e+15, r[2], 452488687.783); } TEST(QuadraticRootTest, Test_142) { double r[3]; double a[] = {-9.05882352941177e+100, 4.52488687782805e+115, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.002e-15, r[1], 2.002e-22); ASSERT_NEAR(-4.52488687782805e+15, r[2], 452488687.783); } TEST(QuadraticRootTest, Test_143) { double r[3]; double a[] = {-9.05882352941177e+200, 4.52488687782805e+215, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.002e-15, r[1], 2.002e-22); ASSERT_NEAR(-4.52488687782805e+15, r[2], 452488687.783); } TEST(QuadraticRootTest, Test_144) { double r[3]; double a[] = {9.05882352941176e-200, -4.52488687782805e-185, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_145) { double r[3]; double a[] = {9.05882352941176e-100, -4.52488687782805e-85, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_146) { double r[3]; double a[] = {9.05882352941176, -4.52488687782805e+15, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_147) { double r[3]; double a[] = {9.05882352941177e+100, -4.52488687782805e+115, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_148) { double r[3]; double a[] = {9.05882352941177e+200, -4.52488687782805e+215, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_149) { double r[3]; double a[] = {-9.05882352941176e-200, -4.52488687782805e-185, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(-2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_150) { double r[3]; double a[] = {-9.05882352941176e-100, -4.52488687782805e-85, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(-2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_151) { double r[3]; double a[] = {-9.05882352941176, -4.52488687782805e+15, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(-2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_152) { double r[3]; double a[] = {-9.05882352941177e+100, -4.52488687782805e+115, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(-2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_153) { double r[3]; double a[] = {-9.05882352941177e+200, -4.52488687782805e+215, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.52488687782805e+15, r[1], 452488687.783); ASSERT_NEAR(-2.002e-15, r[2], 2.002e-22); } TEST(QuadraticRootTest, Test_154) { double r[3]; double a[] = {-9.29721362229102e-200, 3.09597523219814e-183, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.003e-17, r[1], 3.003e-24); ASSERT_NEAR(-3.09597523219814e+17, r[2], 30959752322.0); } TEST(QuadraticRootTest, Test_155) { double r[3]; double a[] = {-9.29721362229102e-100, 3.09597523219814e-83, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.003e-17, r[1], 3.003e-24); ASSERT_NEAR(-3.09597523219814e+17, r[2], 30959752322.0); } TEST(QuadraticRootTest, Test_156) { double r[3]; double a[] = {-9.29721362229102, 3.09597523219814e+17, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.003e-17, r[1], 3.003e-24); ASSERT_NEAR(-3.09597523219814e+17, r[2], 30959752322.0); } TEST(QuadraticRootTest, Test_157) { double r[3]; double a[] = {-9.29721362229102e+100, 3.09597523219814e+117, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.003e-17, r[1], 3.003e-24); ASSERT_NEAR(-3.09597523219814e+17, r[2], 30959752322.0); } TEST(QuadraticRootTest, Test_158) { double r[3]; double a[] = {-9.29721362229102e+200, 3.09597523219814e+217, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.003e-17, r[1], 3.003e-24); ASSERT_NEAR(-3.09597523219814e+17, r[2], 30959752322.0); } TEST(QuadraticRootTest, Test_159) { double r[3]; double a[] = {9.29721362229102e-200, -3.09597523219814e-183, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_160) { double r[3]; double a[] = {9.29721362229102e-100, -3.09597523219814e-83, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_161) { double r[3]; double a[] = {9.29721362229102, -3.09597523219814e+17, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_162) { double r[3]; double a[] = {9.29721362229102e+100, -3.09597523219814e+117, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_163) { double r[3]; double a[] = {9.29721362229102e+200, -3.09597523219814e+217, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_164) { double r[3]; double a[] = {-9.29721362229102e-200, -3.09597523219814e-183, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(-3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_165) { double r[3]; double a[] = {-9.29721362229102e-100, -3.09597523219814e-83, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(-3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_166) { double r[3]; double a[] = {-9.29721362229102, -3.09597523219814e+17, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(-3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_167) { double r[3]; double a[] = {-9.29721362229102e+100, -3.09597523219814e+117, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(-3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_168) { double r[3]; double a[] = {-9.29721362229102e+200, -3.09597523219814e+217, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.09597523219814e+17, r[1], 30959752322.0); ASSERT_NEAR(-3.003e-17, r[2], 3.003e-24); } TEST(QuadraticRootTest, Test_169) { double r[3]; double a[] = {-9.6594427244582e-200, 2.21141088014153e-181, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.368e-19, r[1], 4.368e-26); ASSERT_NEAR(-2.21141088014153e+19, r[2], 2.21141088014e+12); } TEST(QuadraticRootTest, Test_170) { double r[3]; double a[] = {-9.6594427244582e-100, 2.21141088014153e-81, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.368e-19, r[1], 4.368e-26); ASSERT_NEAR(-2.21141088014153e+19, r[2], 2.21141088014e+12); } TEST(QuadraticRootTest, Test_171) { double r[3]; double a[] = {-9.6594427244582, 2.21141088014153e+19, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.368e-19, r[1], 4.368e-26); ASSERT_NEAR(-2.21141088014153e+19, r[2], 2.21141088014e+12); } TEST(QuadraticRootTest, Test_172) { double r[3]; double a[] = {-9.6594427244582e+100, 2.21141088014153e+119, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.368e-19, r[1], 4.368e-26); ASSERT_NEAR(-2.21141088014153e+19, r[2], 2.21141088014e+12); } TEST(QuadraticRootTest, Test_173) { double r[3]; double a[] = {-9.6594427244582e+200, 2.21141088014153e+219, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.368e-19, r[1], 4.368e-26); ASSERT_NEAR(-2.21141088014153e+19, r[2], 2.21141088014e+12); } TEST(QuadraticRootTest, Test_174) { double r[3]; double a[] = {9.6594427244582e-200, -2.21141088014153e-181, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_175) { double r[3]; double a[] = {9.6594427244582e-100, -2.21141088014153e-81, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_176) { double r[3]; double a[] = {9.6594427244582, -2.21141088014153e+19, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_177) { double r[3]; double a[] = {9.6594427244582e+100, -2.21141088014153e+119, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_178) { double r[3]; double a[] = {9.6594427244582e+200, -2.21141088014153e+219, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_179) { double r[3]; double a[] = {-9.6594427244582e-200, -2.21141088014153e-181, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(-4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_180) { double r[3]; double a[] = {-9.6594427244582e-100, -2.21141088014153e-81, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(-4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_181) { double r[3]; double a[] = {-9.6594427244582, -2.21141088014153e+19, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(-4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_182) { double r[3]; double a[] = {-9.6594427244582e+100, -2.21141088014153e+119, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(-4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_183) { double r[3]; double a[] = {-9.6594427244582e+200, -2.21141088014153e+219, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.21141088014153e+19, r[1], 2.21141088014e+12); ASSERT_NEAR(-4.368e-19, r[2], 4.368e-26); } TEST(QuadraticRootTest, Test_184) { double r[3]; double a[] = {-1.01144164759725e-199, 1.634521085322e-179, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(6.188e-21, r[1], 6.188e-28); ASSERT_NEAR(-1.634521085322e+21, r[2], 1.63452108532e+14); } TEST(QuadraticRootTest, Test_185) { double r[3]; double a[] = {-1.01144164759725e-99, 1.634521085322e-79, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(6.188e-21, r[1], 6.188e-28); ASSERT_NEAR(-1.634521085322e+21, r[2], 1.63452108532e+14); } TEST(QuadraticRootTest, Test_186) { double r[3]; double a[] = {-10.1144164759725, 1.634521085322e+21, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(6.188e-21, r[1], 6.188e-28); ASSERT_NEAR(-1.634521085322e+21, r[2], 1.63452108532e+14); } TEST(QuadraticRootTest, Test_187) { double r[3]; double a[] = {-1.01144164759725e+101, 1.634521085322e+121, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(6.188e-21, r[1], 6.188e-28); ASSERT_NEAR(-1.634521085322e+21, r[2], 1.63452108532e+14); } TEST(QuadraticRootTest, Test_188) { double r[3]; double a[] = {-1.01144164759725e+201, 1.634521085322e+221, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(6.188e-21, r[1], 6.188e-28); ASSERT_NEAR(-1.634521085322e+21, r[2], 1.63452108532e+14); } TEST(QuadraticRootTest, Test_189) { double r[3]; double a[] = {1.01144164759725e-199, -1.634521085322e-179, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_190) { double r[3]; double a[] = {1.01144164759725e-99, -1.634521085322e-79, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_191) { double r[3]; double a[] = {10.1144164759725, -1.634521085322e+21, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_192) { double r[3]; double a[] = {1.01144164759725e+101, -1.634521085322e+121, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_193) { double r[3]; double a[] = {1.01144164759725e+201, -1.634521085322e+221, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_194) { double r[3]; double a[] = {-1.01144164759725e-199, -1.634521085322e-179, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(-6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_195) { double r[3]; double a[] = {-1.01144164759725e-99, -1.634521085322e-79, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(-6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_196) { double r[3]; double a[] = {-10.1144164759725, -1.634521085322e+21, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(-6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_197) { double r[3]; double a[] = {-1.01144164759725e+101, -1.634521085322e+121, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(-6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_198) { double r[3]; double a[] = {-1.01144164759725e+201, -1.634521085322e+221, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.634521085322e+21, r[1], 1.63452108532e+14); ASSERT_NEAR(-6.188e-21, r[2], 6.188e-28); } TEST(QuadraticRootTest, Test_199) { double r[3]; double a[] = {-1.06434782608696e-199, 1.24223602484472e-177, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(8.568e-23, r[1], 8.568e-30); ASSERT_NEAR(-1.24223602484472e+23, r[2], 1.24223602484e+16); } TEST(QuadraticRootTest, Test_200) { double r[3]; double a[] = {-1.06434782608696e-99, 1.24223602484472e-77, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(8.568e-23, r[1], 8.568e-30); ASSERT_NEAR(-1.24223602484472e+23, r[2], 1.24223602484e+16); } TEST(QuadraticRootTest, Test_201) { double r[3]; double a[] = {-10.6434782608696, 1.24223602484472e+23, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(8.568e-23, r[1], 8.568e-30); ASSERT_NEAR(-1.24223602484472e+23, r[2], 1.24223602484e+16); } TEST(QuadraticRootTest, Test_202) { double r[3]; double a[] = {-1.06434782608696e+101, 1.24223602484472e+123, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(8.568e-23, r[1], 8.568e-30); ASSERT_NEAR(-1.24223602484472e+23, r[2], 1.24223602484e+16); } TEST(QuadraticRootTest, Test_203) { double r[3]; double a[] = {-1.06434782608696e+201, 1.24223602484472e+223, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(8.568e-23, r[1], 8.568e-30); ASSERT_NEAR(-1.24223602484472e+23, r[2], 1.24223602484e+16); } TEST(QuadraticRootTest, Test_204) { double r[3]; double a[] = {1.06434782608696e-199, -1.24223602484472e-177, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_205) { double r[3]; double a[] = {1.06434782608696e-99, -1.24223602484472e-77, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_206) { double r[3]; double a[] = {10.6434782608696, -1.24223602484472e+23, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_207) { double r[3]; double a[] = {1.06434782608696e+101, -1.24223602484472e+123, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_208) { double r[3]; double a[] = {1.06434782608696e+201, -1.24223602484472e+223, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_209) { double r[3]; double a[] = {-1.06434782608696e-199, -1.24223602484472e-177, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(-8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_210) { double r[3]; double a[] = {-1.06434782608696e-99, -1.24223602484472e-77, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(-8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_211) { double r[3]; double a[] = {-10.6434782608696, -1.24223602484472e+23, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(-8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_212) { double r[3]; double a[] = {-1.06434782608696e+101, -1.24223602484472e+123, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(-8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_213) { double r[3]; double a[] = {-1.06434782608696e+201, -1.24223602484472e+223, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.24223602484472e+23, r[1], 1.24223602484e+16); ASSERT_NEAR(-8.568e-23, r[2], 8.568e-30); } TEST(QuadraticRootTest, Test_214) { double r[3]; double a[] = {-1.12347826086957e-199, 9.66183574879227e-176, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.1628e-24, r[1], 1.1628e-31); ASSERT_NEAR(-9.66183574879227e+24, r[2], 9.66183574879e+17); } TEST(QuadraticRootTest, Test_215) { double r[3]; double a[] = {-1.12347826086957e-99, 9.66183574879227e-76, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.1628e-24, r[1], 1.1628e-31); ASSERT_NEAR(-9.66183574879227e+24, r[2], 9.66183574879e+17); } TEST(QuadraticRootTest, Test_216) { double r[3]; double a[] = {-11.2347826086957, 9.66183574879227e+24, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.1628e-24, r[1], 1.1628e-31); ASSERT_NEAR(-9.66183574879227e+24, r[2], 9.66183574879e+17); } TEST(QuadraticRootTest, Test_217) { double r[3]; double a[] = {-1.12347826086957e+101, 9.66183574879227e+124, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.1628e-24, r[1], 1.1628e-31); ASSERT_NEAR(-9.66183574879227e+24, r[2], 9.66183574879e+17); } TEST(QuadraticRootTest, Test_218) { double r[3]; double a[] = {-1.12347826086957e+201, 9.66183574879227e+224, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.1628e-24, r[1], 1.1628e-31); ASSERT_NEAR(-9.66183574879227e+24, r[2], 9.66183574879e+17); } TEST(QuadraticRootTest, Test_219) { double r[3]; double a[] = {1.12347826086957e-199, -9.66183574879227e-176, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_220) { double r[3]; double a[] = {1.12347826086957e-99, -9.66183574879227e-76, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_221) { double r[3]; double a[] = {11.2347826086957, -9.66183574879227e+24, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_222) { double r[3]; double a[] = {1.12347826086957e+101, -9.66183574879227e+124, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_223) { double r[3]; double a[] = {1.12347826086957e+201, -9.66183574879227e+224, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_224) { double r[3]; double a[] = {-1.12347826086957e-199, -9.66183574879227e-176, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(-1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_225) { double r[3]; double a[] = {-1.12347826086957e-99, -9.66183574879227e-76, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(-1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_226) { double r[3]; double a[] = {-11.2347826086957, -9.66183574879227e+24, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(-1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_227) { double r[3]; double a[] = {-1.12347826086957e+101, -9.66183574879227e+124, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(-1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_228) { double r[3]; double a[] = {-1.12347826086957e+201, -9.66183574879227e+224, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(9.66183574879227e+24, r[1], 9.66183574879e+17); ASSERT_NEAR(-1.1628e-24, r[2], 1.1628e-31); } TEST(QuadraticRootTest, Test_229) { double r[3]; double a[] = {-1.18804597701149e-199, 7.66283524904215e-174, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.5504e-26, r[1], 1.5504e-33); ASSERT_NEAR(-7.66283524904215e+26, r[2], 7.66283524904e+19); } TEST(QuadraticRootTest, Test_230) { double r[3]; double a[] = {-1.18804597701149e-99, 7.66283524904215e-74, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.5504e-26, r[1], 1.5504e-33); ASSERT_NEAR(-7.66283524904215e+26, r[2], 7.66283524904e+19); } TEST(QuadraticRootTest, Test_231) { double r[3]; double a[] = {-11.8804597701149, 7.66283524904215e+26, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.5504e-26, r[1], 1.5504e-33); ASSERT_NEAR(-7.66283524904215e+26, r[2], 7.66283524904e+19); } TEST(QuadraticRootTest, Test_232) { double r[3]; double a[] = {-1.18804597701149e+101, 7.66283524904215e+126, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.5504e-26, r[1], 1.5504e-33); ASSERT_NEAR(-7.66283524904215e+26, r[2], 7.66283524904e+19); } TEST(QuadraticRootTest, Test_233) { double r[3]; double a[] = {-1.18804597701149e+201, 7.66283524904215e+226, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.5504e-26, r[1], 1.5504e-33); ASSERT_NEAR(-7.66283524904215e+26, r[2], 7.66283524904e+19); } TEST(QuadraticRootTest, Test_234) { double r[3]; double a[] = {1.18804597701149e-199, -7.66283524904215e-174, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_235) { double r[3]; double a[] = {1.18804597701149e-99, -7.66283524904215e-74, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_236) { double r[3]; double a[] = {11.8804597701149, -7.66283524904215e+26, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_237) { double r[3]; double a[] = {1.18804597701149e+101, -7.66283524904215e+126, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_238) { double r[3]; double a[] = {1.18804597701149e+201, -7.66283524904215e+226, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_239) { double r[3]; double a[] = {-1.18804597701149e-199, -7.66283524904215e-174, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(-1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_240) { double r[3]; double a[] = {-1.18804597701149e-99, -7.66283524904215e-74, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(-1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_241) { double r[3]; double a[] = {-11.8804597701149, -7.66283524904215e+26, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(-1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_242) { double r[3]; double a[] = {-1.18804597701149e+101, -7.66283524904215e+126, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(-1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_243) { double r[3]; double a[] = {-1.18804597701149e+201, -7.66283524904215e+226, 1e+200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(7.66283524904215e+26, r[1], 7.66283524904e+19); ASSERT_NEAR(-1.5504e-26, r[2], 1.5504e-33); } TEST(QuadraticRootTest, Test_244) { double r[3]; double a[] = {4, 5, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.833333333333333, r[1], 1e-07); ASSERT_NEAR(0.799305253885453, r[2], 1e-07); } TEST(QuadraticRootTest, Test_245) { double r[3]; double a[] = {4, 5, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-1, r[1], 1e-07); ASSERT_NEAR(-4, r[2], 1e-07); } TEST(QuadraticRootTest, Test_246) { double r[3]; double a[] = {4, 5, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5.70156211871642, r[1], 1e-07); ASSERT_NEAR(-0.701562118716424, r[2], 1e-07); } TEST(QuadraticRootTest, Test_247) { double r[3]; double a[] = {4, 5, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.25733395755292, r[1], 1e-07); ASSERT_NEAR(-0.590667290886255, r[2], 1e-07); } TEST(QuadraticRootTest, Test_248) { double r[3]; double a[] = {4, 2, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.333333333333333, r[1], 1e-07); ASSERT_NEAR(1.10554159678513, r[2], 1e-07); } TEST(QuadraticRootTest, Test_249) { double r[3]; double a[] = {4, 2, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-1, r[1], 1e-07); ASSERT_NEAR(1.73205080756888, r[2], 1e-07); } TEST(QuadraticRootTest, Test_250) { double r[3]; double a[] = {4, 2, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.23606797749979, r[1], 1e-07); ASSERT_NEAR(-1.23606797749979, r[2], 1e-07); } TEST(QuadraticRootTest, Test_251) { double r[3]; double a[] = {4, 2, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.535183758488, r[1], 1e-07); ASSERT_NEAR(-0.86851709182133, r[2], 1e-07); } TEST(QuadraticRootTest, Test_252) { double r[3]; double a[] = {4, -1, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.166666666666667, r[1], 1e-07); ASSERT_NEAR(1.14260910006684, r[2], 1e-07); } TEST(QuadraticRootTest, Test_253) { double r[3]; double a[] = {4, -1, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.5, r[1], 1e-07); ASSERT_NEAR(1.93649167310371, r[2], 1e-07); } TEST(QuadraticRootTest, Test_254) { double r[3]; double a[] = {4, -1, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.56155281280883, r[1], 1e-07); ASSERT_NEAR(-2.56155281280883, r[2], 1e-07); } TEST(QuadraticRootTest, Test_255) { double r[3]; double a[] = {4, -1, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(-1.33333333333333, r[2], 1e-07); } TEST(QuadraticRootTest, Test_256) { double r[3]; double a[] = {4, -4, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.666666666666667, r[1], 1e-07); ASSERT_NEAR(0.942809041582063, r[2], 1e-07); } TEST(QuadraticRootTest, Test_257) { double r[3]; double a[] = {4, -4, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(1, num_roots); ASSERT_NEAR(2, r[1], 1e-07); ASSERT_NEAR(2, r[2], 1e-07); } TEST(QuadraticRootTest, Test_258) { double r[3]; double a[] = {4, -4, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.82842712474619, r[1], 1e-07); ASSERT_NEAR(-4.82842712474619, r[2], 1e-07); } TEST(QuadraticRootTest, Test_259) { double r[3]; double a[] = {4, -4, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.666666666666667, r[1], 1e-07); ASSERT_NEAR(-2, r[2], 1e-07); } TEST(QuadraticRootTest, Test_260) { double r[3]; double a[] = {1, 5, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.232408120756002, r[1], 1e-07); ASSERT_NEAR(-1.43425854591066, r[2], 1e-07); } TEST(QuadraticRootTest, Test_261) { double r[3]; double a[] = {1, 5, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.20871215252208, r[1], 1e-07); ASSERT_NEAR(-4.79128784747792, r[2], 1e-07); } TEST(QuadraticRootTest, Test_262) { double r[3]; double a[] = {1, 5, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5.19258240356725, r[1], 1e-07); ASSERT_NEAR(-0.192582403567252, r[2], 1e-07); } TEST(QuadraticRootTest, Test_263) { double r[3]; double a[] = {1, 5, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.84712708838304, r[1], 1e-07); ASSERT_NEAR(-0.18046042171637, r[2], 1e-07); } TEST(QuadraticRootTest, Test_264) { double r[3]; double a[] = {1, 2, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.333333333333333, r[1], 1e-07); ASSERT_NEAR(0.471404520791032, r[2], 1e-07); } TEST(QuadraticRootTest, Test_265) { double r[3]; double a[] = {1, 2, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(1, num_roots); ASSERT_NEAR(-1, r[1], 1e-07); ASSERT_NEAR(-1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_266) { double r[3]; double a[] = {1, 2, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.41421356237309, r[1], 1e-07); ASSERT_NEAR(-0.414213562373095, r[2], 1e-07); } TEST(QuadraticRootTest, Test_267) { double r[3]; double a[] = {1, 2, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(-0.333333333333333, r[2], 1e-07); } TEST(QuadraticRootTest, Test_268) { double r[3]; double a[] = {1, -1, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.166666666666667, r[1], 1e-07); ASSERT_NEAR(0.552770798392567, r[2], 1e-07); } TEST(QuadraticRootTest, Test_269) { double r[3]; double a[] = {1, -1, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.5, r[1], 1e-07); ASSERT_NEAR(0.866025403784439, r[2], 1e-07); } TEST(QuadraticRootTest, Test_270) { double r[3]; double a[] = {1, -1, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.618033988749895, r[1], 1e-07); ASSERT_NEAR(-1.61803398874989, r[2], 1e-07); } TEST(QuadraticRootTest, Test_271) { double r[3]; double a[] = {1, -1, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.434258545910665, r[1], 1e-07); ASSERT_NEAR(-0.767591879243998, r[2], 1e-07); } TEST(QuadraticRootTest, Test_272) { double r[3]; double a[] = {1, -4, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(0.333333333333333, r[2], 1e-07); } TEST(QuadraticRootTest, Test_273) { double r[3]; double a[] = {1, -4, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.73205080756888, r[1], 1e-07); ASSERT_NEAR(0.267949192431123, r[2], 1e-07); } TEST(QuadraticRootTest, Test_274) { double r[3]; double a[] = {1, -4, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.23606797749979, r[1], 1e-07); ASSERT_NEAR(-4.23606797749979, r[2], 1e-07); } TEST(QuadraticRootTest, Test_275) { double r[3]; double a[] = {1, -4, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.21525043702153, r[1], 1e-07); ASSERT_NEAR(-1.54858377035486, r[2], 1e-07); } TEST(QuadraticRootTest, Test_276) { double r[3]; double a[] = {-2, 5, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.333333333333333, r[1], 1e-07); ASSERT_NEAR(-2, r[2], 1e-07); } TEST(QuadraticRootTest, Test_277) { double r[3]; double a[] = {-2, 5, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.372281323269014, r[1], 1e-07); ASSERT_NEAR(-5.37228132326901, r[2], 1e-07); } TEST(QuadraticRootTest, Test_278) { double r[3]; double a[] = {-2, 5, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.56155281280883, r[1], 1e-07); ASSERT_NEAR(0.43844718719117, r[2], 1e-07); } TEST(QuadraticRootTest, Test_279) { double r[3]; double a[] = {-2, 5, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(0.666666666666667, r[2], 1e-07); } TEST(QuadraticRootTest, Test_280) { double r[3]; double a[] = {-2, 2, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.548583770354863, r[1], 1e-07); ASSERT_NEAR(-1.21525043702153, r[2], 1e-07); } TEST(QuadraticRootTest, Test_281) { double r[3]; double a[] = {-2, 2, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.732050807568877, r[1], 1e-07); ASSERT_NEAR(-2.73205080756888, r[2], 1e-07); } TEST(QuadraticRootTest, Test_282) { double r[3]; double a[] = {-2, 2, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_283) { double r[3]; double a[] = {-2, 2, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.333333333333333, r[1], 1e-07); ASSERT_NEAR(0.74535599249993, r[2], 1e-07); } TEST(QuadraticRootTest, Test_284) { double r[3]; double a[] = {-2, -1, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(-0.666666666666667, r[2], 1e-07); } TEST(QuadraticRootTest, Test_285) { double r[3]; double a[] = {-2, -1, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2, r[1], 1e-07); ASSERT_NEAR(-1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_286) { double r[3]; double a[] = {-2, -1, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.5, r[1], 1e-07); ASSERT_NEAR(1.3228756555323, r[2], 1e-07); } TEST(QuadraticRootTest, Test_287) { double r[3]; double a[] = {-2, -1, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.166666666666667, r[1], 1e-07); ASSERT_NEAR(0.799305253885453, r[2], 1e-07); } TEST(QuadraticRootTest, Test_288) { double r[3]; double a[] = {-2, -4, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.72075922005613, r[1], 1e-07); ASSERT_NEAR(-0.387425886722793, r[2], 1e-07); } TEST(QuadraticRootTest, Test_289) { double r[3]; double a[] = {-2, -4, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(4.44948974278318, r[1], 1e-07); ASSERT_NEAR(-0.449489742783178, r[2], 1e-07); } TEST(QuadraticRootTest, Test_290) { double r[3]; double a[] = {-2, -4, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-0.585786437626905, r[1], 1e-07); ASSERT_NEAR(-3.41421356237309, r[2], 1e-07); } TEST(QuadraticRootTest, Test_291) { double r[3]; double a[] = {-2, -4, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.666666666666667, r[1], 1e-07); ASSERT_NEAR(0.471404520791032, r[2], 1e-07); } TEST(QuadraticRootTest, Test_292) { double r[3]; double a[] = {-5, 5, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.703257409548815, r[1], 1e-07); ASSERT_NEAR(-2.36992407621548, r[2], 1e-07); } TEST(QuadraticRootTest, Test_293) { double r[3]; double a[] = {-5, 5, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(0.854101966249684, r[1], 1e-07); ASSERT_NEAR(-5.85410196624968, r[2], 1e-07); } TEST(QuadraticRootTest, Test_294) { double r[3]; double a[] = {-5, 5, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(3.61803398874989, r[1], 1e-07); ASSERT_NEAR(1.38196601125011, r[2], 1e-07); } TEST(QuadraticRootTest, Test_295) { double r[3]; double a[] = {-5, 5, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.833333333333333, r[1], 1e-07); ASSERT_NEAR(0.986013297183269, r[2], 1e-07); } TEST(QuadraticRootTest, Test_296) { double r[3]; double a[] = {-5, 2, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(-1.66666666666667, r[2], 1e-07); } TEST(QuadraticRootTest, Test_297) { double r[3]; double a[] = {-5, 2, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.44948974278318, r[1], 1e-07); ASSERT_NEAR(-3.44948974278318, r[2], 1e-07); } TEST(QuadraticRootTest, Test_298) { double r[3]; double a[] = {-5, 2, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(1, r[1], 1e-07); ASSERT_NEAR(2, r[2], 1e-07); } TEST(QuadraticRootTest, Test_299) { double r[3]; double a[] = {-5, 2, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.333333333333333, r[1], 1e-07); ASSERT_NEAR(1.24721912892465, r[2], 1e-07); } TEST(QuadraticRootTest, Test_300) { double r[3]; double a[] = {-5, -1, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.46837494598444, r[1], 1e-07); ASSERT_NEAR(-1.13504161265111, r[2], 1e-07); } TEST(QuadraticRootTest, Test_301) { double r[3]; double a[] = {-5, -1, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.79128784747792, r[1], 1e-07); ASSERT_NEAR(-1.79128784747792, r[2], 1e-07); } TEST(QuadraticRootTest, Test_302) { double r[3]; double a[] = {-5, -1, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.5, r[1], 1e-07); ASSERT_NEAR(2.17944947177034, r[2], 1e-07); } TEST(QuadraticRootTest, Test_303) { double r[3]; double a[] = {-5, -1, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.166666666666667, r[1], 1e-07); ASSERT_NEAR(1.2801909579781, r[2], 1e-07); } TEST(QuadraticRootTest, Test_304) { double r[3]; double a[] = {-5, -4, 3}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2.11963298118022, r[1], 1e-07); ASSERT_NEAR(-0.786299647846891, r[2], 1e-07); } TEST(QuadraticRootTest, Test_305) { double r[3]; double a[] = {-5, -4, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(5, r[1], 1e-07); ASSERT_NEAR(-1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_306) { double r[3]; double a[] = {-5, -4, -1}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-2, r[1], 1e-07); ASSERT_NEAR(1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_307) { double r[3]; double a[] = {-5, -4, -3}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.666666666666667, r[1], 1e-07); ASSERT_NEAR(1.10554159678513, r[2], 1e-07); } TEST(QuadraticRootTest, Test_308) { double r[3]; double a[] = {2.09e+202, -30, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.9e+201, r[1], 1.9e+194); ASSERT_NEAR(1.1e+201, r[2], 1.1e+194); } TEST(QuadraticRootTest, Test_309) { double r[3]; double a[] = {33, -1.1e+201, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.1e+201, r[1], 1.1e+194); ASSERT_NEAR(3e-200, r[2], 3e-207); } TEST(QuadraticRootTest, Test_310) { double r[3]; double a[] = {3.3e-199, -11, 1e-200}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.1e+201, r[1], 1.1e+194); ASSERT_NEAR(3e-200, r[2], 3e-207); } TEST(QuadraticRootTest, Test_311) { double r[3]; double a[] = {2e+300, -3e+300, 1e+300}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2, r[1], 1e-07); ASSERT_NEAR(1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_312) { double r[3]; double a[] = {2e-300, -3e-300, 1e-300}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(2, r[1], 1e-07); ASSERT_NEAR(1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_313) { double r[3]; double a[] = {1e-300, 1e-300, 1e-300}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.5, r[1], 1e-07); ASSERT_NEAR(0.866025403784439, r[2], 1e-07); } TEST(QuadraticRootTest, Test_314) { double r[3]; double a[] = {1, 1e+200, 1}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-1e-200, r[1], 1e-207); ASSERT_NEAR(-1e+200, r[2], 1e+193); } TEST(QuadraticRootTest, Test_315) { double r[3]; double a[] = {2e+90, 1e+155, 1e+75}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-2e-65, r[1], 2e-72); ASSERT_NEAR(-1e+80, r[2], 1e+73); } TEST(QuadraticRootTest, Test_316) { double r[3]; double a[] = {1.7976931348623157E+308, 8.98846567431158e+307, 1.7976931348623157E+308}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.25, r[1], 1e-07); ASSERT_NEAR(0.968245836551854, r[2], 1e-07); } TEST(QuadraticRootTest, Test_317) { double r[3]; double a[] = {1e+307, 1e+307, -1e+307}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.61803398874989, r[1], 1e-07); ASSERT_NEAR(-0.618033988749895, r[2], 1e-07); } TEST(QuadraticRootTest, Test_318) { double r[3]; double a[] = {1e-100, 1e+107, 1e-100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-1e-207, r[1], 1e-214); ASSERT_NEAR(-1e+207, r[2], 1e+200); } TEST(QuadraticRootTest, Test_319) { double r[3]; double a[] = {-1e+307, 1e+307, -1e+307}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(0.5, r[1], 1e-07); ASSERT_NEAR(0.86602540378443, r[2], 1e-07); } TEST(QuadraticRootTest, Test_320) { double r[3]; double a[] = {3e+307, 5, 3e+307}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-8.33333333333333e-308, r[1], 8.33333333221e-315); ASSERT_NEAR(1, r[2], 1e-07); } TEST(QuadraticRootTest, Test_321) { double r[3]; double a[] = {4e-307, 2e-200, 3e-307}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-2e-107, r[1], 2e-114); ASSERT_NEAR(-6.66666666666667e+106, r[2], 6.66666666667e+99); } TEST(QuadraticRootTest, Test_322) { double r[3]; double a[] = {7e+200, 5e+297, 2e+307}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-1.4e-97, r[1], 1.4e-104); ASSERT_NEAR(-2.5e-10, r[2], 2.5e-17); } TEST(QuadraticRootTest, Test_323) { double r[3]; double a[] = {9.48075190810918e+153, 1.7976931348623157E+308, 1.34078079299426e+154}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-5.2738433074315e-155, r[1], 5.27384330743e-162); ASSERT_NEAR(-1.34078079299426e+154, r[2], 1.34078079299e+147); } TEST(QuadraticRootTest, Test_324) { double r[3]; double a[] = {1.34078079299426e+154, 1.7976931348623157E+308, 7.74100151759516e+153}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-7.45834073120021e-155, r[1], 7.4583407312e-162); ASSERT_NEAR(-2.32230045527855e+154, r[2], 2.32230045528e+147); } TEST(QuadraticRootTest, Test_325) { double r[3]; double a[] = {7.74100151759516e+153, 1.7976931348623157E+308, 9.48075190810918e+153}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(-4.30607502886639e-155, r[1], 4.30607502887e-162); ASSERT_NEAR(-1.89615038162184e+154, r[2], 1.89615038162e+147); } TEST(QuadraticRootTest, Test_326) { double r[3]; double a[] = {1e+300, 1e+200, 1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-5e+99, r[1], 5e+92); ASSERT_NEAR(8.66025403784439e+99, r[2], 8.66025403784e+92); } TEST(QuadraticRootTest, Test_327) { double r[3]; double a[] = {1e+300, 1e+200, -1e+100}; int num_roots = quad_roots(a, r); ASSERT_EQ(2, num_roots); ASSERT_NEAR(1.61803398874989e+100, r[1], 1.61803398875e+93); ASSERT_NEAR(-6.18033988749895e+99, r[2], 6.1803398875e+92); } TEST(QuadraticRootTest, Test_328) { double r[3]; double a[] = {1e+308, 1e+308, 1e+308}; int num_roots = quad_roots(a, r); ASSERT_EQ(0, num_roots); ASSERT_NEAR(-0.5, r[1], 1e-07); ASSERT_NEAR(0.866025403784439, r[2], 1e-07); }
ffb0c5f9ab1d856417b9e6c8287a0c550b13258a
e3de4ed77e5c5432e695236185caf645de4bcb37
/SFML_tester/Checkbox.cpp
4d84f7e4444c470ae05e0bfa5d1afeec98ef74d3
[]
no_license
Ming-2015/Visual-Novel-Engine
543b135c2048fcb8eea165b24b7f50bc8b6e1e5b
639a74345cb7b7282199eaa2e4c3b7a31c4dec89
refs/heads/master
2022-05-21T07:43:29.405436
2019-05-13T04:08:35
2019-05-13T04:08:35
169,508,542
1
0
null
null
null
null
UTF-8
C++
false
false
3,025
cpp
Checkbox.cpp
#include "CheckBox.h" void CheckBox::setSelected(bool selected) { this->selected = selected; setCheckBoxTexture(); } bool CheckBox::getSelected() const { return selected; } void CheckBox::setPosition(int xPos, int yPos) { this->xPos = xPos; this->yPos = yPos; checkBox.setPosition(xPos, yPos + -4 + yPosOffset); checkBoxText.setPosition(xPos + xPosOffset, yPos + yPosOffset); } bool CheckBox::onLoad() { bool ret = true; // initialize the textures textureSelectedUnhovered = RESOURCE->getTexture(GLOBAL->AssetRoot + "CBSelected.png"); textureSelectedHovered = RESOURCE->getTexture(GLOBAL->AssetRoot + "CBSelectedHover.png"); textureUnselectedUnhovered = RESOURCE->getTexture(GLOBAL->AssetRoot + "CBUnselected.png"); textureUnselectedHovered = RESOURCE->getTexture(GLOBAL->AssetRoot + "CBUnselectedHover.png"); // initialize the text textureText = RESOURCE->getTexture(textureTextPath); // wait for everything to load RESOURCE->joinAll(); // initialize CheckBox setCheckBoxTexture(); // initialize text checkBoxText.setTexture(*textureText); checkBoxText.setTextureRect(sf::IntRect(0, 0, textureText->getSize().x, textureText->getSize().y)); // set the initial positions xPosOffset = checkBox.getLocalBounds().width; yPosOffset = checkBox.getLocalBounds().height - checkBoxText.getLocalBounds().height; yPosOffset /= 2.f; setPosition(xPos, yPos); return ret; } void CheckBox::onUpdate(float delta_t) { setCheckBoxTexture(); } void CheckBox::onDraw(sf::RenderTarget & target, sf::RenderStates states) const { target.draw(checkBox, states); target.draw(checkBoxText, states); } void CheckBox::onHandleInput(sf::Event & e, sf::RenderWindow & window) { sf::Vector2f mousePosF = CONFIG->getCursorPosition(window); switch (e.type) { case sf::Event::MouseMoved: { if (checkBox.getGlobalBounds().contains(mousePosF) || checkBoxText.getGlobalBounds().contains(mousePosF)) { hovered = true; } else { hovered = false; } break; } case sf::Event::MouseButtonPressed: { if (e.mouseButton.button == sf::Mouse::Left) { if (checkBox.getGlobalBounds().contains(mousePosF) || checkBoxText.getGlobalBounds().contains(mousePosF)) { pressed = true; } } break; } case sf::Event::MouseButtonReleased: { if (e.mouseButton.button == sf::Mouse::Left) { if (pressed) { pressed = false; setSelected(!getSelected()); } } break; } } } const sf::Texture & CheckBox::getButtonTexture(bool selected, bool hovered) { if (!selected && !hovered) { return *textureUnselectedUnhovered; } else if (selected && !hovered) { return *textureSelectedUnhovered; } else if (!selected && hovered) { return *textureUnselectedHovered; } else { return *textureSelectedHovered; } } void CheckBox::setCheckBoxTexture() { const sf::Texture& checkBoxTex = getButtonTexture(selected, hovered); checkBox.setTexture(checkBoxTex); checkBox.setTextureRect(sf::IntRect(0, 0, checkBoxTex.getSize().x, checkBoxTex.getSize().y)); }
ba6959005036c4c03a9de3b0a8d930a83350d42d
fbc0df7f507ead3589d1857bfc5c3ea05bd73a79
/src/core/data.hpp
cd61e5d9168b89ee3526291e22c858dad403024b
[ "MIT" ]
permissive
important-business/engine
43df3e86b1f27e1c5acb8c51dc47f8d34bc26ab1
e80e07198362da7dc3e592a471fdb14ecfedc207
refs/heads/master
2020-05-21T17:53:15.413605
2017-01-20T03:17:08
2017-01-20T03:19:51
60,231,029
1
0
null
null
null
null
UTF-8
C++
false
false
1,953
hpp
data.hpp
/** * @file * @brief Core Data Header * * Contains definition of classes for reading game data */ #ifndef CORE_DATA_HPP #define CORE_DATA_HPP #include "common/json.hpp" #include "level.hpp" #include "common/logging.hpp" #include "systems/ai.hpp" #include "core/level.hpp" #include <string> #include <anax/anax.hpp> namespace core { class DataReader : public common::JsonFileReader { public: typedef void (DataReader::*factory_method)( const Json::Value &data, anax::Entity); explicit DataReader(std::string filename); anax::Entity makeEntity(std::string entityname, anax::World& world); void makeEntities(anax::World& world); std::map<std::string, DataReader::factory_method> component_factories; private: void factory_component_ai(const Json::Value &data, anax::Entity entity); systems::AiNode* factory_ai_node(const Json::Value &data); void factory_component_player(const Json::Value &data, anax::Entity entity); void factory_component_camera(const Json::Value &data, anax::Entity entity); void factory_component_collision( const Json::Value &data, anax::Entity entity); void factory_component_movement(const Json::Value &data, anax::Entity entity); void factory_component_texture(const Json::Value &data, anax::Entity entity); void factory_component_transform( const Json::Value &data, anax::Entity entity); void factory_component_trigger( const Json::Value &data, anax::Entity entity); void factory_component_physics( const Json::Value &data, anax::Entity entity); std::map<std::string, anax::Entity> m_map_entities; }; class LevelReader : public common::JsonFileReader { public: void build_level(std::unique_ptr<Level>& up_level); LevelTileSet* load_tileset(std::string filename); explicit LevelReader(std::string filename); private: Json::Value m_json_tileset; }; } // namespace core #endif /* CORE_DATA_HPP */
41d4d3481f0d504f6957641f412de795f7750020
ae8201aaaeb314eb3be319862fe8086b3537777d
/Figury/hetman.cpp
b5e9d386668d274d892db296dfb0e67fcb5af117
[]
no_license
KFlaga/szachyqt
31565abd872d72e806ead1cbc2254a3ca5c2d453
c66262c1b6ba5aeb97057501994703d778a176b9
refs/heads/master
2021-01-12T08:22:00.117586
2015-05-31T19:31:57
2015-05-31T19:31:57
76,552,775
0
0
null
null
null
null
UTF-8
C++
false
false
2,685
cpp
hetman.cpp
#include "hetman.h" Hetman::Hetman(int strona, int pole) { UstawPole(pole); this->strona=strona; this->typ = THetman; if(strona==0) this->ikona=QIcon("szachy/hetman_b.png"); else this->ikona=QIcon("szachy/hetman_c.png"); } QVector<int> Hetman::dostepneRuchy(int *pola, QVector<Figura *> *figury) { ruchy.clear(); // Identyko jak wieza, a potem goniec int tX = x+1; int tY = y; int p; while( tX <= 7 && pola[Pole(tX,tY)] == -1 ) // dodajemy w lewo az do konca / pionka { ruchy.push_back(Pole(tX,tY)); tX++; } if( tX <= 7 && (*figury)[pola[Pole(tX,tY)]]->strona != strona ) // jak wrog to dodaj ruchy.push_back(Pole(tX,tY)); tX = x-1; while( tX >= 0 && pola[Pole(tX,tY)] == -1 ) // dodajemy w prawo az do konca / pionka { ruchy.push_back(Pole(tX,tY)); tX--; } if( tX >= 0 && (*figury)[pola[Pole(tX,tY)]]->strona != strona ) // jak wrog to dodaj ruchy.push_back(Pole(tX,tY)); tX = x; tY = y+1; while( tY <= 7 && pola[Pole(tX,tY)] == -1 ) // dodajemy w dol az do konca / pionka { ruchy.push_back(Pole(tX,tY)); tY++; } if( tY <= 7 && (*figury)[pola[Pole(tX,tY)]]->strona != strona ) // jak wrog to dodaj ruchy.push_back(Pole(tX,tY)); tY = y-1; while( tY >= 0 && pola[Pole(tX,tY)] == -1 ) // dodajemy w gore az do konca / pionka { ruchy.push_back(Pole(tX,tY)); tY--; } if( tY >= 0 && (*figury)[pola[Pole(tX,tY)]]->strona != strona ) // jak wrog to dodaj ruchy.push_back(Pole(tX,tY)); tX = x; tY = y; while( tX+1 < 8 && tY+1 < 8 && ((p=pola[Pole(tX+1,tY+1)]) == -1 || (*figury)[p]->strona != strona )) { tX++;// ruch dol-prawo tY++; ruchy.push_back(Pole(tX,tY)); if(p != -1) break; } tX = x; tY = y; while( tX-1 >= 0 && tY+1 < 8 && ((p=pola[Pole(tX-1,tY+1)]) == -1 || (*figury)[p]->strona != strona )) { tX--; // ruch dol-lewo tY++; ruchy.push_back(Pole(tX,tY)); if(p != -1) break; } tX = x; tY = y; while( tX-1 >= 0 && tY-1 >= 0 && ((p=pola[Pole(tX-1,tY-1)]) == -1 || (*figury)[p]->strona != strona )) { tX--; // ruch gora-lewo tY--; ruchy.push_back(Pole(tX,tY)); if(p != -1) break; } tX = x; tY = y; while( tX+1 < 8 && tY-1 >= 0 && ((p=pola[Pole(tX+1,tY-1)]) == -1 || (*figury)[p]->strona != strona )) { tX++; // ruch gora-prawo tY--; ruchy.push_back(Pole(tX,tY)); if(p != -1) break; } return ruchy; }
960272ff2cc31df6864fd1954c2284fb9e101a1f
bdb4bbd6d96f34cd14a7a42a578a2b8c777bf68c
/detr/common.hpp
730b676927a7fa123a4a1b7aa3fa766038322a89
[ "MIT" ]
permissive
wang-xinyu/tensorrtx
199aa1a27ae16e1523cd6636fdc38a32380d0753
3cbb7cd25796509cb49cc2251020d589d98228c9
refs/heads/master
2023-09-05T07:34:56.640496
2023-07-21T06:30:11
2023-07-21T06:30:11
223,904,726
6,067
1,715
MIT
2023-07-21T06:30:13
2019-11-25T09:01:36
C++
UTF-8
C++
false
false
2,723
hpp
common.hpp
#pragma once #include <dirent.h> #include <cuda_runtime_api.h> #include <fstream> #include <sstream> #include <iostream> #include <vector> #include <unordered_map> #include <algorithm> #include "./logging.h" #include <NvInfer.h> #include <opencv2/opencv.hpp> static Logger gLogger; using namespace nvinfer1; void loadWeights(const std::string file, std::unordered_map<std::string, Weights>& weightMap) { std::cout << "Loading weights: " << file << std::endl; // Open weights file std::ifstream input(file); assert(input.is_open() && "Unable to load weight file. please check if the .wts file path is right!!!!!!"); // Read number of weight blobs int32_t count; input >> count; assert(count > 0 && "Invalid weight map file."); while (count--) { Weights wt{ DataType::kFLOAT, nullptr, 0 }; uint32_t size; // Read name and type of blob std::string name; input >> name >> std::dec >> size; wt.type = DataType::kFLOAT; // Load blob uint32_t* val = reinterpret_cast<uint32_t*>(malloc(sizeof(val) * size)); for (uint32_t x = 0, y = size; x < y; ++x) { input >> std::hex >> val[x]; } wt.values = val; wt.count = size; weightMap[name] = wt; } } int CalculateSize(Dims a) { int res = 1; for (int i = 0; i < a.nbDims; i++) { res *= a.d[i]; } return res; } static inline int read_files_in_dir(const char *p_dir_name, std::vector<std::string> &file_names) { DIR *p_dir = opendir(p_dir_name); if (p_dir == nullptr) { return -1; } struct dirent* p_file = nullptr; while ((p_file = readdir(p_dir)) != nullptr) { if (strcmp(p_file->d_name, ".") != 0 && strcmp(p_file->d_name, "..") != 0) { // std::string cur_file_name(p_dir_name); // cur_file_name += "/"; // cur_file_name += p_file->d_name; std::string cur_file_name(p_file->d_name); file_names.push_back(cur_file_name); } } closedir(p_dir); return 0; } void preprocessImg(cv::Mat& img, int newh, int neww) { // convert to rgb cv::cvtColor(img, img, cv::COLOR_BGR2RGB); cv::resize(img, img, cv::Size(neww, newh)); img.convertTo(img, CV_32FC3); img /= 255; img -= cv::Scalar(0.485, 0.456, 0.406); img /= cv::Scalar(0.229, 0.224, 0.225); } #ifndef CUDA_CHECK #define CUDA_CHECK(callstr)\ {\ cudaError_t error_code = callstr;\ if (error_code != cudaSuccess) {\ std::cerr << "CUDA error " << error_code << " at " << __FILE__ << ":" << __LINE__;\ assert(0);\ }\ } #endif // CUDA_CHECK
96cff0e2fd1e8df7a9253c7ecd8fb21bfeac7e74
010e70be153e33e078ae95533d97f832c0d358a3
/src/hello_bazel.cc
680cf129a0856992d247112bfc651c00d6448816
[ "MIT" ]
permissive
csu-fangjun/hello-bazel
c3e67f749f272c9f176ef5a2a1162f3135f08ad5
30b50f4688442d175e09e99eeb6ec5451fe7579d
refs/heads/master
2020-04-11T17:25:03.787411
2019-01-12T06:29:35
2019-01-13T09:00:31
161,960,072
0
1
null
null
null
null
UTF-8
C++
false
false
811
cc
hello_bazel.cc
/*============================================================================ * Copyright (c) 2018 Fangjun Kuang * Email: fangjun.kuang at gmail.com * * Licensed under the MIT License. * Please refer to <root-path>/LICENSE for details. *============================================================================*/ #include <gflags/gflags.h> #include <glog/logging.h> #include "proto/student.pb.h" DEFINE_int32(age, 18, "some info about the age"); int main(int argc, char* argv[]) { google::InitGoogleLogging(argv[0]); FLAGS_alsologtostderr = true; FLAGS_colorlogtostderr = true; gflags::ParseCommandLineFlags(&argc, &argv, true); kk::Student student; student.set_name("csu"); student.mutable_age()->set_age(FLAGS_age); LOG(WARNING) << "\n" << student.DebugString(); return 0; }
38a2ea60c0e3db5145a2032d7f60d693b0b3a184
2576195ce1e0fffde521bb80b3e0de689dd86fa0
/code/oponetwo/main.cpp
8e38978769dc86b187865aa3481e58999b6cc6c4
[]
no_license
woaitubage/QT
48e62937c4cba349aaf84d1bafaef61b26862a07
90d711dda23dff79c16fd76767cb7039200d5257
refs/heads/master
2021-01-01T03:32:21.507798
2016-05-04T07:42:51
2016-05-04T07:42:51
56,436,428
0
0
null
null
null
null
UTF-8
C++
false
false
1,000
cpp
main.cpp
#include "mainwindow.h" #include <QApplication> class myclass { MainWindow *p; int x; int y; friend void operator ++(myclass & my); friend void operator +(myclass & my,int num); friend int main(int argc,char *argv[]); public: myclass () { p=new MainWindow; x=100; y=300; p->resize(x,y); p->show(); } //ไธ€ๅ…ƒ้‡่ฝฝ /* void operator ++() { this->x++; this->y++; p->resize(x,y); } */ /* void operator +(int num) { this->x+=num; this->y+=num; p->resize(x,y); }*/ }; void operator ++(myclass & my) { my.x++; my.y++; my.p->resize(my.x,my.y); } void operator +(myclass & my,int num) { my.x+=num; my.y+=num; my.p->resize(my.x,my.y); } int main(int argc, char *argv[]) { QApplication a(argc, argv); myclass my1; for(int i=0;i<500;i++) { //++my1; my1+2; } return a.exec(); }
9c3057ea9fd06d8bce44b657500607b73a5da735
9e9b813c714a398908d471507bab18c6ceb5b9dd
/Pro7/sol7.cpp
4f4f8f765f9deefcfd72da08ba3e6fcb8deb9e2e
[]
no_license
pewdspie24/CodeKing
acb4c8a7a96eed19cf20519616d0bd1fc534e13a
63bc1b09d8ba58c03c01ad4763eddf0c8db2cb10
refs/heads/master
2022-12-08T22:17:52.763927
2020-08-25T15:40:04
2020-08-25T15:40:04
290,253,987
0
0
null
null
null
null
UTF-8
C++
false
false
739
cpp
sol7.cpp
#include<bits/stdc++.h> using namespace std; const long long maxN = 5100; long long dp[maxN], n; long long a[maxN]; long long p[maxN]; bool can(long long i, long long j) { long long x = p[i]; long long y = p[j] - (j - i - 1); if (y < 0) y = 0; return ((x == y - 1 && y > 0) || y == 0) && a[i] % a[j] == 0; } int main() { cin >> n; for (int i = 1; i <= n; ++i) { cin >> a[i]; while (a[i] % 2 == 0) { a[i] /= 2; ++p[i]; } } for (int i = 1; i <= n; ++i) { dp[i] = i - 1; for (int j = 1; j < i; ++j) { if (can(j, i)) { dp[i] = min(dp[i], dp[j] + i - j - 1); } } } long long res = n - 1; for (int i = 1; i <= n; ++i) { res = min(res, dp[i] + n - i); } cout << res << endl; return 0; }
0117e5f55a1b51de1c0c3c3ed4d4abd9313169f5
2b52337a6248f1f2381d70744f1ecd06d45b7774
/10773.cpp
3f44b488f9ee867306d21433e2b2682ad96823e4
[]
no_license
myeongjin1115/baekjoon
5f56aa616b57c2d174d4b23e3a58ce314e03c430
83067ee88de5c2b397581ef0f7eb5b280ba65c0c
refs/heads/master
2022-01-14T11:57:22.152068
2021-12-29T01:25:04
2021-12-29T01:25:04
214,807,354
0
0
null
null
null
null
UTF-8
C++
false
false
425
cpp
10773.cpp
#include <iostream> using namespace std; int main() { int K; int i, num, answer; int stack[100001]; int top = -1; cin >> K; for(i = 0; i < K; i++) { cin >> num; if(num == 0) { top--; } else { stack[++top] = num; } } answer = 0; for(i = 0; i <= top; i++) { answer += stack[i]; } cout << answer << endl; }
7f321c21af938984ec711fbaf67ba189279bfd91
68db39539c76856644aa2eee509ec307740a600f
/SmartChecklist/Option.cpp
fa1723b532d57909d3a9589cce50dda11abedf3e
[]
no_license
elevin11/SmartChecklist
36b1297dd31da1566efcfe78b16d46d656b844e4
b50925e49fd1b40d03d9bdf7bfb9dba32625b36e
refs/heads/master
2020-07-30T01:44:12.456749
2019-09-21T22:32:10
2019-09-21T22:32:10
210,042,356
1
0
null
null
null
null
UTF-8
C++
false
false
494
cpp
Option.cpp
#include "pch.h" #include "Option.h" Option::Option() { } Option::Option(string opName_in, Step * next_in, Part * part_in, int condCode_in) { opName = opName_in; nextStep = next_in; partToUpdate = part_in; conditionCode = condCode_in; } void Option::update_part() { partToUpdate->set_condition(conditionCode); } void Option::do_next() { nextStep->do_step(); } Step * Option::get_next() { return nextStep; } string Option::get_op_name() { return opName; } Option::~Option() { }
2b807eed48b22af14173823d0ff2eeee2c19353c
b8dd0d9a23083d166c5173cc315041b1b00ba710
/18238.cpp
d71931b7c922c5f8c50e3d151f95aa783b7e8549
[]
no_license
WonJoonPark/BOJ-Algorithm
244fb955ce422ae2ca47f3c33e53f32a6c9c691f
48353b3ed90829066e46bfae27ddc06c6918f0fd
refs/heads/main
2023-04-08T23:23:16.138284
2021-04-12T00:45:32
2021-04-12T00:45:32
307,600,337
0
0
null
null
null
null
UTF-8
C++
false
false
639
cpp
18238.cpp
#include<iostream> #include<algorithm> #include<string> #include<vector> #include<queue> using namespace std; int resulttime = 0; string inputs; char currentchar='A'; void gettime(char in) { if (in >= currentchar) { resulttime += min((int)(in - currentchar), (int)((currentchar - 'A') + ('Z' - in)+1)); } else { resulttime += min((int)(currentchar - in), (int)('Z' - currentchar + (in - 'A')+1)); } currentchar = in; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> inputs; for (int i = 0; i < inputs.length(); i++) { gettime(inputs[i]); } cout << resulttime << "\n"; return 0; }
4ac9a50389c3495ec7357560949005af0db9c41f
0cebcb3676e1c53cd7134581846465bbd40ce7aa
/Source/@STAF_CUP_Additions/Addons/staf_cup_additions_sahraniliberationarmy/CfgVehicles.hpp
4c3528ffb08253380de992e195391eb58d4a2430
[]
no_license
IndeedPete/staf-mods
a8174fa94e0358b85d5cd3887e3c5dc837d83249
503412acf7a8cadeecbf07e98a106e3336e75bd0
refs/heads/master
2023-08-31T10:23:33.456505
2023-08-23T15:00:22
2023-08-23T15:00:22
78,773,032
1
0
null
null
null
null
UTF-8
C++
false
false
4,442
hpp
CfgVehicles.hpp
class EventHandlers; class CfgVehicles { //Eurofighter class CUP_O_sla_Soldier; class CUP_O_sla_soldier_desert; class CUP_O_sla_Soldier_urban; // AGS-30 class STAF_CUP_O_sla_Gunner_AGS: CUP_O_sla_Soldier { displayName = "Gunner (AGS-30)"; backpack = "CUP_B_AGS30_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_AGS_desert: CUP_O_sla_Soldier_desert { displayName = "Gunner (AGS-30)"; backpack = "CUP_B_AGS30_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_AGS_urban: CUP_O_sla_Soldier_urban { displayName = "Gunner (AGS-30)"; backpack = "CUP_B_AGS30_Gun_Bag"; }; // DShkM class STAF_CUP_O_sla_Gunner_DShkM: CUP_O_sla_Soldier { displayName = "Gunner (DShkM)"; backpack = "CUP_B_DShkM_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_DShkM_desert: CUP_O_sla_Soldier_desert { displayName = "Gunner (DShkM)"; backpack = "CUP_B_DShkM_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_DShkM_urban: CUP_O_sla_Soldier_urban { displayName = "Gunner (DShkM)"; backpack = "CUP_B_DShkM_Gun_Bag"; }; // Podnos class STAF_CUP_O_sla_Gunner_Podnos: CUP_O_sla_Soldier { displayName = "Gunner (Mortar)"; backpack = "CUP_B_Podnos_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_Podnos_desert: CUP_O_sla_Soldier_desert { displayName = "Gunner (Mortar)"; backpack = "CUP_B_Podnos_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_Podnos_urban: CUP_O_sla_Soldier_urban { displayName = "Gunner (Mortar)"; backpack = "CUP_B_Podnos_Gun_Bag"; }; // SPG-9 class STAF_CUP_O_sla_Gunner_SPG9: CUP_O_sla_Soldier { displayName = "Gunner (SPG-9)"; backpack = "CUP_B_SPG9_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_SPG9_desert: CUP_O_sla_Soldier_desert { displayName = "Gunner (SPG-9)"; backpack = "CUP_B_SPG9_Gun_Bag"; }; class STAF_CUP_O_sla_Gunner_SPG9_urban: CUP_O_sla_Soldier_urban { displayName = "Gunner (SPG-9)"; backpack = "CUP_B_SPG9_Gun_Bag"; }; // Assist AGS-30 class STAF_CUP_O_sla_Gunner_AAGS: CUP_O_sla_Soldier { displayName = "Asst. Gunner (AGS-30)"; backpack = "CUP_B_AGS30_Tripod_Bag"; }; class STAF_CUP_O_sla_Gunner_AAGS_desert: CUP_O_sla_Soldier_desert { displayName = "Asst. Gunner (AGS-30)"; backpack = "CUP_B_AGS30_Tripod_Bag"; }; class STAF_CUP_O_sla_Gunner_AAGS_urban: CUP_O_sla_Soldier_urban { displayName = "Asst. Gunner (AGS-30)"; backpack = "CUP_B_AGS30_Tripod_Bag"; }; // Assist DShkM (High) class STAF_CUP_O_sla_Gunner_ADShkM_high: CUP_O_sla_Soldier { displayName = "Asst. Gunner (DShkM High)"; backpack = "CUP_B_DShkM_TripodHigh_Bag"; }; class STAF_CUP_O_sla_Gunner_ADShkM_high_desert: CUP_O_sla_Soldier_desert { displayName = "Asst. Gunner (DShkM High)"; backpack = "CUP_B_DShkM_TripodHigh_Bag"; }; class STAF_CUP_O_sla_Gunner_ADShkM_high_urban: CUP_O_sla_Soldier_urban { displayName = "Asst. Gunner (DShkM High)"; backpack = "CUP_B_DShkM_TripodHigh_Bag"; }; // Assist DShkM (low) class STAF_CUP_O_sla_Gunner_ADShkM_low: CUP_O_sla_Soldier { displayName = "Asst. Gunner (DShkM Low)"; backpack = "CUP_B_DShkM_TripodLow_Bag"; }; class STAF_CUP_O_sla_Gunner_ADShkM_low_desert: CUP_O_sla_Soldier_desert { displayName = "Asst. Gunner (DShkM Low)"; backpack = "CUP_B_DShkM_TripodLow_Bag"; }; class STAF_CUP_O_sla_Gunner_ADShkM_low_urban: CUP_O_sla_Soldier_urban { displayName = "Asst. Gunner (DShkM Low)"; backpack = "CUP_B_DShkM_TripodLow_Bag"; }; // Assist Podnos class STAF_CUP_O_sla_Gunner_APodnos: CUP_O_sla_Soldier { displayName = "Asst. Gunner (Mortar)"; backpack = "CUP_B_Podnos_Bipod_Bag"; }; class STAF_CUP_O_sla_Gunner_APodnos_desert: CUP_O_sla_Soldier_desert { displayName = "Asst. Gunner (Mortar)"; backpack = "CUP_B_Podnos_Bipod_Bag"; }; class STAF_CUP_O_sla_Gunner_APodnos_urban: CUP_O_sla_Soldier_urban { displayName = "Asst. Gunner (Mortar)"; backpack = "CUP_B_Podnos_Bipod_Bag"; }; // Assist SPG-9 class STAF_CUP_O_sla_Gunner_ASPG9: CUP_O_sla_Soldier { displayName = "Asst. Gunner (SPG-9)"; backpack = "CUP_B_SPG9_Tripod_Bag"; }; class STAF_CUP_O_sla_Gunner_ASPG9_desert: CUP_O_sla_Soldier_desert { displayName = "Asst. Gunner (SPG-9)"; backpack = "CUP_B_SPG9_Tripod_Bag"; }; class STAF_CUP_O_sla_Gunner_ASPG9_urban: CUP_O_sla_Soldier_urban { displayName = "Asst. Gunner (SPG-9)"; backpack = "CUP_B_SPG9_Tripod_Bag"; }; };
90c2431988b07103deed6c6f031ba85740f16696
c1db7babc45e15ff45773e949ea3895351f1973d
/compute_samples/applications/usm_hello_world/test/usm_hello_world_integration_tests.cpp
b274709963e7f908f6762d4d790f5b0bfc254f3b
[ "MIT", "Intel" ]
permissive
intel/compute-samples
144591f3a18977f60b8cc2db5a8e1ac3ad70ab6c
d2279365c17ef06d42a71191acbc305cb5f959d4
refs/heads/master
2023-09-03T07:29:29.892696
2023-08-03T07:56:00
2023-08-04T13:53:06
107,730,679
90
20
MIT
2021-04-19T22:20:07
2017-10-20T22:04:08
C++
UTF-8
C++
false
false
1,395
cpp
usm_hello_world_integration_tests.cpp
/* * Copyright (C) 2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "gtest/gtest.h" #include "usm_hello_world/usm_hello_world.hpp" #include "ocl_utils/ocl_utils.hpp" #include "test_harness/test_harness.hpp" namespace cs = compute_samples; namespace compute = boost::compute; HWTEST(UsmHelloWorldIntegrationTests, ProgramCanBeBuilt) { const compute::device device = compute::system::default_device(); const compute::context context(device); EXPECT_NE(compute::program(), compute_samples::build_program(context, "usm_hello_world.cl")); } HWTEST(UsmHelloWorldIntegrationTests, CopyBufferWithHostUsm) { std::vector<cl_uint> input(1024); std::iota(input.begin(), input.end(), 0u); const std::vector<cl_uint> output = cs::copy_buffer(input, compute::usm_type::host); EXPECT_EQ(input, output); } HWTEST(UsmHelloWorldIntegrationTests, CopyBufferWithDeviceUsm) { std::vector<cl_uint> input(1024); std::iota(input.begin(), input.end(), 0u); const std::vector<cl_uint> output = cs::copy_buffer(input, compute::usm_type::device); EXPECT_EQ(input, output); } HWTEST(UsmHelloWorldIntegrationTests, CopyBufferWithSharedUsm) { std::vector<cl_uint> input(1024); std::iota(input.begin(), input.end(), 0u); const std::vector<cl_uint> output = cs::copy_buffer(input, compute::usm_type::shared); EXPECT_EQ(input, output); }
181dc3fa637060ce8c6ce8f6a5493bf127b3943f
cfcc0ba04af93e494547fd26d47cdad499af6690
/TechDemo/TechDemo/BasicDXGI.h
107233e2620ab68fd2c8cc6db48ca49605b3447e
[]
no_license
BobkovDS/DirectX12TechDemo
633741d86935d27789337f91c641a5b458f99ab8
3097f0efea969b953acf2e9ed831aaa67f7b049c
refs/heads/master
2020-08-09T20:53:22.263672
2019-11-05T11:29:56
2019-11-05T11:29:56
214,169,593
3
0
null
null
null
null
UTF-8
C++
false
false
3,846
h
BasicDXGI.h
/* *************************************************************************************************** Description: Class to create basic DXGI Application - the base for 3D DirectX 12 application. This class extends Canvas class by inhereting, to have a chance fill 'work()' with usefull work and go with it in main loop of Canvas class. Creates and initializes DXGI part of 3D application: DXGIAdapter, DXGIFactory, DXGIDevice, DXGISwapChain and other, like main for application Command Queue. Also gives a methods for CPU/GPU synhronization with Fence object. Important to note: This class creates RenderTargets with SwapChain object and Views (Descriptors) for it in Descriptor Heap. But it cannot use MultiSampling, that is why RenderBase class has a MSAARenderTargets structure, which creates its own RenderTargets resources with MultiSampling support and overrides Views in BasicDXGI::m_rtvHeap with new Views for this. *************************************************************************************************** */ #pragma once #include "Canvas.h" #include <comdef.h> #include "stdafx.h" #include <d2d1.h> #include <d2d1_3.h> #include <d3d11on12.h> #include <dwrite.h> #include <Initguid.h> #include <dxgidebug.h> // Link necessary d3d12 libraries. #pragma comment(lib,"d3dcompiler.lib") #pragma comment(lib, "D3D12.lib") #pragma comment(lib, "dxgi.lib") #pragma comment(lib, "d2d1.lib") #pragma comment(lib, "Dwrite.lib") #pragma comment(lib, "D3D11.lib") #pragma comment(lib, "windowscodecs.lib") using Microsoft::WRL::ComPtr; const int g_swapChainsBufferCount = 3; class BasicDXGI : public Canvas { // fields bool initDXGI_RTV_done = false; bool initDXGI_Full_done = false; DXGI_FORMAT m_backBufferFormat; UINT m_rtvDescriptorSize = 0; HANDLE m_fenceEvent; UINT64 m_fenceValue; // methods void getHardwareAdapter(IDXGIFactory2* pFactory, ComPtr<IDXGIAdapter1>& ppAdapter); void create_RTV(); void logAdapters(); void logAdapterOutput(IDXGIAdapter1* pAdapter); void logOutputDisplayMode(IDXGIOutput* pOutput, DXGI_FORMAT format); protected: bool m_fullScreen= false; DXGI_SAMPLE_DESC m_rtSampleDesc; ComPtr<ID3D12Fence> m_fence; ComPtr<IDXGIFactory4> m_factory; ComPtr<ID3D12Device> m_device; ComPtr<IDXGISwapChain3> m_swapChain; ComPtr<ID3D12CommandQueue> m_cmdQueue; ComPtr<ID3D12GraphicsCommandList> m_cmdList; ComPtr<ID3D12CommandAllocator> m_cmdAllocator; ComPtr<ID2D1Device> m_HUDDevice; ComPtr<ID2D1Factory3> m_HUDFactory; ComPtr<ID2D1DeviceContext> m_HUDContext; ComPtr<ID2D1Bitmap1> m_HUDRenderTargets[g_swapChainsBufferCount]; ComPtr<ID2D1SolidColorBrush> m_HUDBrush; ComPtr<IDWriteTextFormat> m_textFormat; ComPtr<IDWriteTextFormat> m_textFormatBig; ComPtr<ID3D11On12Device> m_d3d11On12Device; ComPtr<ID3D11DeviceContext> m_d3d11Context; ComPtr<IDWriteFactory> m_writeFactory; ComPtr<ID3D12Resource> m_swapChainBuffers[g_swapChainsBufferCount]; ComPtr<ID3D11Resource> m_wrappedBackBuffers[g_swapChainsBufferCount]; ComPtr<ID3D12DescriptorHeap> m_rtvHeap; // Render Target View DescriptorHeap public: BasicDXGI(HINSTANCE hInstance, const std::wstring& applName = L"Basic DXGI application", int width=500, int height=500); ~BasicDXGI(); void init3D(); // calls after window init and before window run void run(); void work(); virtual void beforeDraw(){}; void draw(); virtual void afterDraw(){}; void onKeyDown(WPARAM btnState); void onReSize(int newWidth, int newHeight); void FlushCommandQueue(); void setFence(); UINT64 getFenceValue() {return m_fenceValue;} UINT rtvDescriptorSize() { return m_rtvDescriptorSize; } DXGI_FORMAT backBufferFormat() { return m_backBufferFormat; } HRESULT m_prevPresentCallStatus = S_OK; }; #ifndef ReleaseCom #define ReleaseCom(x) { if(x){ x->Release(); x = 0; } } #endif #define _LOGDEBUG
d2f4328ffb29f427daf39e81509b59bf6b7832a2
f6110e89b904deb2307cc3b783b87852e533a88f
/new/Snake.h
f6068076d2aca3ad8e980074f6d3788b184d402d
[]
no_license
tmoh-zencode/Nibbler
40cfd5dbbc2df531f466ea33cbfb813deedbe1ea
470d15e02964ed278ebd5e8ab1dccd0dfad91f91
refs/heads/master
2023-05-25T16:59:30.338084
2017-06-24T13:02:34
2017-06-24T13:02:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
422
h
Snake.h
#ifndef SNAKE_H #define SNAKE_H #include "libft.h" #include "Spot.h" class Snake { std::vector<Segment> m_snake; std::vector<Spot> m_spot; Direction m_currentDirection; int m_size; public: Snake(); int m_GetHeadX(); int m_GetHeadY(); void m_AppendSegment(); void m_AddSpot(); void m_Move(); void m_Draw(); void m_Update(); }; #endif
cd8e23e2d51df14ed51fee2453f92c09be6b2fb6
f220418683fb5f270e3f1ce40d69e5390ff4e912
/paddle/fluid/inference/tests/api/analyzer_mm_dnn_tester.cc
1318fbcbc4022457354fb34c727cf56ce26e12ec
[ "Apache-2.0" ]
permissive
wanghaoshuang/Paddle
dd36299360f44865147889249d95f49a160f689f
8c19599bc640f51b279d95054bbd5eccde210c0c
refs/heads/slim
2023-03-09T06:24:54.702479
2019-02-25T15:36:35
2019-02-25T15:36:35
91,771,236
3
3
Apache-2.0
2019-03-12T05:12:23
2017-05-19T06:05:49
C++
UTF-8
C++
false
false
5,183
cc
analyzer_mm_dnn_tester.cc
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "paddle/fluid/inference/tests/api/tester_helper.h" namespace paddle { namespace inference { using contrib::AnalysisConfig; struct DataRecord { std::vector<std::vector<int64_t>> query, title; std::vector<size_t> lod1, lod2; size_t batch_iter{0}, batch_size{1}, num_samples; // total number of samples DataRecord() = default; explicit DataRecord(const std::string &path, int batch_size = 1) : batch_size(batch_size) { Load(path); } DataRecord NextBatch() { DataRecord data; size_t batch_end = batch_iter + batch_size; // NOTE skip the final batch, if no enough data is provided. if (batch_end <= query.size()) { GetInputPerBatch(query, &data.query, &data.lod1, batch_iter, batch_end); GetInputPerBatch(title, &data.title, &data.lod2, batch_iter, batch_end); } batch_iter += batch_size; return data; } void Load(const std::string &path) { std::ifstream file(path); std::string line; int num_lines = 0; while (std::getline(file, line)) { num_lines++; std::vector<std::string> data; split(line, '\t', &data); // load query data std::vector<int64_t> query_data; split_to_int64(data[0], ' ', &query_data); // load title data std::vector<int64_t> title_data; split_to_int64(data[1], ' ', &title_data); query.push_back(std::move(query_data)); title.push_back(std::move(title_data)); } num_samples = num_lines; } }; void PrepareInputs(std::vector<PaddleTensor> *input_slots, DataRecord *data, int batch_size) { PaddleTensor lod_query_tensor, lod_title_tensor; lod_query_tensor.name = "left"; lod_title_tensor.name = "right"; auto one_batch = data->NextBatch(); // assign data TensorAssignData<int64_t>(&lod_query_tensor, one_batch.query, one_batch.lod1); TensorAssignData<int64_t>(&lod_title_tensor, one_batch.title, one_batch.lod2); // Set inputs. input_slots->assign({lod_query_tensor, lod_title_tensor}); for (auto &tensor : *input_slots) { tensor.dtype = PaddleDType::INT64; } } void SetConfig(contrib::AnalysisConfig *cfg) { cfg->SetModel(FLAGS_infer_model); cfg->DisableGpu(); cfg->SwitchSpecifyInputNames(); cfg->SwitchIrOptim(); } void SetInput(std::vector<std::vector<PaddleTensor>> *inputs) { DataRecord data(FLAGS_infer_data, FLAGS_batch_size); std::vector<PaddleTensor> input_slots; int epoch = FLAGS_test_all_data ? data.num_samples / FLAGS_batch_size : 1; LOG(INFO) << "number of samples: " << epoch * FLAGS_batch_size; for (int bid = 0; bid < epoch; ++bid) { PrepareInputs(&input_slots, &data, FLAGS_batch_size); (*inputs).emplace_back(input_slots); } } // Easy for profiling independently. TEST(Analyzer_MM_DNN, profile) { contrib::AnalysisConfig cfg; SetConfig(&cfg); std::vector<PaddleTensor> outputs; std::vector<std::vector<PaddleTensor>> input_slots_all; SetInput(&input_slots_all); TestPrediction(reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all, &outputs, FLAGS_num_threads); if (FLAGS_num_threads == 1 && !FLAGS_test_all_data) { PADDLE_ENFORCE_EQ(outputs.size(), 2UL); for (auto &output : outputs) { size_t size = GetSize(output); PADDLE_ENFORCE_GT(size, 0); float *result = static_cast<float *>(output.data.data()); // output is probability, which is in (-1, 1). for (size_t i = 0; i < size; i++) { EXPECT_GT(result[i], -1); EXPECT_LT(result[i], 1); } } } } // Check the fuse status TEST(Analyzer_MM_DNN, fuse_statis) { contrib::AnalysisConfig cfg; SetConfig(&cfg); int num_ops; auto predictor = CreatePaddlePredictor<AnalysisConfig>(cfg); auto fuse_statis = GetFuseStatis( static_cast<AnalysisPredictor *>(predictor.get()), &num_ops); } // Compare result of NativeConfig and AnalysisConfig TEST(Analyzer_MM_DNN, compare) { contrib::AnalysisConfig cfg; SetConfig(&cfg); std::vector<std::vector<PaddleTensor>> input_slots_all; SetInput(&input_slots_all); CompareNativeAndAnalysis( reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all); } // Compare Deterministic result TEST(Analyzer_MM_DNN, compare_determine) { AnalysisConfig cfg; SetConfig(&cfg); std::vector<std::vector<PaddleTensor>> input_slots_all; SetInput(&input_slots_all); CompareDeterministic(reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all); } } // namespace inference } // namespace paddle
1ec194a2fe7089e749f8f065a0fffbc78abc9df6
05cdd8362ba8686fe1dd4f2d1c47b337d94ce923
/Arithmetic_Slices.cpp
afda966fd15f480a1c15ebcec25db2e1f84a4afc
[]
no_license
vismit2000/compCode-II
162411aed8483cf0f3c7cc67488aed4b78aeb3a5
eaad7d1475d2314de533df9017d5788e9a30b0b2
refs/heads/master
2022-12-23T04:54:21.431142
2022-12-17T04:51:15
2022-12-17T04:51:15
191,161,603
2
1
null
null
null
null
UTF-8
C++
false
false
1,127
cpp
Arithmetic_Slices.cpp
// https://leetcode.com/problems/arithmetic-slices/ /* A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the same. For example, these are arithmetic sequence: 1, 3, 5, 7, 9 7, 7, 7, 7 3, -1, -5, -9 The following sequence is not arithmetic. 1, 1, 2, 5, 7 A zero-indexed array A consisting of N numbers is given. A slice of that array is any pair of integers (P, Q) such that 0 <= P < Q < N. A slice (P, Q) of array A is called arithmetic if the sequence: A[P], A[p + 1], ..., A[Q - 1], A[Q] is arithmetic. In particular, this means that P + 1 < Q. The function should return the number of arithmetic slices in the array A. */ class Solution { public: int numberOfArithmeticSlices(vector<int>& A) { int n = A.size(); if(n == 0) return 0; int sum = 0; vector <int> dp(n, 0); for(int i = 2; i < n; i++) { if(A[i] - A[i-1] == A[i-1]-A[i-2]) dp[i] = dp[i-1] + 1; sum += dp[i]; } return sum ; } };
32060d07fc1a62ca8b54a5bc67e64af418006086
1597758733b684d74cd0bff87059520c241ab8d8
/Parsing/set_val_to_attr.cpp
215f912bae73a160fd03dd1472e116e6304c2302
[ "MIT" ]
permissive
sqatim/WebServer_42
5ae16cbe4ecec5ef3e50d0eb84aa1cfb62422fab
143f0327cf7105385af5ea3400ad54d6cd9796ad
refs/heads/main
2023-08-31T11:45:22.092847
2021-10-05T16:17:21
2021-10-05T16:17:21
385,188,225
2
2
null
null
null
null
UTF-8
C++
false
false
12,256
cpp
set_val_to_attr.cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* set_val_to_attr.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sqatim <sqatim@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/08/07 22:25:57 by amine #+# #+# */ /* Updated: 2021/10/05 10:43:31 by sqatim ### ########.fr */ /* */ /* ************************************************************************** */ #include "parse.hpp" FreqMap delete_semi_colomn(FreqMap wf) { std::unordered_multimap<std::string, std::string>::iterator it; for (it = wf.begin(); it != wf.end(); ++it) { int find_semi_colomn; find_semi_colomn = get_key(it->second).find(";"); if (find_semi_colomn > 0) it->second = get_key(it->second).substr(0, find_semi_colomn); } return wf; } std::string del_sem_col_in_str(std::string str) { int find_semi_colomn; std::string ret; find_semi_colomn = str.find(";"); if (find_semi_colomn > 0) { ret = str.substr(0, find_semi_colomn); return ret; } return str; } int check_is_digit(std::string str) { size_t i = 0; while (i < str.length()) { if (std::isdigit(str[i]) == 0) return -1; i++; } return 1; } int check_listen(std::vector<std::string> vect_str) { if (vect_str.size() == 1) return -1; if (vect_str[0] != "listen") return -1; size_t i = 1; while (i < vect_str.size()) { if (check_is_digit(vect_str[i]) == -1) return -1; i++; } return 1; } int check_error_page(std::vector<std::string> vect_str) { if (vect_str.size() != 3) return -1; if (vect_str[0] != "error_page") return -1; if (check_is_digit(vect_str[1]) == -1) return -1; return 1; } int check_index(std::vector<std::string> vect_str) { if (vect_str.size() != 2) return -1; if (vect_str[1] != "on" && vect_str[1] != "off") return -1; return 1; } int check_client_max_body_size(std::vector<std::string> vect_str) { if (vect_str.size() != 2) return -1; if (vect_str[0] != "client_max_body_size") return -1; if (vect_str[1][vect_str[1].length() - 1] != 'm') return -1; size_t i = 0; while (i < (vect_str[1].length() - 1)) { if (std::isdigit(vect_str[1][i]) == 0) return -1; i++; } return 1; } int check_host(std::vector<std::string> vect_str) { if (vect_str.size() != 2) return -1; if (vect_str[0] != "host") return -1; std::vector<std::string> vect = splitstring_with_point(vect_str[1], "."); size_t i = 0; if (vect_str[1][0] == '.' || vect_str[1][vect_str[1].length() - 1] == '.') return -1; while (i < vect_str[1].length()) { if (vect_str[1][i] == '.') { i++; if (i < vect_str[1].length()) if (vect_str[1][i] == '.') return -1; } i++; } if (vect.size() != 4) return -1; i = 0; while (i < vect.size()) { if (check_is_digit(vect[i]) == -1) return -1; i++; } i = 0; while (i < vect.size()) { if (std::stoi(vect[i]) > 255) return -1; i++; } return 1; } int check_return(std::vector<std::string> vect_str) { if (vect_str.size() != 3) return -1; if (vect_str[0] != "return") return -1; if (check_is_digit(vect_str[1]) == -1) return -1; return 1; } int get_attributs(std::vector<std::string> vect, Parse *parse, int server_len, int _begin) { size_t i = 0; int j; std::vector<LocaTion> tmp; std::vector<std::string> tmp1; std::vector<t_ret> tmp2; std::vector<int> tmp4; i = _begin; while (i < vect.size() && i < (size_t)server_len) { if (vect[i].find("listen") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (check_listen(vect_str) == -1) return -1; tmp4.push_back(std::stoi(vect_str[1])); parse->setlisten(tmp4); } if (vect[i].find("server_name") != std::string::npos) { std::vector<std::string> tmp; std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "server_name") { size_t k = 1; while (k < vect_str.size()) { tmp.push_back(vect_str[k]); k++; } parse->setserver_name(tmp); } } if (vect[i].find("index") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); // if (check_index(vect_str) == -1) // return -1; if (vect_str[0] == "index") { size_t k = 1; while (k < vect_str.size()) { tmp1.push_back(vect_str[k]); k++; } parse->set_Index(tmp1); } } if (vect[i].find("error_page") != std::string::npos) { t_ret ret; std::vector<std::string> vect_str = splitstring(vect[i], " "); if (check_error_page(vect_str) == -1) return -1; j = 1; if (vect_str.size() < 4) { ret.path = ""; ret.redirec = ""; ret.redirec = vect_str[1]; ret.path = vect_str[2]; tmp2.push_back(ret); } parse->seterror_page(tmp2); } if (vect[i].find("root") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "root") parse->setroot(vect_str[1]); } if (vect[i].find("client_max_body_size") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (check_client_max_body_size(vect_str) == -1) return -1; if (vect_str[0] == "client_max_body_size") parse->setclient_max_body_size(vect_str[1]); } if (vect[i].find("host") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (check_host(vect_str) == -1) return -1; parse->sethost(vect_str[1]); } std::string str = vect[i]; if (vect[i].find("location") != std::string::npos) { LocaTion loc = LocaTion(); std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str.size() == 2) loc.setname(vect_str[1]); while (i < vect.size()) { if (vect[i].find("}") != std::string::npos) { tmp.push_back(loc); break; } else { if (vect[i].find("index") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "index") { vect_str.erase(vect_str.begin()); loc.setindex(vect_str); } } if (vect[i].find("auto_index") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (check_index(vect_str) == -1) return -1; if (vect_str[0] == "auto_index") loc.setauto_index(vect_str[1]); } if (vect[i].find("allow_methods") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "allow_methods") { loc.set_GET(0); loc.set_POST(0); loc.set_DELET(0); if (vect_str[1].find("GET") != std::string::npos) loc.set_GET(1); if (vect_str[1].find("POST") != std::string::npos) loc.set_POST(1); if (vect_str[1].find("DELET") != std::string::npos) loc.set_DELET(1); } loc.setallow_methods(vect_str[1]); } if (vect[i].find("return") != std::string::npos) { t_ret ret; std::vector<t_ret> tmp; std::vector<std::string> vect_str = splitstring(vect[i], " "); if (check_return(vect_str) == -1) return -1; if (vect_str[0] == "return") { j = 1; if (vect_str.size() < 4) { ret.path = ""; ret.redirec = ""; ret.redirec = vect_str[1]; ret.path = vect_str[2]; tmp.push_back(ret); } } loc.set_return(tmp); } if (vect[i].find("fastcgi_pass") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "fastcgi_pass") loc.setfascgi_pass(vect_str[1]); } if (vect[i].find("enable_upload") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (check_index(vect_str) == -1) { return -1; } if (vect_str[0] == "enable_upload") loc.setupload_methods(vect_str[1]); } if (vect[i].find("upload_store") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "upload_store") loc.setupload_store(vect_str[1]); } if (vect[i].find("name") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "name") loc.setname(vect_str[1]); } if (vect[i].find("root") != std::string::npos) { std::vector<std::string> vect_str = splitstring(vect[i], " "); if (vect_str[0] == "root") loc.setroot(vect_str[1]); } } i++; } parse->setlocation(tmp); } i++; } return 1; }
783f1d9e70312891ab4b7c308e91efae9e9ba9af
9d364070c646239b2efad7abbab58f4ad602ef7b
/platform/external/chromium_org/remoting/host/gnubby_socket.h
57e743236c76d3e66472f44ee18662dc577bff2e
[ "BSD-3-Clause" ]
permissive
denix123/a32_ul
4ffe304b13c1266b6c7409d790979eb8e3b0379c
b2fd25640704f37d5248da9cc147ed267d4771c2
refs/heads/master
2021-01-17T20:21:17.196296
2016-08-16T04:30:53
2016-08-16T04:30:53
65,786,970
0
2
null
2020-03-06T22:00:52
2016-08-16T04:15:54
null
UTF-8
C++
false
false
1,420
h
gnubby_socket.h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_GNUBBY_SOCKET_H_ #define REMOTING_HOST_GNUBBY_SOCKET_H_ #include <string> #include <vector> #include "base/callback.h" #include "base/memory/scoped_ptr.h" #include "base/threading/non_thread_safe.h" namespace base { class Timer; } namespace net { class StreamListenSocket; } namespace remoting { class GnubbySocket : public base::NonThreadSafe { public: GnubbySocket(scoped_ptr<net::StreamListenSocket> socket, const base::Closure& timeout_callback); ~GnubbySocket(); void AddRequestData(const char* data, int data_len); void GetAndClearRequestData(std::string* data_out); bool IsRequestComplete() const; bool IsRequestTooLarge() const; void SendResponse(const std::string& data); void SendSshError(); bool IsSocket(net::StreamListenSocket* socket) const; void SetTimerForTesting(scoped_ptr<base::Timer> timer); private: size_t GetRequestLength() const; std::string GetResponseLengthAsBytes(const std::string& response) const; void ResetTimer(); scoped_ptr<net::StreamListenSocket> socket_; std::vector<char> request_data_; scoped_ptr<base::Timer> timer_; DISALLOW_COPY_AND_ASSIGN(GnubbySocket); }; } #endif
692c8048bbf8ddefeddc61ed29fbf509fdb94a63
095b7832c29a9225b83f9f4ff8355ef6a6543b0d
/Miscellaneous/XorSumOfAllPairsAnd.cpp
eb98ba7a7bf821a0f12c4059855e0a5c51c2a762
[]
no_license
I-Venkatesh/Data-structures-and-algorithms
a459b2a45fe0b5d2399e4f287bb83ea5d1742fac
0d05ee80d0e6dd5f376b843975f3c70abac1457f
refs/heads/master
2023-08-13T20:19:52.214023
2021-09-11T14:36:30
2021-09-11T14:36:30
323,447,201
0
0
null
null
null
null
UTF-8
C++
false
false
258
cpp
XorSumOfAllPairsAnd.cpp
class Solution { public: int getXORSum(vector<int>& arr1, vector<int>& arr2) { int x=0,y=0; for(auto i:arr1) { x^=i; } for(auto i:arr2) { y^=i; } return x&y; } };
75a6f8dc893eb4ba20a856e9305f95cb7b4506ef
79ca1707e6b3e22262a9710d74e7de7368525792
/Darkness of Planet/Darkness of Planet/Darkness of Planet/cTaeYeongUIInterface.h
f3f5538511ac8456cf9420f8cea6fb8989aaab58
[]
no_license
ggondols/TeamOfEalryAccess
0645b419b649c075ed03881921bf5cefe754680d
4219a2a0ae9644069e0d6743961a9987bfb17957
refs/heads/master
2021-01-21T12:16:30.626470
2017-10-15T08:52:09
2017-10-15T08:52:09
102,056,526
0
0
null
null
null
null
UTF-8
C++
false
false
1,522
h
cTaeYeongUIInterface.h
#pragma once enum UItype { SHOW, TEXT, BUTTON, DRAG, NOTHING }; class cTaeYeongUIInterface { private: LPD3DXSPRITE m_pSprite; LPDIRECT3DTEXTURE9 m_pTexture; D3DXIMAGE_INFO m_stImageInfo; UItype m_Type; D3DXMATRIX m_World; D3DXMATRIX m_Local; float m_startX; float m_startY; float m_FinishX; float m_FinishY; D3DXVECTOR2 m_Point; D3DXCOLOR m_Color; vector<cTaeYeongUIInterface*> m_vecChild; cTaeYeongUIInterface* m_pTarget; UItype m_typeTarget; D3DXMATRIX m_BasicTranslation; RECT m_Rc; D3DXVECTOR3 m_CollisionVec[4]; bool m_Drag; LPD3DXFONT m_pFont; char str[2048]; bool m_bClose; CallbackBindFunction CallBackF; public: void Setup(char* szFolder, char* szFilename, float Startx, float Starty, UItype type, D3DXMATRIX& Local); void Setup(char* szFolder, char* szFilename, float Startx, float Starty, UItype type); void Update(); void Render(cTaeYeongUIInterface * parent); void AddChild(cTaeYeongUIInterface* child); void SetTarget(cTaeYeongUIInterface* target, UItype type = NOTHING) { m_pTarget = target; m_typeTarget = type; } bool Collision(); bool LineDotDown(D3DXVECTOR3 startDot, D3DXVECTOR3 finishDot, D3DXVECTOR3 targetDot); void SetText(char* text); void SetClose(bool OnOff) { m_bClose = OnOff; } void regi_func(CallbackBindFunction p_func) { CallBackF = std::move(p_func); } public: cTaeYeongUIInterface(); ~cTaeYeongUIInterface(); };
63bada0de058a143715d96142eb8d52f5a809e71
46171c7941f25735e566c4829ba1e3a928c3f520
/Ray.h
5e55896b5d037f4e638035aae95215f45b826f2a
[ "MIT" ]
permissive
kurinokaitou/RayTracingInOneWeek
f3d5ea14e2adc3d9a39cece96ecf65874e4e5e4c
a95785d0db898201f35a20397715580058f239af
refs/heads/main
2023-04-19T09:20:04.092859
2021-05-06T04:36:31
2021-05-06T04:36:31
363,882,475
0
0
null
null
null
null
UTF-8
C++
false
false
695
h
Ray.h
#ifndef RAY_H #define RAY_H #include "vec3.h" #include <iostream> class Ray { public: point3 ori; vec3 dir; vec3 dirInv; std::array<bool, 3> isNeg; double t; double t_min; double t_max; public: Ray(const point3& p, const vec3& d, const double time = 0):ori(p), dir(d),t(time){ dirInv = vec3(1.0 / d[0], 1.0 / d[1], 1.0 / d[2]); isNeg[0] = d[0] < 0; isNeg[1] = d[1] < 0; isNeg[2] = d[2] < 0; t_min = 0.0; t_max = std::numeric_limits<double>::max(); } vec3 operator()(double time) const { return ori + dir * time; } std::ostream& operator<<(std::ostream& os) { os << "origin:" << ori << " " << "dir:" << dir << " " << "time:" << t << std::endl; return os; } }; #endif
e137c5900760ef9571c95c58202b71444658442a
9a841e7bf96c31da6ee71fa5d61838a2ace57f83
/project/src/robot_factory.cc
007c28361ec080803c150ea9ecf5c39aa5c4c22a
[]
no_license
deusi/Package-Delivery-System
5a5e9cf05bdc71b2b7aebedf16a38d4a232e32b8
abdb8536e309789c1f1b8755db087e8e2e3fd37c
refs/heads/main
2023-04-29T11:18:22.422058
2021-05-18T04:08:38
2021-05-18T04:08:38
368,379,205
0
0
null
null
null
null
UTF-8
C++
false
false
458
cc
robot_factory.cc
#include "robot_factory.h" namespace csci3081 { RobotFactory::RobotFactory() {} RobotFactory::~RobotFactory() {} IEntity* RobotFactory::CreateEntity(const picojson::object& details) { Robot* robot = nullptr; if (JsonHelper::GetString(details, "type") == "robot") { robot = new Robot(details); robot->SetId(curr_id_++); //Robot IDs start at 4000 and go up as more are created. } return robot; } } //namespace csci3081
85977476b456e977d34dda0f6e1fb78371b7ac8a
f739df1f252d7c961ed881be3b8babaf62ff4170
/softs/SCADAsoft/5.3.1/ACE_Wrappers/TAO/TAO_IDL/be_include/be_visitor_component/component_ih.h
51f32b8e66ebe20013d826f92e363ea283d6c718
[]
no_license
billpwchan/SCADA-nsl
739484691c95181b262041daa90669d108c54234
1287edcd38b2685a675f1261884f1035f7f288db
refs/heads/master
2023-04-30T09:15:49.104944
2021-01-10T21:53:10
2021-01-10T21:53:10
328,486,982
0
0
null
2023-04-22T07:10:56
2021-01-10T21:53:19
C++
UTF-8
C++
false
false
1,067
h
component_ih.h
/* -*- c++ -*- */ // $Id: component_ih.h 14 2007-02-01 15:49:12Z mitza $ // ============================================================================ // // = LIBRARY // TAO IDL // // = FILENAME // component_ih.h // // = DESCRIPTION // Concrete visitor for the Component node. // This provides for code generation in the implementation header // // = AUTHOR // Jeff Parsons // // ============================================================================ #ifndef _BE_COMPONENT_COMPONENT_IH_H_ #define _BE_COMPONENT_COMPONENT_IH_H_ class be_visitor_component_ih : public be_visitor_component { // // = TITLE // be_visitor_component_ih // // = DESCRIPTION // This is a concrete visitor to generate // the implementation header for component // // public: be_visitor_component_ih (be_visitor_context *ctx); // constructor ~be_visitor_component_ih (void); // destructor virtual int visit_component (be_component *node); // set the right context and make a visitor }; #endif /* _BE_COMPONENT_COMPONENT_IH_H_ */
abe3e8c5cdb64ada2e8950a2e4b22d73d8799092
2d20b9469bc6ecc441b16f6a8cb69eab8cb5076b
/include/aikido/constraint.hpp
174c89a081a9766c6d2232638e68d9e0534bc346
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
usc-csci-545/aikido
622570aa2fb9f3b9cb22299a4255b91fd4f41eb2
afd8b203c17cb0b05d7db436f8bffbbe2111a75a
refs/heads/master
2020-05-23T18:54:27.360954
2019-08-04T01:33:56
2019-08-04T01:33:56
186,899,483
0
0
BSD-3-Clause
2019-05-15T20:38:44
2019-05-15T20:38:43
null
UTF-8
C++
false
false
2,275
hpp
constraint.hpp
#include "constraint/CartesianProductProjectable.hpp" #include "constraint/CartesianProductSampleable.hpp" #include "constraint/CartesianProductTestable.hpp" #include "constraint/CyclicSampleable.hpp" #include "constraint/Differentiable.hpp" #include "constraint/DifferentiableIntersection.hpp" #include "constraint/DifferentiableSubspace.hpp" #include "constraint/FiniteSampleable.hpp" #include "constraint/NewtonsMethodProjectable.hpp" #include "constraint/Projectable.hpp" #include "constraint/RejectionSampleable.hpp" #include "constraint/Sampleable.hpp" #include "constraint/Satisfied.hpp" #include "constraint/Testable.hpp" #include "constraint/TestableIntersection.hpp" #include "constraint/dart/CollisionFree.hpp" #include "constraint/dart/FrameDifferentiable.hpp" #include "constraint/dart/FramePairDifferentiable.hpp" #include "constraint/dart/FrameTestable.hpp" #include "constraint/dart/InverseKinematicsSampleable.hpp" #include "constraint/dart/JointStateSpaceHelpers.hpp" #include "constraint/dart/TSR.hpp" #include "constraint/uniform/RnBoxConstraint.hpp" #include "constraint/uniform/RnConstantSampler.hpp" #include "constraint/uniform/SE2BoxConstraint.hpp" #include "constraint/uniform/SO2UniformSampler.hpp" #include "constraint/uniform/SO3UniformSampler.hpp" namespace aikido { namespace constraint { // Add aliases for long class names here. using uniform::R0BoxConstraint; using uniform::R1BoxConstraint; using uniform::R2BoxConstraint; using uniform::R3BoxConstraint; using uniform::R6BoxConstraint; using uniform::RnBoxConstraint; using uniform::R0ConstantSampler; using uniform::R1ConstantSampler; using uniform::R2ConstantSampler; using uniform::R3ConstantSampler; using uniform::R6ConstantSampler; using uniform::RnConstantSampler; using uniform::SO2UniformSampler; using uniform::SO3UniformSampler; using uniform::SE2BoxConstraint; using dart::CollisionFree; using dart::CollisionFreeOutcome; using dart::FrameDifferentiable; using dart::FramePairDifferentiable; using dart::FrameTestable; using dart::InverseKinematicsSampleable; using dart::TSR; using dart::createDifferentiableBounds; using dart::createProjectableBounds; using dart::createTestableBounds; using dart::createSampleableBounds; } // namespace constraint } // namespace aikido
d63470ad61925f021bb319168953ac93fca8a24d
92cf34714af8c7e12b02068c655502961e4018fc
/lib/Graph/bellman_ford.h
f3623d26faf372d4c64dcd31bc644ccbe167fa0c
[]
no_license
oit-cpt/ProconLib
0c665715f7ad7775577300fb094a3dc7ca1a724f
f299cee254216415e37b25f71f0c478b0b6a1a36
refs/heads/master
2021-05-09T14:18:10.082091
2018-06-26T13:36:00
2018-06-26T13:36:00
119,059,150
4
0
null
2018-06-26T13:36:01
2018-01-26T14:12:06
C++
UTF-8
C++
false
false
1,607
h
bellman_ford.h
#pragma once #include "graph.h" #include "template.h" template <typename T> class BellmanFord { private: T INF = numeric_limits<T>::max() / 10; int V; int nodeNum; AdjList<T> adj; // adj[ๅง‹็‚น][ๅ‹•็š„้…ๅˆ—ใงๅง‹็‚นใ‹ใ‚‰ไผธใณใ‚‹ๆž] vector<bool> negative; // negative[n] := nใซๅˆฐ้”ใ™ใ‚‹ใพใงใซ่ฒ ้–‰่ทฏใŒใ‚ใ‚‹ใ‹ public: explicit BellmanFord(int n); vector<Int> dist; // ๆœ€็Ÿญ็ตŒ่ทฏ void AddEdge(int f, int t, Int c); void Run(int f); bool HasNegativeCycle(int n); }; template <typename T> BellmanFord<T>::BellmanFord(int n) : V(n + 1), nodeNum(n), adj(V), negative(V, false), dist(V, INF) {} template <typename T> void BellmanFord<T>::AddEdge(int f, int t, Int c) { adj[f].push_back(Edge<T>(t, c)); } template <typename T> void BellmanFord<T>::Run(int firstNode) { dist[firstNode] = 0; for (int loop = 0; loop < nodeNum - 1; loop++) { for (int i = 0; i < nodeNum; i++) { for (const Edge<T>& e : adj[i]) { if (dist[i] == INF) continue; if (dist[e.to] > dist[i] + e.cost) { dist[e.to] = dist[i] + e.cost; } } } } for (int loop = 0; loop < nodeNum; loop++) { for (int i = 0; i < nodeNum; i++) { for (const Edge<T>& e : adj[i]) { if (dist[i] == INF) continue; if (dist[e.to] > dist[i] + e.cost) { dist[e.to] = dist[i] + e.cost; negative[e.to] = true; } if (negative[i] == true) { negative[e.to] = true; } } } } } template <typename T> bool BellmanFord<T>::HasNegativeCycle(int n) { return negative[n]; }
3284dde818a30d8ab473bcd7f653344d2d272673
89be3f4867c497e066e3aac86f2f4d1a09269458
/server/serial/PL011.cpp
12e90e07241fdd81f154d803b016e28c044cb87e
[ "Apache-2.0" ]
permissive
SpaceMonkeyClan/FreeNOS-1.0.3
90d6320b675ac292c5da785c7193179c6ebd88f9
0967dc627a7a73a7ccead427e56ff193dece1248
refs/heads/main
2023-08-19T16:12:53.794555
2021-10-29T15:30:01
2021-10-29T15:30:01
404,900,188
0
1
Apache-2.0
2021-10-18T04:40:38
2021-09-09T23:44:19
C++
UTF-8
C++
false
false
4,346
cpp
PL011.cpp
/* * Copyright (C) 2015 Niek Linnenbank * Copyright (C) 2013 Goswin von Brederlow <goswin-v-b@web.de> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <FreeNOS/Constant.h> #include <FreeNOS/User.h> #include "PL011.h" template<> SerialDevice* AbstractFactory<SerialDevice>::create() { return new PL011(UART0_IRQ); } PL011::PL011(const u32 irq) : SerialDevice(irq) { m_identifier << "serial0"; } FileSystem::Result PL011::initialize() { if (!isKernel) { // Remap IO base to ensure we have user-level access to the registers. if (m_io.map(UART_BASE, PAGESIZE*2, Memory::User | Memory::Readable | Memory::Writable | Memory::Device) != IO::Success) { return FileSystem::IOError; } // Disable receiving interrupts ProcessCtl(SELF, DisableIRQ, m_irq); } else { m_io.setBase(UART_BASE); } // Disable PL011. m_io.write(PL011_CR, 0x00000000); // Clear pending interrupts. m_io.write(PL011_ICR, 0x7FF); // Set integer & fractional part of baud rate. m_io.write(PL011_IBRD, 26); m_io.write(PL011_FBRD, 3); // Disable FIFO, use 8 bit data transmission, 1 stop bit, no parity m_io.write(PL011_LCRH, PL011_LCRH_WLEN_8BIT); if (isKernel) { // Mask all interrupts. m_io.write(PL011_IMSC, (1 << 1) | (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7) | (1 << 8) | (1 << 9) | (1 << 10)); } else { // Enable Rx/Tx interrupts m_io.write(PL011_IMSC, PL011_IMSC_RXIM); ProcessCtl(SELF, EnableIRQ, m_irq); } // Enable PL011, receive & transfer part of UART. m_io.write(PL011_CR, (1 << 0) | (1 << 8) | (1 << 9)); return FileSystem::Success; } FileSystem::Result PL011::interrupt(const Size vector) { // Clear Receive Interrupts u32 mis = m_io.read(PL011_MIS); if (mis & PL011_MIS_RXMIS) m_io.write(PL011_ICR, PL011_ICR_RXIC); // Clear Transmit Interrupts mis = m_io.read(PL011_MIS); if (mis & PL011_MIS_TXMIS) m_io.write(PL011_ICR, PL011_ICR_TXIC); // Re-enable interrupts if (!isKernel) { ProcessCtl(SELF, EnableIRQ, m_irq); } return FileSystem::Success; } FileSystem::Result PL011::read(IOBuffer & buffer, Size & size, const Size offset) { Size bytes = 0; // Clear Receive Interrupts u32 mis = m_io.read(PL011_MIS); if (mis & PL011_MIS_RXMIS) m_io.write(PL011_ICR, PL011_ICR_RXIC); // Read as much bytes as possible while (!(m_io.read(PL011_FR) & PL011_FR_RXFE) && bytes < size) { //buffer[bytes++] = m_io.read(PL011_DR); u8 byte = m_io.read(PL011_DR); buffer.bufferedWrite(&byte, 1); bytes++; } if (buffer.getCount()) { size = buffer.getCount(); return FileSystem::Success; } else { return FileSystem::RetryAgain; } } FileSystem::Result PL011::write(IOBuffer & buffer, Size & size, const Size offset) { Size bytes = 0; // Clear Transmit Interrupts u32 mis = m_io.read(PL011_MIS); if (mis & PL011_MIS_TXMIS) m_io.write(PL011_ICR, PL011_ICR_TXIC); // Write as much bytes as possible while (bytes < size) { if (m_io.read(PL011_FR) & PL011_FR_TXFE) { m_io.write(PL011_DR, buffer[bytes++]); } } if (bytes) { size = bytes; return FileSystem::Success; } else { return FileSystem::RetryAgain; } }
234632e88ba0e5d65ed05a34c0bad198fe2534f8
3a5a59bf43e0149fdf8d3b4564ee07d1a8272863
/src/sampler/sampler.h
9bd429a97eb96a9276be514edc04a7c18fbcb7af
[]
no_license
laas/feasibility
e987ee74600e0d3275674d4b9a15fa2874485dae
ffeb4b4211601803ff97c60429a296665a022030
refs/heads/master
2021-01-22T05:01:21.554728
2013-12-13T11:26:16
2013-12-13T11:26:16
7,941,243
0
0
null
2013-10-06T17:21:16
2013-01-31T17:09:26
C++
UTF-8
C++
false
false
1,313
h
sampler.h
#pragma once #include <Eigen/Core> #include "rviz/visualmarker.h" #include "rviz/visualmarker.h" #include "util/util.h" #include "sampler_problem_abstract.h" //doing mcmc or hmc for your convenience class SamplingInterface{ AbstractSamplingProblem *S; uint accepted_samples; uint rejected_samples; uint samples; Eigen::VectorXd x_cand; //store samples from mcmc steps Eigen::VectorXd x_old; double p_cand; //probability of current sample candidate double p_old; //probability of last sample Logger logger; void logging( Eigen::VectorXd &v, double d); void leap_frog_constraints_handler(Eigen::VectorXd &x, Eigen::VectorXd &p, uint pos, double l, double u); void hmc_step(); //Hamiltonian Monte Carlo (as described in ITILA, Ch. 30, David MacKay) void hmc_multi_step( uint Nsamples, double rmax); void mcmc_step(); //Metropolis-Hastings MCMC (as described in PRML, Bishop) void mcmc_multi_step( uint Nsamples ); void accept( Eigen::VectorXd &x); void loop(Eigen::VectorXd &x, Eigen::VectorXd &ql, Eigen::VectorXd &qh, Eigen::VectorXd &stepsize, uint d); void print(); public: SamplingInterface(Logger &l); void init( AbstractSamplingProblem *p ); void uniform(uint Nsamples); void uniform_normalized(uint Nsamples); void mcmc(uint Nsamples); void hmc(uint Nsamples, double rmax); };
9dec5177720e34863aa076ea64e212a50cd9912a
79cd4dff7e45106bef9d70dd1c1a5034fa3d3fe9
/AuditScanner/MfcExt/src/PublisherMap.cpp
8f032828d54fc740cf735213f8811851996d4333
[]
no_license
15831944/AW-master
1e9bae32ba80e83a0b3f27a03463ca8373145336
4f4a37b6c4a46c4033bc90c4922bbb168f4de0ea
refs/heads/master
2021-06-16T02:25:10.327148
2016-11-09T06:19:41
2016-11-09T06:19:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,439
cpp
PublisherMap.cpp
// PublisherMap.cpp: implementation of the CPublisherMap class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// // CString array for converting Publisher Names static CString arrayPublishers[30][2] = {"3COM" ,"3Com Corporation, Inc." ,"ADOBE" ,"Adobe Systems, Inc." ,"APPLE" ,"Apple Computer, Inc." ,"ATI" ,"ATI Technologies, Inc." ,"BELKIN" ,"Belkin, Inc." ,"CANON" ,"Canon Inc." ,"CISCO" ,"Cisco Systems, Inc." ,"CITRIX" ,"Citrix Systems, Inc." ,"COMPUTER ASSOCIATES" ,"Computer Associates International, Inc." ,"COREL" ,"Corel Corporation, Inc." ,"DELL" ,"Dell Computer Corporation, Inc." ,"HEWLETT" ,"Hewlett-Packard Company" ,"IBM" ,"IBM Corporation, Inc." ,"INTEL" ,"Intel Corporation" ,"INSTALLSHIELD" ,"Installshield Corporation, Inc." ,"IOMEGA" ,"Iomega Corporation, Inc." ,"JASC" ,"Jasc Software, Inc." ,"LAYTON" ,"Layton Technology, Inc." ,"LOTUS DEVELOPMENT" ,"Lotus Development, Inc." ,"MACROVISION" ,"Macrovision Corporation, Inc." ,"MACROMEDIA" ,"Macromedia Corporation, Inc." ,"MICROSOFT" ,"Microsoft Corporation, Inc." ,"ROXIO" ,"Roxio, Inc." ,"SYMANTEC" ,"Symantec Corporation, Inc." ,"ULEAD" ,"ULead Systems, Inc." ,"VERITAS" ,"Veritas Software, Inc." ,"WINZIP" ,"WinZip Computing, Inc." }; static int sPublisherCount = 27; CPublisherMap::CPublisherMap() { } CPublisherMap::~CPublisherMap() { } // // Rationalize // =========== // // Rationalize the publisher by finding if it matches any of the entries in our list and // if so returning the rationalized publisher // BOOL CPublisherMap::Rationalize (CString& strPublisher) { // Upper case it first as we ignore case CString strUPCPublisher = strPublisher; strUPCPublisher.MakeUpper(); for (int isub=0; isub<sPublisherCount; isub++) { int nLen = arrayPublishers[isub][0].GetLength(); if (strUPCPublisher.Left(nLen) == arrayPublishers[isub][0]) { strPublisher = arrayPublishers[isub][1]; return TRUE; } } return FALSE; }
276dc69bc3c9e0967d8807925424fdca51c93c95
ad2ce056d6f8fb621def7b87f6ea2eb212f8da46
/Ngine-v1/src/Core/NColliderAABB.cpp
9afe1817de6b8ae67a35d8c4d8e19139ae41eb0b
[]
no_license
n86-64/AT-Task3-Nmation
c1d0307eb2f8a3c8eabc2f6c140bdd957a9c1917
1484160684f97d724fddf9a2e2cdf3f82bae9be1
refs/heads/master
2020-04-18T07:29:14.826167
2019-08-27T14:18:53
2019-08-27T14:18:53
167,361,474
0
0
null
2019-08-27T15:18:54
2019-01-24T12:07:32
null
UTF-8
C++
false
false
381
cpp
NColliderAABB.cpp
#include "NColliderAABB.h" NMath::Vector3 NColliderAABB::getColliderDimenstions() const { return dimenstions; } void NColliderAABB::setColliderDimenstions(NMath::Vector3 dim) { dimenstions = dim; } NMath::Vector3 NColliderAABB::getColliderMinPoint() { return position - dimenstions; } NMath::Vector3 NColliderAABB::getColliderMaxPoint() { return position + dimenstions; }
031ad5ab0ecea3a67236ee58b7ea28ce3eec4a70
5a91e4ee619c29dcdd307162cbaba8483abe793a
/02 Essential c++/03 ็ฌฌไธ‰็ซ  ๆณ›ๅž‹็ผ–็จ‹้ฃŽๆ ผ/03-17 ็ปƒไน 3.1.cpp
63d2568f41ef3be60621bcad40c203a1ecc0495f
[]
no_license
Ciaran-byte/Cpp
0a9a8d7a819e5866daeba0393e5d52e830181c0c
891ae8a55425618cd9020c85b868108f4bac75c3
refs/heads/master
2021-08-08T06:40:59.274428
2021-01-17T05:46:26
2021-01-17T05:46:26
240,852,151
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
753
cpp
03-17 ็ปƒไน 3.1.cpp
#include<iostream> #include<fstream> #include<map> #include<set> #include<iterator> using namespace std; int main() { ifstream input_file("3.txt"); if(!input_file)return -1; istream_iterator<string> it(input_file); istream_iterator<string> eof; map<string, int>imap; set<string> iset = { "a","an","or","the","and","but" }; string words; for (; it != eof; it++) { words = *it; if (iset.count(words)) { continue; } else { imap[words]++; } } map<string, int>::iterator itr_map = imap.begin(); for (; itr_map != imap.end(); itr_map++) { cout << "ยดรŠรƒรป: " << itr_map->first << endl; cout << "ยดรŽรŠรฝ: " << itr_map->second << endl; cout << endl; } return 0; }
d59fdb372b751b2478a8dd3abe6c26c18e342324
d0279b976bd52dc736f412b6a93996939b6d8914
/omuten_test/omuten_test/src/Scenes/GameClear.h
15524d18b339f7b493a6b6c9de25a7779236c724
[]
no_license
lowfox/omuten_NotUseRos
5719f810cc277168bbe69ab89469a419991a8bf2
9561e6280848711bb2f400432b7ea222b7c4ab14
refs/heads/main
2023-02-17T21:41:12.849867
2021-01-21T02:20:14
2021-01-21T02:20:14
329,208,194
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
1,663
h
GameClear.h
#pragma once #include <Siv3D.hpp> #include "../App.hpp" class GameClearScene : public App::Scene { private: Font font = Font(150); std::shared_ptr<Table> table; Audio clearVoice = Audio(U"Asset/Voice/clear.mp3"); Audio gameClearBGM= Audio(U"Asset/Bgm/bgm_clear.mp3"); Audio goalOut= Audio(U"Asset/Se/goalout.mp3"); double prevTime= Scene::Time(); double time = 10.0f; public: GameClearScene(const InitData& init) : IScene(init) { auto& sharedData = getData(); table = sharedData.table; clearVoice.play(); gameClearBGM.setVolume(0.2); goalOut.setVolume(0.8); gameClearBGM.play(); } void update() override { auto now = Scene::Time(); time -= (now - prevTime); prevTime = now; // Print << U"time:" << time; table->setServoAngle(SeesawToServoAngle(INIT_POS_X, INIT_POS_Y)); if (time < 8.0f && table->isGoal()) { table->boalEmission(); // Print << U"boalEmission"; goalOut.play(); } if (time < 6.0f) { // table->boalEmission_init(); // Print << U"boalEmission_init"; } if (SimpleGUI::Button(U"ใ‚‚ใฉใ‚‹", Vec2(0, 0))) { gameClearBGM.stop(); changeScene(U"Title", 300, true); } if (gameClearBGM.posSec() > 11.0f ) { gameClearBGM.stop(); changeScene(U"Standby", 300, true); } table->bonusLED(0); } void draw() const override { font(U"ใ‚ฒใƒผใƒ ใ‚ฏใƒชใ‚ข๏ผ").drawAt(Scene::Center()); } };
52680bcd87c14d81ddc246f0dfef23c0fe0c6e76
1cb0cd0df09c59b444cc92040bc01d18aef58bde
/Source/Cars/Game/CarMovementComponent.h
e75a290d6bb274bac0e89e5d5ce73d1e9055378b
[ "MIT" ]
permissive
xxzivadxx/Cars
444295d6c9e9d38cd9c46401be5d4fdb61687ffc
60384193b10322e57af1f5ac4706c92b679b06d6
refs/heads/master
2020-03-09T00:00:26.908094
2018-04-24T01:39:04
2018-04-24T01:39:04
128,478,079
0
0
null
null
null
null
UTF-8
C++
false
false
1,609
h
CarMovementComponent.h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Components/ActorComponent.h" #include "CarMovementComponent.generated.h" UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) ) class CARS_API UCarMovementComponent : public UActorComponent { GENERATED_BODY() public: // Sets default values for this component's properties UCarMovementComponent(); // Called every frame virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override; // Velocity magnitude float GetVelocityMagnitude() { return m_vVelocity.Size(); } // Input void SetInput(FVector2D _vInput) { m_vMovementInput = _vInput; } protected: // Called when the game starts virtual void BeginPlay() override; // Movement Calculation FVector CalculateAceleration(); void UpdateVelocity(FVector& _vVelocity_, const FVector& _vAcel, float DeltaTime); void MoveActor(const FVector& _vVelocity, float DeltaTime); protected: // Constants UPROPERTY(EditAnywhere) float m_fAcel = 120.f; // Forward accel UPROPERTY(EditAnywhere) float m_fDrag = 50.f; // Drag accel (no input) UPROPERTY(EditAnywhere) float m_fBrakeAcel = 300.f; // Brake accel UPROPERTY(EditAnywhere) float m_fMaxVelocity = 250.f; // Max Velocity UPROPERTY(EditAnywhere) float m_fRotationFactor = 2.f; // For size accels //Current velocity FVector m_vVelocity = FVector::ZeroVector; //Input vector FVector2D m_vMovementInput = FVector2D::ZeroVector; };
d4940fb48611d3b19a6adfa0540511acada7bb59
41f546ad89c405957d0f25963b985e136442caaf
/ui-terminal/ansi_terminal.h
e01269903f4e9b0411533877ff1406d2f5f70058
[ "MIT" ]
permissive
redrye/PowershellTerminal
e704a757c337de10a17305a58bd3fa1295cc657b
0dc1e771b7505d4f005cbd33d668d49cc2627eec
refs/heads/master
2023-05-06T05:18:24.658854
2021-05-28T15:50:12
2021-05-28T15:50:12
371,746,553
0
0
null
null
null
null
UTF-8
C++
false
false
31,824
h
ansi_terminal.h
#pragma once #include <unordered_map> #include <unordered_set> #include "ui/canvas.h" #include "ui/mixins/selection_owner.h" #include "ui/special_objects/hyperlink.h" #include "tpp-lib/pty.h" #include "tpp-lib/pty_buffer.h" #include "csi_sequence.h" #include "osc_sequence.h" #include "url_matcher.h" namespace ui { class TppSequenceEventPayload { public: tpp::Sequence::Kind kind; char const * payloadStart; char const * payloadEnd; }; // ui::TppSequenceEventPayload using TppSequenceEvent = Event<TppSequenceEventPayload>; using ExitCodeEvent = Event<ExitCode>; /** The terminal alone. The simplest interface to the rerminal, no history, selection, etc? */ class AnsiTerminal : public virtual Widget, public tpp::PTYBuffer<tpp::PTYMaster>, SelectionOwner { public: using Cell = Canvas::Cell; using Cursor = Canvas::Cursor; class Buffer; class State; /** Palette */ class Palette { public: static Palette Colors16(); static Palette XTerm256(); Palette(): size_{2}, defaultFg_{Color::White}, defaultBg_{Color::Black}, colors_{new Color[2]} { colors_[0] = Color::Black; colors_[1] = Color::White; } Palette(size_t size, Color defaultFg = Color::White, Color defaultBg = Color::Black): size_(size), defaultFg_(defaultFg), defaultBg_(defaultBg), colors_(new Color[size]) { } Palette(std::initializer_list<Color> colors, Color defaultFg = Color::White, Color defaultBg = Color::Black); Palette(Palette const & from); Palette(Palette && from) noexcept; ~Palette() { delete [] colors_; } Palette & operator = (Palette const & other); Palette & operator == (Palette && other); size_t size() const { return size_; } Color defaultForeground() const { return defaultFg_; } Color defaultBackground() const { return defaultBg_; } void setDefaultForeground(size_t index) { defaultFg_ = colors_[index]; } void setDefaultForeground(Color color) { defaultFg_ = color; } void setDefaultBackground(size_t index) { defaultBg_ = colors_[index]; } void setDefaultBackground(Color color) { defaultBg_ = color; } void setColor(size_t index, Color color) { ASSERT(index < size_); colors_[index] = color; } Color operator [] (size_t index) const { ASSERT(index < size_); return colors_[index]; } Color & operator [] (size_t index) { ASSERT(index < size_); return colors_[index]; } Color at(size_t index) const { return (*this)[index]; } Color & at(size_t index) { return (*this)[index]; } private: size_t size_; Color defaultFg_; Color defaultBg_; Color * colors_; }; // AnsiTerminal::Palette /**\name Log Levels. */ //@{ public: static Log SEQ; static Log SEQ_UNKNOWN; static Log SEQ_ERROR; static Log SEQ_WONT_SUPPORT; static Log SEQ_SENT; //@} public: AnsiTerminal(tpp::PTYMaster * pty, Palette && palette); ~AnsiTerminal() override; void resize(Size const & size) override { if (rect().size() == size) return; // lock the widget for repainting Lock l(this); // under lock, update history and buffers { std::lock_guard<PriorityLock> g{bufferLock_.priorityLock(), std::adopt_lock}; Widget::resize(size); resizeHistory(); resizeBuffers(size); pty_->resize(size.width(), size.height()); } if (scrollToTerminal_) setScrollOffset(Point{0, historyRows()}); } /** Returns the palette of the terminal. */ Palette const & palette() const { return palette_; } /** \name Events */ public: VoidEvent onNotification; /** Triggered when user clicks on a hyperlink with left mouse button. The default action should be opening the hyperlink. */ StringEvent onHyperlinkOpen; /** Triggered when user clicks on a hyperlink with right mouse button. The default action should be copying the url to clipboard. */ StringEvent onHyperlinkCopy; StringEvent onTitleChange; StringEvent onClipboardSetRequest; TppSequenceEvent onTppSequence; ExitCodeEvent onPTYTerminated; /** \name Widget */ //@{ protected: Size contentsSize() const override { if (alternateMode_) { return Widget::contentsSize(); } else { std::lock_guard<PriorityLock> g(bufferLock_.priorityLock(), std::adopt_lock); return Size{width(), height() + static_cast<int>(historyRows_.size())}; } } void paint(Canvas & canvas) override; //@} /** \name User Input Unlike generic widgets, which first process the event themselves and only then trigger the user events or propagate to parents, the terminal first triggers the user event, which may in theory stop the event from propagating to the terminal and only then processes the event in the terminal. No keyboard events propagate to parents. */ //@{ public: using Widget::requestClipboardPaste; using Widget::requestSelectionPaste; /** Returns true if the application running in the terminal captures mouse events. */ bool mouseCaptured() const { std::lock_guard<PriorityLock> g{bufferLock_.priorityLock(), std::adopt_lock}; return mouseMode_ != MouseMode::Off; } /** Sends the specified text as clipboard to the PTY. */ void pasteContents(std::string const & contents); protected: void keyDown(KeyEvent::Payload & e) override ; void keyUp(KeyEvent::Payload & e) override; void keyChar(KeyCharEvent::Payload & e) override; void mouseMove(MouseMoveEvent::Payload & e) override; void mouseDown(MouseButtonEvent::Payload & e) override; void mouseUp(MouseButtonEvent::Payload & e) override; void mouseWheel(MouseWheelEvent::Payload & e) override; /** Mouse click. Left button open active hyperlink, right button copies the hyperlink's url to clipboard. Both work only if the app in the terminal does not capture mouse. */ void mouseClick(MouseButtonEvent::Payload & e) override { Widget::mouseClick(e); if (! mouseCaptured() && e.active()) { if (activeHyperlink_ != nullptr) { StringEvent::Payload p{activeHyperlink_->url()}; if (e->button == MouseButton::Left) onHyperlinkOpen(p, this); else if (e->button == MouseButton::Right) onHyperlinkCopy(p, this); } } } /** Double click selects word under caret. Works only if the terminal does not capture mouse. */ void mouseDoubleClick(MouseButtonEvent::Payload & e) override { Widget::mouseDoubleClick(e); if (! mouseCaptured() && e.active()) { selectWord(toContentsCoords(e->coords)); } } /** Triple click selects line under caret. Works only if the terminal does not capture mouse. */ void mouseTripleClick(MouseButtonEvent::Payload & e) override { Widget::mouseTripleClick(e); if (! mouseCaptured() && e.active()) { selectLine(toContentsCoords(e->coords)); } } void mouseOut(VoidEvent::Payload & e) override { Widget::mouseOut(e); if (activeHyperlink_ != nullptr) { activeHyperlink_->setActive(false); activeHyperlink_ = nullptr; } } unsigned encodeMouseButton(MouseButton btn, Key modifiers); void sendMouseEvent(unsigned button, Point coords, char end); std::string getSelectionContents() override; /** Selects the word under given coordinates, if any. Words may be split across lines. */ void selectWord(Point pos); /** Selects the current line of test under given coordinates. Uses the line ending marks to determine the extent of the line. */ void selectLine(Point pos); private: /** Number of pressed mouse buttons to determine mouse capture. */ unsigned mouseButtonsDown_ = 0; /** Last pressed mouse button for mouse move reporting. */ unsigned mouseLastButton_ = 0; static std::unordered_map<Key, std::string> KeyMap_; static std::unordered_set<Key> PrintableKeys_; //} /** \name Hyperlinks Terminal supports hyperlinks either via the OSC 8 sequence, or by automatic detection based on the UrlMatcher class. Cell special objects are used to store the information about a hyperlink. The sequence creates the hyperlink, which is then attached to each next cell untiln the closing empty sequence is found. The size of the parameters or the link itself is not limited in any way on the terminal, but the maximum input buffer size will limit this in practice as the whole OSC sequence must fit in the buffer. When codepoints are sent to the terminal, they are matched continuously whether they match against an url, in which case a hyperlink is created and attached to the cells as well. When mouse hovers over the cells with attached hyperlink, the link is highighted. When clicked, the onHyperlinkOpen event is triggered, which should open the link in a browser. On right button clicik, the onHyperlinkCopy event is triggered, which should copy the url to clipboard instead of opening. */ //@{ public: /** Returns whether the OSC hyperlink extension (OSC 8) is enabled. */ bool allowOSCHyperlinks() const { return allowOSCHyperlinks_; } /** Enables, or disables the OSC hyperlink extension. Note that disabling OSC hyperlinks has no effect on the automatic hyperlink detection. */ virtual void setAllowOSCHyperlinks(bool value = true) { allowOSCHyperlinks_ = value; } /** Returns true if hyperlinks are detected within normal text in the terminal. */ bool detectHyperlinks() const { return detectHyperlinks_; } /** Istructs the terminal to turn automatic hyperlink detection on or off. Note that disabling automatic hyperlink detection has no effect on OSC explicit hyperlinks. */ virtual void setDetectHyperlinks(bool value = true) { detectHyperlinks_ = value; urlMatcher_.reset(); } /** Returns the style used for new hyperlinks. */ Hyperlink::Style const & normalHyperlinkStyle() const { return normalHyperlinkStyle_; } /** Sets the style for new hyperlinks. */ virtual void setNormalHyperlinkStyle(Hyperlink::Style const & value) { normalHyperlinkStyle_ = value; } /** Returns the active (mouse over) style for new hyperlinks. */ Hyperlink::Style const & activeHyperlinkStyle() const { return activeHyperlinkStyle_; } /** Sets the active (mouse over) style for new hyperlinks. */ virtual void setActiveHyperlinkStyle(Hyperlink::Style const & value) { activeHyperlinkStyle_ = value; } protected: /** Returns hyperlink attached to cell at given coordinates. If there are no cells, at given coordinates, or no hyperlink present, returns nullptr. The coordinates are given in widget's contents coordinates. */ Hyperlink * hyperlinkAt(Point widgetCoords) { ASSERT(bufferLock_.locked()); Cell const * cell = cellAt(toContentsCoords(widgetCoords)); return cell == nullptr ? nullptr : dynamic_cast<Hyperlink*>(cell->specialObject()); } /** Resets the hyperlink detection matching. If the matching is in valid state, creates the hyperlink. The reset is done by adding an url separator character, which terminates the url scheme. Any sequence other than SGR ones should reset the hyperlink matching. */ void resetHyperlinkDetection() { detectHyperlink(' '); } /** Adds given character to the url matcher. If adding the character makes a previously valid match invalid, creates the hyperlink and attaches it to its respective cells. */ void detectHyperlink(char32_t next); private: /** When hyperlink is parsed, this holds the special object and the offset of the next cell. If the hyperlink in progress is nullptr, then there is no hyperlink in progress and hyperlink offset has no meaning. */ Hyperlink::Ptr inProgressHyperlink_; /** Hyperlink activated by mouse hover. */ Hyperlink::Ptr activeHyperlink_; /** Url matcher to detect hyperlinks in the terminal output automatically. */ UrlMatcher urlMatcher_; /** If true, OSC hyperlinks are supported. */ bool allowOSCHyperlinks_ = false; /** If true, hyperlinks are autodetected. */ bool detectHyperlinks_ = false; /** Default hyperlink style (for both autodetected and explicit OSC 8 links). */ Hyperlink::Style normalHyperlinkStyle_; /** Active hyperlink style (for both autodetected and explicit OSC 8 links), used when mouse is over the link. */ Hyperlink::Style activeHyperlinkStyle_; //@} /** \name Terminal State and scrollback buffer */ //@{ public: bool boldIsBright() const { return boldIsBright_; } /** Sets whether bold text is rendered with bright colors automatically. The update does not have an immediate effect and the buffer has to be reloaded for the setting to take effect. */ virtual void setBoldIsBright(bool value = true) { boldIsBright_ = value; } bool displayBold() const { return displayBold_; } /** Determines whether bold text is rendered with bold or normal font. The update does not have an immediate effect and the buffer has to be reloaded for the setting to take effect. */ virtual void setDisplayBold(bool value = true) { displayBold_ = value; } /** Returns true if terminal applications can change cursor behavior. Note that the terminal apps can always set cursor visibility. */ bool allowCursorChanges() const { return allowCursorChanges_; } /** Updates whether terminal applications can change cursor behavior. Note that the terminal apps can always set cursor visibility. */ virtual void setAllowCursorChanges(bool value) { allowCursorChanges_ = value; } Color inactiveCursorColor() const { return inactiveCursorColor_; } virtual void setInactiveCursorColor(Color value) { if (inactiveCursorColor_ != value) { inactiveCursorColor_ = value; repaint(); } } /** Sets the cursor appearance. The cursor is set for both normal and alternate buffers. If the application in the terminal chooses to rewrite the cursor settings, it can do so. */ void setCursor(Canvas::Cursor const & value); /** Returns the number of current history rows. Note that to do so, the buffer must be locked as history rows are protected by its mutex so this function is not as cheap as getting a size of a vector. */ int historyRows() { std::lock_guard<PriorityLock> g{bufferLock_}; return static_cast<int>(historyRows_.size()); } int maxHistoryRows() const { return maxHistoryRows_; } void setMaxHistoryRows(int value) { if (value != maxHistoryRows_) { maxHistoryRows_ = std::max(value, 0); std::lock_guard<PriorityLock> g{bufferLock_}; while (historyRows_.size() > static_cast<size_t>(maxHistoryRows_)) { delete [] historyRows_.front().second; historyRows_.pop_front(); } } } protected: void setScrollOffset(Point const & value) override { Widget::setScrollOffset(value); scrollToTerminal_ = value.y() == historyRows(); } /** Returns current cursor position. */ Point cursorPosition() const; void setCursorPosition(Point position); /** Returns the current cursor. */ Cursor & cursor(); /** Inserts given number of lines at given top row. Scrolls down all lines between top and bottom accordingly. Fills the new lines with the provided cell. */ void insertLines(int lines, int top, int bottom, Cell const & fill); /** Deletes lines and triggers the onLineScrolledOut event if appropriate. The event is triggered only if the terminal is in normal mode and if the scroll region starts at the top of the window. */ void deleteLines(int lines, int top, int bottom, Cell const & fill); void addHistoryRow(Cell * row, int cols); void ptyTerminated(ExitCode exitCode) override { schedule([this, exitCode](){ ExitCodeEvent::Payload p{exitCode}; onPTYTerminated(p, this); }); } void resizeHistory(); void resizeBuffers(Size size); // TODO change to int void deleteCharacters(unsigned num); void insertCharacters(unsigned num); /** Returns the top offset of the terminal buffer in the currently drawed. */ int terminalBufferTop() const { ASSERT(bufferLock_.locked()); return alternateMode_ ? 0 : static_cast<int>(historyRows_.size()); } /** Converts the given widget coordinates to terminal buffer coordinates. */ Point toBufferCoords(Point const & widgetCoordinates) { ASSERT(bufferLock_.locked()); return widgetCoordinates + scrollOffset() - Point{0, terminalBufferTop()}; } /** Returns the cell at given coordinates. The coordinates are adjusted for the scroll buffer and then either a terminal buffer, or history cell is returned. In case of history cells, it is possible that no cell exists at the coordinates if the particular line was terminated before, in which case nullptr is returned. Furthermore, if the coordinates are outside of valid range, nullptr is returned as well. */ Cell const * cellAt(Point coords); /** Returns previous cell coordinates in contents coords. (that left of current one) */ Point prevCell(Point coords) const; /** Returns next cell coordinates in contents coords. (that right of current one) */ Point nextCell(Point coords) const; void updateCursorPosition(); enum class MouseMode { Off, Normal, ButtonEvent, All }; // AnsiTerminal::MouseMode enum class MouseEncoding { Default, UTF8, SGR }; // AnsiTerminal::MouseEncoding enum class CursorMode { Normal, Application }; // AnsiTerminal::CursorMode enum class KeypadMode { Normal, Application }; // AnsiTerminal::KeypadMode Palette palette_; CursorMode cursorMode_ = CursorMode::Normal; /** The default cursor as specified by the configuration. */ Canvas::Cursor defaultCursor_; /** Color of the inactive cursor rectangle. */ Color inactiveCursorColor_ = Color::Green; KeypadMode keypadMode_ = KeypadMode::Normal; MouseMode mouseMode_ = MouseMode::Off; MouseEncoding mouseEncoding_ = MouseEncoding::Default; /** Determines whether the line drawing character set is currently active. */ bool lineDrawingSet_ = false; /* Determines whether pasted text will be surrounded by ESC[200~ and ESC[201~ */ bool bracketedPaste_ = false; /** If true, bold font means bright colors too. */ bool boldIsBright_ = false; /** If true, bold font will be displayed. */ bool displayBold_ = true; /** If true, terminal apps can change cursor behavior. */ bool allowCursorChanges_ = true; /** Determines whether alternate mode is active or not. */ bool alternateMode_ = false; /** On when the terminal is scrolled completely in view (i.e. past all history rows) and any history rows added will automatically scroll the terminal as well. */ bool scrollToTerminal_ = true; /** Current state and its backup. The states are swapped and current state kind is determined by the alternateMode(). */ State * state_; State * stateBackup_; mutable PriorityLock bufferLock_; int maxHistoryRows_ = 0; std::deque<std::pair<int, Cell*>> historyRows_; //@} /** \name Input Processing */ //@{ protected: size_t received(char * buffer, char const * bufferEnd) override; void parseCodepoint(char32_t cp); void parseNotification(); void parseTab(); void parseLF(); void parseCR(); void parseBackspace(); size_t parseEscapeSequence(char const * buffer, char const * bufferEnd); size_t parseTppSequence(char const * buffer, char const * bufferEnd); /** Called when `t++` sequence is parsed & received by the terminal. The default implementation simply calls the event handler, if registered. */ virtual void tppSequence(TppSequenceEvent::Payload seq) { onTppSequence(seq, this); } /** Processes given CSI sequence. Special sequences, such as get/set and save/restore sequences are delegated to their own functions, others are processed directly in the method. */ void parseCSISequence(CSISequence & seq); /** Parses CSI getters and setters. These are sequences `?` as the first byte, followed by arbitrary numbers, ending with either `h` or `l`. */ void parseCSIGetterOrSetter(CSISequence & seq, bool value); /** Parses the CSI save and restore commands. These are sequences staring with `?` and ending with `r` or `s`. At the moment, save and restore commands are not supported. */ void parseCSISaveOrRestore(CSISequence & seq); /** Parses special graphic rendition commands. These have final byte of `m`, preceded by numeric arguments. */ void parseSGR(CSISequence & seq); /** Parses the SGR extended color specification, i.e. either TrueColor RGB values, or 256 palette specification. */ Color parseSGRExtendedColor(CSISequence & seq, size_t & i); /** Parses the operating system sequence. */ void parseOSCSequence(OSCSequence & seq); static char32_t LineDrawingChars_[15]; //@} }; // ui::AnsiTerminal // ============================================================================================ /** Terminal's own buffer. Like canvas buffer, but has support for tagging characters that are end of line and provides scrolling history. */ class AnsiTerminal::Buffer : public ui::Canvas::Buffer { friend class AnsiTerminal; public: Buffer(Size const & size, Cell const & defaultCell): ui::Canvas::Buffer(size) { fill(defaultCell); } void insertLine(int top, int bottom, Cell const & fill); std::pair<Cell *, int> copyRow(int row, Color defaultBg); void deleteLine(int top, int bottom, Cell const & fill); void markAsLineEnd(Point p) { if (p.x() >= 0) SetUnusedBits(at(p), END_OF_LINE); } static bool IsLineEnd(Cell const & c) { return GetUnusedBits(c) & END_OF_LINE; } /** Overrides canvas cursor position to disable the check whether the cell has the cursor flag. The cursor in terminal is only one and always valid at the coordinates specified in the buffer. */ Point cursorPosition() const { return cursorPosition_; } void setCursorPosition(Point pos) { cursorPosition_ = pos; } void setCursor(Canvas::Cursor const & value, Point position) { cursor_ = value; cursorPosition_ = position; } /** Fills the entire terminal withe the given cell. */ void fill(Cell const& defaultCell) { for (int i = 0, e = height(); i < e; ++i) fillRow(i, defaultCell, 0, width()); } void resize(Size size, Cell const & fill, std::function<void(Cell*, int)> addToHistory); private: Cell * row(int row) { ASSERT(row >= 0 && row < height()); return rows_[row]; } /** Returns the start of the line that contains the cursor including any word wrap. I.e. if the cursor is on line that started 3 lines above and was word-wrapped to the width of the terminal returns the current cursor row minus three. */ int getCursorRowWrappedStart() const; /** Adjusts the cursor position to remain within the buffer and shifts the buffer if necessary. Makes sure that cursor position is within the buffer bounds. If the cursor is too far left, it is reset on next line, first column. If the cursor is below the buffer the buffer is scrolled appropriately. TODO can this be used by the terminal cursor positioning, perhaps by making sure it works on more than + 1 offsets outside the valid bounds? And also scroll region and so on... */ void adjustCursorPosition(Cell const & fill, std::function<void(Cell*, int)> addToHistory); /** Returns true if the given line contains only whitespace characters from given column to its width. If the column start is greater or equal to the width, returns true. */ bool hasOnlyWhitespace(Cell * row, int from, int width); /** Flag designating the end of line in the buffer. */ static constexpr char32_t END_OF_LINE = 0x200000; }; // ui::AnsiTerminal::Buffer // ============================================================================================ /** Terminal buffer and settings that are specific for each mode (normal vs alternate). */ class AnsiTerminal::State { public: explicit State(Color defaultBackground): State{Size{80,25}, defaultBackground} { } State(Size size, Color defaultBackground): buffer{ size, Cell{}.setBg(defaultBackground) }, canvas{buffer}, scrollEnd{size.height()} { } void reset(Color fg, Color bg) { cell = Cell{}; cell.setFg(fg).setDecor(fg).setBg(bg); // reset the cursor buffer.setCursorPosition(Point{0,0}); // reset state scrollStart = 0; scrollEnd = buffer.height(); inverseMode = false; // clear the buffer canvas.fill(Rect{buffer.size()}, cell); } void resize(Size size, std::function<void(Cell*, int)> addToHistory) { buffer.resize(size, cell, addToHistory); canvas = Canvas{buffer}; scrollStart = 0; scrollEnd = size.height(); } void setCursor(Point pos) { buffer.setCursorPosition(pos); invalidateLastCharacter(); } void saveCursor() { cursorStack_.push_back(buffer.cursorPosition()); } void restoreCursor() { if (cursorStack_.empty()) return; Point pos = cursorStack_.back(); cursorStack_.pop_back(); if (pos.x() >= buffer.width()) pos.setX(buffer.width() - 1); if (pos.y() >= buffer.height()) pos.setX(buffer.height() - 1); buffer.setCursorPosition(pos); } void markLineEnd() { buffer.markAsLineEnd(lastCharacter_); } void invalidateLastCharacter() { lastCharacter_ = Point{1,1}; } void setLastCharacter(Point p) { lastCharacter_ = p; } Buffer buffer; Canvas canvas; Cell cell; int scrollStart{0}; int scrollEnd; bool inverseMode = false; /** When bold is bright *and* bold is not displayed this is the only way to determine whether to use bright colors because the cell's font is not bold. */ bool bold = false; protected: Point lastCharacter_ = Point{-1,-1}; std::vector<Point> cursorStack_; }; // ui::AnsiTerminal::State // ============================================================================================ inline Point AnsiTerminal::cursorPosition() const { return state_->buffer.cursorPosition(); } inline void AnsiTerminal::setCursorPosition(Point position) { state_->buffer.setCursorPosition(position); } inline AnsiTerminal::Cursor & AnsiTerminal::cursor() { return state_->buffer.cursor(); } } // namespace ui
5e3a7f324b747d424d369fd177b81034af5960d3
189a10bd39e004c61737e736472059a95dcad2b2
/lib/src/species.h
c54ddb8aca9aff67f6813bb7d4ca662166882532
[]
no_license
dklong-csu/mepbm
164b9024f78b622ad41c3e3383854311a2734cab
afba336aa9379758caee5f56cd02d8c286eadbd9
refs/heads/main
2023-06-07T11:38:53.395531
2023-06-06T13:56:30
2023-06-06T13:56:30
283,408,189
0
0
null
2023-06-06T13:56:32
2020-07-29T05:35:31
C++
UTF-8
C++
false
false
591
h
species.h
#ifndef MEPBM_SPECIES_H #define MEPBM_SPECIES_H namespace MEPBM { /** * A Species is a container that associates an index in a vector with a chemical species to facilitate more readable code. */ class Species { public: /// Constructor not providing the vector index. Useful when the index will be decided at a later time. Species() {} /// Constructor providing the vector index. Useful when the index is know at the time of construction. Species(const unsigned int index) : index(index) {} unsigned int index; }; } #endif //MEPBM_SPECIES_H
ac5e84132d8a4744d57c863a73887276004d1099
16635717e8eef08a71c39866167f6f74b6104160
/notation.cpp
c6143518a72193df10bccf594f5db19a572577a0
[]
no_license
GauravPnt/Chess-Engine
0d1a20d8ef84fe98e8377539bb7d91332c9831d7
0e7bf7836286aa9fc314103ad30e434d47ce0644
refs/heads/master
2021-07-04T19:12:56.904537
2020-11-08T07:21:59
2020-11-08T07:21:59
197,606,539
0
0
null
2020-11-08T07:22:00
2019-07-18T14:51:04
C++
UTF-8
C++
false
false
3,995
cpp
notation.cpp
#include"board.hpp" #include"hash.hpp" #include"move.hpp" const std::string START_FEN = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"; void ParseFen(std::shared_ptr<BOARD> pos, const std::string fen) { int count = 0; int rank = RANK_8; int file = FILE_A; int idx = 0; int sq64 = 0; ResetBoard(pos); for(auto i : fen) { ++idx; if(sq64 >= 64) break; count = 1; switch(i) { case 'r' : pos->pieces[FR2SQ(file, rank)] = bR; break; case 'n' : pos->pieces[FR2SQ(file, rank)] = bN; break; case 'b' : pos->pieces[FR2SQ(file, rank)] = bB; break; case 'q' : pos->pieces[FR2SQ(file, rank)] = bQ; break; case 'k' : pos->pieces[FR2SQ(file, rank)] = bK; break; case 'p' : pos->pieces[FR2SQ(file, rank)] = bP; break; case 'R' : pos->pieces[FR2SQ(file, rank)] = wR; break; case 'N' : pos->pieces[FR2SQ(file, rank)] = wN; break; case 'B' : pos->pieces[FR2SQ(file, rank)] = wB; break; case 'Q' : pos->pieces[FR2SQ(file, rank)] = wQ; break; case 'K' : pos->pieces[FR2SQ(file, rank)] = wK; break; case 'P' : pos->pieces[FR2SQ(file, rank)] = wP; break; case '1' : case '2' : case '3' : case '4' : case '5' : case '6' : case '7' : case '8' : count = i - '0'; pos->pieces[FR2SQ(file, rank)] = EMPTY; break; case '/' : case ' ' : file = FILE_A, --rank; continue; default : std::cerr << "Invalid FEN\n"; } for(int i = 0; i < count; ++i) ++sq64, ++file; } pos->side = (fen[idx] == 'w' ? WHITE : BLACK ); idx += 2; while(fen[idx] != ' ') { switch(fen[idx]) { case 'K' : pos->castlePerm |= WKCA; break; case 'Q' : pos->castlePerm |= WQCA; break; case 'k' : pos->castlePerm |= BKCA; break; case 'q' : pos->castlePerm |= BQCA; break; default : break; } ++idx; } if(fen[++idx] != '-') { int file = fen[idx] - 'a'; int rank = fen[++idx] - '1'; pos->enPas = FR2SQ(file, rank); } ++idx; pos->fifty_move = fen[++idx] - '0'; pos->ply = 0; pos->key = GeneratePosKey(pos); UpdateListMaterial(pos); } std::string PrSq(const int sq) { int file = FilesBrd[sq]; int rank = RanksBrd[sq]; std::string res = {char(file + 'a'), char(rank + '1')}; return res; } std::string PrMove(const int move) { int ff = FilesBrd[FROMSQ(move)]; int ft = FilesBrd[TOSQ(move)]; int rf = RanksBrd[FROMSQ(move)]; int rt = RanksBrd[TOSQ(move)]; int promoted = PROMOTED(move); std::string res = {(char)(ff + 'a'), (char)(rf + '1'), (char)(ft + 'a'), (char)(rt + '1')}; if (promoted) { char pchar = 'q'; if (isN(promoted)) pchar = 'n'; else if (isR(promoted)) pchar = 'r'; else if (isB(promoted)) pchar = 'b'; res += pchar; } return res; } int ParseMove(std::shared_ptr<const BOARD> pos, std::string input) { if(input.size() < 4 && input.size() > 5) { return NOMOVE; } if(input[0] < 'a' || input[0] > 'h' || input[1] < '1' || input[1] > '8' || input[2] < 'a' || input[2] > 'h' || input[3] < '1' || input[3] > '8') { return NOMOVE; } int from = FR2SQ(input[0] - 'a', input[1] - '1'); int to = FR2SQ(input[2] - 'a', input[3] - '1'); assert(OnBoard(from) && OnBoard(to)); std::shared_ptr<MOVE_LIST> list(new MOVE_LIST); GenerateAllMoves(pos, list); for(int MoveNum = 0; MoveNum < list->count; ++MoveNum) { MOVE move = list->moves[MoveNum]; if(FROMSQ(move.move) == from && TOSQ(move.move) == to) { int promoted = PROMOTED(move.move); if(input.size() == 5 && promoted != EMPTY) { if(isQ(promoted) && input[4] == 'q' || isR(promoted) && input[4] == 'r' || isN(promoted) && input[4] == 'n' || isB(promoted) && input[4] == 'b') return move.move; } else return move.move; } } return NOMOVE; }
9b73d4ce0fb446c3a2bf2e981f4e4cec9266166e
3954d5508f4aa7780d96b753c708ac5acc9c123b
/src/timer.cpp
9171b72d1afc8e63fb57c104c3c7cbbfda44da33
[ "MIT" ]
permissive
LittleChimera/rala
0e4d7ee33a54933d287bbaa9a933a1bb33706887
5952fd3d84cc3361bacc6566cdc03d7c7045957c
refs/heads/master
2021-09-18T04:46:55.787691
2018-07-09T20:39:27
2018-07-09T20:39:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
734
cpp
timer.cpp
/*! * @file timer.cpp * * @brief Timer class source file */ #include <stdio.h> #include "timer.hpp" namespace rala { Timer::Timer() : paused_(false), time_(0), timeval_() { } void Timer::start() { gettimeofday(&timeval_, nullptr); paused_ = false; } void Timer::stop() { if (paused_) { return; } timeval stop; gettimeofday(&stop, nullptr); time_ += ((stop.tv_sec - timeval_.tv_sec) * 1000000L + stop.tv_usec) - timeval_.tv_usec; paused_ = true; } void Timer::reset() { gettimeofday(&timeval_, nullptr); time_ = 0; paused_ = false; } void Timer::print(const char* message) const { fprintf(stderr, "%s %.5lf s\n", message, time_ / (double) 1000000); } }
5619a4a8dc90e8d34966430388462d5c329fed04
be724f67276438b10c7fa48ec6f17c1c3769eafa
/Trax/src/ecs/Entity.cpp
cbd7266415659ba772cdf521b743c5c7004b3cdc
[]
no_license
zlindner/Trax
403d25bd826bec3ed4c8178df1d10f60dab421bb
8da8299258ec2265b0943806bf836f844183ce0c
refs/heads/master
2020-03-19T21:45:24.450207
2018-06-14T19:21:06
2018-06-14T19:21:06
136,949,050
0
0
null
null
null
null
UTF-8
C++
false
false
792
cpp
Entity.cpp
// // Entity.cpp // Trax // // Created by Zach Lindner on 2018-06-11. // Copyright ยฉ 2018 Zach Lindner. All rights reserved. // #include "Entity.hpp" #include "Component.hpp" #include "ECS.hpp" #include "Manager.hpp" Entity::Entity(Manager &m) : manager(m) { } void Entity::update() { for (auto &c : components) { c->update(); } } void Entity::draw() { for (auto &c : components) { c->draw(); } } void Entity::destroy() { active = false; } bool Entity::is_active() { return active; } bool Entity::has_group(std::size_t g) { return group_bitset[g]; } void Entity::add_group(std::size_t g) { group_bitset[g] = true; manager.add_to_group(this, g); } void Entity::delete_group(std::size_t g) { group_bitset[g] = false; }
d51cf3889d9e2b5b9497265f66c04def5ba78d5a
37eb4fc9cc2d812f83a559a7d8855e949b47961a
/Count And Say.cpp
c432ac9452fd2c9273f461d0a18a7de7836bc4f8
[]
no_license
zeonyu/Leetcode
ef05c465225230c151bbbbcac4967b4427775928
9b1d33503842c53af7fbee80a2b7b6dd48aa29e7
refs/heads/master
2020-04-12T17:24:49.601288
2014-12-13T16:45:56
2014-12-13T16:45:56
28,000,924
1
0
null
null
null
null
UTF-8
C++
false
false
615
cpp
Count And Say.cpp
#include<iostream> using namespace std; class Solution { public: string countAndSay(int n) { string result; if(n <= 0) return result; result = "1"; string lastStr = result; for(int i = 1; i < n; ++i){ lastStr = result; result.clear(); int len = lastStr.length(); for(int j = 0; j < len; ++j){ int count = 1; while(j < len -1 && lastStr[j] == lastStr[j+1]){ ++j; ++count; } result += count + '0'; result += lastStr[j]; } } return result; } }; int main(void){ Solution s; string res = s.countAndSay(9); getchar(); return 0; }
f451b331f142d59935bbb98cdf853c0c94c5951d
a5406087be04d0946cd9ece86af080aa893dfdd1
/socket/tcp/cli.cc
06bd1e59eee1a610fd2a67e4ca77ca2db711c50c
[]
no_license
lyyyyc/test
86de55b1101c54e5d6d53bef506fac4777d5fc0f
bf53de9a9ee1e5e023e17d9c59511e34015bd8f5
refs/heads/master
2022-12-10T02:44:18.389565
2020-08-31T07:38:03
2020-08-31T07:38:03
286,398,678
0
0
null
null
null
null
UTF-8
C++
false
false
812
cc
cli.cc
//tcpๅฎขๆˆท็ซฏ้€šไฟกๆต็จ‹ //1.ๅˆ›ๅปบๅฅ—ๆŽฅๅญ— //2.ไธบๅฅ—ๆŽฅๅญ—็ป‘ๅฎšๅœฐๅ€ไฟกๆฏ //3.ๅ‘ๆœๅŠก็ซฏๅ‘่ตท่ฟžๆŽฅ่ฏทๆฑ‚ //4ใ€‚ๅ‘้€ๆ•ฐๆฎ //5.ๆŽฅๆ”ถๆ•ฐๆฎ //6.ๅ…ณ้—ญๅฅ—ๆŽฅๅญ— // #include <stdio.h> #include <signal.h> #include <sys/wait.h> #include "tcp.hpp" void sigcb(int signo){ std::cout<<"recv a signo SIGPIPE --- connect shutdown\n"; } int main(int argc, char *argv[]){ if(argc != 3){ std::cerr<<"./cli ip port"<<std::endl; return -1; } signal(SIGPIPE, sigcb); TcpSocket sock; CHECK_RET(sock.Socket()); CHECK_RET(sock.Connect(argv[1], argv[2])); while(1){ std::string buf; std::cout<<"client say:"; fflush(stdout); std::cin>>buf; sock.Send(buf); buf.clear(); sock.Recv(buf); std::cout<<"server say:"<<buf<<std::endl; } sock.Close(); return 0; }
a9e5c71d84b1790db9117bb9791c9a3653641d93
1f0e2664b03dcade95b29e78014848d9b00c2b75
/infrastructures/improve/exception_safe/action.h
dc6347eeab01d0c4ce5b7b86082d27089f348f30
[]
no_license
zwj/statana
dee8e3bd0b4b52f231c1e016a6f2ffafc007d9ff
d062ae92ec50203554f71ad0bc9a6459e555ed64
refs/heads/master
2021-04-12T05:03:28.214811
2011-05-14T06:20:00
2011-05-14T06:20:00
1,746,688
0
0
null
null
null
null
UTF-8
C++
false
false
428
h
action.h
#if !defined EXCEPTION_SAFE_ACTION #define EXCEPTION_SAFE_ACTION /* Name: exception_safe_machine acthion.h Author: zuowenjian Description: Date: 30-07-02 21:27 Copyright: */ #include <boost/shared_ptr.hpp> namespace improve { class action { public: typedef boost::shared_ptr<action> shared_ptr; action(){}; virtual ~action(){}; virtual void undo()=0; }; } #endif //!defined EXCEPTION_SAFE_ACTION
aa1bf277e57d59ee7a2355f07f31e56451f0495a
578f1e3e65c67db94b0abc4967e690004247c3b2
/regionales/cat/2021/clasificatori/a.cpp
a3dc6db7ac70ac0a3d612c39280749e593f6ad81
[]
no_license
Farrius/cp
028146987efaf43be8d8e653014b8fb2d616c288
341faf32de77e566a12bc68819b4e81ed94c0030
refs/heads/master
2023-08-16T15:01:20.678334
2021-09-26T17:17:14
2021-09-26T17:17:14
298,070,687
2
0
null
null
null
null
UTF-8
C++
false
false
415
cpp
a.cpp
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; int main () { int n; while (cin >> n) { ld ar[n]; ld tot = 0; for (int i = 0; i < n; i++) { cin >> ar[i]; tot += ar[i]; } tot /= n; bool ok = true; for (int i = 0; i < n; i++) { if (ar[i] > tot) { cout << "si" << '\n'; ok = false; break; } } if (ok) cout << "no" << '\n'; } }
7d1e995db0b8960592fc6ace138c14905621ce9e
e467aaa1526f50638eb8feb4e9de8e4fefbd95a5
/ClassWork9/Task01/Document.cpp
dd68def2df46e4b02b43c0a823c30598d42e3787
[]
no_license
KazzModan/My-projects
09114c8d89e7116d7c6f4e6eeaa3e797afbefd53
27d3c933cbd66c80fb3ada65980eaa0366490e21
refs/heads/master
2023-01-13T07:43:17.203421
2020-11-22T14:58:30
2020-11-22T14:58:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,844
cpp
Document.cpp
#include "Document.h" void Document::print() { cout << "name of doc:" << _name << ".txt" << endl; cout << "size of doc: " << _size << " Bit" << endl; cout << "priority of doc: "; switch (_acces) { case Document::SUCKER: cout << "Sucker\n"; break; case Document::WORKER: cout << "Worker\n"; break; case Document::BOOKER: cout << "Booker\n"; break; case Document::BOSS: cout << "Boss of this gym\n"; break; case Document::NONE: cout << "None\n"; default: break; } } bool Document::setName(string name) { if (!name.empty()) { _name = name; return true; } return false; } bool Document::setSize(size_t size) { if (size < 200000) { _size = size; return true; } return false; } bool Document::setType(size_t acc) { switch (acc) { case 1: _acces = SUCKER; return true; break; case 2: _acces = WORKER; return true; break; case 3: _acces = BOOKER; return true; break; case 4: _acces = BOSS; return true; break; default: _acces = NONE; return false; break; } } int Document::getLvlv() const { return this->_acces; } Document::Document() { _name = ""; _size = 0; _acces = NONE; } Document::Document(size_t size, string name, size_t acc) { setSize(size); setName(name); setType(acc); } Document::~Document() { _name = ""; _size = 0; _acces = NONE; } bool Document::operator>(const Document& doc) const { return (this->getLvlv() > doc.getLvlv()); } bool Document::operator<(const Document& doc) const { return (this->getLvlv() < doc.getLvlv()); } bool Document::operator>=(const Document& doc) const { return (this->getLvlv() >= doc.getLvlv()); } bool Document::operator<=(const Document& doc) const { return (this->getLvlv() < +doc.getLvlv()); } string Document::getName() const { return _name; } size_t Document::getSize() const { return _size; }
866cfbe1ccfee2ddba7644c423c97b6b71e3228f
5ffdfe437190e070c8ddc2fa2c22f576eabf859a
/day05/ex02/ShrubberyCreationForm.hpp
4b23800f5b7527679f7ecfc29ebef547b22878db
[]
no_license
paulineggf/42-Modules_CPP
d173a7890290aea71a1ac978972c767e550b8e30
9c1ce8769b5371b7d36650a0d361bf0d965e8960
refs/heads/master
2022-12-17T04:44:44.718314
2020-09-12T14:16:00
2020-09-12T14:16:00
248,747,319
0
1
null
null
null
null
UTF-8
C++
false
false
363
hpp
ShrubberyCreationForm.hpp
#ifndef SHRUBBERYCREATIONFORM_HPP # define SHRUBBERYCREATIONFORM_HPP # include "Form.hpp" class ShrubberyCreationForm : public Form { private: std::string _target; ShrubberyCreationForm(); virtual void executeForm() const; public: ShrubberyCreationForm(std::string const &target); ~ShrubberyCreationForm(); }; #endif
306030bcf62c6f224cb18f875fe846f23a396c16
b1b734ab75a6fe114733d3c0b8ca5046d54b407d
/third_party/aten/aten/src/THNN/init.cpp
ad276f9e5fffb28e62cb5b75431c3117a0c691af
[ "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "BSD-2-Clause", "Apache-2.0" ]
permissive
waybarrios/video_nonlocal_net_caffe2
754fea2b96318d677144f16faadf59cb6b00189b
b19c2ac3ddc1836d90d7d0fccb60d710c017253e
refs/heads/master
2020-04-20T03:15:12.286080
2019-01-31T20:44:01
2019-01-31T20:44:01
168,593,110
0
0
Apache-2.0
2019-01-31T20:40:40
2019-01-31T20:40:39
null
UTF-8
C++
false
false
8,990
cpp
init.cpp
#include "TH.h" #include "THNN.h" #define torch_(NAME) TH_CONCAT_3(torch_, Real, NAME) #define nn_(NAME) TH_CONCAT_3(nn_, Real, NAME) #define THNN_CHECK_SHAPE(I1, I2) \ if (I1 != NULL && I2 != NULL && !THTensor_(isSameSizeAs)(I1, I2)) \ { \ THDescBuff s1 = THTensor_(sizeDesc)(I1); \ THDescBuff s2 = THTensor_(sizeDesc)(I2); \ THError(#I1 " and " #I2 " shapes do not match: " \ #I1 " %s, " #I2 " %s", s1.str, s2.str); \ } #define THNN_CHECK_SHAPE_INDICES(I1, I2) \ THLongStorage *size2 = THLongTensor_newSizeOf(I2); \ if (I1 != NULL && I2 != NULL && !THTensor_(isSize)(I1, size2)) \ { \ THDescBuff s1 = THTensor_(sizeDesc)(I1); \ THDescBuff s2 = THLongTensor_sizeDesc(I2); \ THLongStorage_free(size2); \ THError(#I1 " and " #I2 " shapes do not match: " \ #I1 " %s, " #I2 " %s", s1.str, s2.str); \ } else { \ THLongStorage_free(size2); \ } #define THNN_CHECK_NELEMENT(I1, I2) \ if (I1 != NULL && I2 != NULL ) { \ ptrdiff_t n1 = THTensor_(nElement)(I1); \ ptrdiff_t n2 = THTensor_(nElement)(I2); \ if (n1 != n2) \ { \ THDescBuff s1 = THTensor_(sizeDesc)(I1); \ THDescBuff s2 = THTensor_(sizeDesc)(I2); \ THError(#I1 " and " #I2 " have different number of elements: " \ #I1 "%s has %ld elements, while " \ #I2 "%s has %ld elements", s1.str, n1, s2.str, n2); \ } \ } #define THNN_CHECK_DIM_SIZE(T, DIM, DIM_SIZE, SIZE) \ if (THTensor_(nDimension)(T) != DIM || \ THTensor_(size)(T, DIM_SIZE) != SIZE) { \ THDescBuff s1 = THTensor_(sizeDesc)(T); \ THError("Need " #T " of dimension %d and " #T ".size[%d] == %d" \ " but got " #T " to be of shape: %s", DIM, DIM_SIZE, SIZE, s1.str); \ } #define THNN_CHECK_DIM_SIZE_INDICES(T, DIM, DIM_SIZE, SIZE) \ if (THIndexTensor_(nDimension)(T) != DIM || \ THIndexTensor_(size)(T, DIM_SIZE) != SIZE) { \ THDescBuff s1 = THIndexTensor_(sizeDesc)(T); \ THError("Need " #T " of dimension %d and " #T ".size[%d] == %d" \ " but got " #T " to be of shape: %s", DIM, DIM_SIZE, SIZE, s1.str); \ } #define THNN_ARGCHECK(COND, ARG, T, FORMAT) \ if (!(COND)) { \ THDescBuff s1 = THTensor_(sizeDesc)(T); \ THArgCheck(COND, ARG, FORMAT, s1.str); \ } #include "generic/Abs.c" #include "THGenerateFloatTypes.h" #include "generic/AbsCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/BCECriterion.c" #include "THGenerateFloatTypes.h" #include "generic/ClassNLLCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/Col2Im.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialClassNLLCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/DistKLDivCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/ELU.c" #include "THGenerateFloatTypes.h" #include "generic/HardShrink.c" #include "THGenerateFloatTypes.h" #include "generic/HardTanh.c" #include "THGenerateFloatTypes.h" #include "generic/Im2Col.c" #include "THGenerateFloatTypes.h" #include "generic/GatedLinearUnit.c" #include "THGenerateFloatTypes.h" #include "generic/L1Cost.c" #include "THGenerateFloatTypes.h" #include "generic/LeakyReLU.c" #include "THGenerateFloatTypes.h" #include "generic/FusedRNNKernel.c" #include "THGenerateFloatTypes.h" #include "generic/LogSigmoid.c" #include "THGenerateFloatTypes.h" #include "generic/LogSoftMax.c" #include "THGenerateFloatTypes.h" #include "generic/LookupTable.c" #include "THGenerateFloatTypes.h" #include "generic/MSECriterion.c" #include "THGenerateFloatTypes.h" #include "generic/MarginCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/SoftMarginCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/MultiLabelMarginCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/MultiMarginCriterion.c" #include "THGenerateFloatTypes.h" #include "generic/Linear.c" #include "THGenerateFloatTypes.h" #include "generic/PReLU.c" #include "THGenerateFloatTypes.h" #include "generic/RReLU.c" #include "THGenerateFloatTypes.h" #include "generic/Sigmoid.c" #include "THGenerateFloatTypes.h" #include "generic/SmoothL1Criterion.c" #include "THGenerateFloatTypes.h" #include "generic/SoftMax.c" #include "THGenerateFloatTypes.h" #include "generic/SoftPlus.c" #include "THGenerateFloatTypes.h" #include "generic/SoftShrink.c" #include "THGenerateFloatTypes.h" #include "generic/SparseLinear.c" #include "THGenerateFloatTypes.h" #include "generic/IndexLinear.c" #include "THGenerateFloatTypes.h" #include "generic/Sqrt.c" #include "THGenerateFloatTypes.h" #include "generic/Square.c" #include "THGenerateFloatTypes.h" #include "generic/Tanh.c" #include "THGenerateFloatTypes.h" #include "generic/Threshold.c" #include "THGenerateFloatTypes.h" // this file is used in TemporalUpsamplingLinear, SpatialUpsamplingBilinear, and // VolumetricUpsamplingTrilinear, and thus needs to be included before those. #include "generic/linear_upsampling.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalSubSampling.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalRowConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalUpSamplingNearest.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalUpSamplingLinear.c" #include "THGenerateFloatTypes.h" #include "generic/FeatureLPPooling.c" #include "THGenerateFloatTypes.h" #include "generic/BatchNormalization.c" #include "THGenerateFloatTypes.h" #include "generic/unfold.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialConvolutionMap.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialConvolutionMM.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialConvolutionLocal.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialFullDilatedConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialFullConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialFullConvolutionMap.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialDilatedConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialAdaptiveMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialAdaptiveAveragePooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialAveragePooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialFractionalMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialDilatedMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialMaxUnpooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialSubSampling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialUpSamplingNearest.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialUpSamplingBilinear.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialGridSamplerBilinear.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricAveragePooling.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricConvolutionMM.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricFullDilatedConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricFullConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricDilatedConvolution.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricAdaptiveMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricAdaptiveAveragePooling.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricDilatedMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricFractionalMaxPooling.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricMaxUnpooling.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialReflectionPadding.c" #include "THGenerateFloatTypes.h" #include "generic/SpatialReplicationPadding.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalReflectionPadding.c" #include "THGenerateFloatTypes.h" #include "generic/TemporalReplicationPadding.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricReplicationPadding.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricUpSamplingNearest.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricUpSamplingTrilinear.c" #include "THGenerateFloatTypes.h" #include "generic/VolumetricGridSamplerBilinear.c" #include "THGenerateFloatTypes.h"
3fac79468be2897a38d02780b7fca277ca5d1fd5
d6f3668b930770e3d63bfb5c6fbfeeb187f1c607
/BassZeroVSTi/Source/Model/Communication/ParameterMapEntry.h
569eaec516fc38f9012520539febc17713eb27f6
[]
no_license
gorangrubic/imbAVR.ArduinoSynth
97240e751f1833a2c9fa472143fbb741b1ce07a8
45a9d15e64881bf44e50f3567203b5899f49e9d6
refs/heads/master
2020-07-09T00:58:50.968308
2019-10-28T05:25:54
2019-10-28T05:25:54
203,828,714
0
0
null
null
null
null
UTF-8
C++
false
false
814
h
ParameterMapEntry.h
/* ============================================================================== ParameterMapEntry.h Created: 26 Oct 2019 4:07:10am Author: gorangrubic ============================================================================== */ #pragma once #include "../JuceLibraryCode/JuceHeader.h" #include "../Source/Data/Model/dataObjectPropertyBase.h" //#include "../Source/Data/Model/dataObjectPropertyEnumerations.h" //#include "../Source/Control/imbControlParameterEnumerations.h" class ParameterMapEntry { public: int id; std::shared_ptr<dataObjectPropertyBase> data; ParameterMapEntry(int _id, dataObjectPropertyBase * _data); }; ParameterMapEntry::ParameterMapEntry(int _id, dataObjectPropertyBase * _data) { data = std::shared_ptr<dataObjectPropertyBase>(_data); id = _id; }
bec378d464a2a4afaa762aa1b5779a3f7c724000
48b86995cddd72e5caf11a171247930ae7a77804
/gameserver/RankManager.h
10a9b118aaed918a585c7b25265433b98dea4000
[]
no_license
kingstop/DreamHeroes
0250988ac583bce074336a1bae07bb0f4ab55ecd
c8299c9d3a6cca7d71cf859706fdf2d4a21a8906
refs/heads/master
2020-12-04T01:37:44.579005
2017-10-10T10:14:22
2017-10-10T10:14:22
67,582,868
0
0
null
null
null
null
UTF-8
C++
false
false
1,024
h
RankManager.h
#pragma once #include <iostream> #include <list> struct DailyGameRankTg { std::string name_; account_type acc_; int score_; int rank_; u32 time_; }; class RankManager : public EventableObject { public: typedef std::list<DailyGameRankTg> HEROESDAILYRANK; public: RankManager(); virtual ~RankManager(); void Init(); void Load(DBQuery* p); void updateHeroDailyRank(account_type acc, const char* name, int score,int& rank); void removeHero(account_type acc); int getHeroDailyRank(account_type acc); void DailyGameUpdate(); int GetDailyGamePrize(int rank); u32 getDailyGameBeginTime(); void setMaxDailyProgress(int progress); int getMaxDailyProgress(); void setDailyGameBeginTime(u32 begin_time); void setDailyMaxRankSize(int rank_size); HEROESDAILYRANK* getHeroesRank(); void ClearRankList(); void save(); public: HEROESDAILYRANK _heroes_daily_rank; std::map<account_type, int> _heroes_rank; int _daily_max_rank_size; int _min_daily_score; u32 _daily_game_begin_time; int _max_daily_progress; };
471bb1e727fcbcf6d37f487881dde3a7d25b0eba
d37a1a8232f6914bba0e080fd951759cf9e41c8d
/implementation1.cpp
14b6b18accb4eec10c6e103f294dfe8cdcdb9bb3
[]
no_license
indranil2507/hacker-rank
2dedc88ea1770c0effab2fdc8a3316c8e2e1965b
7e21be612e26ab361d1d83214de8a591f34e193d
refs/heads/master
2023-06-07T19:55:09.623941
2021-06-24T19:01:59
2021-06-24T19:01:59
379,407,739
0
0
null
null
null
null
UTF-8
C++
false
false
658
cpp
implementation1.cpp
#include <iostream> using namespace std; bool isPallindrome(int n) { int num = n; int digit = 0, newnum = 0; while (num != 0) { digit = num % 10; newnum = newnum * 10 + digit; num = num / 10; } // cout<<newnum; if (newnum == n) { return true; } else { return false; } } int main() { int arr[5] = {1, 111, 1211, 252, 22}; int maximum = 0; for (int i = 0; i < 5; i++) { if (isPallindrome(arr[i])) { maximum = max(maximum, arr[i]); } } cout << maximum; // cout << isPallindrome(1221); // cout << 1; }
74b6c493301ffb1adaf49003dd9e8b46d082fff6
70314ffe48dd5c6a1c8e9f7f13baa16af2e2cbef
/BOJ/์ง•๊ฒ€๋‹ค๋ฆฌ.cpp
8941366695756293180033246ecbf475a73cf7bf
[]
no_license
WiseCow/algorithm
2cb2a0a1d1fa37bd69d36506792f8f75133382d7
1b86951116f610d90d636f843652930f71141ddf
refs/heads/master
2021-01-17T20:38:09.496349
2019-01-09T14:11:08
2019-01-09T14:11:08
68,787,903
0
0
null
null
null
null
UTF-8
C++
false
false
726
cpp
์ง•๊ฒ€๋‹ค๋ฆฌ.cpp
#include<iostream> #include<cstring> using namespace std; #define mod 1000000009 int N, K, L, map[50001]; long long D[50001]; int sol(int now,int prev) { if (now == N) return 1; if (now > N) return 0; long long &ret = D[now]; if (ret != -1) return ret; ret = 0; for (int i = 1; i <= K; i++) { if (i != prev&&now + i <= N&&!map[now + i]) { ret=(ret+sol(now + i, i))%mod; } } return ret; } int main() { int tc; cin>>tc; for (int itr = 0; itr < tc; itr++) { cin>>N>>K>>L; memset(map, 0, sizeof(map)); memset(D, -1, sizeof(D)); for (int i = 0; i < L; i++) { int t; cin>>t; map[t]++; } cout<<"Case #"<<itr+1<<"\n"<<sol(0,0)<<"\n"; } }
82e0aa376c9eb908cb670ab9225498be4454a306
343fd3f2ea312dcb3dcab12941c9811259db1b2b
/singlelist.cpp
e35ae4b16cf357885d9b455cdb054a2dba0e590b
[]
no_license
Ciphercrypt/Data-structures-programs
c232605d11a1f73853df75cb4c939366d5e9f696
60929f93d64b0e58400b75828a707ef8867f981d
refs/heads/main
2023-01-27T19:23:02.244874
2020-12-11T02:48:25
2020-12-11T02:48:25
320,438,857
2
0
null
null
null
null
UTF-8
C++
false
false
7,804
cpp
singlelist.cpp
#include<iostream> using namespace std; class Llist { struct node { int value; struct node *next; }; struct node *start; struct node *new_node; struct node *ptr; struct node *save; struct node *temp; struct node *copy_; int count; public: Llist () { start = NULL; count = 0; } void create_Llist (int num) { while (num != -1) { new_node = new node; new_node->value = num; new_node->next = start; start = new_node; count++; cin >> num; } } void create_Llist_back (int num) { while (num != -1) { if (start == NULL) { new_node = new node; new_node->value = num; new_node->next = start; start = new_node; save = new_node; count++; } else { new_node = new node; new_node->value = num; new_node->next = NULL; save->next = new_node; save = new_node; count++; } cin >> num; } } void insert_beg (int num) { new_node = new node; new_node->value = num; new_node->next = start; start = new_node; } void insert_end (int num) { new_node = new node; new_node->value = num; new_node->next = NULL; save->next = new_node; save = new_node; } void insert_after (int given, int num) { copy_ == NULL; ptr = start; while (ptr != NULL) { if (ptr->value == given) { break; } ptr = ptr->next; } new_node = new node; new_node->value = num; new_node->next = ptr->next; ptr->next = new_node; } void insert_before (int given, int num) { ptr = start; while (ptr != NULL) { if (ptr->value == given) { break; } copy_ = ptr; ptr = ptr->next; } if (copy_ == NULL) { insert_beg (num); } else { new_node = new node; new_node->value = num; new_node->next = copy_->next; copy_->next = new_node; } } void insert_sort (int num) { ptr = start; while (ptr != NULL) { if (ptr->value > num) { break; } copy_ = ptr; ptr = ptr->next; } if (ptr == NULL) { insert_end (num); } else if (copy_ == NULL) { insert_beg (num); } else { new_node = new node; new_node->value = num; new_node->next = copy_->next; copy_->next = new_node; } } void del_beg () { temp = start; start = temp->next; temp->next = NULL; delete temp; } void del_end () { ptr = start; save = NULL; while (ptr->next != NULL) { save = ptr; ptr = ptr->next; } save->next = NULL; delete ptr; } void del_given_no (int no) { ptr = start; save = NULL; while (ptr != NULL) { if (ptr->value == no) break; save = ptr; ptr = ptr->next; } if (save == NULL) { del_beg (); } else if (ptr == NULL) { cout << "Number doesn't exist" << endl; } else { save->next = ptr->next; ptr->next = NULL; delete ptr; } } void del_given_pos (int pos) { ptr = start; save = NULL; int count = 0; while (ptr != NULL) { count++; if (count == pos) break; save = ptr; ptr = ptr->next; } if (save == NULL) { del_beg (); } else if (ptr == NULL) { cout << "Number doesn't exist" << endl; } else { save->next = ptr->next; ptr->next = NULL; delete ptr; } } void del_same () { ptr = start; } void sort () { for (int p = 1; p < count; p++) { save = start; for (int c = 0; c < (count - p); c++) { ptr = save; save = ptr->next; if (ptr->value > save->value) { int copy = ptr->value; ptr->value = save->value; save->value = copy; } } } } void show () { cout << endl << endl; ptr = start; while (ptr != NULL) { cout << ptr->value << endl; ptr = ptr->next; } } }; int main () { int n, num, given; char a; Llist obj1; int created = false; cout << "Select any of the following operations using index number of the option" << endl; cout << "1. Create a linked list" << endl << "2. Display the linked list" << endl << "3. insert an element to the list" << endl; cout << "4. Deleting an Element" << endl << "5. Sorting the list" << endl << "Insert in the sorted list" << endl; cout << "Enter -1 for termination/ completion of any function / program" << endl; cin >> n; while (n != -1) { switch (n) { case 1: { cout << "Enter how you want to create the list" << endl; cout << "b for insertion at beginning" << endl; cout << "e for insertion at the end" << endl; cin >> a; if (a == 'b' || a == 'B') { cin >> num; obj1.create_Llist (num); created = true; } else if (a == 'e' || a == 'E') { cin >> num; obj1.create_Llist_back (num); created = true; } else { cout << "invalid option. Try again" << endl; } break; } case 2: { if (created) obj1.show (); else cout << "list not created"; break; } case 3: { cout << "enter the following option for insertion" << endl; cout << "b for insertion at beginning" << endl; cout << "e for insertion at the end" << endl; cout << "a for after given element" << endl; cout << "g for before given element" << endl; cout << "p for insertion of element at desired position" << endl; cin >> a; if (a == 'b') { cin >> num; obj1.insert_beg (num); } else if (a == 'e') { cin >> num; obj1.insert_end (num); } else if (a == 'a') { cin >> given; cin >> num; obj1.insert_after (given, num); } else if (a == 'g') { cin >> given; cin >> num; obj1.insert_before (given, num); } else if (a == 'p') { cin >> given; cin >> num; obj1.insert_after (given, num); } else { cout << "no matching option"; } break; } case 4: { cout << "enter the following option for Deletion" << endl; cout << "b for Deletion at beginning" << endl; cout << "e for deletion at the end" << endl; cout << "p for deletion of element at desired position" << endl; cout << "n for deletion of desired item " << endl; cin >> a; if (a == 'b') { obj1.del_beg (); } else if (a == 'e') { obj1.del_end (); } else if (a == 'p') { cout << "Enter position " << endl; cin >> num; obj1.del_given_pos (num); } else if (a == 'n') { cout << "Enter desired Item" << endl; cin >> num; obj1.del_given_no (num); } else { cout << "invalid option!" << endl; } break; } case 5: { cout << "The list has been sorted" << endl;; obj1.sort (); break; } default: { cout << "invalid input " << endl; } } cout << "1. Create a linked list" << endl << "2. Display the linked list" << endl << "3. insert an element to the list" << endl; cout << "4. Deleting an Element" << endl << "5. Sorting the list" << endl << "6.Insert in the sorted list" << endl; cout << "Enter -1 for termination/ completion of any function / program" << endl; cin >> n; } return 0; }
3f96452c97290cc1d7e585923e1a9f14760f9666
7fea30d93180f32986d5803ebacfa15cd434a551
/217A.cpp
9e3f2f6d03d024749e1eef7c9e4ab50b66c532c5
[]
no_license
nibtehaz/Codeforces
df1f84010322c8319ca3989661f2760e1d97a786
8c316358dd1a01f3189a1e4fa5f47cfe901883b1
refs/heads/master
2020-03-11T13:21:21.741804
2018-04-18T07:40:34
2018-04-18T07:40:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,117
cpp
217A.cpp
๏ปฟ/* ุจูุณู’ู…ู ุงู„ู„ู‡ู ุงู„ุฑูŽู‘ุญู’ู…ูฐู†ู ุงู„ุฑูŽู‘ุญููŠู’ู…ู */ /* ุฑู‘ูŽุจู‘ู ุฒูุฏู’ู†ูู‰ ุนูู„ู’ู…ู‹ุง */ #include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> #include <ctype.h> #include <algorithm> #include <vector> #include <queue> #include <iostream> #include <string> #include <map> #include <list> #include <stack> #include <set> #include <deque> using namespace std; #define OUTPUT freopen("myfile.txt","w",stdout); #define INPUT freopen("myInput.txt","r",stdin); #define DEBUG(a) cout<<a<<endl; #define PI acos(-1.0) #define MAX 100005 #define MOD 1000000007 #define EPS 1e-9 #define BIGGER(a,b) (a>=b ? a : b) #define SMALLER(a,b) (a<=b ? a : b) #define getInt(a) scanf("%d",&a); #define getLong(a) scanf("%lld",&a); #define pb push_back #define ppb pop_back #define INF 1000000000 int component; int root[200]; int rankk[200]; void initialize(int n); int findRoot(int n); void unionn(int x , int y); void initialize(int n) { int i; for(i=0;i<n;i++) { root[i]=i; rankk[i]=0; } component=n; } int findRoot(int n) { if(root[n]==n) return n; else { root[n]=findRoot(root[n]); return root[n]; } } void unionn(int x , int y) { int p=findRoot(x); int q=findRoot(y); if(p==q) return; component--; if(rankk[p]>rankk[q]) { root[q]=p; } else if(rankk[p]<rankk[q]) { root[p]=q; } else { root[p]=q; rankk[q]++; } } int main() { //Bismillahir Rahmanir Rahim //Rabbi Zidni Ilma int N; int x[200],y[200]; int i,j; getInt(N) initialize(N); for(i=0;i<N;i++) { getInt(x[i]) getInt(y[i]) } for(i=0;i<N;i++) { for(j=i+1;j<N;j++) { if(x[i]==x[j] || y[i]==y[j]) unionn(i,j); } } printf("%d\n",component-1); return 0; }
eace52f8f93b7c276fa6fb7ca406babec7474635
0e7f9e5cff3a0ccdeb9cbca4ed369c6ea0eff730
/src/graphics/Texture.cpp
eefee57ac0d440797b60918130f41b4270af1673
[]
no_license
pronebel/3DStudio
fbfecbc3e647f98172df9e6dc4d0fc5379c6a901
ba8c827732cf7fbc1f509a245f1811b5a6ef2463
refs/heads/main
2023-03-16T23:16:08.072388
2021-02-19T08:39:35
2021-02-19T08:39:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
804
cpp
Texture.cpp
// // Created by William Lundqvist on 2020-11-17. // #include "Texture.h" #define STB_IMAGE_IMPLEMENTATION #include <stb_image.h> #include "../loaders/TextureLoader.h" void GLProj::Texture::bind(int slot) { glActiveTexture(GL_TEXTURE0+slot); glBindTexture(type,id); } void GLProj::Texture::unbind() { glBindTexture(type,0); } std::shared_ptr<GLProj::Texture> GLProj::Texture::load(const std::string &path, GLenum type) { return TextureLoader::load(path,type); } std::shared_ptr<GLProj::Texture> GLProj::Texture::white() { if(whiteTexture != nullptr) return whiteTexture; unsigned char data[4] = {255,255,255,255}; whiteTexture = TextureLoader::loadFromData(data,1,1,4,GL_TEXTURE_2D); return whiteTexture; } GLuint GLProj::Texture::getId() { return id; }