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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cf49f366b11e41af18f7632e71246cbf75d1a64f | 7149754bf9791d4a1dc763faf7810e616bd6802a | /src/WPA/Analyzers/ExpensiveTemplateInstantiationCache.cpp | 877729c5e7db0e48ac8faca56c4c8ed972281671 | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | microsoft/vcperf | 90173ad5483ca68b2b828a7759df54ebb04044d4 | f5c2a0c8d9876110a169add5044451b69e434bbf | refs/heads/master | 2023-08-29T05:02:32.093111 | 2023-06-14T00:09:34 | 2023-06-14T00:09:34 | 225,333,724 | 289 | 29 | MIT | 2023-06-14T00:09:37 | 2019-12-02T09:18:28 | C++ | UTF-8 | C++ | false | false | 5,005 | cpp | ExpensiveTemplateInstantiationCache.cpp | #include "ExpensiveTemplateInstantiationCache.h"
using namespace Microsoft::Cpp::BuildInsights;
using namespace Activities;
using namespace SimpleEvents;
namespace vcperf
{
std::tuple<bool, const char*, const char*> ExpensiveTemplateInstantiationCache::
GetTemplateInstantiationInfo(const TemplateInstantiation& ti) const
{
auto itPrimary = keysToConsider_.find(ti.PrimaryTemplateSymbolKey());
if (itPrimary == keysToConsider_.end()) {
return { false, nullptr, nullptr };
}
auto itSpecialization = keysToConsider_.find(ti.SpecializationSymbolKey());
if (itSpecialization == keysToConsider_.end())
{
return { true, itPrimary->second, "<unknown specialization>" };
}
return { true, itPrimary->second, itSpecialization->second };
}
AnalysisControl ExpensiveTemplateInstantiationCache::
OnStopActivity(const EventStack& eventStack)
{
if (!isEnabled_ || IsRelogging()) {
return AnalysisControl::CONTINUE;
}
MatchEventStackInMemberFunction(eventStack, this,
&ExpensiveTemplateInstantiationCache::OnTemplateInstantiation);
return AnalysisControl::CONTINUE;
}
AnalysisControl ExpensiveTemplateInstantiationCache::
OnSimpleEvent(const EventStack& eventStack)
{
if (!isEnabled_ || IsRelogging()) {
return AnalysisControl::CONTINUE;
}
MatchEventStackInMemberFunction(eventStack, this,
&ExpensiveTemplateInstantiationCache::OnSymbolName);
return AnalysisControl::CONTINUE;
}
AnalysisControl ExpensiveTemplateInstantiationCache::OnEndAnalysisPass()
{
if (!isEnabled_ || IsRelogging()) {
return AnalysisControl::CONTINUE;
}
switch (analysisPass_)
{
case 1:
DetermineTopPrimaryTemplates();
break;
case 2:
default:
localSpecializationKeysToConsider_.clear();
break;
}
return AnalysisControl::CONTINUE;
}
void ExpensiveTemplateInstantiationCache::
OnTemplateInstantiation(const TemplateInstantiation& instantiation)
{
switch (analysisPass_)
{
case 1:
Phase1RegisterPrimaryTemplateLocalTime(instantiation);
break;
case 2:
Phase2RegisterSpecializationKey(instantiation);
break;
default:
break;
}
}
void ExpensiveTemplateInstantiationCache::OnSymbolName(const SymbolName& symbol)
{
switch (analysisPass_)
{
case 1:
Phase1MergePrimaryTemplateDuration(symbol);
break;
case 2:
Phase2MergeSpecializationKey(symbol);
break;
default:
break;
}
}
void ExpensiveTemplateInstantiationCache::
Phase1RegisterPrimaryTemplateLocalTime(const TemplateInstantiation& instantiation)
{
unsigned int microseconds = static_cast<unsigned int>(std::chrono::
duration_cast<std::chrono::microseconds>(instantiation.Duration()).count());
localPrimaryTemplateTimes_[instantiation.PrimaryTemplateSymbolKey()] += microseconds;
}
void ExpensiveTemplateInstantiationCache::
Phase1MergePrimaryTemplateDuration(const SymbolName& symbol)
{
auto itPrimary = localPrimaryTemplateTimes_.find(symbol.Key());
if (itPrimary != localPrimaryTemplateTimes_.end())
{
auto it = cachedSymbolNames_.insert(symbol.Name()).first;
auto& stats = primaryTemplateStats_[it->c_str()];
stats.PrimaryKeys.push_back(symbol.Key());
stats.TotalMicroseconds += itPrimary->second;
localPrimaryTemplateTimes_.erase(itPrimary);
}
}
void ExpensiveTemplateInstantiationCache::
Phase2RegisterSpecializationKey(const TemplateInstantiation& instantiation)
{
if (keysToConsider_.find(instantiation.PrimaryTemplateSymbolKey()) != keysToConsider_.end()) {
localSpecializationKeysToConsider_.insert(instantiation.SpecializationSymbolKey());
}
}
void ExpensiveTemplateInstantiationCache::
Phase2MergeSpecializationKey(const SymbolName& symbol)
{
auto it = localSpecializationKeysToConsider_.find(symbol.Key());
if (it != localSpecializationKeysToConsider_.end())
{
auto itCached = cachedSymbolNames_.insert(symbol.Name()).first;
keysToConsider_[symbol.Key()] = itCached->c_str();
localSpecializationKeysToConsider_.erase(it);
}
}
void ExpensiveTemplateInstantiationCache::DetermineTopPrimaryTemplates()
{
unsigned int cutoff = 500000;
unsigned long long durationBasedCutoff =
static_cast<unsigned long long>(0.05 * traceDuration_.count());
if (durationBasedCutoff < cutoff) {
cutoff = static_cast<unsigned int>(durationBasedCutoff);
}
for (auto& p : primaryTemplateStats_)
{
if (p.second.TotalMicroseconds >= cutoff)
{
for (auto primKey : p.second.PrimaryKeys) {
keysToConsider_[primKey] = p.first;
}
continue;
}
cachedSymbolNames_.erase(p.first);
}
primaryTemplateStats_.clear();
localPrimaryTemplateTimes_.clear();
}
} // namespace vcperf |
c638946a98ee7eb2edb4f5b64d5edd1f83d8275b | 9b0fe9fe587ffc1f297a64661dfb2e083ee3cad3 | /Client1/client.h | c2bd11365ac9bfaad1b1f08bd4501cac75b77aa4 | [] | no_license | dengmingjie/MyChatRoom | e2f6163e351146599f584e95b6a6acd8c594425e | 308d887dfcd296d59284d68065d83cc3627ca54c | refs/heads/master | 2020-03-10T10:57:53.814363 | 2018-04-13T03:54:16 | 2018-04-13T03:54:16 | 129,344,802 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,257 | h | client.h | /* 声明client类 */
#ifndef __CLIENT_H__
#define __CLIENT_H__
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#include <string>
#include <pthread.h>
#include <iostream>
using namespace std;
#include "recvbuf.h"
#include "errnos.h"
#include "except.h"
#define PORT 8888 /* 服务器端口号 */
#define HEARTRATE 40 /* 心 跳 频 率 */
#define MAXSTOPTIME 5 /* 最大停止次数 */
/* client类 */
class Client
{
public:
// 构造器
Client (short port, string const& ip = "127.0.0.1")
throw (ClientException);
// 析构器
~Client (void);
// 连接服务器
void connectServer (void) throw (SocketException);
// 连接成功后,获取内核分配的本地协议地址
void getLocalAddr (void) throw (ClientException);
// 启动指令线程
void start (void) throw (ThreadException);
// 循环监控
void loopSelect (void) throw (ClientException);
private:
// 服务器心跳检查
void heartBeatCheck (void) throw (ClientException);
// 接收数据
bool recvData (void) throw (RecvException);
// 接收报体
bool recvBody (void) throw (RecvException);
// 命令处理
void commDeal (void) throw (ClientException);
// 整理接收缓存区
void clearRecv (void) throw (ClientException);
// 指令线程过程
static void* run (void* arg);
// 指令线程处理
void* loopComm (void);
// 向服务器发送心跳
void sendHeartBeat (void) throw (SendException);
// 登录指令处理
void logInDeal (void);
// 私聊指令处理
void pChatDeal (void);
// 群聊指令处理
void gChatDeal (void);
// 登出指令处理
void logOutDeal (void);
// 发送数据
void sendData (int length) throw (SendException);
short m_port; // 服务器端口号
string m_ip; // 服务器IP地址
int m_sockfd; // 套接字描述符
int m_userID; // 用户ID
time_t m_lastSendHeartBeat; // 上次发送心跳时间
time_t m_lastRecvHeartBeat; // 服务器上次心跳时间
int m_heartStopTimes; // 服务器心跳停止次数
CRecvBuf m_recvBuf; // 接收缓存区
char m_sendBuf[1500]; // 发送缓冲区
pthread_t m_tid; // 线程标识
};
#endif // __CLIENT_H__
|
7dd69058c8bb5b0d4226bae149c962034e4d16cb | 1c390cd4fd3605046914767485b49a929198b470 | /poj/P3224.cpp | fd79a4910b6b704b9e6d19d976c1d85cedbb8767 | [] | no_license | wwwwodddd/Zukunft | f87fe736b53506f69ab18db674311dd60de04a43 | 03ffffee9a76e99f6e00bba6dbae91abc6994a34 | refs/heads/master | 2023-01-24T06:14:35.691292 | 2023-01-21T15:42:32 | 2023-01-21T15:42:32 | 163,685,977 | 7 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 237 | cpp | P3224.cpp | #include<stdio.h>
int w,u,v,n,x,i,j;
int main()
{
scanf("%d",&n);
for(i=1;i<=n;i++)
{
w=0;
for(j=0;j<n;j++)
{
scanf("%d", &x);
if(x==3)
w++;
}
if(u<w)
u=w,v=i;
}
printf("%d",v);
return 0;
} |
a00e1048a70c4cb7999e8a48b034cffe98461e86 | 0d12e9e0d88edd414d23b1a9eb206e44571823fd | /main.cpp | 1a62b01578a30c088ba2db5ccff92f8f7dafbe53 | [] | no_license | WilliamAvila/LPP-compiler | 58c77ff5405c1da7a0aceceb98418c112e7fea53 | 54f4e7cbd70deca92abe1ecced54ea7028dcb302 | refs/heads/master | 2021-01-01T17:41:13.872569 | 2018-01-12T03:05:11 | 2018-01-12T03:05:11 | 98,134,884 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 982 | cpp | main.cpp | #include <string>
#include <cstdlib>
#include <iostream>
#include <stdio.h>
#include <list>
#include <map>
#include "Utils.h"
#include "Expression.h"
#include "tokens.h"
using namespace std;
extern int line;
map<string, int> vars;
StatementList* stMain;
void *ParseAlloc(void *(*mallocProc)(size_t));
void ParseFree(void *p, void (*freeProc)(void*));
void Parse(void *yyp, int yymajor, TokenInfo *yyminor);
int nextToken(struct TokenInfo *info);
int main(){
stMain = new StatementList;
void *parser = ParseAlloc(malloc);
struct TokenInfo *ti = new TokenInfo;
int token = nextToken(ti);
while (token != TK_EOF){
Parse(parser, token, ti);
ti = new TokenInfo;
token = nextToken(ti);
}
Parse(parser, TK_EOF, ti);
ParseFree(parser, free);
StatementList::iterator it = stMain->begin();
while(it != stMain->end()){
Statement* n = *it;
n->Execute();
it++;
}
cout<<endl;
return 0;
}
|
6740997a2765d94577def0853a4ade32c0a94d6c | ecc24216c6a2e7dd4306219ece39e2aae9732555 | /catkin_qt/src/robotcar_gui/src/qrviz.cpp | 9d1b7064cb4f4ad98aa41d60b1fb410b15c01d24 | [] | no_license | ZuoAnZoom/miivii-Xavier | 343d3f810b3954aa1ad6a3924695110af200971e | 25636cb016fb481e445cee771bfd574f0c0e7363 | refs/heads/master | 2023-09-05T15:06:07.586261 | 2021-11-21T11:13:36 | 2021-11-21T11:13:36 | 421,431,367 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 7,894 | cpp | qrviz.cpp | #include "../include/robotcar_gui/qrviz.hpp"
QRviz::QRviz(QVBoxLayout *layout,QString node_name)
{
nullmap.clear();
this->layout=layout;
this->nodename=node_name;
//创建rviz容器
render_panel_ = new rviz::RenderPanel;
//向layout添加widget
layout->addWidget(render_panel_);
//初始化rviz控制对象
manager_ = new rviz::VisualizationManager(render_panel_);
ROS_ASSERT(manager_ != nullptr);
// 获取Display组
display_group_ = manager_->getRootDisplayGroup();
//获取当前rviz控制对象的 tool控制对象
tool_manager_=manager_->getToolManager();
ROS_ASSERT(tool_manager_ != nullptr);
//初始化camera 这行代码实现放大 缩小 平移等操作
render_panel_->initialize(manager_->getSceneManager(),manager_);
manager_->initialize();
tool_manager_->initialize();
manager_->removeAllDisplays();
}
QRviz::~QRviz()
{
if (layout != nullptr && render_panel_ != nullptr)
{
layout->removeWidget(render_panel_);
}
if (render_panel_ != nullptr) delete render_panel_;
if (manager_ != nullptr) delete manager_;
if (current_tool != nullptr) current_tool = nullptr;
if (tool_manager_ != nullptr) tool_manager_ = nullptr;
ROS_INFO("RVIZ is shutdown");
}
///
/// \brief 获取Rviz Display树状图
///
void QRviz::GetDisplayTreeModel()
{
rviz::PropertyTreeModel *rvizmodel = manager_->getDisplayTreeModel();
QAbstractItemModel *model = rvizmodel;
emit ReturnModelSignal(model);
}
///
/// \brief Rviz Display的初始化与设置
/// \param ClassID
/// \param namevalue
///
void QRviz::DisplayInit(QString ClassID, bool enabled, QMap<QString, QVariant> namevalue)
{
int num = GetDisplayNum(ClassID);
if (num == -1)
{
rviz::Display *rvizDisplay = manager_->createDisplay(ClassID, ClassID, true);
ROS_ASSERT(rvizDisplay != nullptr);
num = GetDisplayNum(ClassID);
}
if (!namevalue.empty())
{
QMap<QString, QVariant>::iterator it;
for (it = namevalue.begin(); it != namevalue.end(); it++)
{
display_group_->getDisplayAt(num)->subProp(it.key())->setValue(it.value());
}
}
display_group_->getDisplayAt(num)->setEnabled(enabled);
manager_->startUpdate();
}
void QRviz::DisplayInit(QString ClassID, QString name, bool enabled, QMap<QString, QVariant> namevalue)
{
int num = GetDisplayNum(ClassID, name);
if (num == -1)
{
rviz::Display *rvizDisplay = manager_->createDisplay(ClassID, name, true);
ROS_ASSERT(rvizDisplay != nullptr);
num = GetDisplayNum(ClassID, name);
}
if (!namevalue.empty())
{
QMap<QString, QVariant>::iterator it;
for (it = namevalue.begin(); it != namevalue.end(); it++)
{
display_group_->getDisplayAt(num)->subProp(it.key())->setValue(it.value());
}
}
display_group_->getDisplayAt(num)->setEnabled(enabled);
manager_->startUpdate();
}
///
/// \brief 删除Display
/// \param name
///
void QRviz::RemoveDisplay(QString name)
{
int num = GetDisplayNumName(name);
if (num == -1)
{
return ;
}
delete display_group_->getDisplayAt(num);
// rvizDisplays_.removeAt(num);
}
void QRviz::RemoveDisplay(QString ClassID, QString name)
{
int num = GetDisplayNum(ClassID, name);
if (num == -1)
{
return ;
}
delete display_group_->getDisplayAt(num);
// rvizDisplays_.removeAt(num);
}
///
/// \brief 重命名Display
/// \param oldname
/// \param newname
///
void QRviz::RenameDisplay(QString oldname, QString newname)
{
int num = GetDisplayNumName(oldname);
if (num == -1)
{
return ;
}
display_group_->getDisplayAt(num)->setName(newname);
}
///
/// \brief 导出 RVIZ Display 配置
/// \param path
///
void QRviz::OutDisplaySet(QString path)
{
if (!path.isEmpty())
{
if (manager_ == nullptr)
{
return;
}
rviz::Config con;
manager_->save(con);
rviz::YamlConfigWriter yamlconfigwriter;
yamlconfigwriter.writeFile(con, path);
}
}
///
/// \brief 导入 RVIZ Display 配置
/// \param path
///
void QRviz::ReadDisplaySet(QString path)
{
if (!path.isEmpty())
{
if (manager_ == nullptr)
{
return;
}
rviz::YamlConfigReader yamlconfigreader;
rviz::Config con;
yamlconfigreader.readFile(con, path);
manager_->load(con);
}
}
///
/// \brief 根据Display的ClassID(和name)获得Display的序号
/// \param ClassID
/// \return
///
int QRviz::GetDisplayNum(QString ClassID)
{
int num = -1;
for (int i = 0; i < display_group_->numDisplays(); i++)
{
if (display_group_->getDisplayAt(i) != nullptr)
{
if (ClassID == display_group_->getDisplayAt(i)->getClassId())
{
num = i;
break;
}
}
}
return num;
}
int QRviz::GetDisplayNum(QString ClassID, QString name)
{
int num = -1;
for (int i = 0; i < display_group_->numDisplays(); i++)
{
if (display_group_->getDisplayAt(i) != nullptr)
{
if (ClassID == display_group_->getDisplayAt(i)->getClassId() && name == display_group_->getDisplayAt(i)->getName())
{
num = i;
break;
}
}
}
return num;
}
int QRviz::GetDisplayNumName(QString name)
{
int num = -1;
for (int i = 0; i < display_group_->numDisplays(); i++)
{
if (display_group_->getDisplayAt(i) != nullptr)
{
if (name == display_group_->getDisplayAt(i)->getName())
{
num = i;
break;
}
}
}
return num;
}
//设置全局显示
void QRviz::SetGlobalOptions(QString frame_name,QColor backColor,int frame_rate)
{
manager_->setFixedFrame(frame_name);
manager_->setProperty("Background Color",backColor);
manager_->setProperty("Frame Rate",frame_rate);
manager_->startUpdate();
}
// "rviz/MoveCamera";
// "rviz/Interact";
// "rviz/Select";
// "rviz/SetInitialPose";
// "rviz/SetGoal";
//设置机器人导航初始位置
void QRviz::Set_Pos()
{
//获取设置Pos的工具
//添加工具
current_tool= tool_manager_->addTool("rviz/SetInitialPose");
//设置当前使用的工具为SetInitialPose(实现在地图上标点)
tool_manager_->setCurrentTool( current_tool );
manager_->startUpdate();
// tool_manager_->setCurrentTool()
}
//设置机器人导航目标点
void QRviz::Set_Goal()
{
//添加工具
current_tool= tool_manager_->addTool("rviz/SetGoal");
//设置goal的话题
rviz::Property* pro= current_tool->getPropertyContainer();
pro->subProp("Topic")->setValue("/move_base_simple/goal");
//设置当前frame
manager_->setFixedFrame("map");
//设置当前使用的工具为SetGoal(实现在地图上标点)
tool_manager_->setCurrentTool( current_tool );
manager_->startUpdate();
}
void QRviz::Set_MoveCamera()
{
//获取设置Pos的工具
//添加工具
current_tool= tool_manager_->addTool("rviz/MoveCamera");
//设置当前使用的工具为SetInitialPose(实现在地图上标点)
tool_manager_->setCurrentTool( current_tool );
manager_->startUpdate();
}
void QRviz::Set_Select()
{
//获取设置Pos的工具
//添加工具
current_tool= tool_manager_->addTool("rviz/Select");
//设置当前使用的工具为SetInitialPose(实现在地图上标点)
tool_manager_->setCurrentTool( current_tool );
manager_->startUpdate();
}
void QRviz::addTool( rviz::Tool* )
{
}
void QRviz::createDisplay(QString display_name,QString topic_name)
{
}
void QRviz::run()
{
}
|
c88b453af7fa14f39d86a599dbd015e4f30af783 | 84150fbadb9f84d7ec2f99ce756afd27d865bffb | /c++/src/se3_dmp/src/source_list/robot/lwr4p_robot.cpp | ad7816b3dc9212c70d2f251b205eee6dd5d4a00f | [] | no_license | Slifer64/SE3_DMP | 3a1b3e4a4debc09d2cc15b20c36a3b23a5cdbe97 | 3fca002c5ca2b476f6f0016b28b85f30a89ef510 | refs/heads/master | 2020-05-09T14:59:03.081131 | 2019-05-10T15:01:30 | 2019-05-10T15:01:30 | 181,216,346 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,398 | cpp | lwr4p_robot.cpp | #include <se3_dmp/robot/lwr4p_robot.h>
#include <ros/package.h>
arma::vec quatProd(const arma::vec &quat1, const arma::vec &quat2)
{
arma::vec quat12(4);
double n1 = quat1(0);
arma::vec e1 = quat1.subvec(1,3);
double n2 = quat2(0);
arma::vec e2 = quat2.subvec(1,3);
quat12(0) = n1*n2 - arma::dot(e1,e2);
quat12.subvec(1,3) = n1*e2 + n2*e1 + arma::cross(e1,e2);
return quat12;
}
arma::vec quatExp(const arma::vec &v_rot, double zero_tol=1e-16)
{
arma::vec quat(4);
double norm_v_rot = arma::norm(v_rot);
double theta = norm_v_rot;
if (norm_v_rot > zero_tol)
{
quat(0) = std::cos(theta/2);
quat.subvec(1,3) = std::sin(theta/2)*v_rot/norm_v_rot;
}
else{
quat << 1 << 0 << 0 << 0;
}
return quat;
}
arma::vec quatLog(const arma::vec &quat, double zero_tol=1e-16)
{
arma::vec e = quat.subvec(1,3);
double n = quat(0);
if (n > 1) n = 1;
if (n < -1) n = -1;
arma::vec omega(3);
double e_norm = arma::norm(e);
if (e_norm > zero_tol) omega = 2*std::atan2(e_norm,n)*e/e_norm;
else omega = arma::vec().zeros(3);
return omega;
}
arma::vec quatInv(const arma::vec &quat)
{
arma::vec quatI(4);
quatI(0) = quat(0);
quatI.subvec(1,3) = - quat.subvec(1,3);
return quatI;
}
LWR4p_Robot::LWR4p_Robot()
{
N_JOINTS = 7;
jpos_low_lim = -arma::vec({170, 120, 170, 120, 170, 120, 170});
jpos_upper_lim = arma::vec({170, 120, 170, 120, 170, 120, 170});
jnames.resize(N_JOINTS);
jnames[0] = "lwr_joint_1";
for (int i=1;i<N_JOINTS;i++)
{
jnames[i] = jnames[i-1];
jnames[i].back()++;
}
// Initialize generic robot with the kuka-lwr model
// std::cerr << "=======> Creating robot...\n";
robot.reset(new lwr4p::Robot());
// std::cerr << "=======> Robot created successfully!\n";
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// arma::vec Kp({30, 30, 30});
// arma::vec Dp({10, 10, 10});
// arma::vec Ko({0.8, 0.8, 0.8});
// arma::vec Do({0.3, 0.3, 0.3});
//
// robot->setMode(lwr4p::Mode::TORQUE_CONTROL);
// robot->waitNextCycle();
//
// arma::vec q_robot = robot->getJointPosition();
// arma::vec q_robot_prev = q_robot;
// arma::vec P0 = this->getTaskPosition();
// arma::vec Q0 = this->getTaskOrientation();
// arma::vec Q_robot_prev = Q0;
// double dt = robot->getControlCycle();
//
// std::string path = ros::package::getPath("se3_dmp") + "/out.txt";
// std::ofstream out(path, std::ios::out);
//
// std::cerr << "===>> Main Ctrl loop...\n";
//
// int iters = 0;
//
// // simulate
// while (isOk())
// {
// q_robot_prev = q_robot;
// q_robot = robot->getJointPosition();
// arma::vec dq_robot = (q_robot - q_robot_prev) / dt;
// arma::mat Jrobot = robot->getRobotJacobian();
// arma::vec Vrobot = Jrobot*dq_robot;
//
// arma::vec dP_robot = Vrobot.subvec(0,2);
// arma::vec P_robot = robot->getTaskPosition();
// arma::vec vRot_robot = Vrobot.subvec(3,5);
// arma::vec Q_robot = getTaskOrientation();
// if (arma::dot(Q_robot_prev, Q_robot)<0) Q_robot=-Q_robot;
//
// arma::vec P = P0;
// arma::vec dP = arma::vec().zeros(3);
// arma::vec Q = Q0;
// arma::vec vRot = arma::vec().zeros(3);
//
// arma::vec eo = quatLog( quatProd( Q_robot, quatInv(Q) ) );
// arma::vec u = -Jrobot.submat(0, 0, 2, 6).t() * ( Kp%(P_robot-P) + Dp%(dP_robot-dP) )
// -Jrobot.submat(3, 0, 5, 6).t() * (Ko%eo + Do%(vRot_robot-vRot) );
//
// if (iters % 100 == 0)
// {
// out << "=========================================\n";
// out << "e_p " << arma::norm(P_robot-P) << "\n"
// << "de_p = " << arma::norm(dP_robot-dP) << "\n"
// << "e_o = " << arma::norm(eo) << "\n"
// << "de_o = " << arma::norm(vRot_robot-vRot) << "\n"
// << "u = " << u.t() << "\n";
// }
//
// robot->setJointTorque(u);
// robot->waitNextCycle();
// }
//
// out.close();
//
// exit(-1);
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
// =========================================================================
std::string ft_sensor_ip = "192.168.2.1";
// std::cerr << "Initializing F/T sensor at ip: " << ft_sensor_ip << "\n";
ftsensor.init(ft_sensor_ip.c_str());
ftsensor.setTimeout(1.0);
ftsensor.setBias();
ext_stop = false;
mode.set(Robot::STOPPED);
cmd_mode.set(mode.get());
jpos_cmd.set(robot->getJointPosition());
std::thread(&LWR4p_Robot::commandThread,this).detach();
}
LWR4p_Robot::~LWR4p_Robot()
{
}
void LWR4p_Robot::setMode(const Robot::Mode &mode)
{
if (mode == cmd_mode.get()) return;
cmd_mode.set(mode);
mode_change.wait(); // wait to get notification from commandThread
}
void LWR4p_Robot::commandThread()
{
arma::mat J;
arma::vec dq;
while (isOk())
{
Mode new_mode = cmd_mode.get();
// check if we have to switch mode
if (new_mode != mode.get())
{
switch (new_mode)
{
case JOINT_TORQUE_CONTROL:
robot->setMode(lwr4p::Mode::TORQUE_CONTROL);
jtorque_cmd.set(arma::vec().zeros(N_JOINTS));
break;
case FREEDRIVE:
robot->setMode(lwr4p::Mode::TORQUE_CONTROL);
jtorque_cmd.set(arma::vec().zeros(N_JOINTS));
break;
case CART_VEL_CTRL:
robot->setMode(lwr4p::Mode::VELOCITY_CONTROL);
cart_vel_cmd.set(arma::vec().zeros(6));
break;
case IDLE:
robot->setMode(lwr4p::Mode::POSITION_CONTROL);
jpos_cmd.set(robot->getJointPosition());
break;
case STOPPED:
robot->setMode(lwr4p::Mode::POSITION_CONTROL);
robot->setMode(lwr4p::Mode::STOPPED);
// robot->setExternalStop(true);
mode.set(new_mode);
mode_change.notify(); // unblock in case wait was called from another thread
KRC_tick.notify(); // unblock in case wait was called from another thread
return;
}
mode.set(new_mode);
mode_change.notify();
}
// send command according to current mode
switch (mode.get())
{
case JOINT_TORQUE_CONTROL:
robot->setJointTorque(jtorque_cmd.get());
// std::cerr << "jtorque_cmd.get() = " << jtorque_cmd.get().t() << "\n";
break;
case CART_VEL_CTRL:
J = robot->getRobotJacobian();
dq = arma::pinv(J)*cart_vel_cmd.get();
// std::cerr << "dq = " << dq.t() << "\n";
robot->setJointVelocity(dq);
break;
case Robot::Mode::FREEDRIVE:
robot->setJointTorque(jtorque_cmd.get());
break;
case Robot::Mode::IDLE:
robot->setJointPosition(jpos_cmd.get());
break;
}
// sync with KRC
robot->waitNextCycle();
KRC_tick.notify();
}
mode_change.notify(); // unblock in case wait was called from another thread
KRC_tick.notify(); // unblock in case wait was called from another thread
}
arma::mat get5thOrder(double t, arma::vec p0, arma::vec pT, double totalTime)
{
arma::mat retTemp = arma::zeros<arma::mat>(p0.n_rows, 3);
if (t < 0)
{
// before start
retTemp.col(0) = p0;
}
else if (t > totalTime)
{
// after the end
retTemp.col(0) = pT;
}
else
{
// somewhere betweeen ...
// position
retTemp.col(0) = p0 +
(pT - p0) * (10 * pow(t / totalTime, 3) -
15 * pow(t / totalTime, 4) +
6 * pow(t / totalTime, 5));
// vecolity
retTemp.col(1) = (pT - p0) * (30 * pow(t, 2) / pow(totalTime, 3) -
60 * pow(t, 3) / pow(totalTime, 4) +
30 * pow(t, 4) / pow(totalTime, 5));
// acceleration
retTemp.col(2) = (pT - p0) * (60 * t / pow(totalTime, 3) -
180 * pow(t, 2) / pow(totalTime, 4) +
120 * pow(t, 3) / pow(totalTime, 5));
}
// return vector
return retTemp;
}
bool LWR4p_Robot::setJointsTrajectory(const arma::vec &qT, double duration)
{
// keep last known robot mode
Robot::Mode prev_mode = this->getMode();
// start controller
this->setMode(Robot::IDLE);
// std::cerr << "[LWR4p_Robot::setJointsTrajectory]: Mode changed to \"IDLE\"!\n";
// waits for the next tick
update();
arma::vec q0 = robot->getJointPosition();
arma::vec qref = q0;
// std::cerr << "q0 = " << q0.t()*180/3.14159 << "\n";
// std::cerr << "duration = " << duration << " sec\n";
// robot->setMode(lwr4p::Mode::POSITION_CONTROL);
// initalize time
double t = 0.0;
// the main while
while (t < duration)
{
if (!isOk())
{
err_msg = "An error occured on the robot!";
return false;
}
// compute time now
t += getCtrlCycle();
// update trajectory
qref = get5thOrder(t, q0, qT, duration).col(0);
// set joint positions
jpos_cmd.set(qref);
//setJointPosition(qref);
// waits for the next tick
update();
}
// reset last known robot mode
this->setMode(prev_mode);
// std::cerr << "[LWR4p_Robot::setJointsTrajectory]: Mode restored to previous mode!\n";
return true;
}
void LWR4p_Robot::stop()
{
// setMode(Robot::STOPPED);
robot->stop();
}
|
bdd2e9813ec5b8df1e3ef170d58a10339d89895d | c1e761b79f84d3f7da23d21a99b34d9063da7782 | /GameEngine/BasicAnimation.cpp | a02099bb7ebdd063ced9d160ca686af59d22cb92 | [] | no_license | IgnacioAstorga/Caveman-Ninja | 9040ab183d318cc5851b82a6dfbb4a120fb46f86 | b55d4c659442feacb4f52c9ab1cfe32ec1b17e40 | refs/heads/master | 2020-12-25T20:08:47.011355 | 2016-01-14T16:41:01 | 2016-01-14T16:41:01 | 47,366,125 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 1,416 | cpp | BasicAnimation.cpp | #include "BasicAnimation.h"
#include "SDL.h"
BasicAnimation::BasicAnimation(int width, int height, int columns, int rows, float speed, bool loop, SDL_RendererFlip flip, bool start_enabled) : enabled(start_enabled)
{
this->width = width;
this->height = height;
this->rows = rows;
this->columns = columns;
this->speed = speed;
this->flip = flip;
this->loop = loop;
}
bool BasicAnimation::Start()
{
current_frame = 0.0f;
finished = false;
frameWidth = width / columns;
frameHeight = height / rows;
return true;
}
SDL_Rect BasicAnimation::GetCurrentFrame() const
{
iPoint frame = frames[(int)current_frame];
SDL_Rect rect { frame.x * frameWidth, frame.y * frameHeight, frameWidth, frameHeight };
return rect;
}
SDL_RendererFlip BasicAnimation::GetFlip() const
{
return flip;
}
void BasicAnimation::SetFlip(SDL_RendererFlip flip)
{
this->flip = flip;
}
void BasicAnimation::Increment(float amount)
{
current_frame += speed * amount;
if (speed >= 0 && current_frame >= frames.size())
if (loop)
current_frame = 0.0f; // En loop la animación no termina
else
{
current_frame = (float)(frames.size() - 1);
finished = true;
}
if (speed < 0 && current_frame < 0)
if (loop)
current_frame = (float)(frames.size() - 1); // En loop la animación no termina
else
{
current_frame = 0.0f;
finished = true;
}
}
bool BasicAnimation::IsFinished() const
{
return finished;
}
|
9380d4a27ca4032732419e92cfcde8fdcaa24db5 | 8fbe19a54e9068f0944fcc4d3c08602284a77096 | /src/chebyshevpolynomialbdg/chev.h | 7e54db4753dc15985ec18e5ea4098b3001c80239 | [
"BSD-2-Clause"
] | permissive | dc1394/chebyshevpolynomialbdg | 71ae115860ac12afa8b85673d658cb647a6995f8 | 529e7367ea408b62cb11880970c7fd67a888f3de | refs/heads/master | 2020-12-05T20:16:27.150559 | 2016-11-13T04:19:29 | 2016-11-13T04:19:29 | 66,469,159 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,758 | h | chev.h | /*! \file chev.h
\brief Bogoliubov-de Gennes方程式を解くクラスの宣言
Copyright © 2015 @dc1394 All Rights Reserved.
This software is released under the BSD 2-Clause License.
*/
#ifndef _CHEV_H_
#define _CHEV_H_
#pragma once
#include <cstdint> // for std::int32_t
#include <Eigen/Dense> // for Eigen::SparseMatrix
#include <Eigen/Sparse> // for Eigen::VectorXd
#undef EIGEN_NO_DEBUG
#undef NDEBUG
namespace chebyshevpolynomialbdg {
// #region フリー関数の宣言
template <typename T>
constexpr T sqr(T x);
// #endregion フリー関数の宣言
//! A class.
/*!
Bogoliubov-de Gennes方程式を解くクラス
*/
class Chev final {
// #region コンストラクタ・デストラクタ
public:
//! A constructor.
/*!
*/
Chev();
//! A destructor.
/*!
デフォルトデストラクタ
*/
~Chev() = default;
// #endregion コンストラクタ・デストラクタ
// #region publicメンバ関数
//! A public member function.
/*!
*/
void iteration(bool full);
// #endregion publicメンバ関数
// #region privateメンバ関数
private:
//! A private member function.
/*!
*/
void calc_A();
//! A private member function.
/*!
*/
void calc_A2();
//! A private member function.
/*!
*/
double calc_meanfield() const;
//! A private member function.
/*!
*/
template <bool F>
void calc_meanfields();
//! A private member function.
/*!
*/
void calc_polynomials(std::int32_t left_i, std::int32_t right_j);
//! A private member function.
/*!
*/
void init_delta();
//! A private member function.
/*!
*/
std::int32_t xy2i(std::int32_t ix, std::int32_t iy) const;
// #endregion privateメンバ関数
// #region メンバ変数
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr AA = 10.0;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr BB = 0.0;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr DELTA = 0.1;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr EPSTHRESHOLD = 1.0E-6;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr ITERMAX = 2;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr MYU = 1.0E-12;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr NC = 1000;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr NX = 20;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr NY = 20;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr LN = Chev::NX * Chev::NY * 2;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr LN_2 = Chev::NX * Chev::NY;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr OMEGAC = 10.0;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr PI = 3.14159265359;
//! A private static member variable (constant expression).
/*!
*/
static auto constexpr U = -2.0;
//! A private member variable.
/*!
*/
Eigen::SparseMatrix<double> A_;
//! A private member variable.
/*!
*/
Eigen::VectorXd vec_ai_;
//! A private member variable.
/*!
*/
Eigen::SparseMatrix<double> vec_delta_;
// #region 禁止されたコンストラクタ・メンバ関数
private:
//! A private copy constructor (deleted).
/*!
コピーコンストラクタ(禁止)
\param コピー元のオブジェクト(未使用)
*/
Chev(Chev const &) = delete;
//! A private member function (deleted).
/*!
operator=()の宣言(禁止)
\param コピー元のオブジェクト(未使用)
\return コピー元のオブジェクト
*/
Chev & operator=(Chev const &) = delete;
// #endregion 禁止されたコンストラクタ・メンバ関数
};
// #region templateメンバ関数の実装
template <>
inline void Chev::calc_meanfields<true>()
{
Eigen::SelfAdjointEigenSolver<Eigen::SparseMatrix<double, Eigen::RowMajor>> saes(A_ * Chev::AA);
auto const w = saes.eigenvalues();
auto const v = saes.eigenvectors();
for (auto ix = 0; ix < Chev::NX; ix++) {
for (auto iy = 0; iy < Chev::NY; iy++) {
auto const ii = xy2i(ix, iy);
auto const jj = ii + Chev::LN_2;
auto delta = 0.0;
for (auto i = 0; i < Chev::LN; i++) {
if (w[i] <= 0.0) {
if (std::abs(w[i]) <= Chev::OMEGAC) {
delta += v.coeff(ii, i) * v.coeff(jj, i);
vec_delta_.coeffRef(ii, ii) = delta;
}
}
}
}
}
}
template <>
inline void Chev::calc_meanfields<false>()
{
for (auto ix = 0; ix < Chev::NX; ix++) {
for (auto iy = 0; iy < Chev::NY; iy++) {
auto ii = xy2i(ix, iy);
auto jj = ii + Chev::LN_2;
auto const right_j = jj;
auto const left_i = ii;
calc_polynomials(left_i, right_j);
vec_delta_.coeffRef(ii, ii) = calc_meanfield();
}
}
}
// #endregion templateメンバ関数の実装
// #region templateフリー関数の実装
template <typename T>
constexpr T sqr(T x)
{
return x * x;
}
// #endregion templateフリー関数の実装
}
#endif // _CHEV_H_
|
6c5ea5640ef2df67e6d30b0665e437db0eb72fae | c495cccd8ef794214a0766d01eea31d04c263ee0 | /IO輸入輸出stream/fstream檔案開啟關閉.cpp | f3aac60e59b25885dfce70ea1aaf245fafd6c5bc | [] | no_license | kontai/CPlus | 480694755672bacda1665276c17ca152f20eff9e | c808eb1fa7c9232617ea20d5891f3146af388daa | refs/heads/master | 2023-04-13T12:05:59.506604 | 2023-04-06T23:50:06 | 2023-04-06T23:50:06 | 136,694,492 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 848 | cpp | fstream檔案開啟關閉.cpp | #include<iostream>
#include<fstream>
#include<string>
using namespace std;
int mainFstreamIO() {
string ifile("c:\\temp\\1.txt");
ifstream in; //創建ifstream,為綁定檔案
in.open("c:\\temp\\1.txt"); //呼叫open()將ifstream物件綁定於指定檔案
//以上兩式作用如同 ifstream in(ifile.c_str())
//ifstream in(ifile.c_str()); //創建ifstream,並將他綁定於指定檔案上
//檔案名稱須為C-String,建議用string轉化為c-string string.c_str()
ofstream out;
out.open("c:\\temp\\1.txt");
// ofstream out(ifile.c_str()); //創建ofstream,並將他綁定於指定檔案上
if (!in) {
cerr << "unable to open file!" << endl;
system("pause");
return -1;
}
in.close(); //關閉in
out.close(); //關閉out
in.open("c:\\2.txt"); //更換檔案目標,要先關閉綁定
system("pause");
return 0;
} |
5220a0658d5ffc23ea4cc2e68ccc36c56513b6fe | f7f09782d15ee7bdd14e637bd717dfb8327bc57c | /2014Train/VJ/8/E.cpp | 187680654f97f3cd629135e4df6e3c8ce8597d20 | [] | no_license | whywhyzhang/ACM-ICPC-Code | 14f3f6b0532c18da9694d7f70914a97e0983913f | d15bd475774ff104ebfe9504f8ea0acffdb5ddb0 | refs/heads/master | 2022-12-09T06:27:14.893967 | 2017-03-09T14:31:49 | 2017-03-09T14:31:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,066 | cpp | E.cpp | #include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
////////////////////////////////////////////////////////////
// couEdge=0;!!!
const int INF=10e8;
const int MaxN=110;
const int MaxM=10010;
struct Edge
{
int u,v;
double cost;
};
Edge E[MaxM];
int couEdge;
int fa[MaxN],id[MaxN],vis[MaxN];
double in[MaxN];
double ZhuLiu(int n,int root)
{
double ret=0.0;
int u,v;
int m=couEdge;
int couC; // count the number of circle
while(1)
{
for(int i=1;i<=n;++i)
in[i]=INF;
for(int i=0;i<m;++i)
if(E[i].u != E[i].v && E[i].cost<in[E[i].v]) // care for self-circle
{
in[E[i].v]=E[i].cost;
fa[E[i].v]=E[i].u;
}
for(int i=1;i<=n;++i)
if(i!=root && in[i]==INF)
return -1; // no Directed-MST
couC=0; //
// find circle
for(int i=1;i<=n;++i)
id[i]=vis[i]=-1;
in[root]=0;
for(int i=1;i<=n;++i)
{
ret+=in[i];
v=i;
while(vis[v]!=i && id[v]==-1 && v!=root)
{
vis[v]=i;
v=fa[v];
}
if(v!=root && id[v]==-1)
{
++couC;
for(u=fa[v];u!=v;u=fa[u])
id[u]=couC;
id[v]=couC;
}
}
if(couC==0)
break;
for(int i=1;i<=n;++i)
if(id[i]==-1)
id[i]=++couC;
for(int i=0;i<m;) //
{
v=E[i].v;
E[i].v=id[E[i].v];
E[i].u=id[E[i].u];
if(E[i].v!=E[i].u)
E[i++].cost-=in[v];
else
swap(E[i],E[--m]);
}
n=couC;
root=id[root];
}
return ret;
}
void addEdge(int u,int v,double cost)
{
E[couEdge].u=u;
E[couEdge].v=v;
E[couEdge].cost=cost;
++couEdge;
}
////////////////////////////////////////////////////////////
int X[MaxN],Y[MaxN];
int main()
{
int n,m;
int a,b;
while(~scanf("%d %d",&n,&m))
{
couEdge=0;
for(int i=1;i<=n;++i)
scanf("%d %d",&X[i],&Y[i]);
for(int i=0;i<m;++i)
{
scanf("%d %d",&a,&b);
addEdge(a,b,sqrt(double(X[a]-X[b])*(X[a]-X[b])+double(Y[a]-Y[b])*(Y[a]-Y[b])));
}
double ans=ZhuLiu(n,1);
if(fabs(ans+1.0)<0.0000001)
printf("poor snoopy\n");
else
printf("%.2f\n",ans);
}
return 0;
}
|
074fb66e996f4d0f48c6e8924325090b2b923659 | c6aea90c2aaa027999d2291e03a33a70b359c093 | /Lab2/include/common_def.hh | e76b26074050b9ca8bc8af89b4cf3f742f315935 | [
"MIT"
] | permissive | degv364/embeded | 951e46d2ad1e8698d091dc6613133a59c05c7075 | 96ffa17314269069eebf3af6220daab38804b2b3 | refs/heads/master | 2021-01-19T16:33:55.545659 | 2017-11-28T02:21:49 | 2017-11-28T02:21:49 | 101,004,365 | 0 | 0 | null | 2017-11-28T02:21:50 | 2017-08-22T00:43:38 | C++ | UTF-8 | C++ | false | false | 2,053 | hh | common_def.hh | /**
Copyright 2017 Daniel Garcia Vaglio <degv364@gmail.com> Esteban Zamora Alvarado <estebanzacr.20@gmail.com>
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.
**/
#ifndef COMMON_DEF_H_
#define COMMON_DEF_H_
//Scheduler tick count frequency
#define TIME_TICKS_PER_SECOND 310
//ADC number of samples per second
#define ACCEL_ADC_SAMPLES_PER_SECOND 310
#define NUMBER_OF_SLOTS 255
#define MAX_TASKS_PER_FRAME 63
#define MAX_SCHEDULER_INTERNAL_MESSAGES 5
// Size of filter buffers
#define MEAN_FILTER_BUFFER_SIZE 4
// Recalibration period
#define MEAN_FILTER_CALIBRATION_PERIOD 65535
//Return values
typedef enum return_e
{
RETURN_OK = 0, // Execution successful
RETURN_FAIL, // Execution failed
RETURN_CRITICAL, // Critical fail
RETURN_TIMEOUT, // Timeout
RETURN_BAD_PARAM, // Execution failed due to invalid parameters
RETURN_EMPTY, // Structurte is empty
RETURN_INVALID_VALUE,//Function cant return a valid value yet
RETURN_NO_SPACE //Not enough space in structure
} return_e;
#endif
|
5f6a3ea2278d6c13d2ab1fa9c479dafbc0e5a7b3 | 8fd2853602b36ee4c3187076928c6409e14283fc | /1744_수 묶기.cpp | 16c1410ae3d2b0031aa3451ae274093306732ad7 | [] | no_license | DongHeonSeok/Algorithm | 3a79660957d57acd6b0612d1178355cfc2e3a29a | 017cf1abd50b3ae7af23ae1aa4c7127f88f2cf81 | refs/heads/master | 2016-09-14T08:14:45.978726 | 2016-04-27T06:51:59 | 2016-04-27T06:51:59 | 57,191,215 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 887 | cpp | 1744_수 묶기.cpp | #include <cstdio>
#include <algorithm>
using namespace std;
int M[10100];
int P[10100];
int main()
{
int N, m = 0, p = 0, zero = 0;
scanf("%d", &N);
for (int i = 0; i < N; i++) {
int x;
scanf("%d", &x);
if (x > 0) {
P[p] = x;
p++;
}
else if (x < 0) {
M[m] = x;
m++;
}
else
zero++;
}
sort(P, P + p);
sort(M, M + m);
int ans = 0;
int tmp = 0;
bool exist = false;
for (int i = p - 1; i >= 0; i--) {
if (P[i] == 1)
ans += 1;
else {
if (exist) {
ans += P[i] * tmp;
tmp = 0;
exist = false;
}
else {
tmp = P[i];
exist = true;
}
}
}
if (tmp)
ans += tmp;
tmp = 0, exist = false;
for (int i = 0; i < m; i++) {
if (exist) {
ans += M[i] * tmp;
tmp = 0;
exist = false;
}
else {
tmp = M[i];
exist = true;
}
}
if (tmp) {
if (zero <= 0)
ans += tmp;
}
printf("%d", ans);
return 0;
}
|
82c52d013391bac3d8d1de54e4883aa1556ddcfd | 2ffe070c266741e5b65d5b6e677e034cc666df58 | /build/initmod.windows_io_32.cpp | f637cf4df158b10860f535fe888a9f4325aa13c4 | [
"MIT"
] | permissive | djohnkirby/PSC | f2ecccae1cddcb653038fde14c0befaeb419f969 | f8cbb6cf3fb6a228c9a6e6c8f46867ff19c306cc | refs/heads/master | 2021-05-16T02:59:50.612480 | 2014-03-21T16:42:23 | 2014-03-21T16:42:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,306 | cpp | initmod.windows_io_32.cpp | extern "C" {
unsigned char halide_internal_initmod_windows_io_32[] = {
66, 67, 192, 222, 33, 12, 0, 0, 171, 1, 0, 0, 11, 130, 32, 0, 2, 0, 0, 0, 18, 0, 0, 0, 7, 129, 35, 145, 65, 200, 4, 73, 6, 16, 50, 57, 146, 1, 132, 12, 37, 5, 8, 25, 30, 4, 139, 98, 128, 20, 69, 2, 66, 146, 11, 66, 164, 16, 50, 20, 56, 8, 24, 73, 10, 50, 68, 36, 72, 10, 144, 33, 35, 196, 82, 128, 12, 25, 33, 114, 36, 7, 200, 72, 17, 98, 168, 160, 168, 64, 198, 240, 1, 0, 0, 0, 81, 24, 0, 0, 135, 0, 0, 0, 27, 228, 34, 248, 255, 255, 255, 255, 129, 96, 135, 114, 152, 135, 121, 104, 3, 120, 144, 135, 114, 24, 135, 116, 152, 135, 114, 104, 3, 115, 128, 135, 118, 8, 7, 114, 0, 204, 33, 28, 216, 97, 30, 202, 1, 32, 220, 225, 29, 218, 192, 28, 228, 33, 28, 218, 161, 28, 218, 0, 30, 222, 33, 29, 220, 129, 30, 202, 65, 30, 218, 160, 28, 216, 33, 29, 218, 1, 48, 135, 112, 96, 135, 121, 40, 7, 128, 112, 135, 119, 104, 131, 116, 112, 7, 115, 152, 135, 54, 48, 7, 120, 104, 131, 118, 8, 7, 122, 64, 7, 192, 28, 194, 129, 29, 230, 161, 28, 0, 194, 29, 222, 161, 13, 220, 33, 28, 220, 97, 30, 218, 192, 28, 224, 161, 13, 218, 33, 28, 232, 1, 29, 0, 115, 8, 7, 118, 152, 135, 114, 0, 136, 121, 160, 135, 112, 24, 135, 117, 104, 3, 120, 144, 135, 119, 160, 135, 114, 24, 7, 122, 120, 7, 121, 104, 3, 113, 168, 7, 115, 48, 135, 114, 144, 135, 54, 152, 135, 116, 208, 135, 114, 0, 240, 0, 32, 234, 193, 29, 230, 33, 28, 204, 161, 28, 218, 192, 28, 224, 161, 13, 218, 33, 28, 232, 1, 29, 0, 115, 8, 7, 118, 152, 135, 114, 0, 136, 122, 152, 135, 114, 104, 131, 121, 120, 7, 115, 160, 135, 54, 48, 7, 118, 120, 135, 112, 160, 7, 192, 28, 194, 129, 29, 230, 161, 28, 128, 13, 132, 240, 255, 255, 255, 255, 3, 32, 109, 32, 134, 0, 88, 54, 24, 132, 0, 44, 64, 181, 129, 46, 138, 255, 255, 255, 255, 31, 0, 137, 96, 135, 114, 152, 135, 121, 104, 3, 120, 144, 135, 114, 24, 135, 116, 152, 135, 114, 104, 3, 115, 128, 135, 118, 8, 7, 114, 0, 204, 33, 28, 216, 97, 30, 202, 1, 32, 220, 225, 29, 218, 192, 28, 228, 33, 28, 218, 161, 28, 218, 0, 30, 222, 33, 29, 220, 129, 30, 202, 65, 30, 218, 160, 28, 216, 33, 29, 218, 1, 48, 135, 112, 96, 135, 121, 40, 7, 128, 112, 135, 119, 104, 131, 116, 112, 7, 115, 152, 135, 54, 48, 7, 120, 104, 131, 118, 8, 7, 122, 64, 7, 192, 28, 194, 129, 29, 230, 161, 28, 0, 194, 29, 222, 161, 13, 220, 33, 28, 220, 97, 30, 218, 192, 28, 224, 161, 13, 218, 33, 28, 232, 1, 29, 0, 115, 8, 7, 118, 152, 135, 114, 0, 136, 121, 160, 135, 112, 24, 135, 117, 104, 3, 120, 144, 135, 119, 160, 135, 114, 24, 7, 122, 120, 7, 121, 104, 3, 113, 168, 7, 115, 48, 135, 114, 144, 135, 54, 152, 135, 116, 208, 135, 114, 0, 240, 0, 32, 234, 193, 29, 230, 33, 28, 204, 161, 28, 218, 192, 28, 224, 161, 13, 218, 33, 28, 232, 1, 29, 0, 115, 8, 7, 118, 152, 135, 114, 0, 136, 122, 152, 135, 114, 104, 131, 121, 120, 7, 115, 160, 135, 54, 48, 7, 118, 120, 135, 112, 160, 7, 192, 28, 194, 129, 29, 230, 161, 28, 0, 0, 0, 0, 0, 73, 24, 0, 0, 3, 0, 0, 0, 19, 130, 96, 66, 32, 76, 24, 6, 162, 0, 0, 0, 137, 32, 0, 0, 19, 0, 0, 0, 50, 34, 72, 9, 32, 100, 133, 4, 147, 34, 164, 132, 4, 147, 34, 227, 132, 161, 144, 20, 18, 76, 138, 140, 11, 132, 164, 76, 16, 76, 115, 4, 96, 48, 71, 128, 80, 168, 3, 16, 130, 70, 9, 4, 149, 17, 128, 34, 28, 65, 168, 16, 64, 8, 65, 170, 22, 64, 8, 32, 136, 149, 2, 8, 32, 4, 185, 129, 0, 18, 115, 4, 160, 0, 0, 0, 19, 172, 116, 152, 3, 60, 176, 131, 54, 168, 7, 119, 88, 7, 119, 120, 135, 123, 112, 135, 54, 96, 135, 116, 112, 135, 122, 192, 135, 54, 56, 7, 119, 168, 135, 13, 35, 81, 14, 109, 0, 15, 122, 48, 7, 114, 160, 7, 115, 32, 7, 122, 48, 7, 114, 208, 6, 233, 16, 7, 122, 128, 7, 122, 128, 7, 109, 144, 14, 120, 160, 7, 120, 160, 7, 120, 208, 6, 233, 16, 7, 118, 160, 7, 113, 96, 7, 122, 16, 7, 118, 208, 6, 233, 48, 7, 114, 160, 7, 115, 32, 7, 122, 48, 7, 114, 208, 6, 233, 96, 7, 116, 160, 7, 115, 32, 7, 122, 96, 7, 116, 208, 6, 230, 48, 7, 114, 160, 7, 115, 32, 7, 122, 48, 7, 114, 208, 6, 230, 96, 7, 116, 160, 7, 115, 32, 7, 122, 96, 7, 116, 208, 6, 246, 96, 7, 116, 160, 7, 118, 64, 7, 122, 96, 7, 116, 208, 6, 246, 16, 7, 114, 128, 7, 122, 16, 7, 114, 128, 7, 122, 16, 7, 114, 128, 7, 109, 16, 14, 112, 160, 7, 112, 160, 7, 118, 64, 7, 109, 96, 14, 120, 0, 7, 122, 48, 7, 114, 160, 7, 115, 32, 7, 109, 224, 14, 120, 160, 7, 113, 96, 7, 122, 48, 7, 114, 208, 6, 179, 16, 7, 114, 128, 7, 67, 22, 2, 0, 130, 0, 0, 0, 0, 0, 134, 44, 6, 16, 0, 1, 0, 0, 0, 0, 12, 89, 18, 32, 0, 4, 0, 0, 0, 0, 24, 178, 44, 64, 0, 12, 0, 0, 0, 0, 48, 100, 73, 128, 0, 16, 0, 0, 0, 0, 96, 200, 210, 0, 64, 16, 0, 0, 0, 0, 192, 144, 229, 1, 2, 32, 0, 0, 0, 0, 128, 44, 16, 0, 5, 0, 0, 0, 50, 30, 152, 16, 25, 17, 76, 144, 140, 9, 38, 71, 198, 4, 67, 146, 35, 0, 0, 0, 121, 24, 0, 0, 42, 0, 0, 0, 67, 4, 40, 88, 0, 6, 227, 192, 14, 225, 224, 14, 231, 0, 6, 246, 80, 14, 242, 48, 15, 233, 240, 14, 238, 0, 6, 115, 224, 6, 116, 0, 6, 104, 64, 15, 242, 80, 15, 238, 176, 14, 96, 16, 7, 121, 48, 7, 119, 16, 7, 117, 144, 6, 67, 12, 104, 128, 6, 233, 24, 98, 64, 4, 84, 72, 199, 130, 37, 28, 220, 33, 31, 192, 0, 30, 222, 33, 29, 220, 129, 30, 202, 65, 30, 134, 24, 144, 1, 29, 210, 177, 224, 121, 135, 118, 112, 135, 116, 128, 135, 119, 160, 135, 114, 112, 7, 122, 0, 131, 113, 64, 135, 112, 144, 135, 33, 2, 132, 44, 136, 102, 33, 29, 218, 1, 30, 216, 161, 28, 192, 96, 20, 222, 96, 20, 214, 96, 13, 192, 128, 22, 68, 33, 20, 66, 97, 132, 194, 14, 236, 96, 15, 237, 224, 6, 233, 64, 14, 229, 224, 14, 244, 48, 37, 0, 0, 0, 121, 24, 0, 0, 23, 0, 0, 0, 51, 8, 128, 28, 196, 225, 28, 102, 20, 1, 61, 136, 67, 56, 132, 195, 140, 66, 128, 7, 121, 120, 7, 115, 152, 113, 12, 230, 0, 15, 237, 16, 14, 244, 128, 14, 51, 12, 66, 30, 194, 193, 29, 206, 161, 28, 102, 48, 5, 61, 136, 67, 56, 132, 131, 27, 204, 3, 61, 200, 67, 61, 140, 3, 61, 204, 120, 140, 116, 112, 7, 123, 8, 7, 121, 72, 135, 112, 112, 7, 122, 112, 3, 118, 120, 135, 112, 32, 7, 0, 0, 0, 113, 32, 0, 0, 18, 0, 0, 0, 22, 160, 252, 63, 226, 4, 127, 65, 53, 130, 21, 32, 82, 243, 68, 72, 51, 21, 70, 176, 44, 75, 197, 248, 21, 240, 19, 205, 96, 0, 205, 1, 44, 200, 64, 252, 79, 132, 52, 83, 97, 6, 202, 95, 73, 205, 19, 33, 205, 84, 152, 64, 179, 44, 21, 227, 87, 192, 47, 77, 64, 52, 217, 0, 82, 21, 79, 132, 52, 83, 1, 0, 97, 32, 0, 0, 35, 0, 0, 0, 19, 4, 65, 44, 16, 0, 0, 0, 2, 0, 0, 0, 4, 74, 160, 128, 0, 0, 0, 0, 51, 17, 17, 160, 12, 35, 6, 3, 0, 48, 227, 9, 193, 112, 131, 216, 17, 3, 2, 0, 156, 128, 136, 49, 98, 96, 0, 128, 51, 32, 193, 136, 1, 1, 0, 206, 144, 65, 56, 16, 14, 0, 0, 0, 22, 81, 8, 192, 178, 216, 7, 80, 16, 205, 20, 97, 134, 192, 80, 18, 17, 253, 130, 211, 76, 196, 53, 89, 194, 80, 48, 147, 53, 16, 2, 176, 44, 198, 64, 0, 145, 33, 153, 195, 1, 12, 131, 255, 76, 145, 61, 20, 64, 100, 72, 53, 0, 0, 0, 0, 1, 49, 0, 0, 2, 0, 0, 0, 91, 134, 34, 16, 0, 0, 0, 0, 0, 0, 0, 0, 97, 32, 0, 0, 31, 0, 0, 0, 19, 4, 65, 44, 16, 0, 0, 0, 1, 0, 0, 0, 4, 74, 0, 0, 51, 17, 17, 192, 12, 23, 136, 29, 49, 32, 0, 160, 9, 72, 24, 35, 6, 7, 0, 40, 135, 81, 4, 35, 6, 4, 0, 52, 67, 6, 225, 64, 13, 0, 0, 0, 7, 80, 16, 205, 20, 97, 134, 192, 80, 18, 17, 253, 130, 211, 76, 196, 53, 217, 194, 80, 48, 147, 37, 12, 210, 20, 153, 2, 33, 33, 25, 97, 16, 132, 0, 44, 139, 53, 16, 64, 100, 72, 230, 80, 0, 145, 33, 213, 0, 0, 0, 0, 1, 49, 0, 0, 2, 0, 0, 0, 91, 134, 33, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
int halide_internal_initmod_windows_io_32_length = 1720;
}
|
0c1d002f4c73351b1cb621098fd457936bd36479 | 51d2519339976898df3c76ec74e65e023eb0fc89 | /Chapter9/ex9_23/main.cpp | df6cec5ac8eb86d91efaa4118d99f7706df1f082 | [] | no_license | githubfun/CppPrimer5thEdition_Solutions | 1421e03d9145d46260d345db012a62d228f531ef | 3779083c2798aab44954cca7ef784842173935f4 | refs/heads/master | 2018-02-09T05:39:34.247874 | 2016-04-05T15:44:48 | 2016-04-05T15:44:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 712 | cpp | main.cpp | /// Exercise 9.23:
/// In the first program in this section on page 346,
/// what would the values of val, val2, val3, and val4 be if c.size() is 1?
/**
// check that there are elements before dereferencing an iterator or calling front or back
if (!c.empty()) {
// val and val2 are copies of the value of the first element in c
auto val = *c.begin(), val2 = c.front();
// val3 and val4 are copies of the of the last element in c
auto last = c.end();
auto val3 = *(--last); // can't decrement forward_list iterators
auto val4 = c.back(); // not supported by forward_list
}
**/
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}
|
9c1ea54f0b35f79859177a4b322b698fd96b6565 | 9b1639af63f7fc82f0e488b452dee0cb7ae22a3b | /avis/trunk/source/src/dataflow/dfgui/dfgui.h | 522948257f101827f632e3a0597de04febc8d5a4 | [] | no_license | ExpLife/Norton_AntiVirus_SourceCode | af7cd446efb2f3a10bba04db8e7438092c7299c0 | b90225233fa7930d2ef7922080ed975b7abfae8c | refs/heads/master | 2017-12-19T09:15:25.150463 | 2016-10-03T02:33:34 | 2016-10-03T02:33:34 | 76,859,815 | 2 | 4 | null | 2016-12-19T12:21:02 | 2016-12-19T12:21:01 | null | UTF-8 | C++ | false | false | 1,591 | h | dfgui.h | // DFGui.h : main header file for the DFGUI application
//
#if !defined(AFX_DFGUI_H__A244E3B6_5A46_11D2_A583_0004ACECC1E1__INCLUDED_)
#define AFX_DFGUI_H__A244E3B6_5A46_11D2_A583_0004ACECC1E1__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
// JALAN: Run a single instance of dfgui.exe
#include "singleinstance.h"
/////////////////////////////////////////////////////////////////////////////
// CDFGuiApp:
// See DFGui.cpp for the implementation of this class
//
class CDFGuiApp : public CWinApp
{
public:
CDFGuiApp();
HWND DFLauncherWnd;
HWND DFGuiWnd;
// JALAN: Run a single instance of dfgui.exe
CSingleInstance m_singleInstance;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDFGuiApp)
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
//}}AFX_VIRTUAL
// Implementation
//{{AFX_MSG(CDFGuiApp)
afx_msg void OnAppAbout();
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DFGUI_H__A244E3B6_5A46_11D2_A583_0004ACECC1E1__INCLUDED_)
|
242414cb8901e355c4772b84b192924b920ae237 | c50e2c015af89a5321f952f43e1d9a830a7ed22f | /primetime.cpp | 406ae7b10423ae5176c085c975509784c2b6e610 | [] | no_license | Biswa5812/SDE-Sheet-Solution | 7d085d2ecd460ee3164b5b163c66948c1b75a966 | f165ef89e4b5c17f1908c6774e0bb2d7b7cdafa2 | refs/heads/main | 2023-09-01T03:21:33.038103 | 2021-10-28T17:17:31 | 2021-10-28T17:17:31 | 358,801,319 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 970 | cpp | primetime.cpp | #include<iostream>
using namespace std;
int check_prime(int y);
int main()
{
int h,p,answer=0;
int prime[100],index=0;
cout<<"enter no. of hours";
cin>>h;
cout<<"enter no. of parts";
cin>>p;
int counter=0;
int x = h/p;
for(int i=2;i<=x;i++)
{
for(int j=1;j<=i;j++)
{
if(i%j==0)
{
counter++;
}
}
if(counter == 2)
{
//cout<<i;
prime[index]=i;
index++;
}
counter = 0;
}
for(int i=0;i<index;i++)
{
int primes=1;
int check = prime[i];
int cycle = p;
while(cycle>1)
{
check = check+x;
int boolean = check_prime(check);
if(boolean==1)
{
primes++;
}
cycle--;
}
if(primes==p)
{
answer++;
}
}
cout<<endl;
cout<<answer;
}
int check_prime(int x)
{
int flag=0;
for(int i=1;i<=x;i++)
{
if(x%i==0)
{
flag++;
}
}
if(flag==2)
return 1;
else
return 0;
}
|
f2da11e6ff6fb007c060529ec6c19b9726cce308 | 33fd7f0794f01481d4c10963b6b2bfd5a0762fe7 | /xp_comm_proj/instment/prvcp.cxx | fb12a565e4ae30ac3d21147e7e8aab9d02ddddee | [
"Apache-2.0"
] | permissive | avs/express-community | fc8531a221b73057ad3e5d6c2d968466ee033637 | c699a68330d3b678b7e6bcea823e0891b874049c | refs/heads/master | 2022-07-06T16:03:22.406751 | 2020-05-19T21:00:15 | 2020-05-19T21:00:15 | 264,246,567 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 584 | cxx | prvcp.cxx | /*
* PR VCP - print a string to stdout - in the VCP window
*
* Synopsis : prints a string parameter to stdout
*
* Author: I. Curington, AVS Inc. 28 August 2000
*/
#include "gen.hxx"
#include <avs/om.h>
#include <avs/port.h>
#include <stdio.h>
#include <errno.h>
/**************************
* START of Module *
**************************/
int
Instrumentation_InstrumentationMods_prvcp::update(OMevent_mask /*event_mask */,
int /*seq_num */)
{
// Reporting Section
printf( "%s\n", (char *) message);
return(1);
}
/* end */
|
51434e8a6d560f2bac65c7e1441a88ab863f5460 | 2c78de0b151238b1c0c26e6a4d1a36c7fa09268c | /garant6x/implementation/Garant/CommonUtils/LibHome.cpp | f02eb1a0aecdbf77e9d3e174413f961e0e9d7b8b | [] | no_license | bravesoftdz/realwork | 05a3b308cef59bed8a9efda4212849c391b4b267 | 19b446ce8ad2adf82ab8ce7988bc003221accad2 | refs/heads/master | 2021-06-07T23:57:22.429896 | 2016-11-01T18:30:21 | 2016-11-01T18:30:21 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,346 | cpp | LibHome.cpp | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Модуль: "w:/garant6x/implementation/Garant/CommonUtils/LibHome.cpp"
// генератор файлов реализации C++ (.cpp)
// Generated from UML model, root element: <<Library::Category>> garant6x::CommonUtils
//
// общий код
//
//
// Все права принадлежат ООО НПП "Гарант-Сервис".
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "garant6x/implementation/Garant/CommonUtils/LibHome.h"
#include "garant6x/implementation/Garant/CommonUtils/impl/XML_i/XMLReader_i_factory.h"
namespace CommonUtils {
Core::Root::LibHome& LibHomeFactory::get () {
return LibHomeImpl::Singleton::instance();
}
LibHomeImpl::LibHomeImpl () {
}
void LibHomeImpl::registrate_all_factories () const {
//#UC START# *447878CD0121_ENVIRONMENTS_CONFIG*
//#UC END# *447878CD0121_ENVIRONMENTS_CONFIG*
{
XML_i::XMLReader_i_factory_var fctr = new XML_i::XMLReader_i_factory ();
fctr->registrate_me(0);
}
}
void LibHomeImpl::finalize () {
}
} // namespace CommonUtils
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
b67276911cbf80dddef607e6abcadb85e302ad9c | 55c81da8a1d0e98fe426b7b5c3ce7a9646ffdbe8 | /CrossApp/view/CAWindow.cpp | 3c0fa6baf2973421b41375bcb91b9f38d70d2645 | [] | no_license | babyliynfg/nano-CrossApp | e40c1b209e30b47bea588b981f4f15aedc638266 | e0c0e45c500d2647d330131b68474b67f0dfaae2 | refs/heads/master | 2021-01-18T03:04:08.540737 | 2017-03-14T03:47:06 | 2017-03-14T03:47:06 | 68,501,961 | 38 | 23 | null | null | null | null | UTF-8 | C++ | false | false | 4,237 | cpp | CAWindow.cpp |
#include "CAWindow.h"
#include "support/CAPointExtension.h"
#include "basics/CAApplication.h"
#include "animation/CAViewAnimation.h"
#include "dispatcher/CATouchDispatcher.h"
NS_CC_BEGIN
CAWindow::CAWindow()
:m_pRootViewController(NULL)
,m_pModalViewController(NULL)
{
this->setDisplayRange(false);
}
CAWindow::~CAWindow()
{
CC_SAFE_RELEASE_NULL(m_pRootViewController);
CC_SAFE_RELEASE_NULL(m_pModalViewController);
}
bool CAWindow::init()
{
CAView::init();
bool bRet = false;
if (CAApplication* pApplication = CAApplication::getApplication())
{
this->setContentSize(pApplication->getWinSize());
this->setPoint(m_obContentSize/2);
bRet = true;
}
return bRet;
}
CAWindow *CAWindow::create()
{
CAWindow *pRet = new CAWindow();
if (pRet && pRet->init())
{
pRet->autorelease();
return pRet;
}
else
{
CC_SAFE_DELETE(pRet);
return NULL;
}
}
void CAWindow::setRootViewController(CrossApp::CAViewController *var)
{
if (m_pRootViewController)
{
m_pRootViewController->removeViewFromSuperview();
CC_SAFE_RELEASE_NULL(m_pRootViewController);
}
if (var)
{
var->retain();
m_pRootViewController = var;
m_pRootViewController->addViewFromSuperview(this);
m_pRootViewController->getView()->setZOrder(CAWindowZOrderBottom);
}
}
CAViewController* CAWindow::getRootViewController()
{
return m_pRootViewController;
}
void CAWindow::presentModalViewController(CAViewController* controller, bool animated)
{
CC_RETURN_IF(controller == NULL);
CC_RETURN_IF(m_pModalViewController);
CC_SAFE_RETAIN(controller);
m_pModalViewController = controller;
m_pModalViewController->addViewFromSuperview(this);
m_pModalViewController->getView()->setZOrder(CAWindowZOrderCenter);
m_pModalViewController->viewDidAppear();
CAApplication::getApplication()->getTouchDispatcher()->setDispatchEventsFalse();
if (animated)
{
CAView* view = m_pModalViewController->getView();
DLayout layout = view->getLayout();
float y = m_obContentSize.height;
layout.vertical = DVerticalLayout_T_B(y, -y);
view->setLayout(layout);
CAViewAnimation::beginAnimations("", NULL);
CAViewAnimation::setAnimationDuration(0.25f);
CAViewAnimation::setAnimationDelay(0.1f);
CAViewAnimation::setAnimationCurve(CAViewAnimationCurveLinear);
CAViewAnimation::setAnimationDidStopSelector(this, CAViewAnimation0_selector(CAWindow::presentEnd));
view->setLayout(DLayoutFill);
CAViewAnimation::commitAnimations();
}
else
{
this->presentEnd();
}
}
void CAWindow::presentEnd()
{
if (m_pRootViewController)
{
m_pRootViewController->viewDidDisappear();
}
CAApplication::getApplication()->getTouchDispatcher()->setDispatchEventsTrue();
}
void CAWindow::dismissModalViewController(bool animated)
{
CC_RETURN_IF(m_pModalViewController == NULL);
if (m_pRootViewController)
{
m_pRootViewController->viewDidAppear();
}
CAApplication::getApplication()->getTouchDispatcher()->setDispatchEventsFalse();
if (animated)
{
CAView* view = m_pModalViewController->getView();
CAViewAnimation::beginAnimations("", NULL);
CAViewAnimation::setAnimationDuration(0.25f);
CAViewAnimation::setAnimationDelay(0.1f);
CAViewAnimation::setAnimationCurve(CAViewAnimationCurveLinear);
CAViewAnimation::setAnimationDidStopSelector(this, CAViewAnimation0_selector(CAWindow::dismissEnd));
DLayout layout = view->getLayout();
float y = m_obContentSize.height;
layout.vertical = DVerticalLayout_T_B(y, -y);
view->setLayout(layout);
CAViewAnimation::commitAnimations();
}
else
{
this->dismissEnd();
}
}
void CAWindow::dismissEnd()
{
m_pModalViewController->viewDidDisappear();
m_pModalViewController->removeViewFromSuperview();
CC_SAFE_RELEASE_NULL(m_pModalViewController);
CAApplication::getApplication()->getTouchDispatcher()->setDispatchEventsTrue();
}
NS_CC_END
|
e7a0f4baf4464b59d18a9d6238fedcbbd5b063cf | d3e1f8b563611d940ceedd5e3f4fbf40092eab7e | /puzzle.h | 7ff6e9ea3290dcd23d3f5c91653c96960108ffe8 | [] | no_license | tanil-o-v/slidePuzzle | 96a83da9209748e1b27465a0fc4fed688ac42374 | e62e21af63172d7d46df608d0cef74a4f9d846ef | refs/heads/master | 2021-07-13T05:59:23.610836 | 2015-09-04T14:23:16 | 2015-09-04T14:23:16 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,297 | h | puzzle.h | #include<cstdlib>
#include<fstream>
#include<sstream>
#include<iostream>
using namespace std;
enum DIRECTION { UP, DOWN, LEFT, RIGHT, COUNT, STAY };
const string Answer = "123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
class puzzle {
public:
int stageWidth;
int stageHeight;
string panels;
int blank;
public:
//コンストラクタ
puzzle() { stageWidth = 0; stageHeight = 0; panels = ""; blank = 0; }
puzzle(int w, int h, string ps) {
stageWidth = w;
stageHeight = h;
panels = ps;
blank = 0;
while (blank < w * h &&
ps[blank] != '0')
blank++;
}
//デストラクタ
~puzzle() {
}
void swap(int i, int j) {
if (i >= stageWidth * stageHeight || j >= stageWidth * stageHeight) return;
}
//blankを指定した位置に移動
void moveBlankAt(int idx) {
if (idx >= stageWidth * stageHeight) return;
while (blank % stageWidth < idx % stageWidth) move(UP);
while (blank % stageWidth > idx % stageWidth) move(DOWN);
while (blank / stageWidth < idx / stageWidth) move(RIGHT);
while (blank / stageWidth > idx / stageWidth) move(LEFT);
}
//空白パネルをd方向のパネルと入れ替える
bool move(DIRECTION d) {
int idx = blank;
switch (d) {
case UP:
if (blank >= stageWidth) {
//nMove[UP]++;
idx -= stageWidth;
}
break;
case DOWN:
if (blank < stageWidth * stageHeight - stageWidth) {
//nMove[DOWN]++;
idx += stageWidth;
}
break;
case LEFT:
if (blank % stageWidth != 0) {
//nMove[LEFT]++;
idx -= 1;
}
break;
case RIGHT:
if (blank % stageWidth != stageWidth - 1) {
//nMove[RIGHT]++;
idx += 1;
}
break;
default:
break;
}
char c = panels[idx];
if (c != '0' && c != '=') {
panels[blank] = c;
blank = idx;
panels[idx] = '0';
return true;
}
else return false;
}
//整列しているかチェック
bool check()
{
if (panels.size() == 0) return false;
for (int i = 0; i < stageWidth * stageHeight; i++) {
if (i == stageWidth * stageHeight - 1) {
if (panels[i] != '0') return false;
}
else if (panels[i] != '=' && panels[i] != Answer[i])
return false;
}
return true;
}
//文字cが正しい場所にあるかチェック
bool check(char c) {
if (panels.find(c) == string::npos) return true;
if (c == '=' || panels.find(c) == Answer.find(c)) return true;
else return false;
}
//描画
void draw() {
if (panels.size() != stageWidth * stageHeight + 1) return;
for (int h = 0; h < stageHeight; h++) {
for (int w = 0; w < stageWidth; w++) {
char c = panels[w + h * stageWidth];
if (c == '0') c = ' ';
cout << c << " ";
}
cout << endl;
}
}
int EuclidDistanceFromAnswer() {
int d = 0;
for (int i = 0; i < stageWidth * stageHeight - 1; i++) {
if (panels[i] == '=') continue;
int x, y;
int answerX, answerY;
char c = Answer[i];
answerX = i % stageWidth + 1;
answerY = i / stageWidth + 1;
for (int j = 0; j < stageWidth * stageHeight; j++) {
if (panels[j] == c) {
x = j % stageWidth + 1;
y = j / stageWidth + 1;
break;
}
}
d += abs(x - answerX) + abs(y - answerY);
}
return d;
}
};
class node {
public:
int id;
node* parent;
puzzle pz;
public:
node(int i, node* prt, puzzle p) {
id = i;
parent = prt;
pz = p;
}
};
|
1c0c9b915867cc2c4b12d241b5636d3181deca4f | 4b079e58941be01982b59f92b02a63dc59439aa3 | /sbmt_decoder/include/sbmt/edge/impl/dlm_info.ipp | 24ff98d6712a34561030a26a75bcd55fd33eea14 | [] | no_license | isi-nlp/sbmt | 143b784540e79cdbeaed3655588e8f4e38157284 | 56b2a2651b7741219657d095db3ebd7875ed4963 | refs/heads/master | 2020-04-06T13:56:13.370832 | 2018-11-21T18:59:31 | 2018-11-21T18:59:31 | 47,573,153 | 6 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,688 | ipp | dlm_info.ipp | #ifndef SBMT_EDGE_dlm_info_ipp_
#define SBMT_EDGE_dlm_info_ipp_
#include <sbmt/grammar/rule_input.hpp>
#include <sbmt/grammar/grammar_in_memory.hpp>
#include <boost/scoped_array.hpp>
#include <algorithm>
#include <deque>
namespace sbmt {
// hash the boundary words.
// Do we have other good hash function for the boundary words?
template<unsigned N, class LMID_TYPE>
std::size_t dlm_info<N, LMID_TYPE>::hash_value() const {
std::size_t ret = 0;
for(unsigned j = 0; j < 2; ++j) {
for(unsigned i = 0; i < N; ++i){
boost::hash_combine(ret, (unsigned)boundary_words[j][i]);
}
}
return ret;
}
////////////////////////////////////////////////////////////////////////////////
template <unsigned N, class LMID_TYPE>
template <class C, class T, class LM>
std::basic_ostream<C,T>&
dlm_info<N, LMID_TYPE>::print( std::basic_ostream<C,T> &o , LM const& lm ) const
{
LMID_TYPE const* begin = &(boundary_words[0][0]);
LMID_TYPE const* end = begin + N;
lm.print(o,begin,end);
o << "//";
begin = &(boundary_words[1][0]);
end = begin + N;
lm.print(o,begin,end);
return o;
}
////////////////////////////////////////////////////////////////////////////////
template <unsigned N, class LMID_TYPE>
template <class C, class T>
std::basic_ostream<C,T>&
dlm_info<N, LMID_TYPE>::print_self(std::basic_ostream<C,T>& o) const
{
o<<"[";
LMID_TYPE const* begin = &(boundary_words[0][0]);
LMID_TYPE const* end = begin + N;
sbmt::print(o,begin,end);
o << "//";
begin = &(boundary_words[1][0]);
end = begin + N;
sbmt::print(o,begin,end);
o<<"]";
return o;
}
}
#endif
|
d1b7be7df198733b0da7dcb3ff41cb2dd624e4e9 | 7ee18aa256587f7ace1640ecc647dc5719c2da61 | /jni/exnihilope/tessellator/CrucibleTessellator.cpp | a8a2e97bd2f91130ba1df24b5605bfcfe225a55e | [
"Apache-2.0"
] | permissive | Virtualoso/ExNihiloPE | 3491ba06548075284114ff89178d5ffa50c03ad7 | 8a3636ff72456a6ae156f23ea79d871fa3721754 | refs/heads/master | 2021-06-21T09:31:44.923842 | 2017-07-27T16:29:20 | 2017-07-27T16:29:20 | 83,483,622 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 229 | cpp | CrucibleTessellator.cpp | #include "CrucibleTessellator.h"
#include "mcpe/level/BlockSource.h"
bool CrucibleTessellator::tessellate(Block const&b,BlockPos const&pos,unsigned char aux,bool wtf)
{
tessellateCauldronInWorld(b, pos, aux);
return true;
}
|
b3a71b3356b68bc1c8fc8db7b229149588dcf90f | 0d3105bcc542cbda87e84215bdf489456017adc3 | /Dawrf Undecided/Customer/BaseCustomer.h | 91c86af79b1549554f94f410960a4187f8ed5cf8 | [] | no_license | Hjallimar/Portfolio | f050732fef27e0071cb84606c917552c862f6464 | e02eb1ce47dcae664bb88def49dd40019d3ecece | refs/heads/master | 2021-11-19T05:31:45.147276 | 2021-09-16T12:59:08 | 2021-09-16T12:59:08 | 253,906,471 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,839 | h | BaseCustomer.h | //Author: Hjalmar Andersson
#pragma once
#include "GameFramework/Pawn.h"
#include "Item/BaseItem.h"
#include "UI/ItemDisplayWidget.h"
#include "Item/Level2WantType.h"
#include "BaseCustomer.generated.h"
class UCapsuleComponent;
class UBaseItem_DataAsset;
class UInteractableComponent;
class AItemCounter;
class UGM_BargainComponent;
class UGM_CustomerController;
class UZoomingComponent;
//enum class ELevel2WantType;
//class UDialogAsset;
//class UCustomerPersonalDialogAsset;
class AGameHUD;
class UMaterialInstance;
class USkeletalMeshComponent;
class USplineComponent;
UCLASS()
class ABaseCustomer: public APawn
{
GENERATED_BODY()
public:
ABaseCustomer();
private:
virtual void Tick(float DeltaTime) override;
virtual void BeginPlay() override;
public:
UFUNCTION()
void OnPlayerInteract(AActor* Player);
UFUNCTION()
void OnDialogOver(int Decision);
UFUNCTION()
void OnBuyItem(int Decision);
UFUNCTION(BlueprintImplementableEvent)
void PlayAnimationIndex(int i);
UFUNCTION()
void OnPlayerBreakInteract(AActor* Player);
UPROPERTY(EditAnywhere)
AActor* SplineHolder;
USplineComponent* MoveSpline;
protected:
UPROPERTY(EditAnywhere)
UCapsuleComponent* Capsule;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
UInteractableComponent* InteractComp;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
USceneComponent* ZoomPosition;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
USceneComponent* ItemHolder;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
USceneComponent* HatPosition;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
USceneComponent* BeardPosition;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
USceneComponent* EarsPosition;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
USceneComponent* NosePosition;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
USkeletalMeshComponent* SkeletalMesh;
APlayerCharacter* PlayerRef;;
UPROPERTY(EditAnywhere)
int CurrentLevel = 0; // 0 = 1, 1 = 2, 2 = 3
UPROPERTY(EditAnywhere)
ELevel2WantType Level2WantType = ELevel2WantType::DamageType;
public:
UFUNCTION(BlueprintCallable)
void BuyItem(ABaseItem* BoughtItem);
UFUNCTION(BlueprintImplementableEvent)
void EmojiEvent(float Happy);
UFUNCTION(BlueprintImplementableEvent)
void AboutToLeaveEvent();
UPROPERTY(EditAnywhere)
bool SidewayWalking = false;
UBaseItem_DataAsset* GetItemStats();
void AssignNewItemStats(UBaseItem_DataAsset* NewStats);
void AssignNewName(FString NewName);
void Move(float Timer);
void ResetCustomer();
void EquipHat(AActor* NewHat);
void EquipBeard(AActor* NewBeard);
void EquipEars(AActor* NewEars);
void EquipNose(AActor* NewNose);
void ChangeColor(UMaterialInstance* NewColor);
// <JH>
void SetLevel(int Level);
int GetLevel() const;
void SetLevel2WantType(ELevel2WantType WantType);
ELevel2WantType GetWantType() const;
// </JH>
void GrabBoughtItem();
bool Interactable = false;
FString NameOfCustomer = "";
ABaseItem* MyItem;
protected:
UPROPERTY(EditAnywhere)
UZoomingComponent* ZoomComp;
UPROPERTY(EditAnywhere)
bool bActivateZoom = true;
bool Grabbed = false;
UGM_BargainComponent* BargainComp;
UGM_CustomerController* Controller;
UPROPERTY(EditAnywhere)
UBaseItem_DataAsset* TargetItem;
// <JH>
/* The dialog that this customer can say. */
//UCustomerPersonalDialogAsset* DialogAsset;
// </JH>
void AssignDisplayInfo();
TArray<FStringFormatArg> StatNameList;
AGameHUD* GameHUD;
AActor* CurrentHat = nullptr;
AActor* CurrentBeard = nullptr;
AActor* CurrentNose = nullptr;
AActor* CurrentEars = nullptr;
UMaterialInstance* CurrentColor = nullptr;
UPROPERTY(EditAnywhere)
FVector SpawnPos;
UPROPERTY(EditAnywhere)
FVector ShopPos;
UFUNCTION(BlueprintCallable)
void OnPlayerHover(AActor* Player);
UFUNCTION(BlueprintCallable)
void OnPlayerStopHover(AActor* Player);
FDisplayLabelData GenerateDisplayItemInfo();
};
|
3f0b5ccc4bd34e2758c46c28d2b3191636c407a9 | 8da99752f4e4823286692c94a88737a604945421 | /cpp_module01/ex06/HumanB.cpp | 12a76fdac41c726a53aae23736b2b507dd79e9ec | [] | no_license | khcho902/CPP_Module | f2922b8a405616af02b345c6f8ef71392953f7b8 | cc4374ccdd50bb3a5c5455c6e77add9d8511db38 | refs/heads/main | 2023-04-06T21:49:36.872791 | 2021-04-13T06:41:01 | 2021-04-13T06:41:01 | 351,490,189 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,147 | cpp | HumanB.cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* HumanB.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kycho <kycho@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/03/26 22:43:33 by kycho #+# #+# */
/* Updated: 2021/03/26 22:51:38 by kycho ### ########.fr */
/* */
/* ************************************************************************** */
#include "HumanB.hpp"
HumanB::HumanB(std::string name) : name(name) {}
void HumanB::setWeapon(Weapon &weapon)
{
this->weapon = &weapon;
}
void HumanB::attack(void) const
{
std::cout << name << " attacks with his " << weapon->getType() << std::endl;
} |
aa718628aa3f169d4a9d4ef956fe7167d1534dce | 149c8203884a196136fbb6d023041119a8a733ef | /6.cpp | dc94231d53f1adab8f593dd12275588c8683d8c5 | [] | no_license | golnoushnb/ApLabGitPractice | 5f6ea2b6c5b448a90c49c95b20e2948a28eb03f7 | 9ecf786fc2d6043eb80ff7a2b3731f5a0ef634ca | refs/heads/main | 2023-03-24T03:04:03.127046 | 2021-03-18T10:06:03 | 2021-03-18T10:06:03 | 348,995,783 | 1 | 0 | null | 2021-03-18T08:27:57 | 2021-03-18T08:27:57 | null | UTF-8 | C++ | false | false | 239 | cpp | 6.cpp | #include<stdio.h>
int main()
{
int a;
char *x;
x = (char *)&a;
a = 512;
x[0] = 1;
printf("%d\n", a);
return 0;
}
//////////////////////////////////////////////////////
/*
code bedune eshkale :)
output: 513
*/ |
f93c7d2d0879dd17ce2b636c693ab80bf186d042 | eeb014a48d22e38bb4f866838c06f64ac2b4f4c6 | /string/permutationsOfString.cpp | fa082ea50168a2d600606455832ffc420e0957d3 | [] | no_license | oumkale/Geeks-For-Geeks-Work | 8cb2b7948fe1afc4dfa18d6d30f9ca1fc83db9cf | 96893a593b8e1dc03e0d8d3d23c279cd7968e1e6 | refs/heads/master | 2021-03-02T18:24:41.660387 | 2020-03-08T21:55:02 | 2020-03-08T21:55:02 | 245,893,402 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 494 | cpp | permutationsOfString.cpp | #include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
void palin(string s,bool val)
{
if(val==false)
return ;
else
{
cout << s << " ";
val = next_permutation(s.begin(),s.end());
palin(s,val);
}
}
int main() {
//code
long long int t;
cin>>t;
while(t--)
{
string str;
cin>>str;
long long int l = str.size();
sort(str.begin(),str.end());
palin(str,true);
cout << endl;
}
return 0;
}
|
967bab8efcfcfbbfaab56a49b8558e06eecb8a03 | c8b626559aa452139b91aa1930daa93c731fc506 | /check/subtype_implicit.cpp | 8b8e4f31a4a454ee6a49fa016a405c89c468645d | [] | no_license | jirihavel/butil | 685467b65e761b4da36adcf6e7c93a31347c6a98 | c3460eeef07c47c360e1b72a45720877bd6d7bd5 | refs/heads/master | 2020-02-26T16:28:46.155353 | 2016-10-18T07:45:59 | 2016-10-18T07:45:59 | 71,223,213 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,399 | cpp | subtype_implicit.cpp | #include <butil/subtype.h>
#include <cstdlib>
#include <catch.hpp>
using namespace butil;
template<typename T, typename P, typename Tp, typename Q, typename Tq>
bool operator==(subtype<T, P, Tp> const & a, subtype<T, Q, Tq> const & b)
{
return a.value() == b.value();
}
struct Failure
{
bool operator()(int)
{
return false;
}
};
struct IsMul2
{
bool operator()(int x)
{
return x%2 == 0;
}
};
struct IsMul4
: public IsMul2, public Failure
{
bool operator()(int x)
{
return x%4 == 0;
}
};
struct IsMul6
: public IsMul2
{
bool operator()(int x)
{
return x%6 == 0;
}
};
using IntF = implicit_subtype<int, Failure>;
using Int2 = implicit_subtype<int, IsMul2>;
using Int4 = implicit_subtype<int, IsMul4>;
using Int6 = implicit_subtype<int, IsMul6>;
TEST_CASE("Subtype construction", "[subtype]")
{
REQUIRE_NOTHROW(Int2{0});
REQUIRE_THROWS(Int2{1});
REQUIRE_NOTHROW(Int2{2});
REQUIRE_NOTHROW(Int4{0});
REQUIRE_THROWS(Int4{1});
REQUIRE_THROWS(Int4{2});
REQUIRE_THROWS(Int4{3});
REQUIRE_NOTHROW(Int4{4});
Int2 a(2);
Int4 b(4);
REQUIRE_NOTHROW(Int2{a});
REQUIRE_NOTHROW(Int2{b});
REQUIRE_THROWS(Int4{a});
REQUIRE_NOTHROW(Int4{b});
// IntF can't be directly assigned any int, but can be converted from Int4
for(int i = 0; i < 5; ++i)
REQUIRE_THROWS(IntF{i});
REQUIRE_THROWS(IntF{a});
REQUIRE_NOTHROW(IntF{b});
REQUIRE_THROWS(Int6{b});
}
TEST_CASE("Subtype assignment", "[subtype]")
{
{
Int2 a(0);
REQUIRE_NOTHROW(a = 0);
REQUIRE(a == 0);
REQUIRE_THROWS(a = 1);
REQUIRE(a == 0);
REQUIRE_NOTHROW(a = 2);
REQUIRE(a == 2);
}
{
Int4 a(0);
REQUIRE_NOTHROW(a = 0);
REQUIRE(a == 0);
REQUIRE_THROWS(a = 1);
REQUIRE(a == 0);
REQUIRE_THROWS(a = 2);
REQUIRE(a == 0);
REQUIRE_THROWS(a = 3);
REQUIRE(a == 0);
REQUIRE_NOTHROW(a = 4);
REQUIRE(a == 4);
}
{
IntF a(Int4(0));
REQUIRE_THROWS(a = Int2(2));
REQUIRE(a == 0);
REQUIRE_NOTHROW(a = Int4(4));
REQUIRE(a == 4);
}
{
Int6 a(6);
REQUIRE_THROWS(a = Int2(2));
REQUIRE(a == 6);
REQUIRE_THROWS(a = Int4(4));
REQUIRE(a == 6);
}
}
|
f525ca4bfe640cb7342c8b4e364848723294cf8d | 104e616a3c0ddb698c9dc86b4c19cb7c9893ad9f | /hidl2aidl/main.cpp | e440af65e5d37e5e87c2401796b057813dea51e7 | [
"Apache-2.0"
] | permissive | lineageos-kaibo/android_system_tools_hidl | 83e6deb53214e54673d224cb5a02737fd77c40e6 | 4ca5e6b5886fbe7aaa840db67276b60c95a1279b | refs/heads/lineage-18.1 | 2023-08-29T20:45:37.023245 | 2021-11-03T12:32:51 | 2021-11-03T12:32:51 | 446,873,586 | 0 | 1 | NOASSERTION | 2022-01-11T15:21:40 | 2022-01-11T15:21:38 | null | UTF-8 | C++ | false | false | 9,842 | cpp | main.cpp | /*
* Copyright (C) 2019 The Android Open Source Project
*
* 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 <android-base/logging.h>
#include <android-base/strings.h>
#include <hidl-util/FQName.h>
#include <hidl-util/Formatter.h>
#include <algorithm>
#include <iostream>
#include <vector>
#include "AST.h"
#include "AidlHelper.h"
#include "Coordinator.h"
#include "DocComment.h"
using namespace android;
static void usage(const char* me) {
Formatter out(stderr);
out << "Usage: " << me << " [-o <output path>] ";
Coordinator::emitOptionsUsageString(out);
out << " FQNAME...\n\n";
out << "Converts FQNAME, PACKAGE(.SUBPACKAGE)*@[0-9]+.[0-9]+(::TYPE)? to an aidl "
"equivalent.\n\n";
out.indent();
out.indent();
out << "-o <output path>: Location to output files.\n";
out << "-h: Prints this menu.\n";
Coordinator::emitOptionsDetailString(out);
out.unindent();
out.unindent();
}
static const FQName& getNewerFQName(const FQName& lhs, const FQName& rhs) {
CHECK(lhs.package() == rhs.package());
CHECK(lhs.name() == rhs.name());
if (lhs.getPackageMajorVersion() > rhs.getPackageMajorVersion()) return lhs;
if (lhs.getPackageMajorVersion() < rhs.getPackageMajorVersion()) return rhs;
if (lhs.getPackageMinorVersion() > rhs.getPackageMinorVersion()) return lhs;
return rhs;
}
// If similar FQName is not found, the same one is returned
static FQName getLatestMinorVersionFQNameFromList(const FQName& fqName,
const std::vector<FQName>& list) {
FQName currentCandidate = fqName;
bool found = false;
for (const FQName& current : list) {
if (current.package() == currentCandidate.package() &&
current.name() == currentCandidate.name() &&
current.getPackageMajorVersion() == currentCandidate.getPackageMajorVersion()) {
// Prioritize elements in the list over the provided fqName
currentCandidate = found ? getNewerFQName(current, currentCandidate) : current;
found = true;
}
}
return currentCandidate;
}
static FQName getLatestMinorVersionNamedTypeFromList(const FQName& fqName,
const std::vector<const NamedType*>& list) {
FQName currentCandidate = fqName;
bool found = false;
for (const NamedType* currentNamedType : list) {
const FQName& current = currentNamedType->fqName();
if (current.package() == currentCandidate.package() &&
current.name() == currentCandidate.name() &&
current.getPackageMajorVersion() == currentCandidate.getPackageMajorVersion()) {
// Prioritize elements in the list over the provided fqName
currentCandidate = found ? getNewerFQName(current, currentCandidate) : current;
found = true;
}
}
return currentCandidate;
}
static bool packageExists(const Coordinator& coordinator, const FQName& fqName) {
bool result;
status_t err = coordinator.packageExists(fqName, &result);
if (err != OK) {
std::cerr << "Error trying to find package " << fqName.string() << std::endl;
exit(1);
}
return result;
}
static AST* parse(const Coordinator& coordinator, const FQName& target) {
AST* ast = coordinator.parse(target);
if (ast == nullptr) {
std::cerr << "ERROR: Could not parse " << target.name() << ". Aborting." << std::endl;
exit(1);
}
if (!ast->getUnhandledComments().empty()) {
AidlHelper::notes()
<< "Unhandled comments from " << target.string()
<< " follow. Consider using hidl-lint to locate these and fixup as many "
<< "as possible.\n";
for (const DocComment* docComment : ast->getUnhandledComments()) {
docComment->emit(AidlHelper::notes());
}
AidlHelper::notes() << "\n";
}
return ast;
}
// hidl is intentionally leaky. Turn off LeakSanitizer by default.
extern "C" const char* __asan_default_options() {
return "detect_leaks=0";
}
int main(int argc, char** argv) {
const char* me = argv[0];
if (argc == 1) {
usage(me);
std::cerr << "ERROR: no fqname specified." << std::endl;
exit(1);
}
Coordinator coordinator;
std::string outputPath;
coordinator.parseOptions(argc, argv, "ho:", [&](int res, char* arg) {
switch (res) {
case 'o': {
if (!outputPath.empty()) {
fprintf(stderr, "ERROR: -o <output path> can only be specified once.\n");
exit(1);
}
outputPath = arg;
break;
}
case 'h':
case '?':
default: {
usage(me);
exit(1);
break;
}
}
});
if (!outputPath.empty() && outputPath.back() != '/') {
outputPath += "/";
}
coordinator.setOutputPath(outputPath);
argc -= optind;
argv += optind;
if (argc == 0) {
usage(me);
std::cerr << "ERROR: no fqname specified." << std::endl;
exit(1);
}
for (int i = 0; i < argc; ++i) {
const char* arg = argv[i];
FQName fqName;
if (!FQName::parse(arg, &fqName)) {
std::cerr << "ERROR: Invalid fully-qualified name as argument: " << arg << "."
<< std::endl;
exit(1);
}
if (!packageExists(coordinator, fqName)) {
std::cerr << "ERROR: Could not get sources for: " << arg << "." << std::endl;
exit(1);
}
FQName currentFqName(fqName);
while (currentFqName.getPackageMinorVersion() != 0) {
if (!packageExists(coordinator, currentFqName.downRev())) break;
currentFqName = currentFqName.downRev();
}
std::vector<FQName> targets;
while (packageExists(coordinator, currentFqName)) {
std::vector<FQName> newTargets;
status_t err = coordinator.appendPackageInterfacesToVector(currentFqName, &newTargets);
if (err != OK) break;
targets.insert(targets.end(), newTargets.begin(), newTargets.end());
currentFqName = currentFqName.upRev();
}
// targets should not contain duplicates since appendPackageInterfaces is only called once
// per version. now remove all the elements that are not the "newest"
const auto& newEnd =
std::remove_if(targets.begin(), targets.end(), [&](const FQName& fqName) -> bool {
if (fqName.name() == "types") return false;
return getLatestMinorVersionFQNameFromList(fqName, targets) != fqName;
});
targets.erase(newEnd, targets.end());
if (fqName.isFullyQualified()) {
// Ensure that this fqName exists in the list.
// If not then there is a more recent version
if (std::find(targets.begin(), targets.end(), fqName) == targets.end()) {
// Not found. Error.
std::cerr << "ERROR: A newer minor version of " << fqName.string()
<< " exists. Compile that instead." << std::endl;
exit(1);
} else {
targets.clear();
targets.push_back(fqName);
}
}
// Set up AIDL conversion log
std::string aidlPackage = AidlHelper::getAidlPackage(fqName);
std::string aidlName = AidlHelper::getAidlName(fqName);
Formatter err = coordinator.getFormatter(
fqName, Coordinator::Location::DIRECT,
base::Join(base::Split(aidlPackage, "."), "/") + "/" +
(aidlName.empty() ? "" : (aidlName + "-")) + "conversion.log");
AidlHelper::setNotes(&err);
std::vector<const NamedType*> namedTypesInPackage;
for (const FQName& target : targets) {
if (target.name() != "types") continue;
AST* ast = parse(coordinator, target);
CHECK(!ast->isInterface());
std::vector<const NamedType*> types = ast->getRootScope().getSortedDefinedTypes();
namedTypesInPackage.insert(namedTypesInPackage.end(), types.begin(), types.end());
}
const auto& endNamedTypes = std::remove_if(
namedTypesInPackage.begin(), namedTypesInPackage.end(),
[&](const NamedType* namedType) -> bool {
return getLatestMinorVersionNamedTypeFromList(
namedType->fqName(), namedTypesInPackage) != namedType->fqName();
});
namedTypesInPackage.erase(endNamedTypes, namedTypesInPackage.end());
for (const NamedType* namedType : namedTypesInPackage) {
AidlHelper::emitAidl(*namedType, coordinator);
}
for (const FQName& target : targets) {
if (target.name() == "types") continue;
AST* ast = parse(coordinator, target);
const Interface* iface = ast->getInterface();
CHECK(iface);
AidlHelper::emitAidl(*iface, coordinator);
}
}
return 0;
}
|
4169c92aded091afbdcc1128e979c086fd2abd17 | 079d55d486fefcfbebd8b202fdfa7a8042ef7c08 | /virtual_machine/virtual_machine/Exception.h | f3105bcb4cdb47d732f5c66130b7ede5b120991d | [] | no_license | karennik98/new_virtual_machine | c1994e741033da8662c8dec15add78080d85cf0c | eca001ce20fd2fddc9962e6dd7eade6f4c1aa93c | refs/heads/master | 2020-05-05T13:49:39.270696 | 2019-05-28T20:04:04 | 2019-05-28T20:04:04 | 180,094,791 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,068 | h | Exception.h | #pragma once
#ifndef EXCEPTION_H
#define EXCEPTION_H
#include <exception>
#include <string>
class Exception : public std::exception
{
public:
const char* what() const throw() = 0;
Exception(std::string file, std::string func, unsigned line) : m_file(file), m_func(func), m_line(line)
{
}
//virtual void info() = 0; //TO DO
protected:
std::string m_file;
unsigned m_line;
std::string m_func;
};
class wrong_func :public Exception {
public:
wrong_func(std::string file, std::string func, unsigned line) : Exception(file, func, line)
{
}
const char* what() const throw() override
{
return ("Wrong function call : File: " + m_file = "\nFunction: " + m_func + "\nLine: " + std::to_string(m_line)).c_str();
}
};
class bad_type :public Exception {
public:
bad_type(std::string file, std::string func, unsigned line) : Exception(file, func, line)
{
}
const char* what() const throw() override
{
return ("Wrong data type : File: " + m_file = "\nFunction: " + m_func + "\nLine: " + std::to_string(m_line)).c_str();
}
};
class wrong_file_path :public Exception {
public:
wrong_file_path(std::string file, std::string func, unsigned line) : Exception(file, func, line)
{
}
const char* what() const throw() override
{
return ("Wrong function path : File: " + m_file = "\nFunction: " + m_func + "\nLine: " + std::to_string(m_line)).c_str();
}
};
class incomplete_expression :public Exception {
public:
incomplete_expression(std::string file, std::string func, unsigned line) : Exception(file, func, line)
{
}
const char* what() const throw() override
{
return ("incomplete_expression : File: " + m_file = "\nFunction: " + m_func + "\nLine: " + std::to_string(m_line)).c_str();
}
};
class invalid_data_type :public Exception {
public:
invalid_data_type(std::string file, std::string func, unsigned line) : Exception(file, func, line)
{
}
const char* what() const throw() override
{
return ("invalid data type or wrong line : File: " + m_file = "\nFunction: " + m_func + "\nLine: " + std::to_string(m_line)).c_str();
}
};
#endif |
dfc21d756d3f18942bacf8aad8eb59e068f99303 | d9e660af9c6b2bd4da336caffa630691d7b5840e | /include/v2/pair/header.inc | ad88e62421ebc4feb710f0382c3598c535536536 | [
"Apache-2.0",
"LicenseRef-scancode-us-govt-public-domain"
] | permissive | Goddard-Fortran-Ecosystem/gFTL | 37b20fbfaa6d821e3fa2305f1bbecd9cb40884a2 | 4beb2f415ffe071a251d56eb56da8fcee62dd58c | refs/heads/main | 2023-08-17T23:41:16.242802 | 2023-04-13T13:53:27 | 2023-04-13T13:53:27 | 122,108,503 | 33 | 8 | Apache-2.0 | 2023-08-15T14:37:07 | 2018-02-19T19:13:49 | Fortran | UTF-8 | C++ | false | false | 190 | inc | header.inc | #include "shared/define_common_macros.inc"
#define __pair pair
#define __pair_guard pair_
#include "parameters/T1/copy_T1_to_pair_T1.inc"
#include "parameters/T2/copy_T2_to_pair_T2.inc"
|
9616f12f7bcc2008b35ab8dcf7786cecd2d828ba | 37f26f02cdbad66bd3c375845527342dd9a46573 | /code/123/main.cpp | 738e403502fad7c1e6f269f54ab0f9db17170f88 | [] | no_license | letinh6498/vietcodes.github.io | 24d3d6aaa2ea840e51a4cfa40f460858cd6d4401 | 5b4aedbcaa1dc8eb8de014d548aa253006bb97b2 | refs/heads/master | 2020-05-06T13:46:33.695669 | 2018-12-17T02:17:07 | 2018-12-17T02:17:07 | 180,155,312 | 1 | 0 | null | 2019-04-08T13:29:54 | 2019-04-08T13:29:54 | null | UTF-8 | C++ | false | false | 749 | cpp | main.cpp | #include <cstdio>
#include <vector>
#include <queue>
using namespace std;
typedef vector<vector<int>> dsk;
int main() {
int n, m;
scanf("%d%d", &n, &m);
dsk ke(n+1);
while (m--) {
int u, v;
scanf("%d%d", &u, &v);
ke[u].push_back(v);
ke[v].push_back(u);
}
vector<int> cha(n+1, 0);
int res = 0;
for (int i=1; i<=n; i++) if (!cha[i]) {
queue<int> q;
q.push(i);
while (!q.empty()) {
int u = q.front(); q.pop();
for (int v: ke[u]) if (v != cha[u]) {
cha[v] = u;
q.push(v);
if (ke[u].size() < ke[v].size() - (u==i)) res++;
}
}
}
printf("%d", res);
return 0;
}
|
60b77ac6d6e9e64169edf0f6b058d87521d3699f | 5bda36b616ec134435958ae12418f6cfcd6f473c | /PAINt/PAINt/Square.h | 4428a573f1e23f02a4b5bda29fa334323e558a77 | [] | no_license | brimst0ne/ProjRep | 82929cd07459a93b336a7f2b5b0615d56277cda9 | 33e159fd829794ba40aeb215250e9c362b2fed7c | refs/heads/master | 2022-07-18T20:37:38.547500 | 2020-05-21T15:45:26 | 2020-05-21T15:45:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,263 | h | Square.h | #pragma once
#include"Objects.h"
#include <iostream>
using namespace std;
template <class T>
class Square : public Objects
{
private:
int side;
T** Array;
public:
Square();
Square(int a, T _mark);
Square(const Square& square);
~Square();
int GetSide();
T GetMark();
void SetSide(int _side);
float Area() override;
ostream& print(ostream& os) override;
bool operator ==(const Square& other);
};
inline Square<char>::Square()
{
side = 1;
Array = new char* [1];
Array[0] = new char[1];
Array[0][0] = '*';
}
template<class T>
inline Square<T>::Square(int a, T _mark)
{
side = a;
Array = new T * [side];
for (int i = 0; i < side; i++)
Array[i] = new T[side];
for (int i = 0; i < side; i++)
for (int j = 0; j < side; j++)
Array[i][j] = _mark;
}
template<class T>
inline Square<T>::Square(const Square& square)
{
if (Array != 0)
{
for (int i = 0; i < side; i++)
delete[] Array[i];
delete[] Array;
}
side = square.side;
Array = new T * [side];
for (int i = 0; i < side; i++)
Array[i] = new T[side];
for (int i = 0; i < side; i++)
for (int j = 0; j < side; j++)
Array[i][j] = square.Array[i][j];
}
template<class T>
inline Square<T>::~Square()
{
if (Array != 0)
{
for (int i = 0; i < side; i++)
delete[] Array[i];
delete[] Array;
Array = 0;
side = 0;
}
}
template<class T>
inline int Square<T>::GetSide()
{
return side;
}
template<class T>
inline T Square<T>::GetMark()
{
return Array[0][0];
}
template<class T>
inline void Square<T>::SetSide(int _side)
{
T tmp = Array[0][0];
if (Array != 0)
{
for (int i = 0; i < side; i++)
delete[] Array[i];
delete[] Array;
}
side = _side;
Array = new T * [side];
for (int i = 0; i < side; i++)
Array[i] = new T[side];
for (int i = 0; i < side; i++)
for (int j = 0; j < side; j++)
Array[i][j] = tmp;
}
template<class T>
inline float Square<T>::Area()
{
return side * side;
}
template<class T>
inline ostream& Square<T>::print(ostream& os)
{
for (int i = 0; i < side; i++)
{
for (int j = 0; j < side; j++)
os << Array[i][j];
os << endl;
}
return os;
}
template<class T>
inline bool Square<T>::operator==(const Square& other)
{
if (side == other.side && Array[0][0] == other.Array[0][0])
return true;
return false;
} |
65f1f44204b8148efb584cbd79e96427ea39a558 | df6d96ba17dc9765770f587a1e04d9880925b2f8 | /src/mntLogger.cpp | 4871cc003f7645ae0dae58e4f9d7405ce2704664 | [
"0BSD"
] | permissive | pletzer/mint | 300c7e460453afba3fae4ccc8d04e12bf48341d3 | 50c2c66bce5e09cf14f9f244da67ab4be84fbe5b | refs/heads/master | 2023-08-08T08:38:20.361042 | 2023-07-31T07:18:37 | 2023-07-31T07:18:37 | 130,304,591 | 6 | 4 | 0BSD | 2023-07-31T07:18:38 | 2018-04-20T03:36:44 | C++ | UTF-8 | C++ | false | false | 1,885 | cpp | mntLogger.cpp | #include <mntLogger.h>
#include <ctime>
static char STRTIME[32];
void mntlog::logging(const std::string& severity,
const char* file,
const char* function,
int lineno,
const std::string& msg) {
std::time_t now = std::time(nullptr);
#ifdef __STDC_LIB_EXT1__
struct tm buf;
std::strftime(STRTIME, sizeof(STRTIME), "[%c ", localtime_r(&now, &buf));
#else
// unsafe version
std::strftime(STRTIME, sizeof(STRTIME), "[%c ", std::localtime(&now));
#endif
std::string message = std::string(STRTIME) + severity + ' ' + std::string(file) +
std::string(" in function ") + std::string(function) +
std::string(" (line ") + std::to_string(lineno) +
std::string("): ") + std::string(msg) + '\n';
MNT_LOGS.push_back(message);
}
void mntlog::info(const char* file, const char* function, int lineno,
const std::string& msg) {
logging("info ] ", file, function, lineno, msg);
}
void mntlog::warn(const char* file, const char* function, int lineno,
const std::string& msg) {
logging("Warning ] ", file, function, lineno, msg);
}
void mntlog::error(const char* file, const char* function, int lineno,
const std::string& msg) {
logging("ERROR ] ", file, function, lineno, msg);
}
LIBRARY_API
void mnt_printLogMessages() {
for (auto log = MNT_LOGS.begin(); log != MNT_LOGS.end(); ++log) {
std::cout << *log;
}
}
LIBRARY_API
void mnt_writeLogMessages(const char* filename, std::size_t filename_len) {
std::string fn = std::string(filename, filename_len);
std::ofstream f;
f.open(filename);
for (auto log = MNT_LOGS.begin(); log != MNT_LOGS.end(); ++log) {
f << *log;
}
f.close();
}
|
04a77e7cd7c0424259db8f2b3a5d10264314a1ec | 5c023bf2e7fea93a4841fefc9175ecd0b6beb772 | /src/timestep.cc | 460674ad0753e2d07b9d2956e4b35a3924bf5db5 | [
"MIT"
] | permissive | timy/dm_spec | 4f06a4fc26e2090fcd4e2c87e184a9fef0a04da7 | 1e50922f43612a638e56a2877b8500d30e191217 | refs/heads/master | 2021-01-20T21:53:24.381412 | 2014-09-16T13:14:40 | 2014-09-16T13:14:40 | 22,839,560 | 3 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,590 | cc | timestep.cc | #include "timestep.h"
#include "para.h"
#include <cstdlib>
#include <cstdio>
void para_time_config( struct config_t* cfg, struct parameters* ps );
void para_time_set( struct parameters* ps );
void para_time_ini( config_t* cfg, parameters* ps )
{
para_time_config( cfg, ps );
ps->time = new double [ps->nt];
para_time_set( ps );
}
void para_time_del( parameters* ps )
{
delete[] ps->time;
}
#include <cmath>
void para_time_set( parameters* ps )
{
ps->dt = (ps->t1 - ps->t0) / (ps->nt - 1.0); // interval
ps->it0 = long( (0.0 - ps->t0) / ps->dt ); // idx of t=0
double t_it0 = ps->t0 + ps->it0 * ps->dt; // t at index it0
double d_t0 = 0.0 - t_it0; // the shift
ps->t0 += d_t0; // right shift overall grid
ps->t1 += d_t0;
for (long it = 0; it < ps->nt; it ++)
ps->time[it] = ps->t0 + it * ps->dt;
// estimate the max freq from time interval
ps->help->w_max = M_PI / ps->dt / C_cm2au;
}
#include "file.h"
void para_time_write( parameters* ps )
{
open_para_file( para_file::TIME, NULL, ps, 0, NULL, NULL, "w" );
for (long it = 0; it < ps->nt; it ++)
fprintf( ps->file->item[para_file::TIME]->f[0]->fptr,
"%le\n", ps->time[it] / C_fs2au );
close_para_file( para_file::TIME, ps );
}
#include <libconfig.h>
void para_time_config( config_t* cfg, parameters* ps )
{
int nt;
config_lookup_int( cfg, "time.nt", &nt );
config_lookup_float( cfg, "time.t0", &(ps->t0) );
config_lookup_float( cfg, "time.t1", &(ps->t1) );
ps->nt = nt;
ps->t0 *= C_fs2au;
ps->t1 *= C_fs2au;
}
|
9a029b81ca1c86da700f96e21ae42f4407e7da8a | 194df6facd91e9c1e4a0be4b91010e0baf2f9d6d | /C++/2540.cpp | 91804209ff26d247971ded28e7dae3491f2576a8 | [] | no_license | tthheusalmeida/URI_Online_Judge | a421fb57055974211844a91825fdc0f7726a44f6 | 623725edc744321b964bc339dbe9af939673fac6 | refs/heads/master | 2022-10-04T08:41:55.245586 | 2020-06-08T21:27:10 | 2020-06-08T21:27:10 | 197,940,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | cpp | 2540.cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int num, soma = 0;
int aux;
while (cin >> num) {
for (int i = 0; i < num; i++) {
cin >> aux;
if(aux == 1){
soma++;
}
}
if((double)(soma)/(double)num >= (2.0/3.0)){
cout << "impeachment" << endl;
}
else{
cout << "acusacao arquivada" << endl;
}
soma = 0;
}
return 0;
}
|
39737ddaedaaaac08698c123f6bbd6eca0c65d34 | 4d4822b29e666cea6b2d99d5b9d9c41916b455a9 | /Example/Pods/Headers/Private/GeoFeatures/boost/python/return_by_value.hpp | 740bf5f79fd24a2e27ec0ae3d7f5509a60d54ef3 | [
"BSL-1.0",
"Apache-2.0"
] | permissive | eswiss/geofeatures | 7346210128358cca5001a04b0e380afc9d19663b | 1ffd5fdc49d859b829bdb8a9147ba6543d8d46c4 | refs/heads/master | 2020-04-05T19:45:33.653377 | 2016-01-28T20:11:44 | 2016-01-28T20:11:44 | 50,859,811 | 0 | 0 | null | 2016-02-01T18:12:28 | 2016-02-01T18:12:28 | null | UTF-8 | C++ | false | false | 65 | hpp | return_by_value.hpp | ../../../../../../../GeoFeatures/boost/python/return_by_value.hpp |
559918cf4296083cb9294e1497009ee16b480946 | 59ad5cde96c126cbc390ab47c682e16524c5a858 | /school/238/raytracer/code/CubeSkyMap.cpp | 4c62eadbca1177beb9cca819c3ddbe2597aea0c9 | [] | no_license | scheib/scheib.net | 096eea36b088838c6c98b2046a1a1d03b8c247d3 | ab2d0cfe0bc886ab776afb9df3eda117a5d17611 | refs/heads/master | 2021-01-13T03:42:44.855167 | 2018-10-08T17:55:08 | 2018-10-08T17:55:08 | 77,249,778 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,478 | cpp | CubeSkyMap.cpp | // CubeSkyMap.cpp: implementation of the CubeSkyMap class.
//
//////////////////////////////////////////////////////////////////////
#include "CubeSkyMap.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CubeSkyMap::CubeSkyMap(const Vec3f ambient,
const Vec3f background,
const char* file_z,
const char* file_x,
const char* file_y,
const char* file_nx,
const char* file_ny,
const char* file_nz) : SceneEnvironment(ambient, background)
{
buffer_z.ReadTGA(file_z);
buffer_x.ReadTGA(file_x);
buffer_y.ReadTGA(file_y);
buffer_nx.ReadTGA(file_nx);
buffer_ny.ReadTGA(file_ny);
buffer_nz.ReadTGA(file_nz);
}
//////////////////////////////////////////////////////////////////////
// get_universe_wall
//////////////////////////////////////////////////////////////////////
Vec3f CubeSkyMap::get_universe_wall(const Vec3f dir)
{
float x = dir.x;
float y = dir.y;
float z = dir.z;
float ax = (x<0) ? -x : x;
float ay = (y<0) ? -y : y;
float az = (z<0) ? -z : z; // also functions as direction to plane
Buffer *buffer = NULL;
// int pixel_x, pixel_y;
switch ( 4*(ax > ay) + 2*(ay > az) + 1*(az > ax) )
{
case 0: // all equal
case 1: // z
if (z >= 0) { buffer = &buffer_z; az = z; ax = x; ay = y; } // debug return Vec3f(0.0,0.0,1.0); }
else { buffer = &buffer_nz; az =-z; ax = x; ay = -y; } // debug return Vec3f(0.0,0.0,0.5); }
break;
case 2: // y
case 3: // y
if (y >= 0) { buffer = &buffer_y; az = y; ax = x; ay = -z; } // debug return Vec3f(0.0,1.0,0.0); }
else { buffer = &buffer_ny; az =-y; ax =-x; ay = -z; } // debug return Vec3f(0.0,0.5,0.0); }
break;
case 4: // x
if (x >= 0) { buffer = &buffer_x; az = x; ax =-y; ay = -z; } // debug return Vec3f(1.0,0.0,0.0); }
else { buffer = &buffer_nx; az =-x; ax = y; ay = -z; } // debug return Vec3f(0.5,0.0,0.0); }
break;
case 5: // z
if (z >= 0) { buffer = &buffer_z; az = z; ax = x; ay = y; } // debug return Vec3f(0.0,0.0,1.0); }
else { buffer = &buffer_nz; az =-z; ax = x; ay = -y; } // debug return Vec3f(0.0,0.0,0.5); }
break;
case 6: // x
case 7: // never should
default:
if (x >= 0) { buffer = &buffer_x; az = x; ax =-y; ay = -z; } // debug return Vec3f(1.0,0.0,0.0); }
else { buffer = &buffer_nx; az =-x; ax = y; ay = -z; } // debug return Vec3f(0.5,0.0,0.0); }
break;
}
// pixel_x = (int)( ((ax/az)/2 + 0.5)*buffer->get_width() );
//pixel_y = (int)( ((ay/az)/2 + 0.5)*buffer->get_height() );
ax = ((ax/az)/2 + (float)0.5)*buffer->get_width() ;
ay = ((ay/az)/2 + (float)0.5)*buffer->get_height();
//if (pixel_x < 0) pixel_x = 0;
//if (pixel_y < 0) pixel_y = 0;
//if (pixel_x >=buffer->get_width()) pixel_x = buffer->get_width()-1;
//if (pixel_y >=buffer->get_height()) pixel_y = buffer->get_height()-1;
// debug return Vec3f( ((float)pixel_x)/buffer->get_width(), ((float)pixel_y)/buffer->get_height(), 0.5);
return buffer->get_color(ax, ay)*the_background_color;
}
|
4ab8c67f19da5453d2764731c70c08c004bbe5ea | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/Programs/UnrealLightmass/Private/Launch/UnitTest.h | 300f605b1f617fcdf8db5de027272935fe4ede9f | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 252 | h | UnitTest.h | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
namespace Lightmass
{
/**
* Run "unit tests" making use of LightmassCore and other functionality
* worth testing
*/
void TestLightmass();
}
|
1f86ccd17209db97cbfb6c16523aafaf0142ee8e | a1099c617ac709c5588db41fd1c82748a37e770b | /Classes/ImlecNode.cpp | 9a3736c99d4527676dd8ef32e2793fb6bf4e2f1c | [
"MIT"
] | permissive | anilgulgor/Football-Card-Game | d79fd8aa8ac2beb0689883cea56e298fd6b2ed53 | 2637218a540bb12265416188bf19512c767d6fcf | refs/heads/master | 2020-12-30T10:24:27.755140 | 2017-08-02T06:16:46 | 2017-08-02T06:16:46 | 98,968,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 799 | cpp | ImlecNode.cpp | //
// ImlecNode.cpp
// Santra
//
// Created by Anıl Gülgör on 27/03/16.
//
//
#include "ImlecNode.hpp"
ImlecNode::ImlecNode(std::string name){
this->name = name;
}
ImlecNode *ImlecNode::create(std::string name){
ImlecNode *imlecNode = new ImlecNode(name);
return imlecNode;
}
void ImlecNode::addImageToNode() {
Sprite *imlec = Sprite::create(this->name);
FIT_H(imlec, GET_HEIGHT*.15);
this->addChild(imlec);
auto anim1 = MoveBy::create(.5, Vec2(this->getPositionX() + 15,0));
auto anim2 = MoveBy::create(.5, Vec2(this->getPositionX() - 15,0));
auto seq = Sequence::create(anim1,anim2, NULL);
auto infiniteAction = RepeatForever::create(seq);
imlec->runAction(infiniteAction);
} |
3217d0fd50d6b8090f6cc90741011841460465fc | 77ea942dd3776c2aecfc0eb23d0e11c5de9b6181 | /paplp/problem.hpp | 829d3ede583b31630ac7e01f2d9664e0cbc0aa15 | [] | no_license | oleks/paplp | 079365d7175e8cd5755c83938d6a5b29dd52c8a2 | 9da171e70862a551fb424e08536cd2952e53612e | refs/heads/master | 2016-09-05T19:23:06.011617 | 2012-05-05T15:26:42 | 2012-05-05T15:26:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,360 | hpp | problem.hpp | #pragma once
#include "types.hpp"
/* The problem hierarhy..
*
* Abstract classing is done via the protected constructor since no common
* method seemed to unite the problems. A suitable candidate could probably be
* a \mono{Solve} method, but this is (at the moment) orthogonal to the current
* solver architecture.
*
* All problems are Positive Linear (it's in the name, PAPLP), single objective.
*
* The relation between Problem and SpecialProblem is \emph{not} a hierarchical
* one, but rather, a Problem can be asymmetrically converted into a
* SpecialProblem. Hence the presence of the type-cast override in the Problem
* class definition.
*/
class ApproximationProblem
{
protected:
ApproximationProblem(
const Data epsilon);
ApproximationProblem(
ApproximationProblem const &otherProblem);
public:
const Data epsilon;
};
class Problem : public ApproximationProblem
{
public:
HostVector &objective;
HostVector &constraintMatrix;
HostVector &constraintBounds;
Problem(
const Data epsilon,
HostVector &objective,
HostVector &constraintMatrix,
HostVector &constraintBounds);
};
class SpecialProblem : public ApproximationProblem
{
public:
HostVector objective;
HostVector constraintMatrix;
SpecialProblem(Problem const &problem);
size_t NoOfVariables(void);
size_t NoOfConstraints(void);
};
|
f5ec81a342cefb524889367fd11cc7418dadb580 | 63c71060f36866bca4ac27304cef6d5755fdc35c | /src/DocSelector/DocSelectorType.h | a0623609142547fe5585d0eec5c3a1b5b7ad23fa | [] | no_license | 15831944/barry_dev | bc8441cbfbd4b62fbb42bee3dcb79ff7f5fcaf8a | d4a83421458aa28ca293caa7a5567433e9358596 | refs/heads/master | 2022-03-24T07:00:26.810732 | 2015-12-22T07:19:58 | 2015-12-22T07:19:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,690 | h | DocSelectorType.h | ////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2005
// Packet Engineering, Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification is not permitted unless authorized in writing by a duly
// appointed officer of Packet Engineering, Inc. or its derivatives
//
//
// Modification History:
// 09/28/2010 Created by Chen Ding
////////////////////////////////////////////////////////////////////////////
#ifndef Aos_DocSelector_DocSelectorType_h
#define Aos_DocSelector_DocSelectorType_h
#include "Thread/Mutex.h"
#include "Util/String.h"
#include "Util/HashUtil.h"
#define AOSDOCSELTYPE_CREATED_DOC "createddoc"
#define AOSDOCSELTYPE_BY_DOCID "docid"
#define AOSDOCSELTYPE_BY_MYSQL "mysql"
#define AOSDOCSELTYPE_LOCAL_VAR "localvar"
#define AOSDOCSELTYPE_BY_OBJID "objid"
#define AOSDOCSELTYPE_RETRIEVED_DOC "retrieveddoc"
#define AOSDOCSELTYPE_RECEIVED_DOC "receiveddoc"
#define AOSDOCSELTYPE_SOURCE_DOC "sourcedoc"
#define AOSDOCSELTYPE_TARGET_DOC "targetdoc"
#define AOSDOCSELTYPE_CLOUDID "cloudid"
#define AOSDOCSELTYPE_WORKING_DOC "workingdoc"
#define AOSDOCSELTYPE_OLD_DOC "olddoc"
#define AOSDOCSELTYPE_STMC_BY_DOC "stmcbydoc"
#define AOSDOCSELTYPE_DOC_BY_USER_GROUPS "docbygrps"
#define AOSDOCSELTYPE_REQUESTER_ACCT "requesterdoc"
#define AOSDOCSELTYPE_RDATA_DOC "rdatadoc"
struct AosDocSelectorType
{
private:
static OmnMutex smLock;
static AosStr2U32_t smNameMap;
public:
enum E
{
eInvalid,
eCreatedDoc,
eDocid,
eLocalVar,
eObjid,
eRetrievedDoc,
eReceivedDoc,
eSourceDoc,
eTargetDoc,
eCloudid,
eWorkingDoc,
eOldDoc,
eStmcByDoc,
eDocByUserGroups,
eRequesterAcct,
eRdataDoc,
eMysql,
eMax
};
static E getFirst() {return (E)(eInvalid+1);}
static E getLast() {return (E)(eMax-1);}
static bool isValid(const E type)
{
return (type > eInvalid && type < eMax);
}
static bool addName(const OmnString &name, const E type)
{
OmnScreen << "DocSelector add: " << name << endl;
smLock.lock();
if (!smNameMap.empty())
{
AosStr2U32Itr_t itr = smNameMap.find(name);
if (itr != smNameMap.end())
{
smLock.unlock();
OmnAlarm << "Doc Selector name reused: " << name << ":" << type << enderr;
return false;
}
}
smNameMap[name] = type;
smLock.unlock();
return true;
}
static E toEnum(const OmnString &name)
{
if (name.length() < 1) return eInvalid;
if (smNameMap.empty()) return eInvalid;
AosStr2U32Itr_t itr = smNameMap.find(name);
if (itr == smNameMap.end()) return eInvalid;
return (E) itr->second;
}
};
#endif
|
784a58ace23b7ad621be71e8982d90b3e84f128c | b768b26835e5186332104ab7b180cb61dd86eae0 | /app/src/main/cpp/ffmpegAudio.cpp | 6b51515f64fe8a3fe112a23a4ee788730ab968c0 | [] | no_license | hub3266/android_ffmpeg | adb204ec4ced701347528b57a333dd547ae5846d | c1d5be5dd32681cd137011fc107f0bd70eaa2c3b | refs/heads/master | 2021-07-11T06:03:42.615260 | 2017-10-16T06:41:45 | 2017-10-16T06:41:45 | 104,154,542 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,513 | cpp | ffmpegAudio.cpp | //
// Created by lenovo on 2017/9/26.
//
#include "ffmpegAudio.h"
extern "C" {
AVFormatContext *pContext;
AVCodecContext *pCodecContext;
AVCodec *pCodec;
AVPacket *avPacket;
AVFrame *frame;
SwrContext * swrContext;
int out_channer_nb;
uint8_t *out_buffer;
int createffmpeg(const char *input,int *rate,int *channel) {
av_register_all();
pContext = avformat_alloc_context();
avformat_open_input(&pContext, input, NULL, NULL);
avformat_find_stream_info(pContext, NULL);
int audio_stream_idx = -1;
for (int i = 0; i < pContext->nb_streams; i++) {
if (pContext->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
audio_stream_idx = i;
}
}
pCodecContext = pContext->streams[audio_stream_idx]->codec;
pCodec = avcodec_find_decoder(pCodecContext->codec_id);
if (avcodec_open2(pCodecContext, pCodec, NULL) < 0) {
LOGE("获取编码失败");
}
avPacket = (AVPacket *) av_malloc(sizeof(AVPacket));
frame = av_frame_alloc();
int64_t out_ch_layout = AV_CH_LAYOUT_STEREO;
//输出的采样率必须与输入相同
int out_sample_rate = pCodecContext->sample_rate;
swrContext = swr_alloc();
swr_alloc_set_opts(swrContext,out_ch_layout,AV_SAMPLE_FMT_S16,out_sample_rate,
pCodecContext->channel_layout,pCodecContext->sample_fmt,pCodecContext->sample_rate,0,0);
swr_init(swrContext);
// 获取通道数 2
out_channer_nb = av_get_channel_layout_nb_channels(AV_CH_LAYOUT_STEREO);
//为什么是输入的采样率 和通道数
*rate = pCodecContext->sample_rate;
*channel = pCodecContext->channels;
out_buffer = (uint8_t *) av_malloc(44100 * 2);
LOGE("初始化FFmpeg完毕");
return 0;
}
int getPCM(void **pcm,size_t *pcm_size) {
int got_frame;
while(av_read_frame(pContext,avPacket)>=0){
avcodec_decode_audio4(pCodecContext,frame,&got_frame,avPacket);
if(got_frame){
swr_convert(swrContext, &out_buffer,44100*2, (const uint8_t **) frame->data, frame->sample_rate);
size_t size =av_samples_get_buffer_size(NULL,out_channer_nb,frame->nb_samples,AV_SAMPLE_FMT_S16,frame->nb_samples);
*pcm = out_buffer;
*pcm_size = size;
LOGI("解码");
break;
}
}
return 0;
}
void release() {
av_free_packet(avPacket);
av_free(out_buffer);
av_frame_free(&frame);
swr_free(&swrContext);
avcodec_close(pCodecContext);
avformat_close_input(&pContext);
}
}
|
aaecec468b95a7644141adfb97efff37887c85fc | c3db8588ef91dda1f6aabfa8e19005d0fefdc168 | /ParEGO/ParEGOIteration14/ParEGOIteration14/DACE.cpp | 2cb1a280b566d91593d0a0d33186a61de24de29d | [] | no_license | CristinaCristescu/ParEGO_Eigen | 1d0b41fd46818a40c90860d7fa11e6160eddd718 | dd8a69c224566ba4ffeae9a7db87142575b92f20 | refs/heads/master | 2020-02-26T13:08:50.483763 | 2015-09-03T09:20:54 | 2015-09-03T09:20:54 | 25,860,582 | 8 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 17,478 | cpp | DACE.cpp | /**
* \class DACE
*
*
* \brief The class represents the DACE model of an optimization function.
*
* This class builds the function model for the optimization function
* and sets all the hyperparameters and provides the routines for evaluting a
* sample points using the estimated function.
*
*
* \note Copyright (c) 2006 Joshua Knowles. All rights reserved.
*
* \author (last to touch it) Bianca-Cristina Cristescu
*
* \version $Revision: 13
*
* \date $Date: 05/02/15.
*
*/
#include <cstdlib>
#include <iostream>
#include <math.h>
#include "DACE.h"
#include "SearchSpace.h"
#define Debug false
#define PI 3.141592653
#define INFTY 1.0e35;
#define RN rand()/(RAND_MAX+1.0)
using namespace std;
/**
* Creates the DACE model for the function characterized by the given search
* space.
*
* @param[in] space - The search space for the function to be estimated.
*
*/
DACE::DACE(SearchSpace* space):
gtheta(space->getSearchSpaceDimensions()+1),
gp(space->getSearchSpaceDimensions()+1)
{
daceSpace = space;
fNoParamDACE = daceSpace->getSearchSpaceDimensions()*2+2;
gmu = 0;
gsigma = 0;
gymin = INFTY;
pInvR = MyMatrix();
pgy = MyVector();
glik = 0;
one_pInvR = MyMatrix();
onetransp_pInvR = MyMatrix();
onetransp_pInvR_one = 0;
predict_y_constant = MyVector();
init_gz();
}
/**
* Returns the best solution found so far and the measured fitness.
*
* @param[in] iter - The iteration number.
*
*/
int DACE::best_solution(int iter)
{
int best_ever = 1;
for(int i = 1; i <= iter; i++)
{
daceSpace->fMeasuredFit[i] = daceSpace->tcheby(daceSpace->fCostVectors[i]);
if(daceSpace->fMeasuredFit[i] < gymin)
{
gymin = daceSpace->fMeasuredFit[i];
best_ever = i;
}
}
return best_ever;
}
/**
* Computes the weighted distance between to sample points
* in the correlation matrix.
*
* @param[in] xi - Sample point.
* @param[in] xj - Sample point.
*
*/
double DACE::weighted_distance(const std::vector<double>& xi, const std::vector<double>& xj)
{
double sum = 0.0;
double nxi[daceSpace->getSearchSpaceDimensions()+1];
double nxj[daceSpace->getSearchSpaceDimensions()+1];
for(int h = 1; h <= daceSpace->getSearchSpaceDimensions(); h++)
{
nxi[h] = (xi[h]-daceSpace->fXMin[h])/(daceSpace->fXMax[h]-daceSpace->fXMin[h]);
nxj[h] = (xj[h]-daceSpace->fXMin[h])/(daceSpace->fXMax[h]-daceSpace->fXMin[h]);
sum += gtheta[h]*pow(abs(nxi[h]-nxj[h]),gp[h]);
}
if(Debug)
fprintf(stderr, "sum: %.5lf", sum);
return(sum);
}
/**
* Computes the correlation between two sample points.
*
* @param[in] xi - Sample point.
* @param[in] xj - Sample point.
* @param[in] theta - The activity parameter.
* @param[in] p - The smoothness parameter.
* @param[in] dim -The dimension of the correlation.
*
*/
double DACE::correlation(const std::vector<double>& xi, const std::vector<double>& xj,
const std::vector<double>& theta, const std::vector<double>& p,
int dim)
{
return exp(-weighted_distance(xi,xj));
}
/**
* Build a correlation matrix.
*
* @param[in] solutionVector - The solution vectors to build the matrix from.
* @param[out] R - The correlation matrix.
*
*/
void DACE::build_R(const std::vector<std::vector<double> >& solutionVector,
MyMatrix& R)
{
// takes the array of x vectors, theta, and p, and returns the correlation matrix R.
for(int i = 0; i < fCorrelationSize; i++)
{
for(int j = 0; j<fCorrelationSize; j++)
{
if(Debug)
fprintf(stderr,"%.5lf %.5lf %.5lf %.5lf %d\n",
solutionVector[i][1],solutionVector[j][1],gtheta[1],
gp[1], daceSpace->getSearchSpaceDimensions());
R.insert(i,j,correlation(solutionVector[i+1], solutionVector[j+1],
gtheta, gp, fCorrelationSize));
if(Debug)
fprintf(stderr,"%.5lf\n", R(i,j));
}
if(Debug)
fprintf(stderr,"\n");
}
}
/**
* Computes the unbiased predictor of y.
*
* @param[in] solutionVector - The vector of solutions.
*
*/
double DACE::predict_y(const std::vector<std::vector<double> >& solutionVector)
{
double y_hat;
MyVector one(fCorrelationSize, 1);
MyVector r(fCorrelationSize);
for(int i = 0; i<fCorrelationSize; i++)
{
r.insert(i, correlation(solutionVector[fCorrelationSize+1],
solutionVector[i+1],gtheta,gp,
daceSpace->getSearchSpaceDimensions()));
}
double intermidiate = ((r.transpose()*pInvR)*(predict_y_constant))(0,0);
y_hat = gmu + intermidiate;
return(y_hat);
}
/**
* Computes the mean squarred error of the predictor.
*
* @param[in] solutionVector - The solution vector.
*
*/
double DACE::s2(const std::vector<std::vector<double> >& solutionVector)
{
double s2;
MyVector r(fCorrelationSize);
for(int i = 0; i < fCorrelationSize; i++)
{
r.insert(i, correlation(solutionVector[fCorrelationSize+1],
solutionVector[i+1],gtheta,gp,
daceSpace->getSearchSpaceDimensions()));
}
double intermediate = (1- (r.transpose()*pInvR*r)(0,0) +
pow((1-(onetransp_pInvR*r)(0,0)),2)/
onetransp_pInvR_one);
if (intermediate < 0)
intermediate = abs(intermediate);
s2 = gsigma * intermediate;
return(s2);
}
/**
* Computes the mean of the stochastic process.
*
* @param[in] y - The y vector.
* @param[in] iter - The current iteration.
*
*/
double DACE::mu_hat(MyVector& y, int iter)
{
double numerator, denominator;
MyVector one(fCorrelationSize, 1);
numerator = (one_pInvR*y)(0,0);
denominator = (one.transpose()*pInvR*one)(0,0);
return(numerator/denominator);
}
/**
* Computes the standard deviation of the stochastic process.
*
* @param[in] y - The y vector.
*
*/
double DACE::sigma_squared_hat(MyVector& y)
{
double numerator, denominator;
MyVector one(fCorrelationSize,1);
MyVector vmu(one*gmu);
MyVector diff = y - vmu;
numerator = (diff.transpose()*pInvR*diff)(0,0);
denominator = fCorrelationSize;
return numerator/denominator;
}
/**
* Computes the likelihood of the stochastic process.
*
* @param[in] param - The paramenters of teh model.
* @param[in] solutionVectors - The solution vectors.
* @param[in] measuredFit - The measured fit of the solutions.
*
*/
double DACE::likelihood(const std::vector<double>& param,
const std::vector<std::vector<double> >& solutionVectors,
const std::vector<double>& measuredFit)
{
double lik;
// Constraint handling.
double sum = 0.0;
for(int j = 1; j < fNoParamDACE; j++)
{
if(param[j] < 0.0)
sum += param[j];
}
if(sum < 0)
return(-sum);
sum = 0.0;
bool outofrange=false;
for(int j = 1; j <= daceSpace->getSearchSpaceDimensions(); j++)
{
if(param[daceSpace->getSearchSpaceDimensions()+j] >= 2.0)
{
sum += param[daceSpace->getSearchSpaceDimensions()+j]-2.0;
outofrange = true;
}
else if(param[daceSpace->getSearchSpaceDimensions()+j] < 1.0)
{
sum += -(param[daceSpace->getSearchSpaceDimensions()+j]-1.0);
outofrange = true;
}
}
if(outofrange)
return(sum);
double coefficient;
double sigma = param[2*daceSpace->getSearchSpaceDimensions()+1];
MyMatrix R(fCorrelationSize,fCorrelationSize);
build_R(solutionVectors, R);
MyVector y = MyVector(fCorrelationSize, measuredFit);
double detR = R.posdet();
coefficient = 1.0/(pow(2*PI,(double)fCorrelationSize/2.0)*
pow(sigma,(double)fCorrelationSize/2.0)*sqrt(detR));
lik = coefficient*exp(-(double)fCorrelationSize/2.0);
return(-lik);
}
/**
* Builds the entire DACE model for the given function, setting the parameters
* computing the correlation matrix, the inverse of it and the y vector.
*
* @param[in] iter - The current iteration number.
*
*/
void DACE::buildDACE(int iter)
{
std::vector<std::vector<double> > param(fNoParamDACE+2,
std::vector<double>(fNoParamDACE+1));
std::vector<std::vector<double> > bestparam(fNoParamDACE+2,
std::vector<double>(fNoParamDACE+1));
double best_lik = INFTY;
int besti;
for(int i = 0; i < 30; i++)
{
for(int d = 1; d <= daceSpace->getSearchSpaceDimensions(); d++)
{
double rn1 = RN;
double rn2 = RN;
gtheta[d] = 1+rn1*2;
gp[d] = 1.01+rn2*0.98;
}
MyVector y;
MyMatrix R;
std::vector<double>* interm;
// If the iteraion number is greater than 11*d+24 then do not use all
// solutions to construct the model.
if(iter > 11*daceSpace->getSearchSpaceDimensions()+24)
{
fCorrelationSize = 11*daceSpace->getSearchSpaceDimensions()+24;
daceSpace->chooseAndUpdateSolutions(iter, fCorrelationSize);
R = MyMatrix(fCorrelationSize, fCorrelationSize);
build_R(daceSpace->fSelectedXVectors, R);
interm = &daceSpace->fSelectedMeasuredFit;
}
else
{
fCorrelationSize = iter;
R = MyMatrix(fCorrelationSize, fCorrelationSize);
build_R(daceSpace->fXVectors, R);
interm = &daceSpace->fMeasuredFit;
}
y = MyVector(fCorrelationSize, *interm);
double detR = R.posdet();
assert (detR > 0);
pInvR = R.inverse();
MyVector one = MyVector(fCorrelationSize, 1);
one_pInvR = one*pInvR;
onetransp_pInvR_one = (one.transpose()*pInvR*one)(0,0);
gmu = mu_hat(y, iter);
//fprintf(stderr,"OK - mu %lg calculated\n", gmu);
gsigma = sigma_squared_hat(y);
//fprintf(stderr,"OK - sigma %lg calculated\n", gsigma);
for(int j = 1; j <= daceSpace->getSearchSpaceDimensions(); j++)
{
param[1][j] = gtheta[j];
param[1][j+daceSpace->getSearchSpaceDimensions()] = gp[j];
}
param[1][2*daceSpace->getSearchSpaceDimensions()+1] = gsigma;
param[1][2*daceSpace->getSearchSpaceDimensions()+2] = gmu;
if(iter > 11*daceSpace->getSearchSpaceDimensions()+24)
{
glik = likelihood(param[1], daceSpace->fSelectedXVectors,
daceSpace->fSelectedMeasuredFit);
}
else
{
glik = likelihood(param[1], daceSpace->fXVectors, daceSpace->fMeasuredFit);
}
if(glik < best_lik)
{
besti = i;
best_lik = glik;
for(int j = 1; j <= fNoParamDACE; j++)
{
bestparam[1][j] = param[1][j];
}
}
}
for (int i = 1; i <= daceSpace->getSearchSpaceDimensions(); i++)
{
gtheta[i] = bestparam[1][i];
gp[i] = bestparam[1][i+daceSpace->getSearchSpaceDimensions()];
}
gsigma = bestparam[1][2*daceSpace->getSearchSpaceDimensions()+1];
gmu = bestparam[1][2*daceSpace->getSearchSpaceDimensions()+2];
// fprintf(stderr,"FINAL DACE parameters = \n");
// for(int d=1; d<=daceSpace->getSearchSpaceDimensions(); d++)
// fprintf(stderr,,"%lg ", gtheta[d]);
// for(int d=1; d<=daceSpace->getSearchSpaceDimensions(); d++)
// fprintf(stderr,,"%lg ", gp[d]);
// fprintf(stderr,," %lg %lg\n",
// bestparam[1][2*daceSpace->getSearchSpaceDimensions()+1],
// bestparam[1][2*daceSpace->getSearchSpaceDimensions()+2]);
//
/* Use the full R matrix */
fCorrelationSize = iter;
MyMatrix pgR(fCorrelationSize,fCorrelationSize);
build_R(daceSpace->fXVectors, pgR);
pgR.posdet();
pInvR = pgR.inverse();
pgy = MyVector(fCorrelationSize, daceSpace->fMeasuredFit);
// Compute the constant linear algebra for this iteration.
MyVector one = MyVector(fCorrelationSize, 1);
one_pInvR = one*pInvR;
onetransp_pInvR = one.transpose()*pInvR;
onetransp_pInvR_one = (one.transpose()*pInvR*one)(0,0);
predict_y_constant = pgy-(one*gmu);
gymin = INFTY;
for(int i = 1; i < fCorrelationSize; i++)
if(pgy(i) < gymin)
gymin = pgy(i);
}
/**
* Computes the standard distribution.
*
* @param[in] z - The point.
*
*/
double DACE::standard_distribution(double z)
{
double zv;
int idx;
if(z < 0.0)
{
z *= -1;
if(z >= 7.5)
zv = gz[75];
else
{
idx = (int)(z*10);
zv = gz[idx]+((10*z)-idx)*(gz[idx+1]-gz[idx]);
}
zv = 1-zv;
}
else if(z == 0.0)
zv = 0.5;
else
{
if(z >= 7.5)
zv = gz[75];
else
{
idx = (int)(z*10);
zv = gz[idx]+((10*z)-idx)*(gz[idx+1]-gz[idx]);
}
}
return(zv);
}
/**
* Computes the standard density.
*
* @param[in] z - The point.
*
*/
double DACE::standard_density(double z)
{
double psi;
psi = (1/sqrt(2*PI))*exp(-(z*z)/2.0);
return (psi);
}
/**
* Computes teh expected improvement of the current solution point.
*
* @param[in] yhat - The y prediction.
* @param[in] ymin - The minimum y.
* @param[in] s - Square of the errror.
*
*/
double DACE::expected_improvement(double yhat, double ymin, double s)
{
double E;
double sdis;
double sden;
if(s <= 0)
return 0;
if((ymin-yhat)/s < -7.0)
sdis = 0.0;
else if((ymin-yhat)/s > 7.0)
{
sdis = 1.0;
}
else
sdis = standard_distribution((ymin-yhat)/s);
sden = standard_density((ymin-yhat)/s);
E = (ymin - yhat)*sdis + s*sden;
return E;
}
/**
* Returns -(expected improvement), given the solution x.
*
* @param[in] x - The solution for which to compute the ei.
* @param[in] iter - The current iteration.
*
*/
double DACE::wrap_ei(const std::vector<double>& x, int iter)
{
for(int d = 1; d <= daceSpace->getSearchSpaceDimensions(); d++)
{
daceSpace->fXVectors[fCorrelationSize+1][d] = x[d];
}
double fit;
// predict the fitness
fit = predict_y(daceSpace->fXVectors);
// compute the error
double ss;
ss = s2(daceSpace->fXVectors);
// compute the expected improvement
double ei;
ei = expected_improvement(fit, gymin, sqrt(ss));
//fprintf(stderr,"-ei in wrap_ei() = %.4lg\n", -ei);
for(int d = 1; d <= daceSpace->getSearchSpaceDimensions(); d++)
{
if((x[d] > daceSpace->fXMax[d]) || (x[d] < daceSpace->fXMin[d]))
ei = -1000;
}
return(-ei);
}
void DACE::init_gz()
{
gz[0]=0.50000000000000;
gz[1]=0.53982783727702;
gz[2]=0.57925970943909;
gz[3]=0.61791142218894;
gz[4]=0.65542174161031;
gz[5]=0.69146246127400;
gz[6]=0.72574688224993;
gz[7]=0.75803634777718;
gz[8]=0.78814460141985;
gz[9]=0.81593987468377;
gz[10]=0.84134474629455;
gz[11]=0.86433393905361;
gz[12]=0.88493032977829;
gz[13]=0.90319951541439;
gz[14]=0.91924334076623;
gz[15]=0.93319279873114;
gz[16]=0.94520070830044;
gz[17]=0.95543453724146;
gz[18]=0.96406968088707;
gz[19]=0.97128344018400;
gz[20]=0.97724986805182;
gz[21]=0.98213557943718;
gz[22]=0.98609655248650;
gz[23]=0.98927588997832;
gz[24]=0.99180246407540;
gz[25]=0.99379033467422;
gz[26]=0.99533881197628;
gz[27]=0.99653302619696;
gz[28]=0.99744486966957;
gz[29]=0.99813418669962;
gz[30]=0.99865010196838;
gz[31]=0.99903239678678;
gz[32]=0.99931286206208;
gz[33]=0.99951657585762;
gz[34]=0.99966307073432;
gz[35]=0.99976737092097;
gz[36]=0.99984089140984;
gz[37]=0.99989220026652;
gz[38]=0.99992765195608;
gz[39]=0.99995190365598;
gz[40]=0.99996832875817;
gz[41]=0.99997934249309;
gz[42]=0.99998665425098;
gz[43]=0.99999146009453;
gz[44]=0.99999458745609;
gz[45]=0.99999660232688;
gz[46]=0.99999788754530;
gz[47]=0.99999869919255;
gz[48]=0.99999920667185;
gz[49]=0.99999952081672;
gz[50]=0.99999971332813;
gz[51]=0.99999983016330;
gz[52]=0.99999990035088;
gz[53]=0.99999994209631;
gz[54]=0.99999996667842;
gz[55]=0.99999998100990;
gz[56]=0.99999998928215;
gz[57]=0.99999999400951;
gz[58]=0.99999999668420;
gz[59]=0.99999999818247;
gz[60]=0.99999999901340;
gz[61]=0.99999999946965;
gz[62]=0.99999999971768;
gz[63]=0.99999999985118;
gz[64]=0.99999999992231;
gz[65]=0.99999999995984;
gz[66]=0.99999999997944;
gz[67]=0.99999999998958;
gz[68]=0.99999999999477;
gz[69]=0.99999999999740;
gz[70]=0.99999999999872;
gz[71]=0.99999999999938;
gz[72]=0.99999999999970;
gz[73]=0.99999999999986;
gz[74]=0.99999999999993;
gz[75]=0.99999999999997;
}
|
dae1720049930fb3876f77dced4ff871358cdff2 | 9f22a7234bfcb6608d4e4e7ea41164eaa75371ca | /Games Lab/Source/PCGTesting/FogActor.h | 407779a78fc20712ef281f3e8804b13a917725c2 | [] | no_license | haigleonard/C- | bb177701b1582d5c41230724d56a28ac6ef9ca3a | 1d98b45567fd725bfd2966164e2b84f36fec808a | refs/heads/master | 2020-03-30T16:52:07.709270 | 2018-11-19T18:19:21 | 2018-11-19T18:19:21 | 151,431,164 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 826 | h | FogActor.h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "FogActor.generated.h"
UCLASS()
class PCGTESTING_API AFogActor : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
AFogActor();
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
inline void setVisibility(bool vis) {
this->visible = vis;
}
inline void init(int floor) {
floorNumber = floor;
}
UFUNCTION(BlueprintCallable)
bool getVisibility();
private:
UPROPERTY()
bool visible = true;
UPROPERTY(BlueprintReadOnly, meta = (AllowPrivateAccess = "true"))
int floorNumber;
};
|
053df4628e80e34cd0a7b5bfc4764d0ca45308a5 | 1351f48d45c2c05e322c29c5f68da0d4590888c1 | /uva2/AC Question and Code/12015.cpp | 7711aeefcadd3cad8c0e2206ec9f4d06e50a7252 | [] | no_license | laziestcoder/Problem-Solvings | cd2db049c3f6d1c79dfc9fba9250f4e1d8c7b588 | df487904876c748ad87a72a25d2bcee892a4d443 | refs/heads/master | 2023-08-19T09:55:32.144858 | 2021-10-21T20:32:21 | 2021-10-21T20:32:21 | 114,477,726 | 9 | 2 | null | 2021-06-22T15:46:43 | 2017-12-16T17:18:43 | Python | UTF-8 | C++ | false | false | 501 | cpp | 12015.cpp | #include<bits/stdc++.h>
using namespace std;
int main ()
{
int t,i,j,n[10],max;
char s[10][10000];
cin>>t;
for(i=1; i<=t; i++)
{
max=0;
for(j=0; j<10; j++)
{
cin>>s[j];
cin>>n[j];
if(n[j]>max)
max=n[j];
}
cout<<"Case #"<<i<<":\n";
for(j=0; j<10; j++)
{
if(n[j]==max)
{
cout<<s[j]<<endl;
}
}
}
return 0;
}
|
73ffa10bd6346cb02f80d8795a35f1f13ef0fc38 | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/c-family/c-attribs.cc | 111a33f405ac11344e422b6362b2a623d9d50f89 | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | C++ | false | false | 188,885 | cc | c-attribs.cc | /* C-family attributes handling.
Copyright (C) 1992-2022 Free Software Foundation, Inc.
This file is part of GCC.
GCC 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, or (at your option) any later
version.
GCC 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 GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#define INCLUDE_STRING
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "target.h"
#include "function.h"
#include "tree.h"
#include "memmodel.h"
#include "c-common.h"
#include "gimple-expr.h"
#include "tm_p.h"
#include "stringpool.h"
#include "cgraph.h"
#include "diagnostic.h"
#include "intl.h"
#include "stor-layout.h"
#include "calls.h"
#include "attribs.h"
#include "varasm.h"
#include "trans-mem.h"
#include "c-objc.h"
#include "common/common-target.h"
#include "langhooks.h"
#include "tree-inline.h"
#include "toplev.h"
#include "tree-iterator.h"
#include "opts.h"
#include "gimplify.h"
#include "tree-pretty-print.h"
#include "gcc-rich-location.h"
static tree handle_packed_attribute (tree *, tree, tree, int, bool *);
static tree handle_nocommon_attribute (tree *, tree, tree, int, bool *);
static tree handle_common_attribute (tree *, tree, tree, int, bool *);
static tree handle_hot_attribute (tree *, tree, tree, int, bool *);
static tree handle_cold_attribute (tree *, tree, tree, int, bool *);
static tree handle_no_sanitize_attribute (tree *, tree, tree, int, bool *);
static tree handle_no_sanitize_address_attribute (tree *, tree, tree,
int, bool *);
static tree handle_no_sanitize_thread_attribute (tree *, tree, tree,
int, bool *);
static tree handle_no_address_safety_analysis_attribute (tree *, tree, tree,
int, bool *);
static tree handle_no_sanitize_undefined_attribute (tree *, tree, tree, int,
bool *);
static tree handle_no_sanitize_coverage_attribute (tree *, tree, tree, int,
bool *);
static tree handle_asan_odr_indicator_attribute (tree *, tree, tree, int,
bool *);
static tree handle_stack_protect_attribute (tree *, tree, tree, int, bool *);
static tree handle_no_stack_protector_function_attribute (tree *, tree,
tree, int, bool *);
static tree handle_noinline_attribute (tree *, tree, tree, int, bool *);
static tree handle_noclone_attribute (tree *, tree, tree, int, bool *);
static tree handle_nocf_check_attribute (tree *, tree, tree, int, bool *);
static tree handle_symver_attribute (tree *, tree, tree, int, bool *);
static tree handle_noicf_attribute (tree *, tree, tree, int, bool *);
static tree handle_noipa_attribute (tree *, tree, tree, int, bool *);
static tree handle_leaf_attribute (tree *, tree, tree, int, bool *);
static tree handle_always_inline_attribute (tree *, tree, tree, int,
bool *);
static tree handle_gnu_inline_attribute (tree *, tree, tree, int, bool *);
static tree handle_artificial_attribute (tree *, tree, tree, int, bool *);
static tree handle_flatten_attribute (tree *, tree, tree, int, bool *);
static tree handle_error_attribute (tree *, tree, tree, int, bool *);
static tree handle_used_attribute (tree *, tree, tree, int, bool *);
static tree handle_uninitialized_attribute (tree *, tree, tree, int, bool *);
static tree handle_externally_visible_attribute (tree *, tree, tree, int,
bool *);
static tree handle_no_reorder_attribute (tree *, tree, tree, int,
bool *);
static tree handle_const_attribute (tree *, tree, tree, int, bool *);
static tree handle_transparent_union_attribute (tree *, tree, tree,
int, bool *);
static tree handle_scalar_storage_order_attribute (tree *, tree, tree,
int, bool *);
static tree handle_constructor_attribute (tree *, tree, tree, int, bool *);
static tree handle_destructor_attribute (tree *, tree, tree, int, bool *);
static tree handle_mode_attribute (tree *, tree, tree, int, bool *);
static tree handle_section_attribute (tree *, tree, tree, int, bool *);
static tree handle_special_var_sec_attribute (tree *, tree, tree, int, bool *);
static tree handle_aligned_attribute (tree *, tree, tree, int, bool *);
static tree handle_warn_if_not_aligned_attribute (tree *, tree, tree,
int, bool *);
static tree handle_weak_attribute (tree *, tree, tree, int, bool *) ;
static tree handle_noplt_attribute (tree *, tree, tree, int, bool *) ;
static tree handle_alias_ifunc_attribute (bool, tree *, tree, tree, bool *);
static tree handle_ifunc_attribute (tree *, tree, tree, int, bool *);
static tree handle_alias_attribute (tree *, tree, tree, int, bool *);
static tree handle_weakref_attribute (tree *, tree, tree, int, bool *) ;
static tree handle_visibility_attribute (tree *, tree, tree, int,
bool *);
static tree handle_tls_model_attribute (tree *, tree, tree, int,
bool *);
static tree handle_no_instrument_function_attribute (tree *, tree,
tree, int, bool *);
static tree handle_no_profile_instrument_function_attribute (tree *, tree,
tree, int, bool *);
static tree handle_malloc_attribute (tree *, tree, tree, int, bool *);
static tree handle_dealloc_attribute (tree *, tree, tree, int, bool *);
static tree handle_tainted_args_attribute (tree *, tree, tree, int, bool *);
static tree handle_returns_twice_attribute (tree *, tree, tree, int, bool *);
static tree handle_no_limit_stack_attribute (tree *, tree, tree, int,
bool *);
static tree handle_pure_attribute (tree *, tree, tree, int, bool *);
static tree handle_tm_attribute (tree *, tree, tree, int, bool *);
static tree handle_tm_wrap_attribute (tree *, tree, tree, int, bool *);
static tree handle_novops_attribute (tree *, tree, tree, int, bool *);
static tree handle_unavailable_attribute (tree *, tree, tree, int,
bool *);
static tree handle_vector_size_attribute (tree *, tree, tree, int,
bool *) ATTRIBUTE_NONNULL(3);
static tree handle_vector_mask_attribute (tree *, tree, tree, int,
bool *) ATTRIBUTE_NONNULL(3);
static tree handle_nonnull_attribute (tree *, tree, tree, int, bool *);
static tree handle_nonstring_attribute (tree *, tree, tree, int, bool *);
static tree handle_nothrow_attribute (tree *, tree, tree, int, bool *);
static tree handle_cleanup_attribute (tree *, tree, tree, int, bool *);
static tree handle_warn_unused_result_attribute (tree *, tree, tree, int,
bool *);
static tree handle_access_attribute (tree *, tree, tree, int, bool *);
static tree handle_sentinel_attribute (tree *, tree, tree, int, bool *);
static tree handle_type_generic_attribute (tree *, tree, tree, int, bool *);
static tree handle_alloc_size_attribute (tree *, tree, tree, int, bool *);
static tree handle_alloc_align_attribute (tree *, tree, tree, int, bool *);
static tree handle_assume_aligned_attribute (tree *, tree, tree, int, bool *);
static tree handle_target_attribute (tree *, tree, tree, int, bool *);
static tree handle_target_clones_attribute (tree *, tree, tree, int, bool *);
static tree handle_optimize_attribute (tree *, tree, tree, int, bool *);
static tree ignore_attribute (tree *, tree, tree, int, bool *);
static tree handle_no_split_stack_attribute (tree *, tree, tree, int, bool *);
static tree handle_zero_call_used_regs_attribute (tree *, tree, tree, int,
bool *);
static tree handle_argspec_attribute (tree *, tree, tree, int, bool *);
static tree handle_fnspec_attribute (tree *, tree, tree, int, bool *);
static tree handle_warn_unused_attribute (tree *, tree, tree, int, bool *);
static tree handle_returns_nonnull_attribute (tree *, tree, tree, int, bool *);
static tree handle_omp_declare_simd_attribute (tree *, tree, tree, int,
bool *);
static tree handle_omp_declare_variant_attribute (tree *, tree, tree, int,
bool *);
static tree handle_simd_attribute (tree *, tree, tree, int, bool *);
static tree handle_omp_declare_target_attribute (tree *, tree, tree, int,
bool *);
static tree handle_non_overlapping_attribute (tree *, tree, tree, int, bool *);
static tree handle_designated_init_attribute (tree *, tree, tree, int, bool *);
static tree handle_patchable_function_entry_attribute (tree *, tree, tree,
int, bool *);
static tree handle_copy_attribute (tree *, tree, tree, int, bool *);
static tree handle_nsobject_attribute (tree *, tree, tree, int, bool *);
static tree handle_objc_root_class_attribute (tree *, tree, tree, int, bool *);
static tree handle_objc_nullability_attribute (tree *, tree, tree, int, bool *);
static tree handle_signed_bool_precision_attribute (tree *, tree, tree, int,
bool *);
static tree handle_retain_attribute (tree *, tree, tree, int, bool *);
/* Helper to define attribute exclusions. */
#define ATTR_EXCL(name, function, type, variable) \
{ name, function, type, variable }
/* Define attributes that are mutually exclusive with one another. */
static const struct attribute_spec::exclusions attr_aligned_exclusions[] =
{
/* Attribute name exclusion applies to:
function, type, variable */
ATTR_EXCL ("aligned", true, false, false),
ATTR_EXCL ("packed", true, false, false),
ATTR_EXCL (NULL, false, false, false)
};
extern const struct attribute_spec::exclusions attr_cold_hot_exclusions[] =
{
ATTR_EXCL ("cold", true, true, true),
ATTR_EXCL ("hot", true, true, true),
ATTR_EXCL (NULL, false, false, false)
};
static const struct attribute_spec::exclusions attr_common_exclusions[] =
{
ATTR_EXCL ("common", true, true, true),
ATTR_EXCL ("nocommon", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
static const struct attribute_spec::exclusions attr_inline_exclusions[] =
{
ATTR_EXCL ("noinline", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
static const struct attribute_spec::exclusions attr_noinline_exclusions[] =
{
ATTR_EXCL ("always_inline", true, true, true),
ATTR_EXCL ("gnu_inline", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
extern const struct attribute_spec::exclusions attr_noreturn_exclusions[] =
{
ATTR_EXCL ("alloc_align", true, true, true),
ATTR_EXCL ("alloc_size", true, true, true),
ATTR_EXCL ("const", true, true, true),
ATTR_EXCL ("malloc", true, true, true),
ATTR_EXCL ("pure", true, true, true),
ATTR_EXCL ("returns_twice", true, true, true),
ATTR_EXCL ("warn_unused_result", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
static const struct attribute_spec::exclusions
attr_warn_unused_result_exclusions[] =
{
ATTR_EXCL ("noreturn", true, true, true),
ATTR_EXCL ("warn_unused_result", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
static const struct attribute_spec::exclusions attr_returns_twice_exclusions[] =
{
ATTR_EXCL ("noreturn", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
/* Exclusions that apply to attribute alloc_align, alloc_size, and malloc. */
static const struct attribute_spec::exclusions attr_alloc_exclusions[] =
{
ATTR_EXCL ("const", true, true, true),
ATTR_EXCL ("noreturn", true, true, true),
ATTR_EXCL ("pure", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
static const struct attribute_spec::exclusions attr_const_pure_exclusions[] =
{
ATTR_EXCL ("const", true, true, true),
ATTR_EXCL ("alloc_align", true, true, true),
ATTR_EXCL ("alloc_size", true, true, true),
ATTR_EXCL ("malloc", true, true, true),
ATTR_EXCL ("noreturn", true, true, true),
ATTR_EXCL ("pure", true, true, true),
ATTR_EXCL (NULL, false, false, false)
};
/* Exclusions that apply to attributes that put declarations in specific
sections. */
static const struct attribute_spec::exclusions attr_section_exclusions[] =
{
ATTR_EXCL ("noinit", true, true, true),
ATTR_EXCL ("persistent", true, true, true),
ATTR_EXCL ("section", true, true, true),
ATTR_EXCL (NULL, false, false, false),
};
static const struct attribute_spec::exclusions attr_stack_protect_exclusions[] =
{
ATTR_EXCL ("stack_protect", true, false, false),
ATTR_EXCL ("no_stack_protector", true, false, false),
ATTR_EXCL (NULL, false, false, false),
};
/* Table of machine-independent attributes common to all C-like languages.
Current list of processed common attributes: nonnull. */
const struct attribute_spec c_common_attribute_table[] =
{
/* { name, min_len, max_len, decl_req, type_req, fn_type_req,
affects_type_identity, handler, exclude } */
{ "signed_bool_precision", 1, 1, false, true, false, true,
handle_signed_bool_precision_attribute, NULL },
{ "packed", 0, 0, false, false, false, false,
handle_packed_attribute,
attr_aligned_exclusions },
{ "nocommon", 0, 0, true, false, false, false,
handle_nocommon_attribute,
attr_common_exclusions },
{ "common", 0, 0, true, false, false, false,
handle_common_attribute,
attr_common_exclusions },
/* FIXME: logically, noreturn attributes should be listed as
"false, true, true" and apply to function types. But implementing this
would require all the places in the compiler that use TREE_THIS_VOLATILE
on a decl to identify non-returning functions to be located and fixed
to check the function type instead. */
{ "noreturn", 0, 0, true, false, false, false,
handle_noreturn_attribute,
attr_noreturn_exclusions },
{ "volatile", 0, 0, true, false, false, false,
handle_noreturn_attribute, NULL },
{ "stack_protect", 0, 0, true, false, false, false,
handle_stack_protect_attribute,
attr_stack_protect_exclusions },
{ "no_stack_protector", 0, 0, true, false, false, false,
handle_no_stack_protector_function_attribute,
attr_stack_protect_exclusions },
{ "noinline", 0, 0, true, false, false, false,
handle_noinline_attribute,
attr_noinline_exclusions },
{ "noclone", 0, 0, true, false, false, false,
handle_noclone_attribute, NULL },
{ "no_icf", 0, 0, true, false, false, false,
handle_noicf_attribute, NULL },
{ "noipa", 0, 0, true, false, false, false,
handle_noipa_attribute, NULL },
{ "leaf", 0, 0, true, false, false, false,
handle_leaf_attribute, NULL },
{ "always_inline", 0, 0, true, false, false, false,
handle_always_inline_attribute,
attr_inline_exclusions },
{ "gnu_inline", 0, 0, true, false, false, false,
handle_gnu_inline_attribute,
attr_inline_exclusions },
{ "artificial", 0, 0, true, false, false, false,
handle_artificial_attribute, NULL },
{ "flatten", 0, 0, true, false, false, false,
handle_flatten_attribute, NULL },
{ "used", 0, 0, true, false, false, false,
handle_used_attribute, NULL },
{ "unused", 0, 0, false, false, false, false,
handle_unused_attribute, NULL },
{ "uninitialized", 0, 0, true, false, false, false,
handle_uninitialized_attribute, NULL },
{ "retain", 0, 0, true, false, false, false,
handle_retain_attribute, NULL },
{ "externally_visible", 0, 0, true, false, false, false,
handle_externally_visible_attribute, NULL },
{ "no_reorder", 0, 0, true, false, false, false,
handle_no_reorder_attribute, NULL },
/* The same comments as for noreturn attributes apply to const ones. */
{ "const", 0, 0, true, false, false, false,
handle_const_attribute,
attr_const_pure_exclusions },
{ "scalar_storage_order", 1, 1, false, false, false, false,
handle_scalar_storage_order_attribute, NULL },
{ "transparent_union", 0, 0, false, false, false, false,
handle_transparent_union_attribute, NULL },
{ "constructor", 0, 1, true, false, false, false,
handle_constructor_attribute, NULL },
{ "destructor", 0, 1, true, false, false, false,
handle_destructor_attribute, NULL },
{ "mode", 1, 1, false, true, false, false,
handle_mode_attribute, NULL },
{ "section", 1, 1, true, false, false, false,
handle_section_attribute, attr_section_exclusions },
{ "aligned", 0, 1, false, false, false, false,
handle_aligned_attribute,
attr_aligned_exclusions },
{ "warn_if_not_aligned", 0, 1, false, false, false, false,
handle_warn_if_not_aligned_attribute, NULL },
{ "weak", 0, 0, true, false, false, false,
handle_weak_attribute, NULL },
{ "noplt", 0, 0, true, false, false, false,
handle_noplt_attribute, NULL },
{ "ifunc", 1, 1, true, false, false, false,
handle_ifunc_attribute, NULL },
{ "alias", 1, 1, true, false, false, false,
handle_alias_attribute, NULL },
{ "weakref", 0, 1, true, false, false, false,
handle_weakref_attribute, NULL },
{ "no_instrument_function", 0, 0, true, false, false, false,
handle_no_instrument_function_attribute,
NULL },
{ "no_profile_instrument_function", 0, 0, true, false, false, false,
handle_no_profile_instrument_function_attribute,
NULL },
{ "malloc", 0, 2, true, false, false, false,
handle_malloc_attribute, attr_alloc_exclusions },
{ "returns_twice", 0, 0, true, false, false, false,
handle_returns_twice_attribute,
attr_returns_twice_exclusions },
{ "no_stack_limit", 0, 0, true, false, false, false,
handle_no_limit_stack_attribute, NULL },
{ "pure", 0, 0, true, false, false, false,
handle_pure_attribute,
attr_const_pure_exclusions },
{ "transaction_callable", 0, 0, false, true, false, false,
handle_tm_attribute, NULL },
{ "transaction_unsafe", 0, 0, false, true, false, true,
handle_tm_attribute, NULL },
{ "transaction_safe", 0, 0, false, true, false, true,
handle_tm_attribute, NULL },
{ "transaction_safe_dynamic", 0, 0, true, false, false, false,
handle_tm_attribute, NULL },
{ "transaction_may_cancel_outer", 0, 0, false, true, false, false,
handle_tm_attribute, NULL },
/* ??? These two attributes didn't make the transition from the
Intel language document to the multi-vendor language document. */
{ "transaction_pure", 0, 0, false, true, false, false,
handle_tm_attribute, NULL },
{ "transaction_wrap", 1, 1, true, false, false, false,
handle_tm_wrap_attribute, NULL },
/* For internal use (marking of builtins) only. The name contains space
to prevent its usage in source code. */
{ "no vops", 0, 0, true, false, false, false,
handle_novops_attribute, NULL },
{ "deprecated", 0, 1, false, false, false, false,
handle_deprecated_attribute, NULL },
{ "unavailable", 0, 1, false, false, false, false,
handle_unavailable_attribute, NULL },
{ "vector_size", 1, 1, false, true, false, true,
handle_vector_size_attribute, NULL },
{ "vector_mask", 0, 0, false, true, false, true,
handle_vector_mask_attribute, NULL },
{ "visibility", 1, 1, false, false, false, false,
handle_visibility_attribute, NULL },
{ "tls_model", 1, 1, true, false, false, false,
handle_tls_model_attribute, NULL },
{ "nonnull", 0, -1, false, true, true, false,
handle_nonnull_attribute, NULL },
{ "nonstring", 0, 0, true, false, false, false,
handle_nonstring_attribute, NULL },
{ "nothrow", 0, 0, true, false, false, false,
handle_nothrow_attribute, NULL },
{ "may_alias", 0, 0, false, true, false, false, NULL, NULL },
{ "cleanup", 1, 1, true, false, false, false,
handle_cleanup_attribute, NULL },
{ "warn_unused_result", 0, 0, false, true, true, false,
handle_warn_unused_result_attribute,
attr_warn_unused_result_exclusions },
{ "sentinel", 0, 1, false, true, true, false,
handle_sentinel_attribute, NULL },
/* For internal use (marking of builtins) only. The name contains space
to prevent its usage in source code. */
{ "type generic", 0, 0, false, true, true, false,
handle_type_generic_attribute, NULL },
{ "alloc_size", 1, 2, false, true, true, false,
handle_alloc_size_attribute,
attr_alloc_exclusions },
{ "cold", 0, 0, true, false, false, false,
handle_cold_attribute,
attr_cold_hot_exclusions },
{ "hot", 0, 0, true, false, false, false,
handle_hot_attribute,
attr_cold_hot_exclusions },
{ "no_address_safety_analysis",
0, 0, true, false, false, false,
handle_no_address_safety_analysis_attribute,
NULL },
{ "no_sanitize", 1, -1, true, false, false, false,
handle_no_sanitize_attribute, NULL },
{ "no_sanitize_address", 0, 0, true, false, false, false,
handle_no_sanitize_address_attribute, NULL },
{ "no_sanitize_thread", 0, 0, true, false, false, false,
handle_no_sanitize_thread_attribute, NULL },
{ "no_sanitize_undefined", 0, 0, true, false, false, false,
handle_no_sanitize_undefined_attribute, NULL },
{ "no_sanitize_coverage", 0, 0, true, false, false, false,
handle_no_sanitize_coverage_attribute, NULL },
{ "asan odr indicator", 0, 0, true, false, false, false,
handle_asan_odr_indicator_attribute, NULL },
{ "warning", 1, 1, true, false, false, false,
handle_error_attribute, NULL },
{ "error", 1, 1, true, false, false, false,
handle_error_attribute, NULL },
{ "target", 1, -1, true, false, false, false,
handle_target_attribute, NULL },
{ "target_clones", 1, -1, true, false, false, false,
handle_target_clones_attribute, NULL },
{ "optimize", 1, -1, true, false, false, false,
handle_optimize_attribute, NULL },
/* For internal use only. The leading '*' both prevents its usage in
source code and signals that it may be overridden by machine tables. */
{ "*tm regparm", 0, 0, false, true, true, false,
ignore_attribute, NULL },
{ "no_split_stack", 0, 0, true, false, false, false,
handle_no_split_stack_attribute, NULL },
{ "zero_call_used_regs", 1, 1, true, false, false, false,
handle_zero_call_used_regs_attribute, NULL },
/* For internal use only (marking of function arguments).
The name contains a space to prevent its usage in source code. */
{ "arg spec", 1, -1, true, false, false, false,
handle_argspec_attribute, NULL },
/* For internal use (marking of builtins and runtime functions) only.
The name contains space to prevent its usage in source code. */
{ "fn spec", 1, 1, false, true, true, false,
handle_fnspec_attribute, NULL },
{ "warn_unused", 0, 0, false, false, false, false,
handle_warn_unused_attribute, NULL },
{ "returns_nonnull", 0, 0, false, true, true, false,
handle_returns_nonnull_attribute, NULL },
{ "omp declare simd", 0, -1, true, false, false, false,
handle_omp_declare_simd_attribute, NULL },
{ "omp declare variant base", 0, -1, true, false, false, false,
handle_omp_declare_variant_attribute, NULL },
{ "omp declare variant variant", 0, -1, true, false, false, false,
handle_omp_declare_variant_attribute, NULL },
{ "simd", 0, 1, true, false, false, false,
handle_simd_attribute, NULL },
{ "omp declare target", 0, -1, true, false, false, false,
handle_omp_declare_target_attribute, NULL },
{ "omp declare target link", 0, 0, true, false, false, false,
handle_omp_declare_target_attribute, NULL },
{ "omp declare target implicit", 0, 0, true, false, false, false,
handle_omp_declare_target_attribute, NULL },
{ "omp declare target host", 0, 0, true, false, false, false,
handle_omp_declare_target_attribute, NULL },
{ "omp declare target nohost", 0, 0, true, false, false, false,
handle_omp_declare_target_attribute, NULL },
{ "omp declare target block", 0, 0, true, false, false, false,
handle_omp_declare_target_attribute, NULL },
{ "non overlapping", 0, 0, true, false, false, false,
handle_non_overlapping_attribute, NULL },
{ "alloc_align", 1, 1, false, true, true, false,
handle_alloc_align_attribute,
attr_alloc_exclusions },
{ "assume_aligned", 1, 2, false, true, true, false,
handle_assume_aligned_attribute, NULL },
{ "designated_init", 0, 0, false, true, false, false,
handle_designated_init_attribute, NULL },
{ "fallthrough", 0, 0, false, false, false, false,
handle_fallthrough_attribute, NULL },
{ "patchable_function_entry", 1, 2, true, false, false, false,
handle_patchable_function_entry_attribute,
NULL },
{ "nocf_check", 0, 0, false, true, true, true,
handle_nocf_check_attribute, NULL },
{ "symver", 1, -1, true, false, false, false,
handle_symver_attribute, NULL},
{ "copy", 1, 1, false, false, false, false,
handle_copy_attribute, NULL },
{ "noinit", 0, 0, true, false, false, false,
handle_special_var_sec_attribute, attr_section_exclusions },
{ "persistent", 0, 0, true, false, false, false,
handle_special_var_sec_attribute, attr_section_exclusions },
{ "access", 1, 3, false, true, true, false,
handle_access_attribute, NULL },
/* Attributes used by Objective-C. */
{ "NSObject", 0, 0, true, false, false, false,
handle_nsobject_attribute, NULL },
{ "objc_root_class", 0, 0, true, false, false, false,
handle_objc_root_class_attribute, NULL },
{ "objc_nullability", 1, 1, true, false, false, false,
handle_objc_nullability_attribute, NULL },
{ "*dealloc", 1, 2, true, false, false, false,
handle_dealloc_attribute, NULL },
{ "tainted_args", 0, 0, true, false, false, false,
handle_tainted_args_attribute, NULL },
{ NULL, 0, 0, false, false, false, false, NULL, NULL }
};
/* Give the specifications for the format attributes, used by C and all
descendants.
Current list of processed format attributes: format, format_arg. */
const struct attribute_spec c_common_format_attribute_table[] =
{
/* { name, min_len, max_len, decl_req, type_req, fn_type_req,
affects_type_identity, handler, exclude } */
{ "format", 3, 3, false, true, true, false,
handle_format_attribute, NULL },
{ "format_arg", 1, 1, false, true, true, false,
handle_format_arg_attribute, NULL },
{ NULL, 0, 0, false, false, false, false, NULL, NULL }
};
/* Returns TRUE iff the attribute indicated by ATTR_ID takes a plain
identifier as an argument, so the front end shouldn't look it up. */
bool
attribute_takes_identifier_p (const_tree attr_id)
{
const struct attribute_spec *spec = lookup_attribute_spec (attr_id);
if (spec == NULL)
/* Unknown attribute that we'll end up ignoring, return true so we
don't complain about an identifier argument. */
return true;
else if (!strcmp ("mode", spec->name)
|| !strcmp ("format", spec->name)
|| !strcmp ("cleanup", spec->name)
|| !strcmp ("access", spec->name))
return true;
else
return targetm.attribute_takes_identifier_p (attr_id);
}
/* Verify that argument value POS at position ARGNO to attribute NAME
applied to function TYPE refers to a function parameter at position
POS and the expected type CODE. Treat CODE == INTEGER_TYPE as
matching all C integral types except bool. If successful, return
POS after default conversions, if any. Otherwise, issue appropriate
warnings and return null. A non-zero 1-based ARGNO should be passed
in by callers only for attributes with more than one argument. */
tree
positional_argument (const_tree fntype, const_tree atname, tree pos,
tree_code code, int argno /* = 0 */,
int flags /* = posargflags () */)
{
if (pos && TREE_CODE (pos) != IDENTIFIER_NODE
&& TREE_CODE (pos) != FUNCTION_DECL)
pos = default_conversion (pos);
tree postype = TREE_TYPE (pos);
if (pos == error_mark_node || !postype)
{
/* Only mention the positional argument number when it's non-zero. */
if (argno < 1)
warning (OPT_Wattributes,
"%qE attribute argument is invalid", atname);
else
warning (OPT_Wattributes,
"%qE attribute argument %i is invalid", atname, argno);
return NULL_TREE;
}
if (!INTEGRAL_TYPE_P (postype))
{
/* Handle this case specially to avoid mentioning the value
of pointer constants in diagnostics. Only mention
the positional argument number when it's non-zero. */
if (argno < 1)
warning (OPT_Wattributes,
"%qE attribute argument has type %qT",
atname, postype);
else
warning (OPT_Wattributes,
"%qE attribute argument %i has type %qT",
atname, argno, postype);
return NULL_TREE;
}
if (TREE_CODE (pos) != INTEGER_CST)
{
/* Only mention the argument number when it's non-zero. */
if (argno < 1)
warning (OPT_Wattributes,
"%qE attribute argument value %qE is not an integer "
"constant",
atname, pos);
else
warning (OPT_Wattributes,
"%qE attribute argument %i value %qE is not an integer "
"constant",
atname, argno, pos);
return NULL_TREE;
}
/* Argument positions are 1-based. */
if (integer_zerop (pos))
{
if (flags & POSARG_ZERO)
/* Zero is explicitly allowed. */
return pos;
if (argno < 1)
warning (OPT_Wattributes,
"%qE attribute argument value %qE does not refer to "
"a function parameter",
atname, pos);
else
warning (OPT_Wattributes,
"%qE attribute argument %i value %qE does not refer to "
"a function parameter",
atname, argno, pos);
return NULL_TREE;
}
if (!prototype_p (fntype))
return pos;
/* Verify that the argument position does not exceed the number
of formal arguments to the function. When POSARG_ELLIPSIS
is set, ARGNO may be beyond the last argument of a vararg
function. */
unsigned nargs = type_num_arguments (fntype);
if (!nargs
|| !tree_fits_uhwi_p (pos)
|| ((flags & POSARG_ELLIPSIS) == 0
&& !IN_RANGE (tree_to_uhwi (pos), 1, nargs)))
{
if (argno < 1)
warning (OPT_Wattributes,
"%qE attribute argument value %qE exceeds the number "
"of function parameters %u",
atname, pos, nargs);
else
warning (OPT_Wattributes,
"%qE attribute argument %i value %qE exceeds the number "
"of function parameters %u",
atname, argno, pos, nargs);
return NULL_TREE;
}
/* Verify that the type of the referenced formal argument matches
the expected type. */
unsigned HOST_WIDE_INT ipos = tree_to_uhwi (pos);
/* Zero was handled above. */
gcc_assert (ipos != 0);
if (tree argtype = type_argument_type (fntype, ipos))
{
if (argtype == error_mark_node)
return NULL_TREE;
if (flags & POSARG_ELLIPSIS)
{
if (argno < 1)
error ("%qE attribute argument value %qE does not refer to "
"a variable argument list",
atname, pos);
else
error ("%qE attribute argument %i value %qE does not refer to "
"a variable argument list",
atname, argno, pos);
return NULL_TREE;
}
/* Where the expected code is STRING_CST accept any pointer
expected by attribute format (this includes possibly qualified
char pointers and, for targets like Darwin, also pointers to
struct CFString). */
bool type_match;
if (code == STRING_CST)
type_match = valid_format_string_type_p (argtype);
else if (code == INTEGER_TYPE)
/* For integers, accept enums, wide characters and other types
that match INTEGRAL_TYPE_P except for bool. */
type_match = (INTEGRAL_TYPE_P (argtype)
&& TREE_CODE (argtype) != BOOLEAN_TYPE);
else
type_match = TREE_CODE (argtype) == code;
if (!type_match)
{
if (code == STRING_CST)
{
/* Reject invalid format strings with an error. */
if (argno < 1)
error ("%qE attribute argument value %qE refers to "
"parameter type %qT",
atname, pos, argtype);
else
error ("%qE attribute argument %i value %qE refers to "
"parameter type %qT",
atname, argno, pos, argtype);
return NULL_TREE;
}
if (argno < 1)
warning (OPT_Wattributes,
"%qE attribute argument value %qE refers to "
"parameter type %qT",
atname, pos, argtype);
else
warning (OPT_Wattributes,
"%qE attribute argument %i value %qE refers to "
"parameter type %qT",
atname, argno, pos, argtype);
return NULL_TREE;
}
}
else if (!(flags & POSARG_ELLIPSIS))
{
if (argno < 1)
warning (OPT_Wattributes,
"%qE attribute argument value %qE refers to "
"a variadic function parameter of unknown type",
atname, pos);
else
warning (OPT_Wattributes,
"%qE attribute argument %i value %qE refers to "
"a variadic function parameter of unknown type",
atname, argno, pos);
return NULL_TREE;
}
return pos;
}
/* Return the first of DECL or TYPE attributes installed in NODE if it's
a DECL, or TYPE attributes if it's a TYPE, or null otherwise. */
static tree
decl_or_type_attrs (tree node)
{
if (DECL_P (node))
{
if (tree attrs = DECL_ATTRIBUTES (node))
return attrs;
tree type = TREE_TYPE (node);
if (type == error_mark_node)
return NULL_TREE;
return TYPE_ATTRIBUTES (type);
}
if (TYPE_P (node))
return TYPE_ATTRIBUTES (node);
return NULL_TREE;
}
/* Given a pair of NODEs for arbitrary DECLs or TYPEs, validate one or
two integral or string attribute arguments NEWARGS to be applied to
NODE[0] for the absence of conflicts with the same attribute arguments
already applied to NODE[1]. Issue a warning for conflicts and return
false. Otherwise, when no conflicts are found, return true. */
static bool
validate_attr_args (tree node[2], tree name, tree newargs[2])
{
/* First validate the arguments against those already applied to
the same declaration (or type). */
tree self[2] = { node[0], node[0] };
if (node[0] != node[1] && !validate_attr_args (self, name, newargs))
return false;
if (!node[1])
return true;
/* Extract the same attribute from the previous declaration or type. */
tree prevattr = decl_or_type_attrs (node[1]);
const char* const namestr = IDENTIFIER_POINTER (name);
prevattr = lookup_attribute (namestr, prevattr);
if (!prevattr)
return true;
/* Extract one or both attribute arguments. */
tree prevargs[2];
prevargs[0] = TREE_VALUE (TREE_VALUE (prevattr));
prevargs[1] = TREE_CHAIN (TREE_VALUE (prevattr));
if (prevargs[1])
prevargs[1] = TREE_VALUE (prevargs[1]);
/* Both arguments must be equal or, for the second pair, neither must
be provided to succeed. */
bool arg1eq, arg2eq;
if (TREE_CODE (newargs[0]) == INTEGER_CST)
{
arg1eq = tree_int_cst_equal (newargs[0], prevargs[0]);
if (newargs[1] && prevargs[1])
arg2eq = tree_int_cst_equal (newargs[1], prevargs[1]);
else
arg2eq = newargs[1] == prevargs[1];
}
else if (TREE_CODE (newargs[0]) == STRING_CST)
{
const char *s0 = TREE_STRING_POINTER (newargs[0]);
const char *s1 = TREE_STRING_POINTER (prevargs[0]);
arg1eq = strcmp (s0, s1) == 0;
if (newargs[1] && prevargs[1])
{
s0 = TREE_STRING_POINTER (newargs[1]);
s1 = TREE_STRING_POINTER (prevargs[1]);
arg2eq = strcmp (s0, s1) == 0;
}
else
arg2eq = newargs[1] == prevargs[1];
}
else
gcc_unreachable ();
if (arg1eq && arg2eq)
return true;
/* If the two locations are different print a note pointing to
the previous one. */
const location_t curloc = input_location;
const location_t prevloc =
DECL_P (node[1]) ? DECL_SOURCE_LOCATION (node[1]) : curloc;
/* Format the attribute specification for convenience. */
char newspec[80], prevspec[80];
if (newargs[1])
snprintf (newspec, sizeof newspec, "%s (%s, %s)", namestr,
print_generic_expr_to_str (newargs[0]),
print_generic_expr_to_str (newargs[1]));
else
snprintf (newspec, sizeof newspec, "%s (%s)", namestr,
print_generic_expr_to_str (newargs[0]));
if (prevargs[1])
snprintf (prevspec, sizeof prevspec, "%s (%s, %s)", namestr,
print_generic_expr_to_str (prevargs[0]),
print_generic_expr_to_str (prevargs[1]));
else
snprintf (prevspec, sizeof prevspec, "%s (%s)", namestr,
print_generic_expr_to_str (prevargs[0]));
if (warning_at (curloc, OPT_Wattributes,
"ignoring attribute %qs because it conflicts "
"with previous %qs",
newspec, prevspec)
&& curloc != prevloc)
inform (prevloc, "previous declaration here");
return false;
}
/* Convenience wrapper for validate_attr_args to validate a single
attribute argument. Used by handlers for attributes that take
just a single argument. */
static bool
validate_attr_arg (tree node[2], tree name, tree newarg)
{
tree argarray[2] = { newarg, NULL_TREE };
return validate_attr_args (node, name, argarray);
}
/* Attribute handlers common to C front ends. */
/* Handle a "signed_bool_precision" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_signed_bool_precision_attribute (tree *node, tree name, tree args,
int, bool *no_add_attrs)
{
*no_add_attrs = true;
if (!flag_gimple)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
return NULL_TREE;
}
if (!TYPE_P (*node) || TREE_CODE (*node) != BOOLEAN_TYPE)
{
warning (OPT_Wattributes, "%qE attribute only supported on "
"boolean types", name);
return NULL_TREE;
}
unsigned HOST_WIDE_INT prec = HOST_WIDE_INT_M1U;
if (tree_fits_uhwi_p (TREE_VALUE (args)))
prec = tree_to_uhwi (TREE_VALUE (args));
if (prec > MAX_FIXED_MODE_SIZE)
{
warning (OPT_Wattributes, "%qE attribute with unsupported boolean "
"precision", name);
return NULL_TREE;
}
tree new_type = build_nonstandard_boolean_type (prec);
*node = lang_hooks.types.reconstruct_complex_type (*node, new_type);
return NULL_TREE;
}
/* Handle a "packed" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_packed_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int flags, bool *no_add_attrs)
{
if (TYPE_P (*node))
{
if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
{
warning (OPT_Wattributes,
"%qE attribute ignored for type %qT", name, *node);
*no_add_attrs = true;
}
else
TYPE_PACKED (*node) = 1;
}
else if (TREE_CODE (*node) == FIELD_DECL)
{
if (TYPE_ALIGN (TREE_TYPE (*node)) <= BITS_PER_UNIT
/* Still pack bitfields. */
&& ! DECL_C_BIT_FIELD (*node))
warning (OPT_Wattributes,
"%qE attribute ignored for field of type %qT",
name, TREE_TYPE (*node));
else
DECL_PACKED (*node) = 1;
}
/* We can't set DECL_PACKED for a VAR_DECL, because the bit is
used for DECL_REGISTER. It wouldn't mean anything anyway.
We can't set DECL_PACKED on the type of a TYPE_DECL, because
that changes what the typedef is typing. */
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "nocommon" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_nocommon_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (VAR_P (*node))
DECL_COMMON (*node) = 0;
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "common" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_common_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (VAR_P (*node))
DECL_COMMON (*node) = 1;
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "noreturn" attribute; arguments as in
struct attribute_spec.handler. */
tree
handle_noreturn_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree type = TREE_TYPE (*node);
/* See FIXME comment in c_common_attribute_table. */
if (TREE_CODE (*node) == FUNCTION_DECL
|| objc_method_decl (TREE_CODE (*node)))
TREE_THIS_VOLATILE (*node) = 1;
else if (TREE_CODE (type) == POINTER_TYPE
&& TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
TREE_TYPE (*node)
= (build_qualified_type
(build_pointer_type
(build_type_variant (TREE_TYPE (type),
TYPE_READONLY (TREE_TYPE (type)), 1)),
TYPE_QUALS (type)));
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "hot" and attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_hot_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL
|| TREE_CODE (*node) == LABEL_DECL)
{
/* Attribute hot processing is done later with lookup_attribute. */
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "cold" and attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_cold_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL
|| TREE_CODE (*node) == LABEL_DECL)
{
/* Attribute cold processing is done later with lookup_attribute. */
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Add FLAGS for a function NODE to no_sanitize_flags in DECL_ATTRIBUTES. */
void
add_no_sanitize_value (tree node, unsigned int flags)
{
tree attr = lookup_attribute ("no_sanitize", DECL_ATTRIBUTES (node));
if (attr)
{
unsigned int old_value = tree_to_uhwi (TREE_VALUE (attr));
flags |= old_value;
if (flags == old_value)
return;
TREE_VALUE (attr) = build_int_cst (unsigned_type_node, flags);
}
else
DECL_ATTRIBUTES (node)
= tree_cons (get_identifier ("no_sanitize"),
build_int_cst (unsigned_type_node, flags),
DECL_ATTRIBUTES (node));
}
/* Handle a "no_sanitize" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_sanitize_attribute (tree *node, tree name, tree args, int,
bool *no_add_attrs)
{
unsigned int flags = 0;
*no_add_attrs = true;
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
return NULL_TREE;
}
for (; args; args = TREE_CHAIN (args))
{
tree id = TREE_VALUE (args);
if (TREE_CODE (id) != STRING_CST)
{
error ("%qE argument not a string", name);
return NULL_TREE;
}
char *string = ASTRDUP (TREE_STRING_POINTER (id));
flags |= parse_no_sanitize_attribute (string);
}
add_no_sanitize_value (*node, flags);
return NULL_TREE;
}
/* Handle a "no_sanitize_address" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_sanitize_address_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
*no_add_attrs = true;
if (TREE_CODE (*node) != FUNCTION_DECL)
warning (OPT_Wattributes, "%qE attribute ignored", name);
else
add_no_sanitize_value (*node, SANITIZE_ADDRESS);
return NULL_TREE;
}
/* Handle a "no_sanitize_thread" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_sanitize_thread_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
*no_add_attrs = true;
if (TREE_CODE (*node) != FUNCTION_DECL)
warning (OPT_Wattributes, "%qE attribute ignored", name);
else
add_no_sanitize_value (*node, SANITIZE_THREAD);
return NULL_TREE;
}
/* Handle a "no_address_safety_analysis" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_address_safety_analysis_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
*no_add_attrs = true;
if (TREE_CODE (*node) != FUNCTION_DECL)
warning (OPT_Wattributes, "%qE attribute ignored", name);
else
add_no_sanitize_value (*node, SANITIZE_ADDRESS);
return NULL_TREE;
}
/* Handle a "no_sanitize_undefined" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_sanitize_undefined_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
*no_add_attrs = true;
if (TREE_CODE (*node) != FUNCTION_DECL)
warning (OPT_Wattributes, "%qE attribute ignored", name);
else
add_no_sanitize_value (*node,
SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT);
return NULL_TREE;
}
/* Handle a "no_sanitize_coverage" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_sanitize_coverage_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle an "asan odr indicator" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_asan_odr_indicator_attribute (tree *, tree, tree, int, bool *)
{
return NULL_TREE;
}
/* Handle a "stack_protect" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_stack_protect_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "no_stack_protector" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_stack_protector_function_attribute (tree *node, tree name, tree,
int, bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "noipa" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_noipa_attribute (tree *node, tree name, tree, int, bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "noinline" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_noinline_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL)
{
if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (*node)))
{
warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
"with attribute %qs", name, "always_inline");
*no_add_attrs = true;
}
else
DECL_UNINLINABLE (*node) = 1;
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "noclone" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_noclone_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "nocf_check" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_nocf_check_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_TYPE
&& TREE_CODE (*node) != METHOD_TYPE)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
else if (!(flag_cf_protection & CF_BRANCH))
{
warning (OPT_Wattributes, "%qE attribute ignored. Use "
"%<-fcf-protection%> option to enable it",
name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "no_icf" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_noicf_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "always_inline" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_always_inline_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL)
{
if (lookup_attribute ("noinline", DECL_ATTRIBUTES (*node)))
{
warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
"with %qs attribute", name, "noinline");
*no_add_attrs = true;
}
else if (lookup_attribute ("target_clones", DECL_ATTRIBUTES (*node)))
{
warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
"with %qs attribute", name, "target_clones");
*no_add_attrs = true;
}
else
/* Set the attribute and mark it for disregarding inline
limits. */
DECL_DISREGARD_INLINE_LIMITS (*node) = 1;
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "gnu_inline" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_gnu_inline_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
{
/* Do nothing else, just set the attribute. We'll get at
it later with lookup_attribute. */
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "leaf" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_leaf_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
if (!TREE_PUBLIC (*node))
{
warning (OPT_Wattributes, "%qE attribute has no effect on unit local "
"functions", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle an "artificial" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_artificial_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
{
/* Do nothing else, just set the attribute. We'll get at
it later with lookup_attribute. */
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "flatten" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_flatten_attribute (tree *node, tree name,
tree args ATTRIBUTE_UNUSED,
int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL)
/* Do nothing else, just set the attribute. We'll get at
it later with lookup_attribute. */
;
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "warning" or "error" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_error_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL
&& TREE_CODE (TREE_VALUE (args)) == STRING_CST)
/* Do nothing else, just set the attribute. We'll get at
it later with lookup_attribute. */
;
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "used" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_used_attribute (tree *pnode, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree node = *pnode;
if (TREE_CODE (node) == FUNCTION_DECL
|| (VAR_P (node) && TREE_STATIC (node))
|| (TREE_CODE (node) == TYPE_DECL))
{
TREE_USED (node) = 1;
DECL_PRESERVE_P (node) = 1;
if (VAR_P (node))
DECL_READ_P (node) = 1;
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "unused" attribute; arguments as in
struct attribute_spec.handler. */
tree
handle_unused_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int flags, bool *no_add_attrs)
{
if (DECL_P (*node))
{
tree decl = *node;
if (TREE_CODE (decl) == PARM_DECL
|| VAR_OR_FUNCTION_DECL_P (decl)
|| TREE_CODE (decl) == LABEL_DECL
|| TREE_CODE (decl) == CONST_DECL
|| TREE_CODE (decl) == FIELD_DECL
|| TREE_CODE (decl) == TYPE_DECL)
{
TREE_USED (decl) = 1;
if (VAR_P (decl) || TREE_CODE (decl) == PARM_DECL)
DECL_READ_P (decl) = 1;
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
}
else
{
if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
*node = build_variant_type_copy (*node);
TREE_USED (*node) = 1;
}
return NULL_TREE;
}
/* Handle a "retain" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_retain_attribute (tree *pnode, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree node = *pnode;
if (SUPPORTS_SHF_GNU_RETAIN
&& (TREE_CODE (node) == FUNCTION_DECL
|| (VAR_P (node) && TREE_STATIC (node))))
;
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle an "uninitialized" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_uninitialized_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree decl = *node;
if (!VAR_P (decl))
{
warning (OPT_Wattributes, "%qE attribute ignored because %qD "
"is not a variable", name, decl);
*no_add_attrs = true;
}
else if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
{
warning (OPT_Wattributes, "%qE attribute ignored because %qD "
"is not a local variable", name, decl);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "externally_visible" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_externally_visible_attribute (tree *pnode, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree node = *pnode;
if (VAR_OR_FUNCTION_DECL_P (node))
{
if ((!TREE_STATIC (node) && TREE_CODE (node) != FUNCTION_DECL
&& !DECL_EXTERNAL (node)) || !TREE_PUBLIC (node))
{
warning (OPT_Wattributes,
"%qE attribute have effect only on public objects", name);
*no_add_attrs = true;
}
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle the "no_reorder" attribute. Arguments as in
struct attribute_spec.handler. */
static tree
handle_no_reorder_attribute (tree *pnode,
tree name,
tree,
int,
bool *no_add_attrs)
{
tree node = *pnode;
if (!VAR_OR_FUNCTION_DECL_P (node)
&& !(TREE_STATIC (node) || DECL_EXTERNAL (node)))
{
warning (OPT_Wattributes,
"%qE attribute only affects top level objects",
name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "const" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_const_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int flags, bool *no_add_attrs)
{
tree type = TREE_TYPE (*node);
/* See FIXME comment on noreturn in c_common_attribute_table. */
if (TREE_CODE (*node) == FUNCTION_DECL)
TREE_READONLY (*node) = 1;
else if (TREE_CODE (type) == POINTER_TYPE
&& TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
TREE_TYPE (*node)
= (build_qualified_type
(build_pointer_type
(build_type_variant (TREE_TYPE (type), 1,
TREE_THIS_VOLATILE (TREE_TYPE (type)))),
TYPE_QUALS (type)));
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
/* void __builtin_unreachable(void) is const. Accept other such
built-ins but warn on user-defined functions that return void. */
if (!(flags & ATTR_FLAG_BUILT_IN)
&& TREE_CODE (*node) == FUNCTION_DECL
&& VOID_TYPE_P (TREE_TYPE (type)))
warning (OPT_Wattributes, "%qE attribute on function "
"returning %<void%>", name);
return NULL_TREE;
}
/* Handle a "scalar_storage_order" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_scalar_storage_order_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs)
{
tree id = TREE_VALUE (args);
tree type;
if (TREE_CODE (*node) == TYPE_DECL
&& ! (flags & ATTR_FLAG_CXX11))
node = &TREE_TYPE (*node);
type = *node;
if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN)
{
error ("%qE attribute is not supported because endianness is not uniform",
name);
return NULL_TREE;
}
if (RECORD_OR_UNION_TYPE_P (type) && !c_dialect_cxx ())
{
bool reverse = false;
if (TREE_CODE (id) == STRING_CST
&& strcmp (TREE_STRING_POINTER (id), "big-endian") == 0)
reverse = !BYTES_BIG_ENDIAN;
else if (TREE_CODE (id) == STRING_CST
&& strcmp (TREE_STRING_POINTER (id), "little-endian") == 0)
reverse = BYTES_BIG_ENDIAN;
else
{
error ("attribute %qE argument must be one of %qs or %qs",
name, "big-endian", "little-endian");
return NULL_TREE;
}
if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
{
if (reverse)
/* A type variant isn't good enough, since we don't want a cast
to such a type to be removed as a no-op. */
*node = type = build_duplicate_type (type);
}
TYPE_REVERSE_STORAGE_ORDER (type) = reverse;
return NULL_TREE;
}
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
return NULL_TREE;
}
/* Handle a "transparent_union" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_transparent_union_attribute (tree *node, tree name,
tree ARG_UNUSED (args), int flags,
bool *no_add_attrs)
{
tree type;
*no_add_attrs = true;
if (TREE_CODE (*node) == TYPE_DECL
&& ! (flags & ATTR_FLAG_CXX11))
node = &TREE_TYPE (*node);
type = *node;
if (TREE_CODE (type) == UNION_TYPE)
{
/* Make sure that the first field will work for a transparent union.
If the type isn't complete yet, leave the check to the code in
finish_struct. */
if (TYPE_SIZE (type))
{
tree first = first_field (type);
if (first == NULL_TREE
|| DECL_ARTIFICIAL (first)
|| TYPE_MODE (type) != DECL_MODE (first))
goto ignored;
}
if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
{
/* If the type isn't complete yet, setting the flag
on a variant wouldn't ever be checked. */
if (!TYPE_SIZE (type))
goto ignored;
/* build_duplicate_type doesn't work for C++. */
if (c_dialect_cxx ())
goto ignored;
/* A type variant isn't good enough, since we don't want a cast
to such a type to be removed as a no-op. */
*node = type = build_duplicate_type (type);
}
for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
TYPE_TRANSPARENT_AGGR (t) = 1;
return NULL_TREE;
}
ignored:
warning (OPT_Wattributes, "%qE attribute ignored", name);
return NULL_TREE;
}
/* Subroutine of handle_{con,de}structor_attribute. Evaluate ARGS to
get the requested priority for a constructor or destructor,
possibly issuing diagnostics for invalid or reserved
priorities. */
static priority_type
get_priority (tree args, bool is_destructor)
{
HOST_WIDE_INT pri;
tree arg;
if (!args)
return DEFAULT_INIT_PRIORITY;
if (!SUPPORTS_INIT_PRIORITY)
{
if (is_destructor)
error ("destructor priorities are not supported");
else
error ("constructor priorities are not supported");
return DEFAULT_INIT_PRIORITY;
}
arg = TREE_VALUE (args);
if (TREE_CODE (arg) == IDENTIFIER_NODE)
goto invalid;
if (arg == error_mark_node)
return DEFAULT_INIT_PRIORITY;
arg = default_conversion (arg);
if (!tree_fits_shwi_p (arg)
|| !INTEGRAL_TYPE_P (TREE_TYPE (arg)))
goto invalid;
pri = tree_to_shwi (arg);
if (pri < 0 || pri > MAX_INIT_PRIORITY)
goto invalid;
if (pri <= MAX_RESERVED_INIT_PRIORITY)
{
if (is_destructor)
warning (OPT_Wprio_ctor_dtor,
"destructor priorities from 0 to %d are reserved "
"for the implementation",
MAX_RESERVED_INIT_PRIORITY);
else
warning (OPT_Wprio_ctor_dtor,
"constructor priorities from 0 to %d are reserved "
"for the implementation",
MAX_RESERVED_INIT_PRIORITY);
}
return pri;
invalid:
if (is_destructor)
error ("destructor priorities must be integers from 0 to %d inclusive",
MAX_INIT_PRIORITY);
else
error ("constructor priorities must be integers from 0 to %d inclusive",
MAX_INIT_PRIORITY);
return DEFAULT_INIT_PRIORITY;
}
/* Handle a "constructor" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_constructor_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree decl = *node;
tree type = TREE_TYPE (decl);
if (TREE_CODE (decl) == FUNCTION_DECL
&& TREE_CODE (type) == FUNCTION_TYPE
&& decl_function_context (decl) == 0)
{
priority_type priority;
DECL_STATIC_CONSTRUCTOR (decl) = 1;
priority = get_priority (args, /*is_destructor=*/false);
SET_DECL_INIT_PRIORITY (decl, priority);
TREE_USED (decl) = 1;
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "destructor" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_destructor_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree decl = *node;
tree type = TREE_TYPE (decl);
if (TREE_CODE (decl) == FUNCTION_DECL
&& TREE_CODE (type) == FUNCTION_TYPE
&& decl_function_context (decl) == 0)
{
priority_type priority;
DECL_STATIC_DESTRUCTOR (decl) = 1;
priority = get_priority (args, /*is_destructor=*/true);
SET_DECL_FINI_PRIORITY (decl, priority);
TREE_USED (decl) = 1;
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Nonzero if the mode is a valid vector mode for this architecture.
This returns nonzero even if there is no hardware support for the
vector mode, but we can emulate with narrower modes. */
static bool
vector_mode_valid_p (machine_mode mode)
{
enum mode_class mclass = GET_MODE_CLASS (mode);
/* Doh! What's going on? */
if (mclass != MODE_VECTOR_INT
&& mclass != MODE_VECTOR_FLOAT
&& mclass != MODE_VECTOR_FRACT
&& mclass != MODE_VECTOR_UFRACT
&& mclass != MODE_VECTOR_ACCUM
&& mclass != MODE_VECTOR_UACCUM)
return false;
/* Hardware support. Woo hoo! */
if (targetm.vector_mode_supported_p (mode))
return true;
/* We should probably return 1 if requesting V4DI and we have no DI,
but we have V2DI, but this is probably very unlikely. */
/* If we have support for the inner mode, we can safely emulate it.
We may not have V2DI, but me can emulate with a pair of DIs. */
return targetm.scalar_mode_supported_p (GET_MODE_INNER (mode));
}
/* Handle a "mode" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_mode_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree type = *node;
tree ident = TREE_VALUE (args);
*no_add_attrs = true;
if (TREE_CODE (ident) != IDENTIFIER_NODE)
warning (OPT_Wattributes, "%qE attribute ignored", name);
else
{
int j;
const char *p = IDENTIFIER_POINTER (ident);
int len = strlen (p);
machine_mode mode = VOIDmode;
tree typefm;
bool valid_mode;
if (len > 4 && p[0] == '_' && p[1] == '_'
&& p[len - 1] == '_' && p[len - 2] == '_')
{
char *newp = (char *) alloca (len - 1);
strcpy (newp, &p[2]);
newp[len - 4] = '\0';
p = newp;
}
/* Change this type to have a type with the specified mode.
First check for the special modes. */
if (!strcmp (p, "byte"))
mode = byte_mode;
else if (!strcmp (p, "word"))
mode = word_mode;
else if (!strcmp (p, "pointer"))
mode = ptr_mode;
else if (!strcmp (p, "libgcc_cmp_return"))
mode = targetm.libgcc_cmp_return_mode ();
else if (!strcmp (p, "libgcc_shift_count"))
mode = targetm.libgcc_shift_count_mode ();
else if (!strcmp (p, "unwind_word"))
mode = targetm.unwind_word_mode ();
else
for (j = 0; j < NUM_MACHINE_MODES; j++)
if (!strcmp (p, GET_MODE_NAME (j)))
{
mode = (machine_mode) j;
break;
}
if (mode == VOIDmode)
{
error ("unknown machine mode %qE", ident);
return NULL_TREE;
}
/* Allow the target a chance to translate MODE into something supported.
See PR86324. */
mode = targetm.translate_mode_attribute (mode);
valid_mode = false;
switch (GET_MODE_CLASS (mode))
{
case MODE_INT:
case MODE_PARTIAL_INT:
case MODE_FLOAT:
case MODE_DECIMAL_FLOAT:
case MODE_FRACT:
case MODE_UFRACT:
case MODE_ACCUM:
case MODE_UACCUM:
valid_mode
= targetm.scalar_mode_supported_p (as_a <scalar_mode> (mode));
break;
case MODE_COMPLEX_INT:
case MODE_COMPLEX_FLOAT:
valid_mode = targetm.scalar_mode_supported_p (GET_MODE_INNER (mode));
break;
case MODE_VECTOR_INT:
case MODE_VECTOR_FLOAT:
case MODE_VECTOR_FRACT:
case MODE_VECTOR_UFRACT:
case MODE_VECTOR_ACCUM:
case MODE_VECTOR_UACCUM:
warning (OPT_Wattributes, "specifying vector types with "
"%<__attribute__ ((mode))%> is deprecated");
inform (input_location,
"use %<__attribute__ ((vector_size))%> instead");
valid_mode = vector_mode_valid_p (mode);
break;
default:
break;
}
if (!valid_mode)
{
error ("unable to emulate %qs", p);
return NULL_TREE;
}
if (POINTER_TYPE_P (type))
{
scalar_int_mode addr_mode;
addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (type));
tree (*fn)(tree, machine_mode, bool);
if (!is_a <scalar_int_mode> (mode, &addr_mode)
|| !targetm.addr_space.valid_pointer_mode (addr_mode, as))
{
error ("invalid pointer mode %qs", p);
return NULL_TREE;
}
if (TREE_CODE (type) == POINTER_TYPE)
fn = build_pointer_type_for_mode;
else
fn = build_reference_type_for_mode;
typefm = fn (TREE_TYPE (type), addr_mode, false);
}
else
{
/* For fixed-point modes, we need to test if the signness of type
and the machine mode are consistent. */
if (ALL_FIXED_POINT_MODE_P (mode)
&& TYPE_UNSIGNED (type) != UNSIGNED_FIXED_POINT_MODE_P (mode))
{
error ("signedness of type and machine mode %qs don%'t match", p);
return NULL_TREE;
}
/* For fixed-point modes, we need to pass saturating info. */
typefm = lang_hooks.types.type_for_mode (mode,
ALL_FIXED_POINT_MODE_P (mode) ? TYPE_SATURATING (type)
: TYPE_UNSIGNED (type));
}
if (typefm == NULL_TREE)
{
error ("no data type for mode %qs", p);
return NULL_TREE;
}
else if (TREE_CODE (type) == ENUMERAL_TYPE)
{
/* For enumeral types, copy the precision from the integer
type returned above. If not an INTEGER_TYPE, we can't use
this mode for this type. */
if (TREE_CODE (typefm) != INTEGER_TYPE)
{
error ("cannot use mode %qs for enumerated types", p);
return NULL_TREE;
}
if (flags & ATTR_FLAG_TYPE_IN_PLACE)
{
TYPE_PRECISION (type) = TYPE_PRECISION (typefm);
typefm = type;
}
else
{
/* We cannot build a type variant, as there's code that assumes
that TYPE_MAIN_VARIANT has the same mode. This includes the
debug generators. Instead, create a subrange type. This
results in all of the enumeral values being emitted only once
in the original, and the subtype gets them by reference. */
if (TYPE_UNSIGNED (type))
typefm = make_unsigned_type (TYPE_PRECISION (typefm));
else
typefm = make_signed_type (TYPE_PRECISION (typefm));
TREE_TYPE (typefm) = type;
}
*no_add_attrs = false;
}
else if (VECTOR_MODE_P (mode)
? TREE_CODE (type) != TREE_CODE (TREE_TYPE (typefm))
: TREE_CODE (type) != TREE_CODE (typefm))
{
error ("mode %qs applied to inappropriate type", p);
return NULL_TREE;
}
*node = build_qualified_type (typefm, TYPE_QUALS (type));
}
return NULL_TREE;
}
/* Handle a "section" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_section_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs)
{
tree decl = *node;
tree res = NULL_TREE;
tree argval = TREE_VALUE (args);
const char* new_section_name;
if (!targetm_common.have_named_sections)
{
error_at (DECL_SOURCE_LOCATION (*node),
"section attributes are not supported for this target");
goto fail;
}
if (!VAR_OR_FUNCTION_DECL_P (decl))
{
error ("section attribute not allowed for %q+D", *node);
goto fail;
}
if (TREE_CODE (argval) != STRING_CST)
{
error ("section attribute argument not a string constant");
goto fail;
}
if (VAR_P (decl)
&& current_function_decl != NULL_TREE
&& !TREE_STATIC (decl))
{
error_at (DECL_SOURCE_LOCATION (decl),
"section attribute cannot be specified for local variables");
goto fail;
}
new_section_name = TREE_STRING_POINTER (argval);
/* The decl may have already been given a section attribute
from a previous declaration. Ensure they match. */
if (const char* const old_section_name = DECL_SECTION_NAME (decl))
if (strcmp (old_section_name, new_section_name) != 0)
{
error ("section of %q+D conflicts with previous declaration",
*node);
goto fail;
}
if (VAR_P (decl)
&& !targetm.have_tls && targetm.emutls.tmpl_section
&& DECL_THREAD_LOCAL_P (decl))
{
error ("section of %q+D cannot be overridden", *node);
goto fail;
}
if (!validate_attr_arg (node, name, argval))
goto fail;
res = targetm.handle_generic_attribute (node, name, args, flags,
no_add_attrs);
/* If the back end confirms the attribute can be added then continue onto
final processing. */
if (!(*no_add_attrs))
{
set_decl_section_name (decl, new_section_name);
return res;
}
fail:
*no_add_attrs = true;
return res;
}
/* Common codes shared by handle_warn_if_not_aligned_attribute and
handle_aligned_attribute. */
static tree
common_handle_aligned_attribute (tree *node, tree name, tree args, int flags,
bool *no_add_attrs,
bool warn_if_not_aligned_p)
{
tree decl = NULL_TREE;
tree *type = NULL;
bool is_type = false;
tree align_expr;
/* The last (already pushed) declaration with all validated attributes
merged in or the current about-to-be-pushed one if one hasn't been
yet. */
tree last_decl = node[1] ? node[1] : *node;
if (args)
{
align_expr = TREE_VALUE (args);
if (align_expr && TREE_CODE (align_expr) != IDENTIFIER_NODE
&& TREE_CODE (align_expr) != FUNCTION_DECL)
align_expr = default_conversion (align_expr);
}
else
align_expr = size_int (ATTRIBUTE_ALIGNED_VALUE / BITS_PER_UNIT);
if (DECL_P (*node))
{
decl = *node;
type = &TREE_TYPE (decl);
is_type = TREE_CODE (*node) == TYPE_DECL;
}
else if (TYPE_P (*node))
type = node, is_type = true;
/* True to consider invalid alignments greater than MAX_OFILE_ALIGNMENT. */
bool objfile = (TREE_CODE (*node) == FUNCTION_DECL
|| (VAR_P (*node) && TREE_STATIC (*node)));
/* Log2 of specified alignment. */
int pow2align = check_user_alignment (align_expr, objfile,
/* warn_zero = */ true);
if (pow2align == -1)
{
*no_add_attrs = true;
return NULL_TREE;
}
/* The alignment in bits corresponding to the specified alignment. */
unsigned bitalign = (1U << pow2align) * BITS_PER_UNIT;
/* The alignment of the current declaration and that of the last
pushed declaration, determined on demand below. */
unsigned curalign = 0;
unsigned lastalign = 0;
/* True when SET_DECL_ALIGN() should be called for the decl when
*NO_ADD_ATTRS is false. */
bool set_align = true;
if (is_type)
{
if ((flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
/* OK, modify the type in place. */;
/* If we have a TYPE_DECL, then copy the type, so that we
don't accidentally modify a builtin type. See pushdecl. */
else if (decl && TREE_TYPE (decl) != error_mark_node
&& DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
{
tree tt = TREE_TYPE (decl);
*type = build_variant_type_copy (*type);
DECL_ORIGINAL_TYPE (decl) = tt;
TYPE_NAME (*type) = decl;
TREE_USED (*type) = TREE_USED (decl);
TREE_TYPE (decl) = *type;
}
else
*type = build_variant_type_copy (*type);
if (warn_if_not_aligned_p)
{
SET_TYPE_WARN_IF_NOT_ALIGN (*type, bitalign);
warn_if_not_aligned_p = false;
}
else
{
SET_TYPE_ALIGN (*type, bitalign);
TYPE_USER_ALIGN (*type) = 1;
}
}
else if (! VAR_OR_FUNCTION_DECL_P (decl)
&& TREE_CODE (decl) != FIELD_DECL)
{
error ("alignment may not be specified for %q+D", decl);
*no_add_attrs = true;
}
else if (TREE_CODE (decl) == FUNCTION_DECL
&& (((curalign = DECL_ALIGN (decl)) > bitalign)
| ((lastalign = DECL_ALIGN (last_decl)) > bitalign)))
{
/* Either a prior attribute on the same declaration or one
on a prior declaration of the same function specifies
stricter alignment than this attribute. */
bool note = (lastalign > curalign
|| (lastalign == curalign
&& (DECL_USER_ALIGN (last_decl)
> DECL_USER_ALIGN (decl))));
if (note)
curalign = lastalign;
curalign /= BITS_PER_UNIT;
unsigned newalign = bitalign / BITS_PER_UNIT;
auto_diagnostic_group d;
if ((DECL_USER_ALIGN (decl)
|| DECL_USER_ALIGN (last_decl)))
{
if (warning (OPT_Wattributes,
"ignoring attribute %<%E (%u)%> because it conflicts "
"with attribute %<%E (%u)%>",
name, newalign, name, curalign)
&& note)
inform (DECL_SOURCE_LOCATION (last_decl),
"previous declaration here");
/* Only reject attempts to relax/override an alignment
explicitly specified previously and accept declarations
that appear to relax the implicit function alignment for
the target. Both increasing and increasing the alignment
set by -falign-functions setting is permitted. */
*no_add_attrs = true;
}
else if (!warn_if_not_aligned_p)
{
/* Do not fail for attribute warn_if_not_aligned. Otherwise,
silently avoid applying the alignment to the declaration
because it's implicitly satisfied by the target. Apply
the attribute nevertheless so it can be retrieved by
__builtin_has_attribute. */
set_align = false;
}
}
else if (DECL_USER_ALIGN (decl)
&& DECL_ALIGN (decl) > bitalign)
/* C++-11 [dcl.align/4]:
When multiple alignment-specifiers are specified for an
entity, the alignment requirement shall be set to the
strictest specified alignment.
This formally comes from the c++11 specification but we are
doing it for the GNU attribute syntax as well. */
*no_add_attrs = true;
else if (warn_if_not_aligned_p
&& TREE_CODE (decl) == FIELD_DECL
&& !DECL_C_BIT_FIELD (decl))
{
SET_DECL_WARN_IF_NOT_ALIGN (decl, bitalign);
warn_if_not_aligned_p = false;
set_align = false;
}
if (warn_if_not_aligned_p)
{
error ("%<warn_if_not_aligned%> may not be specified for %q+D",
decl);
*no_add_attrs = true;
}
else if (!is_type && !*no_add_attrs && set_align)
{
SET_DECL_ALIGN (decl, bitalign);
DECL_USER_ALIGN (decl) = 1;
}
return NULL_TREE;
}
/* Handle a "aligned" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_aligned_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs)
{
return common_handle_aligned_attribute (node, name, args, flags,
no_add_attrs, false);
}
/* Handle a "warn_if_not_aligned" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_warn_if_not_aligned_attribute (tree *node, tree name,
tree args, int flags,
bool *no_add_attrs)
{
return common_handle_aligned_attribute (node, name, args, flags,
no_add_attrs, true);
}
/* Handle a "weak" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_weak_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool * ARG_UNUSED (no_add_attrs))
{
if (TREE_CODE (*node) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (*node))
{
warning (OPT_Wattributes, "inline function %q+D declared weak", *node);
*no_add_attrs = true;
}
else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node)))
{
error ("indirect function %q+D cannot be declared weak", *node);
*no_add_attrs = true;
return NULL_TREE;
}
else if (VAR_OR_FUNCTION_DECL_P (*node))
declare_weak (*node);
else
warning (OPT_Wattributes, "%qE attribute ignored", name);
return NULL_TREE;
}
/* Handle a "noinit" or "persistent" attribute; arguments as in
struct attribute_spec.handler.
This generic handler is used for "special variable sections" that allow the
section name to be set using a dedicated attribute. Additional validation
is performed for the specific properties of the section corresponding to the
attribute.
The ".noinit" section *is not* loaded by the program loader, and is not
initialized by the runtime startup code.
The ".persistent" section *is* loaded by the program loader, but is not
initialized by the runtime startup code. */
static tree
handle_special_var_sec_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs)
{
tree decl = *node;
tree res = NULL_TREE;
/* First perform generic validation common to "noinit" and "persistent"
attributes. */
if (!targetm_common.have_named_sections)
{
error_at (DECL_SOURCE_LOCATION (decl),
"section attributes are not supported for this target");
goto fail;
}
if (!VAR_P (decl))
{
warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wattributes,
"ignoring %qE attribute not set on a variable",
name);
goto fail;
}
if (VAR_P (decl)
&& current_function_decl != NULL_TREE
&& !TREE_STATIC (decl))
{
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute cannot be specified for local variables",
name);
goto fail;
}
if (VAR_P (decl)
&& !targetm.have_tls && targetm.emutls.tmpl_section
&& DECL_THREAD_LOCAL_P (decl))
{
error ("section of %q+D cannot be overridden", decl);
goto fail;
}
if (!targetm.have_switchable_bss_sections)
{
error ("%qE attribute is specific to ELF targets", name);
goto fail;
}
if (TREE_READONLY (decl))
{
warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wattributes,
"ignoring %qE attribute set on const variable",
name);
goto fail;
}
/* Now validate noinit/persistent individually. */
if (strcmp (IDENTIFIER_POINTER (name), "noinit") == 0)
{
if (DECL_INITIAL (decl))
{
warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wattributes,
"ignoring %qE attribute set on initialized variable",
name);
goto fail;
}
/* If this var is thought to be common, then change this. "noinit"
variables must be placed in an explicit ".noinit" section. */
DECL_COMMON (decl) = 0;
}
else if (strcmp (IDENTIFIER_POINTER (name), "persistent") == 0)
{
if (DECL_COMMON (decl) || DECL_INITIAL (decl) == NULL_TREE)
{
warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wattributes,
"ignoring %qE attribute set on uninitialized variable",
name);
goto fail;
}
}
else
gcc_unreachable ();
res = targetm.handle_generic_attribute (node, name, args, flags,
no_add_attrs);
/* If the back end confirms the attribute can be added then continue onto
final processing. */
if (!(*no_add_attrs))
return res;
fail:
*no_add_attrs = true;
return res;
}
/* Handle a "noplt" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_noplt_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool * ARG_UNUSED (no_add_attrs))
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes,
"%qE attribute is only applicable on functions", name);
*no_add_attrs = true;
return NULL_TREE;
}
return NULL_TREE;
}
/* Handle a "symver" attribute. */
static tree
handle_symver_attribute (tree *node, tree ARG_UNUSED (name), tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree symver;
const char *symver_str;
if (TREE_CODE (*node) != FUNCTION_DECL && TREE_CODE (*node) != VAR_DECL)
{
warning (OPT_Wattributes,
"%<symver%> attribute only applies to functions and variables");
*no_add_attrs = true;
return NULL_TREE;
}
if (!decl_in_symtab_p (*node))
{
warning (OPT_Wattributes,
"%<symver%> attribute is only applicable to symbols");
*no_add_attrs = true;
return NULL_TREE;
}
for (; args; args = TREE_CHAIN (args))
{
symver = TREE_VALUE (args);
if (TREE_CODE (symver) != STRING_CST)
{
error ("%<symver%> attribute argument not a string constant");
*no_add_attrs = true;
return NULL_TREE;
}
symver_str = TREE_STRING_POINTER (symver);
int ats = 0;
for (int n = 0; (int)n < TREE_STRING_LENGTH (symver); n++)
if (symver_str[n] == '@')
ats++;
if (ats != 1 && ats != 2)
{
error ("symver attribute argument must have format %<name@nodename%>");
error ("%<symver%> attribute argument %qs must contain one or two "
"%<@%>", symver_str);
*no_add_attrs = true;
return NULL_TREE;
}
}
return NULL_TREE;
}
/* Handle an "alias" or "ifunc" attribute; arguments as in
struct attribute_spec.handler, except that IS_ALIAS tells us
whether this is an alias as opposed to ifunc attribute. */
static tree
handle_alias_ifunc_attribute (bool is_alias, tree *node, tree name, tree args,
bool *no_add_attrs)
{
tree decl = *node;
if (TREE_CODE (decl) != FUNCTION_DECL
&& (!is_alias || !VAR_P (decl)))
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
else if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
|| (TREE_CODE (decl) != FUNCTION_DECL
&& TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
/* A static variable declaration is always a tentative definition,
but the alias is a non-tentative definition which overrides. */
|| (TREE_CODE (decl) != FUNCTION_DECL
&& ! TREE_PUBLIC (decl) && DECL_INITIAL (decl)))
{
error ("%q+D defined both normally and as %qE attribute", decl, name);
*no_add_attrs = true;
return NULL_TREE;
}
else if (!is_alias
&& (lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
|| lookup_attribute ("weakref", DECL_ATTRIBUTES (decl))))
{
error ("weak %q+D cannot be defined %qE", decl, name);
*no_add_attrs = true;
return NULL_TREE;
}
/* Note that the very first time we process a nested declaration,
decl_function_context will not be set. Indeed, *would* never
be set except for the DECL_INITIAL/DECL_EXTERNAL frobbery that
we do below. After such frobbery, pushdecl would set the context.
In any case, this is never what we want. */
else if (decl_function_context (decl) == 0 && current_function_decl == NULL)
{
tree id;
id = TREE_VALUE (args);
if (TREE_CODE (id) != STRING_CST)
{
error ("attribute %qE argument not a string", name);
*no_add_attrs = true;
return NULL_TREE;
}
id = get_identifier (TREE_STRING_POINTER (id));
/* This counts as a use of the object pointed to. */
TREE_USED (id) = 1;
if (TREE_CODE (decl) == FUNCTION_DECL)
DECL_INITIAL (decl) = error_mark_node;
else
TREE_STATIC (decl) = 1;
if (!is_alias)
{
/* ifuncs are also aliases, so set that attribute too. */
DECL_ATTRIBUTES (decl)
= tree_cons (get_identifier ("alias"), args,
DECL_ATTRIBUTES (decl));
DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("ifunc"),
NULL, DECL_ATTRIBUTES (decl));
}
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
if (decl_in_symtab_p (*node))
{
struct symtab_node *n = symtab_node::get (decl);
if (n && n->refuse_visibility_changes)
error ("%+qD declared %qs after being used",
decl, is_alias ? "alias" : "ifunc");
}
return NULL_TREE;
}
/* Handle an "alias" or "ifunc" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_ifunc_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
return handle_alias_ifunc_attribute (false, node, name, args, no_add_attrs);
}
/* Handle an "alias" or "ifunc" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_alias_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
return handle_alias_ifunc_attribute (true, node, name, args, no_add_attrs);
}
/* Handle the "copy" attribute NAME by copying the set of attributes
from the symbol referenced by ARGS to the declaration of *NODE. */
static tree
handle_copy_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs)
{
/* Do not apply the copy attribute itself. It serves no purpose
other than to copy other attributes. */
*no_add_attrs = true;
tree decl = *node;
tree ref = TREE_VALUE (args);
if (ref == error_mark_node)
return NULL_TREE;
if (TREE_CODE (ref) == STRING_CST)
{
/* Explicitly handle this case since using a string literal
as an argument is a likely mistake. */
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute argument cannot be a string",
name);
return NULL_TREE;
}
if (CONSTANT_CLASS_P (ref)
&& (INTEGRAL_TYPE_P (TREE_TYPE (ref))
|| FLOAT_TYPE_P (TREE_TYPE (ref))))
{
/* Similar to the string case, since some function attributes
accept literal numbers as arguments (e.g., alloc_size or
nonnull) using one here is a likely mistake. */
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute argument cannot be a constant arithmetic "
"expression",
name);
return NULL_TREE;
}
if (ref == node[1])
{
/* Another possible mistake (but indirect self-references aren't
and diagnosed and shouldn't be). */
if (warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wattributes,
"%qE attribute ignored on a redeclaration "
"of the referenced symbol",
name))
inform (DECL_SOURCE_LOCATION (node[1]),
"previous declaration here");
return NULL_TREE;
}
/* Consider address-of expressions in the attribute argument
as requests to copy from the referenced entity. */
if (TREE_CODE (ref) == ADDR_EXPR)
ref = TREE_OPERAND (ref, 0);
do
{
/* Drill down into references to find the referenced decl. */
tree_code refcode = TREE_CODE (ref);
if (refcode == ARRAY_REF
|| refcode == INDIRECT_REF)
ref = TREE_OPERAND (ref, 0);
else if (refcode == COMPONENT_REF)
ref = TREE_OPERAND (ref, 1);
else
break;
} while (!DECL_P (ref));
/* For object pointer expressions, consider those to be requests
to copy from their type, such as in:
struct __attribute__ (copy ((struct T *)0)) U { ... };
which copies type attributes from struct T to the declaration
of struct U. */
if ((CONSTANT_CLASS_P (ref) || EXPR_P (ref))
&& POINTER_TYPE_P (TREE_TYPE (ref))
&& !FUNCTION_POINTER_TYPE_P (TREE_TYPE (ref)))
ref = TREE_TYPE (ref);
tree reftype = TYPE_P (ref) ? ref : TREE_TYPE (ref);
if (DECL_P (decl))
{
if ((VAR_P (decl)
&& (TREE_CODE (ref) == FUNCTION_DECL
|| (EXPR_P (ref)
&& POINTER_TYPE_P (reftype)
&& FUNC_OR_METHOD_TYPE_P (TREE_TYPE (reftype)))))
|| (TREE_CODE (decl) == FUNCTION_DECL
&& (VAR_P (ref)
|| (EXPR_P (ref)
&& !FUNC_OR_METHOD_TYPE_P (reftype)
&& (!POINTER_TYPE_P (reftype)
|| !FUNC_OR_METHOD_TYPE_P (TREE_TYPE (reftype)))))))
{
/* It makes no sense to try to copy function attributes
to a variable, or variable attributes to a function. */
if (warning (OPT_Wattributes,
"%qE attribute ignored on a declaration of "
"a different kind than referenced symbol",
name)
&& DECL_P (ref))
inform (DECL_SOURCE_LOCATION (ref),
"symbol %qD referenced by %qD declared here", ref, decl);
return NULL_TREE;
}
tree attrs = NULL_TREE;
if (DECL_P (ref))
attrs = DECL_ATTRIBUTES (ref);
else if (TYPE_P (ref))
attrs = TYPE_ATTRIBUTES (ref);
/* Copy decl attributes from REF to DECL. */
for (tree at = attrs; at; at = TREE_CHAIN (at))
{
/* Avoid copying attributes that affect a symbol linkage,
inlining, or visibility since those in all likelihood
only apply to the target.
FIXME: make it possible to specify which attributes to
copy or not to copy in the copy attribute itself. */
tree atname = get_attribute_name (at);
if (is_attribute_p ("alias", atname)
|| is_attribute_p ("always_inline", atname)
|| is_attribute_p ("gnu_inline", atname)
|| is_attribute_p ("ifunc", atname)
|| is_attribute_p ("noinline", atname)
|| is_attribute_p ("visibility", atname)
|| is_attribute_p ("weak", atname)
|| is_attribute_p ("weakref", atname)
|| is_attribute_p ("target_clones", atname))
continue;
/* Attribute leaf only applies to extern functions.
Avoid copying it to static ones. */
if (!TREE_PUBLIC (decl)
&& is_attribute_p ("leaf", atname))
continue;
tree atargs = TREE_VALUE (at);
/* Create a copy of just the one attribute ar AT, including
its argumentsm and add it to DECL. */
tree attr = tree_cons (atname, copy_list (atargs), NULL_TREE);
decl_attributes (node, attr, flags, EXPR_P (ref) ? NULL_TREE : ref);
}
/* Proceed to copy type attributes below. */
}
else if (!TYPE_P (decl))
{
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute must apply to a declaration",
name);
return NULL_TREE;
}
/* A function declared with attribute nothrow has the attribute
attached to it, but a C++ throw() function does not. */
if (TREE_NOTHROW (ref))
TREE_NOTHROW (decl) = true;
/* Similarly, a function declared with attribute noreturn has it
attached on to it, but a C11 _Noreturn function does not. */
if (DECL_P (ref)
&& TREE_THIS_VOLATILE (ref)
&& FUNC_OR_METHOD_TYPE_P (reftype))
TREE_THIS_VOLATILE (decl) = true;
if (POINTER_TYPE_P (reftype))
reftype = TREE_TYPE (reftype);
if (!TYPE_P (reftype))
return NULL_TREE;
tree attrs = TYPE_ATTRIBUTES (reftype);
/* Copy type attributes from REF to DECL. Pass in REF if it's a DECL
or a type but not if it's an expression. Set ATTR_FLAG_INTERNAL
since the attributes' arguments may be in their internal form. */
for (tree at = attrs; at; at = TREE_CHAIN (at))
decl_attributes (node, at, flags | ATTR_FLAG_INTERNAL,
EXPR_P (ref) ? NULL_TREE : ref);
return NULL_TREE;
}
/* Handle a "weakref" attribute; arguments as in struct
attribute_spec.handler. */
static tree
handle_weakref_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs)
{
tree attr = NULL_TREE;
/* We must ignore the attribute when it is associated with
local-scoped decls, since attribute alias is ignored and many
such symbols do not even have a DECL_WEAK field. */
if (decl_function_context (*node)
|| current_function_decl
|| !VAR_OR_FUNCTION_DECL_P (*node))
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
return NULL_TREE;
}
if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node)))
{
error ("indirect function %q+D cannot be declared %qE",
*node, name);
*no_add_attrs = true;
return NULL_TREE;
}
/* The idea here is that `weakref("name")' mutates into `weakref,
alias("name")', and weakref without arguments, in turn,
implicitly adds weak. */
if (args)
{
attr = tree_cons (get_identifier ("alias"), args, attr);
attr = tree_cons (get_identifier ("weakref"), NULL_TREE, attr);
*no_add_attrs = true;
decl_attributes (node, attr, flags);
}
else
{
if (lookup_attribute ("alias", DECL_ATTRIBUTES (*node)))
error_at (DECL_SOURCE_LOCATION (*node),
"%qE attribute must appear before %qs attribute",
name, "alias");
/* Can't call declare_weak because it wants this to be TREE_PUBLIC,
and that isn't supported; and because it wants to add it to
the list of weak decls, which isn't helpful. */
DECL_WEAK (*node) = 1;
}
if (decl_in_symtab_p (*node))
{
struct symtab_node *n = symtab_node::get (*node);
if (n && n->refuse_visibility_changes)
error ("%+qD declared %qE after being used", *node, name);
}
return NULL_TREE;
}
/* Handle an "visibility" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_visibility_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags),
bool *ARG_UNUSED (no_add_attrs))
{
tree decl = *node;
tree id = TREE_VALUE (args);
enum symbol_visibility vis;
if (TYPE_P (*node))
{
if (TREE_CODE (*node) == ENUMERAL_TYPE)
/* OK */;
else if (!RECORD_OR_UNION_TYPE_P (*node))
{
warning (OPT_Wattributes, "%qE attribute ignored on non-class types",
name);
return NULL_TREE;
}
else if (TYPE_FIELDS (*node))
{
error ("%qE attribute ignored because %qT is already defined",
name, *node);
return NULL_TREE;
}
}
else if (decl_function_context (decl) != 0 || !TREE_PUBLIC (decl))
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
return NULL_TREE;
}
if (TREE_CODE (id) != STRING_CST)
{
error ("visibility argument not a string");
return NULL_TREE;
}
/* If this is a type, set the visibility on the type decl. */
if (TYPE_P (decl))
{
decl = TYPE_NAME (decl);
if (!decl)
return NULL_TREE;
if (TREE_CODE (decl) == IDENTIFIER_NODE)
{
warning (OPT_Wattributes, "%qE attribute ignored on types",
name);
return NULL_TREE;
}
}
if (strcmp (TREE_STRING_POINTER (id), "default") == 0)
vis = VISIBILITY_DEFAULT;
else if (strcmp (TREE_STRING_POINTER (id), "internal") == 0)
vis = VISIBILITY_INTERNAL;
else if (strcmp (TREE_STRING_POINTER (id), "hidden") == 0)
vis = VISIBILITY_HIDDEN;
else if (strcmp (TREE_STRING_POINTER (id), "protected") == 0)
vis = VISIBILITY_PROTECTED;
else
{
error ("attribute %qE argument must be one of %qs, %qs, %qs, or %qs",
name, "default", "hidden", "protected", "internal");
vis = VISIBILITY_DEFAULT;
}
if (DECL_VISIBILITY_SPECIFIED (decl)
&& vis != DECL_VISIBILITY (decl))
{
tree attributes = (TYPE_P (*node)
? TYPE_ATTRIBUTES (*node)
: DECL_ATTRIBUTES (decl));
if (lookup_attribute ("visibility", attributes))
error ("%qD redeclared with different visibility", decl);
else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
&& lookup_attribute ("dllimport", attributes))
error ("%qD was declared %qs which implies default visibility",
decl, "dllimport");
else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
&& lookup_attribute ("dllexport", attributes))
error ("%qD was declared %qs which implies default visibility",
decl, "dllexport");
}
DECL_VISIBILITY (decl) = vis;
DECL_VISIBILITY_SPECIFIED (decl) = 1;
/* Go ahead and attach the attribute to the node as well. This is needed
so we can determine whether we have VISIBILITY_DEFAULT because the
visibility was not specified, or because it was explicitly overridden
from the containing scope. */
return NULL_TREE;
}
/* Handle an "tls_model" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_tls_model_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags),
bool *ARG_UNUSED (no_add_attrs))
{
tree id;
tree decl = *node;
enum tls_model kind;
if (!VAR_P (decl))
{
warning (OPT_Wattributes, "%qE attribute ignored because %qD "
"is not a variable",
name, decl);
return NULL_TREE;
}
if (!DECL_THREAD_LOCAL_P (decl))
{
warning (OPT_Wattributes, "%qE attribute ignored because %qD does "
"not have thread storage duration", name, decl);
return NULL_TREE;
}
kind = DECL_TLS_MODEL (decl);
id = TREE_VALUE (args);
if (TREE_CODE (id) != STRING_CST)
{
error ("%qE argument not a string", name);
return NULL_TREE;
}
if (!strcmp (TREE_STRING_POINTER (id), "local-exec"))
kind = TLS_MODEL_LOCAL_EXEC;
else if (!strcmp (TREE_STRING_POINTER (id), "initial-exec"))
kind = TLS_MODEL_INITIAL_EXEC;
else if (!strcmp (TREE_STRING_POINTER (id), "local-dynamic"))
kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
else if (!strcmp (TREE_STRING_POINTER (id), "global-dynamic"))
kind = TLS_MODEL_GLOBAL_DYNAMIC;
else
error ("%qE argument must be one of %qs, %qs, %qs, or %qs",
name,
"local-exec", "initial-exec", "local-dynamic", "global-dynamic");
set_decl_tls_model (decl, kind);
return NULL_TREE;
}
/* Handle a "no_instrument_function" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_instrument_function_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree decl = *node;
if (TREE_CODE (decl) != FUNCTION_DECL)
{
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute applies only to functions", name);
*no_add_attrs = true;
}
else
DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
return NULL_TREE;
}
/* Handle a "no_profile_instrument_function" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_profile_instrument_function_attribute (tree *node, tree name, tree,
int, bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* If ALLOC_DECL and DEALLOC_DECL are a pair of user-defined functions,
if they are declared inline issue warnings and return null. Otherwise
create attribute noinline, install it in ALLOC_DECL, and return it.
Otherwise return null. */
static tree
maybe_add_noinline (tree name, tree alloc_decl, tree dealloc_decl,
bool *no_add_attrs)
{
if (fndecl_built_in_p (alloc_decl) || fndecl_built_in_p (dealloc_decl))
return NULL_TREE;
/* When inlining (or optimization) is enabled and the allocator and
deallocator are not built-in functions, ignore the attribute on
functions declared inline since it could lead to false positives
when inlining one or the other call would wind up calling
a mismatched allocator or deallocator. */
if ((optimize && DECL_DECLARED_INLINE_P (alloc_decl))
|| lookup_attribute ("always_inline", DECL_ATTRIBUTES (alloc_decl)))
{
warning (OPT_Wattributes,
"%<%E (%E)%> attribute ignored on functions "
"declared %qs", name, DECL_NAME (dealloc_decl), "inline");
*no_add_attrs = true;
return NULL_TREE;
}
if ((optimize && DECL_DECLARED_INLINE_P (dealloc_decl))
|| lookup_attribute ("always_inline", DECL_ATTRIBUTES (dealloc_decl)))
{
warning (OPT_Wattributes,
"%<%E (%E)%> attribute ignored with deallocation "
"functions declared %qs",
name, DECL_NAME (dealloc_decl), "inline");
inform (DECL_SOURCE_LOCATION (dealloc_decl),
"deallocation function declared here" );
*no_add_attrs = true;
return NULL_TREE;
}
/* Disable inlining for non-standard deallocators to avoid false
positives due to mismatches between the inlined implementation
of one and not the other pair of functions. */
tree attr = tree_cons (get_identifier ("noinline"), NULL_TREE, NULL_TREE);
decl_attributes (&alloc_decl, attr, 0);
return attr;
}
/* Handle the "malloc" attribute. */
static tree
handle_malloc_attribute (tree *node, tree name, tree args, int flags,
bool *no_add_attrs)
{
if (flags & ATTR_FLAG_INTERNAL)
/* Recursive call. */
return NULL_TREE;
tree fndecl = *node;
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored; valid only "
"for functions",
name);
*no_add_attrs = true;
return NULL_TREE;
}
tree rettype = TREE_TYPE (TREE_TYPE (*node));
if (!POINTER_TYPE_P (rettype))
{
warning (OPT_Wattributes, "%qE attribute ignored on functions "
"returning %qT; valid only for pointer return types",
name, rettype);
*no_add_attrs = true;
return NULL_TREE;
}
if (!args)
{
/* Only the form of the attribute with no arguments declares
a function malloc-like. */
DECL_IS_MALLOC (*node) = 1;
return NULL_TREE;
}
tree dealloc = TREE_VALUE (args);
if (error_operand_p (dealloc))
{
/* If the argument is in error it will have already been diagnosed.
Avoid issuing redundant errors here. */
*no_add_attrs = true;
return NULL_TREE;
}
STRIP_NOPS (dealloc);
if (TREE_CODE (dealloc) == ADDR_EXPR)
{
/* In C++ the argument may be wrapped in a cast to disambiguate
one of a number of overloads (such as operator delete). To
make things interesting, the cast looks different between
different C++ versions. Strip it and install the attribute
with the disambiguated function. */
dealloc = TREE_OPERAND (dealloc, 0);
*no_add_attrs = true;
tree attr = tree_cons (NULL_TREE, dealloc, TREE_CHAIN (args));
attr = build_tree_list (name, attr);
return decl_attributes (node, attr, 0);
}
if (TREE_CODE (dealloc) != FUNCTION_DECL)
{
if (TREE_CODE (dealloc) == OVERLOAD)
{
/* Handle specially the common case of specifying one of a number
of overloads, such as operator delete. */
error ("%qE attribute argument 1 is ambiguous", name);
inform (input_location,
"use a cast to the expected type to disambiguate");
*no_add_attrs = true;
return NULL_TREE;
}
error ("%qE attribute argument 1 does not name a function", name);
if (DECL_P (dealloc))
inform (DECL_SOURCE_LOCATION (dealloc),
"argument references a symbol declared here");
*no_add_attrs = true;
return NULL_TREE;
}
/* Mentioning the deallocation function qualifies as its use. */
TREE_USED (dealloc) = 1;
tree fntype = TREE_TYPE (dealloc);
tree argpos = TREE_CHAIN (args) ? TREE_VALUE (TREE_CHAIN (args)) : NULL_TREE;
if (!argpos)
{
tree argtypes = TYPE_ARG_TYPES (fntype);
if (!argtypes)
{
/* Reject functions without a prototype. */
error ("%qE attribute argument 1 must take a pointer "
"type as its first argument", name);
inform (DECL_SOURCE_LOCATION (dealloc),
"referenced symbol declared here");
*no_add_attrs = true;
return NULL_TREE;
}
tree argtype = TREE_VALUE (argtypes);
if (TREE_CODE (argtype) != POINTER_TYPE)
{
/* Reject functions that don't take a pointer as their first
argument. */
error ("%qE attribute argument 1 must take a pointer type "
"as its first argument; have %qT", name, argtype);
inform (DECL_SOURCE_LOCATION (dealloc),
"referenced symbol declared here");
*no_add_attrs = true;
return NULL_TREE;
}
/* Disable inlining for non-standard deallocators to avoid false
positives (or warn if either function is explicitly inline). */
tree at_noinline =
maybe_add_noinline (name, fndecl, dealloc, no_add_attrs);
if (*no_add_attrs)
return NULL_TREE;
/* Add attribute *dealloc to the deallocator function associating
it with this one. Ideally, the attribute would reference
the DECL of the deallocator but since that changes for each
redeclaration, use DECL_NAME instead. (DECL_ASSEMBLER_NAME
need not be set at this point and setting it here is too early. */
tree attrs = build_tree_list (NULL_TREE, DECL_NAME (fndecl));
attrs = tree_cons (get_identifier ("*dealloc"), attrs, at_noinline);
decl_attributes (&dealloc, attrs, 0);
return NULL_TREE;
}
/* Validate the positional argument. */
argpos = positional_argument (fntype, name, argpos, POINTER_TYPE);
if (!argpos)
{
*no_add_attrs = true;
return NULL_TREE;
}
/* As above, disable inlining for non-standard deallocators to avoid
false positives (or warn). */
tree at_noinline =
maybe_add_noinline (name, fndecl, dealloc, no_add_attrs);
if (*no_add_attrs)
return NULL_TREE;
/* It's valid to declare the same function with multiple instances
of attribute malloc, each naming the same or different deallocator
functions, and each referencing either the same or a different
positional argument. */
tree attrs = tree_cons (NULL_TREE, argpos, NULL_TREE);
attrs = tree_cons (NULL_TREE, DECL_NAME (fndecl), attrs);
attrs = tree_cons (get_identifier ("*dealloc"), attrs, at_noinline);
decl_attributes (&dealloc, attrs, 0);
return NULL_TREE;
}
/* Handle the internal "*dealloc" attribute added for functions declared
with the one- and two-argument forms of attribute malloc. Add it
to *NODE unless it's already there with the same arguments. */
static tree
handle_dealloc_attribute (tree *node, tree name, tree args, int,
bool *no_add_attrs)
{
tree fndecl = *node;
tree attrs = DECL_ATTRIBUTES (fndecl);
if (!attrs)
return NULL_TREE;
tree arg = TREE_VALUE (args);
args = TREE_CHAIN (args);
tree arg_pos = args ? TREE_VALUE (args) : integer_zero_node;
gcc_checking_assert ((DECL_P (arg)
&& fndecl_built_in_p (arg, BUILT_IN_NORMAL))
|| TREE_CODE (arg) == IDENTIFIER_NODE);
const char* const namestr = IDENTIFIER_POINTER (name);
for (tree at = attrs; (at = lookup_attribute (namestr, at));
at = TREE_CHAIN (at))
{
tree alloc = TREE_VALUE (at);
if (!alloc)
continue;
tree pos = TREE_CHAIN (alloc);
alloc = TREE_VALUE (alloc);
pos = pos ? TREE_VALUE (pos) : integer_zero_node;
gcc_checking_assert ((DECL_P (alloc)
&& fndecl_built_in_p (alloc, BUILT_IN_NORMAL))
|| TREE_CODE (alloc) == IDENTIFIER_NODE);
if (alloc == arg && tree_int_cst_equal (pos, arg_pos))
{
/* The function already has the attribute either without any
arguments or with the same arguments as the attribute that's
being added. Return without adding another copy. */
*no_add_attrs = true;
return NULL_TREE;
}
}
return NULL_TREE;
}
/* Handle the "alloc_size (argpos1 [, argpos2])" function type attribute.
*NODE is the type of the function the attribute is being applied to. */
static tree
handle_alloc_size_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree fntype = *node;
tree rettype = TREE_TYPE (fntype);
if (!POINTER_TYPE_P (rettype))
{
warning (OPT_Wattributes,
"%qE attribute ignored on a function returning %qT",
name, rettype);
*no_add_attrs = true;
return NULL_TREE;
}
tree newargs[2] = { NULL_TREE, NULL_TREE };
for (int i = 1; args; ++i)
{
tree pos = TREE_VALUE (args);
/* NEXT is null when the attribute includes just one argument.
That's used to tell positional_argument to avoid mentioning
the argument number in diagnostics (since there's just one
mentioning it is unnecessary and coule be confusing). */
tree next = TREE_CHAIN (args);
if (tree val = positional_argument (fntype, name, pos, INTEGER_TYPE,
next || i > 1 ? i : 0))
{
TREE_VALUE (args) = val;
newargs[i - 1] = val;
}
else
{
*no_add_attrs = true;
return NULL_TREE;
}
args = next;
}
if (!validate_attr_args (node, name, newargs))
*no_add_attrs = true;
return NULL_TREE;
}
/* Handle an "alloc_align (argpos)" attribute. */
static tree
handle_alloc_align_attribute (tree *node, tree name, tree args, int,
bool *no_add_attrs)
{
tree fntype = *node;
tree rettype = TREE_TYPE (fntype);
if (!POINTER_TYPE_P (rettype))
{
warning (OPT_Wattributes,
"%qE attribute ignored on a function returning %qT",
name, rettype);
*no_add_attrs = true;
return NULL_TREE;
}
if (tree val = positional_argument (*node, name, TREE_VALUE (args),
INTEGER_TYPE))
if (validate_attr_arg (node, name, val))
return NULL_TREE;
*no_add_attrs = true;
return NULL_TREE;
}
/* Handle a "assume_aligned" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_assume_aligned_attribute (tree *node, tree name, tree args, int,
bool *no_add_attrs)
{
tree decl = *node;
tree rettype = TREE_TYPE (decl);
if (TREE_CODE (rettype) != POINTER_TYPE)
{
warning (OPT_Wattributes,
"%qE attribute ignored on a function returning %qT",
name, rettype);
*no_add_attrs = true;
return NULL_TREE;
}
/* The alignment specified by the first argument. */
tree align = NULL_TREE;
for (; args; args = TREE_CHAIN (args))
{
tree val = TREE_VALUE (args);
if (val && TREE_CODE (val) != IDENTIFIER_NODE
&& TREE_CODE (val) != FUNCTION_DECL)
val = default_conversion (val);
if (!tree_fits_shwi_p (val))
{
warning (OPT_Wattributes,
"%qE attribute argument %E is not an integer constant",
name, val);
*no_add_attrs = true;
return NULL_TREE;
}
else if (tree_int_cst_sgn (val) < 0)
{
warning (OPT_Wattributes,
"%qE attribute argument %E is not positive", name, val);
*no_add_attrs = true;
return NULL_TREE;
}
if (!align)
{
/* Validate and save the alignment. */
if (!integer_pow2p (val))
{
warning (OPT_Wattributes,
"%qE attribute argument %E is not a power of 2",
name, val);
*no_add_attrs = true;
return NULL_TREE;
}
align = val;
}
else if (tree_int_cst_le (align, val))
{
/* The misalignment specified by the second argument
must be non-negative and less than the alignment. */
warning (OPT_Wattributes,
"%qE attribute argument %E is not in the range [0, %wu]",
name, val, tree_to_uhwi (align) - 1);
*no_add_attrs = true;
return NULL_TREE;
}
}
return NULL_TREE;
}
/* Handle the internal-only "arg spec" attribute. */
static tree
handle_argspec_attribute (tree *, tree, tree args, int, bool *)
{
/* Verify the attribute has one or two arguments and their kind. */
gcc_assert (args && TREE_CODE (TREE_VALUE (args)) == STRING_CST);
for (tree next = TREE_CHAIN (args); next; next = TREE_CHAIN (next))
{
tree val = TREE_VALUE (next);
gcc_assert (DECL_P (val) || EXPR_P (val));
}
return NULL_TREE;
}
/* Handle the internal-only "fn spec" attribute. */
static tree
handle_fnspec_attribute (tree *node ATTRIBUTE_UNUSED, tree ARG_UNUSED (name),
tree args, int ARG_UNUSED (flags),
bool *no_add_attrs ATTRIBUTE_UNUSED)
{
gcc_assert (args
&& TREE_CODE (TREE_VALUE (args)) == STRING_CST
&& !TREE_CHAIN (args));
return NULL_TREE;
}
/* Handle a "warn_unused" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_warn_unused_attribute (tree *node, tree name,
tree args ATTRIBUTE_UNUSED,
int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
{
if (TYPE_P (*node))
/* Do nothing else, just set the attribute. We'll get at
it later with lookup_attribute. */
;
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle an "omp declare simd" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_omp_declare_simd_attribute (tree *, tree, tree, int, bool *)
{
return NULL_TREE;
}
/* Handle an "omp declare variant {base,variant}" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_omp_declare_variant_attribute (tree *, tree, tree, int, bool *)
{
return NULL_TREE;
}
/* Handle a "simd" attribute. */
static tree
handle_simd_attribute (tree *node, tree name, tree args, int, bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL)
{
tree t = get_identifier ("omp declare simd");
tree attr = NULL_TREE;
if (args)
{
tree id = TREE_VALUE (args);
if (TREE_CODE (id) != STRING_CST)
{
error ("attribute %qE argument not a string", name);
*no_add_attrs = true;
return NULL_TREE;
}
if (strcmp (TREE_STRING_POINTER (id), "notinbranch") == 0)
attr = build_omp_clause (DECL_SOURCE_LOCATION (*node),
OMP_CLAUSE_NOTINBRANCH);
else if (strcmp (TREE_STRING_POINTER (id), "inbranch") == 0)
attr = build_omp_clause (DECL_SOURCE_LOCATION (*node),
OMP_CLAUSE_INBRANCH);
else
{
error ("only %<inbranch%> and %<notinbranch%> flags are "
"allowed for %<__simd__%> attribute");
*no_add_attrs = true;
return NULL_TREE;
}
}
DECL_ATTRIBUTES (*node)
= tree_cons (t, build_tree_list (NULL_TREE, attr),
DECL_ATTRIBUTES (*node));
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle an "omp declare target" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_omp_declare_target_attribute (tree *, tree, tree, int, bool *)
{
return NULL_TREE;
}
/* Handle an "non overlapping" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_non_overlapping_attribute (tree *, tree, tree, int, bool *)
{
return NULL_TREE;
}
/* Handle a "returns_twice" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_returns_twice_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL)
DECL_IS_RETURNS_TWICE (*node) = 1;
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "no_limit_stack" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_no_limit_stack_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree decl = *node;
if (TREE_CODE (decl) != FUNCTION_DECL)
{
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute applies only to functions", name);
*no_add_attrs = true;
}
else if (DECL_INITIAL (decl))
{
error_at (DECL_SOURCE_LOCATION (decl),
"cannot set %qE attribute after definition", name);
*no_add_attrs = true;
}
else
DECL_NO_LIMIT_STACK (decl) = 1;
return NULL_TREE;
}
/* Handle a "pure" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_pure_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL)
{
tree type = TREE_TYPE (*node);
if (VOID_TYPE_P (TREE_TYPE (type)))
warning (OPT_Wattributes, "%qE attribute on function "
"returning %<void%>", name);
DECL_PURE_P (*node) = 1;
/* ??? TODO: Support types. */
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Digest an attribute list destined for a transactional memory statement.
ALLOWED is the set of attributes that are allowed for this statement;
return the attribute we parsed. Multiple attributes are never allowed. */
int
parse_tm_stmt_attr (tree attrs, int allowed)
{
tree a_seen = NULL;
int m_seen = 0;
for ( ; attrs ; attrs = TREE_CHAIN (attrs))
{
tree a = get_attribute_name (attrs);
tree ns = get_attribute_namespace (attrs);
int m = 0;
if (is_attribute_p ("outer", a)
&& (ns == NULL_TREE || strcmp (IDENTIFIER_POINTER (ns), "gnu") == 0))
m = TM_STMT_ATTR_OUTER;
if ((m & allowed) == 0)
{
warning (OPT_Wattributes, "%qE attribute directive ignored", a);
continue;
}
if (m_seen == 0)
{
a_seen = a;
m_seen = m;
}
else if (m_seen == m)
warning (OPT_Wattributes, "%qE attribute duplicated", a);
else
warning (OPT_Wattributes, "%qE attribute follows %qE", a, a_seen);
}
return m_seen;
}
/* Transform a TM attribute name into a maskable integer and back.
Note that NULL (i.e. no attribute) is mapped to UNKNOWN, corresponding
to how the lack of an attribute is treated. */
int
tm_attr_to_mask (tree attr)
{
if (attr == NULL)
return 0;
if (is_attribute_p ("transaction_safe", attr))
return TM_ATTR_SAFE;
if (is_attribute_p ("transaction_callable", attr))
return TM_ATTR_CALLABLE;
if (is_attribute_p ("transaction_pure", attr))
return TM_ATTR_PURE;
if (is_attribute_p ("transaction_unsafe", attr))
return TM_ATTR_IRREVOCABLE;
if (is_attribute_p ("transaction_may_cancel_outer", attr))
return TM_ATTR_MAY_CANCEL_OUTER;
return 0;
}
tree
tm_mask_to_attr (int mask)
{
const char *str;
switch (mask)
{
case TM_ATTR_SAFE:
str = "transaction_safe";
break;
case TM_ATTR_CALLABLE:
str = "transaction_callable";
break;
case TM_ATTR_PURE:
str = "transaction_pure";
break;
case TM_ATTR_IRREVOCABLE:
str = "transaction_unsafe";
break;
case TM_ATTR_MAY_CANCEL_OUTER:
str = "transaction_may_cancel_outer";
break;
default:
gcc_unreachable ();
}
return get_identifier (str);
}
/* Return the first TM attribute seen in LIST. */
tree
find_tm_attribute (tree list)
{
for (; list ; list = TREE_CHAIN (list))
{
tree name = get_attribute_name (list);
if (tm_attr_to_mask (name) != 0)
return name;
}
return NULL_TREE;
}
/* Handle the TM attributes; arguments as in struct attribute_spec.handler.
Here we accept only function types, and verify that none of the other
function TM attributes are also applied. */
/* ??? We need to accept class types for C++, but not C. This greatly
complicates this function, since we can no longer rely on the extra
processing given by function_type_required. */
static tree
handle_tm_attribute (tree *node, tree name, tree args,
int flags, bool *no_add_attrs)
{
/* Only one path adds the attribute; others don't. */
*no_add_attrs = true;
switch (TREE_CODE (*node))
{
case RECORD_TYPE:
case UNION_TYPE:
/* Only tm_callable and tm_safe apply to classes. */
if (tm_attr_to_mask (name) & ~(TM_ATTR_SAFE | TM_ATTR_CALLABLE))
goto ignored;
/* FALLTHRU */
case FUNCTION_TYPE:
case METHOD_TYPE:
{
tree old_name = find_tm_attribute (TYPE_ATTRIBUTES (*node));
if (old_name == name)
;
else if (old_name != NULL_TREE)
error ("type was previously declared %qE", old_name);
else
*no_add_attrs = false;
}
break;
case FUNCTION_DECL:
{
/* transaction_safe_dynamic goes on the FUNCTION_DECL, but we also
want to set transaction_safe on the type. */
gcc_assert (is_attribute_p ("transaction_safe_dynamic", name));
if (!TYPE_P (DECL_CONTEXT (*node)))
error_at (DECL_SOURCE_LOCATION (*node),
"%<transaction_safe_dynamic%> may only be specified for "
"a virtual function");
*no_add_attrs = false;
decl_attributes (&TREE_TYPE (*node),
build_tree_list (get_identifier ("transaction_safe"),
NULL_TREE),
0);
break;
}
case POINTER_TYPE:
{
enum tree_code subcode = TREE_CODE (TREE_TYPE (*node));
if (subcode == FUNCTION_TYPE || subcode == METHOD_TYPE)
{
tree fn_tmp = TREE_TYPE (*node);
decl_attributes (&fn_tmp, tree_cons (name, args, NULL), 0);
*node = build_pointer_type (fn_tmp);
break;
}
}
/* FALLTHRU */
default:
/* If a function is next, pass it on to be tried next. */
if (flags & (int) ATTR_FLAG_FUNCTION_NEXT)
return tree_cons (name, args, NULL);
ignored:
warning (OPT_Wattributes, "%qE attribute ignored", name);
break;
}
return NULL_TREE;
}
/* Handle the TM_WRAP attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_tm_wrap_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree decl = *node;
/* We don't need the attribute even on success, since we
record the entry in an external table. */
*no_add_attrs = true;
if (TREE_CODE (decl) != FUNCTION_DECL)
warning (OPT_Wattributes, "%qE attribute ignored", name);
else
{
tree wrap_decl = TREE_VALUE (args);
if (error_operand_p (wrap_decl))
;
else if (TREE_CODE (wrap_decl) != IDENTIFIER_NODE
&& !VAR_OR_FUNCTION_DECL_P (wrap_decl))
error ("%qE argument not an identifier", name);
else
{
if (TREE_CODE (wrap_decl) == IDENTIFIER_NODE)
wrap_decl = lookup_name (wrap_decl);
if (wrap_decl && TREE_CODE (wrap_decl) == FUNCTION_DECL)
{
if (lang_hooks.types_compatible_p (TREE_TYPE (decl),
TREE_TYPE (wrap_decl)))
record_tm_replacement (wrap_decl, decl);
else
error ("%qD is not compatible with %qD", wrap_decl, decl);
}
else
error ("%qE argument is not a function", name);
}
}
return NULL_TREE;
}
/* Ignore the given attribute. Used when this attribute may be usefully
overridden by the target, but is not used generically. */
static tree
ignore_attribute (tree * ARG_UNUSED (node), tree ARG_UNUSED (name),
tree ARG_UNUSED (args), int ARG_UNUSED (flags),
bool *no_add_attrs)
{
*no_add_attrs = true;
return NULL_TREE;
}
/* Handle a "no vops" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_novops_attribute (tree *node, tree ARG_UNUSED (name),
tree ARG_UNUSED (args), int ARG_UNUSED (flags),
bool *ARG_UNUSED (no_add_attrs))
{
gcc_assert (TREE_CODE (*node) == FUNCTION_DECL);
DECL_IS_NOVOPS (*node) = 1;
return NULL_TREE;
}
/* Handle a "deprecated" attribute; arguments as in
struct attribute_spec.handler. */
tree
handle_deprecated_attribute (tree *node, tree name,
tree args, int flags,
bool *no_add_attrs)
{
tree type = NULL_TREE;
int warn = 0;
tree what = NULL_TREE;
if (!args)
*no_add_attrs = true;
else if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
{
error ("deprecated message is not a string");
*no_add_attrs = true;
}
if (DECL_P (*node))
{
tree decl = *node;
type = TREE_TYPE (decl);
if (TREE_CODE (decl) == TYPE_DECL
|| TREE_CODE (decl) == PARM_DECL
|| VAR_OR_FUNCTION_DECL_P (decl)
|| TREE_CODE (decl) == FIELD_DECL
|| TREE_CODE (decl) == CONST_DECL
|| objc_method_decl (TREE_CODE (decl)))
TREE_DEPRECATED (decl) = 1;
else
warn = 1;
}
else if (TYPE_P (*node))
{
if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
*node = build_variant_type_copy (*node);
TREE_DEPRECATED (*node) = 1;
type = *node;
}
else
warn = 1;
if (warn)
{
*no_add_attrs = true;
if (type && TYPE_NAME (type))
{
if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
what = TYPE_NAME (*node);
else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
&& DECL_NAME (TYPE_NAME (type)))
what = DECL_NAME (TYPE_NAME (type));
}
if (what)
warning (OPT_Wattributes, "%qE attribute ignored for %qE", name, what);
else
warning (OPT_Wattributes, "%qE attribute ignored", name);
}
return NULL_TREE;
}
/* Handle a "unavailable" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_unavailable_attribute (tree *node, tree name,
tree args, int flags,
bool *no_add_attrs)
{
tree type = NULL_TREE;
int warn = 0;
tree what = NULL_TREE;
if (!args)
*no_add_attrs = true;
else if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
{
error ("the message attached to %<unavailable%> is not a string");
*no_add_attrs = true;
}
if (DECL_P (*node))
{
tree decl = *node;
type = TREE_TYPE (decl);
if (TREE_CODE (decl) == TYPE_DECL
|| TREE_CODE (decl) == PARM_DECL
|| VAR_OR_FUNCTION_DECL_P (decl)
|| TREE_CODE (decl) == FIELD_DECL
|| TREE_CODE (decl) == CONST_DECL
|| objc_method_decl (TREE_CODE (decl)))
TREE_UNAVAILABLE (decl) = 1;
else
warn = 1;
}
else if (TYPE_P (*node))
{
if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
*node = build_variant_type_copy (*node);
TREE_UNAVAILABLE (*node) = 1;
type = *node;
}
else
warn = 1;
if (warn)
{
*no_add_attrs = true;
if (type && TYPE_NAME (type))
{
if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
what = TYPE_NAME (*node);
else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
&& DECL_NAME (TYPE_NAME (type)))
what = DECL_NAME (TYPE_NAME (type));
}
if (what)
warning (OPT_Wattributes, "%qE attribute ignored for %qE", name, what);
else
warning (OPT_Wattributes, "%qE attribute ignored", name);
}
return NULL_TREE;
}
/* Return the "base" type from TYPE that is suitable to apply attribute
vector_size to by stripping arrays, function types, etc. */
static tree
type_for_vector_size (tree type)
{
/* We need to provide for vector pointers, vector arrays, and
functions returning vectors. For example:
__attribute__((vector_size(16))) short *foo;
In this case, the mode is SI, but the type being modified is
HI, so we need to look further. */
while (POINTER_TYPE_P (type)
|| TREE_CODE (type) == FUNCTION_TYPE
|| TREE_CODE (type) == METHOD_TYPE
|| TREE_CODE (type) == ARRAY_TYPE
|| TREE_CODE (type) == OFFSET_TYPE)
type = TREE_TYPE (type);
return type;
}
/* Given TYPE, return the base type to which the vector_size attribute
ATNAME with ARGS, when non-null, can be applied, if one exists.
On success and when both ARGS and PTRNUNITS are non-null, set
*PTRNUNINTS to the number of vector units. When PTRNUNITS is not
null, issue a warning when the attribute argument is not constant
and an error if there is no such type. Otherwise issue a warning
in the latter case and return null. */
static tree
type_valid_for_vector_size (tree type, tree atname, tree args,
unsigned HOST_WIDE_INT *ptrnunits)
{
bool error_p = ptrnunits != NULL;
/* Get the mode of the type being modified. */
machine_mode orig_mode = TYPE_MODE (type);
if ((!INTEGRAL_TYPE_P (type)
&& !SCALAR_FLOAT_TYPE_P (type)
&& !FIXED_POINT_TYPE_P (type))
|| (!SCALAR_FLOAT_MODE_P (orig_mode)
&& GET_MODE_CLASS (orig_mode) != MODE_INT
&& !ALL_SCALAR_FIXED_POINT_MODE_P (orig_mode))
|| !tree_fits_uhwi_p (TYPE_SIZE_UNIT (type))
|| TREE_CODE (type) == BOOLEAN_TYPE)
{
if (error_p)
error ("invalid vector type for attribute %qE", atname);
else
warning (OPT_Wattributes, "invalid vector type for attribute %qE",
atname);
return NULL_TREE;
}
/* When no argument has been provided this is just a request to validate
the type above. Return TYPE to indicate success. */
if (!args)
return type;
tree size = TREE_VALUE (args);
/* Erroneous arguments have already been diagnosed. */
if (size == error_mark_node)
return NULL_TREE;
if (size && TREE_CODE (size) != IDENTIFIER_NODE
&& TREE_CODE (size) != FUNCTION_DECL)
size = default_conversion (size);
if (TREE_CODE (size) != INTEGER_CST)
{
if (error_p)
error ("%qE attribute argument value %qE is not an integer constant",
atname, size);
else
warning (OPT_Wattributes,
"%qE attribute argument value %qE is not an integer constant",
atname, size);
return NULL_TREE;
}
if (!TYPE_UNSIGNED (TREE_TYPE (size))
&& tree_int_cst_sgn (size) < 0)
{
if (error_p)
error ("%qE attribute argument value %qE is negative",
atname, size);
else
warning (OPT_Wattributes,
"%qE attribute argument value %qE is negative",
atname, size);
return NULL_TREE;
}
/* The attribute argument value is constrained by the maximum bit
alignment representable in unsigned int on the host. */
unsigned HOST_WIDE_INT vecsize;
unsigned HOST_WIDE_INT maxsize = tree_to_uhwi (max_object_size ());
if (!tree_fits_uhwi_p (size)
|| (vecsize = tree_to_uhwi (size)) > maxsize)
{
if (error_p)
error ("%qE attribute argument value %qE exceeds %wu",
atname, size, maxsize);
else
warning (OPT_Wattributes,
"%qE attribute argument value %qE exceeds %wu",
atname, size, maxsize);
return NULL_TREE;
}
if (vecsize % tree_to_uhwi (TYPE_SIZE_UNIT (type)))
{
if (error_p)
error ("vector size not an integral multiple of component size");
return NULL_TREE;
}
if (vecsize == 0)
{
error ("zero vector size");
return NULL;
}
/* Calculate how many units fit in the vector. */
unsigned HOST_WIDE_INT nunits = vecsize / tree_to_uhwi (TYPE_SIZE_UNIT (type));
if (nunits & (nunits - 1))
{
if (error_p)
error ("number of vector components %wu not a power of two", nunits);
else
warning (OPT_Wattributes,
"number of vector components %wu not a power of two", nunits);
return NULL_TREE;
}
if (nunits >= (unsigned HOST_WIDE_INT)INT_MAX)
{
if (error_p)
error ("number of vector components %wu exceeds %d",
nunits, INT_MAX - 1);
else
warning (OPT_Wattributes,
"number of vector components %wu exceeds %d",
nunits, INT_MAX - 1);
return NULL_TREE;
}
if (ptrnunits)
*ptrnunits = nunits;
return type;
}
/* Handle a "vector_size" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_vector_size_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
*no_add_attrs = true;
/* Determine the "base" type to apply the attribute to. */
tree type = type_for_vector_size (*node);
/* Get the vector size (in bytes) and let the function compute
the number of vector units. */
unsigned HOST_WIDE_INT nunits;
type = type_valid_for_vector_size (type, name, args, &nunits);
if (!type)
return NULL_TREE;
gcc_checking_assert (args != NULL);
tree new_type = build_vector_type (type, nunits);
/* Build back pointers if needed. */
*node = lang_hooks.types.reconstruct_complex_type (*node, new_type);
return NULL_TREE;
}
/* Handle a "vector_mask" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_vector_mask_attribute (tree *node, tree name, tree,
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
*no_add_attrs = true;
if (!flag_gimple)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
return NULL_TREE;
}
/* Determine the "base" type to apply the attribute to. */
tree type = type_for_vector_size (*node);
if (!VECTOR_TYPE_P (type) || VECTOR_BOOLEAN_TYPE_P (type))
{
warning (OPT_Wattributes, "%qE attribute only supported on "
"non-mask vector types", name);
return NULL_TREE;
}
tree new_type = truth_type_for (type);
/* Build back pointers if needed. */
*node = lang_hooks.types.reconstruct_complex_type (*node, new_type);
return NULL_TREE;
}
/* Handle the "nonnull" attribute. */
static tree
handle_nonnull_attribute (tree *node, tree name,
tree args, int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree type = *node;
/* If no arguments are specified, all pointer arguments should be
non-null. Verify a full prototype is given so that the arguments
will have the correct types when we actually check them later.
Avoid diagnosing type-generic built-ins since those have no
prototype. */
if (!args)
{
if (!prototype_p (type)
&& (!TYPE_ATTRIBUTES (type)
|| !lookup_attribute ("type generic", TYPE_ATTRIBUTES (type))))
{
error ("%qE attribute without arguments on a non-prototype",
name);
*no_add_attrs = true;
}
return NULL_TREE;
}
for (int i = 1; args; ++i)
{
tree pos = TREE_VALUE (args);
/* NEXT is null when the attribute includes just one argument.
That's used to tell positional_argument to avoid mentioning
the argument number in diagnostics (since there's just one
mentioning it is unnecessary and coule be confusing). */
tree next = TREE_CHAIN (args);
if (tree val = positional_argument (type, name, pos, POINTER_TYPE,
next || i > 1 ? i : 0))
TREE_VALUE (args) = val;
else
{
*no_add_attrs = true;
break;
}
args = next;
}
return NULL_TREE;
}
/* Handle the "nonstring" variable attribute. */
static tree
handle_nonstring_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
gcc_assert (!args);
tree_code code = TREE_CODE (*node);
if (VAR_P (*node)
|| code == FIELD_DECL
|| code == PARM_DECL)
{
tree type = TREE_TYPE (*node);
if (POINTER_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE)
{
/* Accept the attribute on arrays and pointers to all three
narrow character types. */
tree eltype = TREE_TYPE (type);
eltype = TYPE_MAIN_VARIANT (eltype);
if (eltype == char_type_node
|| eltype == signed_char_type_node
|| eltype == unsigned_char_type_node)
return NULL_TREE;
}
warning (OPT_Wattributes,
"%qE attribute ignored on objects of type %qT",
name, type);
*no_add_attrs = true;
return NULL_TREE;
}
if (code == FUNCTION_DECL)
warning (OPT_Wattributes,
"%qE attribute does not apply to functions", name);
else if (code == TYPE_DECL)
warning (OPT_Wattributes,
"%qE attribute does not apply to types", name);
else
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
return NULL_TREE;
}
/* Given a function type FUNCTYPE, returns the type of the parameter
ARGNO or null if ARGNO exceeds the number of parameters. On failure
set *NARGS to the number of function parameters. */
static tree
get_argument_type (tree functype, unsigned argno, unsigned *nargs)
{
function_args_iterator iter;
function_args_iter_init (&iter, functype);
unsigned count = 0;
for ( ; iter.next; ++count, function_args_iter_next (&iter))
{
if (count + 1 == argno)
{
tree argtype = function_args_iter_cond (&iter);
if (VOID_TYPE_P (argtype))
break;
if (argtype != error_mark_node)
return argtype;
}
}
*nargs = count;
return NULL_TREE;
}
/* Given a function FNDECL return the function argument at the zero-
based position ARGNO or null if it can't be found. */
static tree
get_argument (tree fndecl, unsigned argno)
{
if (!DECL_P (fndecl))
return NULL_TREE;
unsigned i = 0;
for (tree arg = DECL_ARGUMENTS (fndecl); arg; arg = TREE_CHAIN (arg))
if (i++ == argno)
return arg;
return NULL_TREE;
}
/* Attempt to append attribute access specification ATTRSPEC, optionally
described by the human-readable string ATTRSTR, for type T, to one in
ATTRS. VBLIST is an optional list of bounds of variable length array
parameters described by ATTRSTR.
Issue warning for conflicts and return null if any are found.
Return the concatenated access string on success. */
static tree
append_access_attr (tree node[3], tree attrs, const char *attrstr,
const char *attrspec, tree vblist = NULL_TREE)
{
tree argstr = build_string (strlen (attrspec) + 1, attrspec);
tree ataccess = tree_cons (NULL_TREE, argstr, vblist);
ataccess = tree_cons (get_identifier ("access"), ataccess, NULL_TREE);
/* The access specification being applied. This may be an implicit
access spec synthesized for array (or VLA) parameters even for
a declaration with an explicit access spec already applied, if
this call corresponds to the first declaration of the function. */
rdwr_map new_idxs;
init_attr_rdwr_indices (&new_idxs, ataccess);
/* The current access specification alrady applied. */
rdwr_map cur_idxs;
init_attr_rdwr_indices (&cur_idxs, attrs);
std::string spec;
for (auto it = new_idxs.begin (); it != new_idxs.end (); ++it)
{
const auto &newaxsref = *it;
/* The map has two equal entries for each pointer argument that
has an associated size argument. Process just the entry for
the former. */
if ((unsigned)newaxsref.first != newaxsref.second.ptrarg)
continue;
const attr_access* const cura = cur_idxs.get (newaxsref.first);
if (!cura)
{
/* The new attribute needs to be added. */
tree str = newaxsref.second.to_internal_string ();
spec += TREE_STRING_POINTER (str);
continue;
}
/* The new access spec refers to an array/pointer argument for
which an access spec already exists. Check and diagnose any
conflicts. If no conflicts are found, merge the two. */
const attr_access* const newa = &newaxsref.second;
if (!attrstr)
{
tree str = NULL_TREE;
if (newa->mode != access_deferred)
str = newa->to_external_string ();
else if (cura->mode != access_deferred)
str = cura->to_external_string ();
if (str)
attrstr = TREE_STRING_POINTER (str);
}
location_t curloc = input_location;
if (node[2] && DECL_P (node[2]))
curloc = DECL_SOURCE_LOCATION (node[2]);
location_t prevloc = UNKNOWN_LOCATION;
if (node[1] && DECL_P (node[1]))
prevloc = DECL_SOURCE_LOCATION (node[1]);
if (newa->mode != cura->mode
&& newa->mode != access_deferred
&& cura->mode != access_deferred
&& newa->internal_p == cura->internal_p)
{
/* Mismatch in access mode. */
auto_diagnostic_group d;
if (warning_at (curloc, OPT_Wattributes,
"attribute %qs mismatch with mode %qs",
attrstr, cura->mode_names[cura->mode])
&& prevloc != UNKNOWN_LOCATION)
inform (prevloc, "previous declaration here");
continue;
}
/* Set if PTRARG refers to a VLA with an unspecified bound (T[*]).
Be prepared for either CURA or NEWA to refer to it, depending
on which happens to come first in the declaration. */
const bool cur_vla_ub = (cura->internal_p
&& cura->sizarg == UINT_MAX
&& cura->minsize == HOST_WIDE_INT_M1U);
const bool new_vla_ub = (newa->internal_p
&& newa->sizarg == UINT_MAX
&& newa->minsize == HOST_WIDE_INT_M1U);
if (newa->sizarg != cura->sizarg
&& attrstr
&& (!(cur_vla_ub ^ new_vla_ub)
|| (!cura->internal_p && !newa->internal_p)))
{
/* Avoid diagnosing redeclarations of functions with no explicit
attribute access that add one. */
if (newa->mode == access_deferred
&& cura->mode != access_deferred
&& newa->sizarg == UINT_MAX
&& cura->sizarg != UINT_MAX)
continue;
if (cura->mode == access_deferred
&& newa->mode != access_deferred
&& cura->sizarg == UINT_MAX
&& newa->sizarg != UINT_MAX)
continue;
/* The two specs designate different size arguments. It's okay
for the explicit spec to specify a size where none is provided
by the implicit (VLA) one, as in:
__attribute__ ((access (read_write, 1, 2)))
void f (int*, int);
but not for two explicit access attributes to do that. */
bool warned = false;
auto_diagnostic_group d;
if (newa->sizarg == UINT_MAX)
/* Mismatch in the presence of the size argument. */
warned = warning_at (curloc, OPT_Wattributes,
"attribute %qs missing positional argument 2 "
"provided in previous designation by argument "
"%u", attrstr, cura->sizarg + 1);
else if (cura->sizarg == UINT_MAX)
/* Mismatch in the presence of the size argument. */
warned = warning_at (curloc, OPT_Wattributes,
"attribute %qs positional argument 2 "
"missing in previous designation",
attrstr);
else if (newa->internal_p || cura->internal_p)
/* Mismatch in the value of the size argument and a VLA bound. */
warned = warning_at (curloc, OPT_Wattributes,
"attribute %qs positional argument 2 "
"conflicts with previous designation "
"by argument %u",
attrstr, cura->sizarg + 1);
else
/* Mismatch in the value of the size argument between two
explicit access attributes. */
warned = warning_at (curloc, OPT_Wattributes,
"attribute %qs mismatched positional argument "
"values %i and %i",
attrstr, newa->sizarg + 1, cura->sizarg + 1);
if (warned)
{
/* If the previous declaration is a function (as opposed
to a typedef of one), find the location of the array
or pointer argument that uses the conflicting VLA bound
and point to it in the note. */
const attr_access* const pa = cura->size ? cura : newa;
tree size = pa->size ? TREE_VALUE (pa->size) : NULL_TREE;
if (size && DECL_P (size))
{
location_t argloc = UNKNOWN_LOCATION;
if (tree arg = get_argument (node[2], pa->ptrarg))
argloc = DECL_SOURCE_LOCATION (arg);
gcc_rich_location richloc (DECL_SOURCE_LOCATION (size));
if (argloc != UNKNOWN_LOCATION)
richloc.add_range (argloc);
inform (&richloc, "designating the bound of variable "
"length array argument %u",
pa->ptrarg + 1);
}
else if (prevloc != UNKNOWN_LOCATION)
inform (prevloc, "previous declaration here");
}
continue;
}
if (newa->internal_p == cura->internal_p)
continue;
/* Merge the CURA and NEWA. */
attr_access merged = newaxsref.second;
/* VLA seen in a declaration takes precedence. */
if (cura->minsize == HOST_WIDE_INT_M1U)
merged.minsize = HOST_WIDE_INT_M1U;
/* Use the explicitly specified size positional argument. */
if (cura->sizarg != UINT_MAX)
merged.sizarg = cura->sizarg;
/* Use the explicitly specified mode. */
if (merged.mode == access_deferred)
merged.mode = cura->mode;
tree str = merged.to_internal_string ();
spec += TREE_STRING_POINTER (str);
}
if (!spec.length ())
return NULL_TREE;
return build_string (spec.length (), spec.c_str ());
}
/* Convenience wrapper for the above. */
tree
append_access_attr (tree node[3], tree attrs, const char *attrstr,
char code, HOST_WIDE_INT idxs[2])
{
char attrspec[80];
int n = sprintf (attrspec, "%c%u", code, (unsigned) idxs[0] - 1);
if (idxs[1])
n += sprintf (attrspec + n, ",%u", (unsigned) idxs[1] - 1);
return append_access_attr (node, attrs, attrstr, attrspec);
}
/* Handle the access attribute for function type NODE[0], with the function
DECL optionally in NODE[1]. The handler is called both in response to
an explict attribute access on a declaration with a mode and one or two
positional arguments, and for internally synthesized access specifications
with a string argument optionally followd by a DECL or expression
representing a VLA bound. To speed up parsing, the handler transforms
the attribute and its arguments into a string. */
static tree
handle_access_attribute (tree node[3], tree name, tree args, int flags,
bool *no_add_attrs)
{
tree attrs = TYPE_ATTRIBUTES (*node);
tree type = *node;
if (POINTER_TYPE_P (type))
{
tree ptype = TREE_TYPE (type);
if (FUNC_OR_METHOD_TYPE_P (ptype))
type = ptype;
}
*no_add_attrs = true;
/* Verify a full prototype is provided so that the argument types
can be validated. Avoid diagnosing type-generic built-ins since
those have no prototype. */
if (!args
&& !prototype_p (type)
&& (!attrs || !lookup_attribute ("type generic", attrs)))
{
error ("attribute %qE without arguments on a non-prototype", name);
return NULL_TREE;
}
tree access_mode = TREE_VALUE (args);
if (TREE_CODE (access_mode) == STRING_CST)
{
const char* const str = TREE_STRING_POINTER (access_mode);
if (*str == '+')
{
/* This is a request to merge an internal specification for
a function declaration involving arrays but no explicit
attribute access. */
tree vblist = TREE_CHAIN (args);
tree axstr = append_access_attr (node, attrs, NULL, str + 1,
vblist);
if (!axstr)
return NULL_TREE;
/* Replace any existing access attribute specification with
the concatenation above. */
tree axsat = tree_cons (NULL_TREE, axstr, vblist);
axsat = tree_cons (name, axsat, NULL_TREE);
/* Recursively call self to "replace" the documented/external
form of the attribute with the condensend internal form. */
decl_attributes (node, axsat, flags | ATTR_FLAG_INTERNAL);
return NULL_TREE;
}
if (flags & ATTR_FLAG_INTERNAL)
{
/* This is a recursive call to handle the condensed internal
form of the attribute (see below). Since all validation
has been done simply return here, accepting the attribute
as is. */
*no_add_attrs = false;
return NULL_TREE;
}
}
/* Set to true when the access mode has the form of a function call
as in 'attribute (read_only (1, 2))'. That's an easy mistake to
make and so worth a special diagnostic. */
bool funcall = false;
if (TREE_CODE (access_mode) == CALL_EXPR)
{
access_mode = CALL_EXPR_FN (access_mode);
if (TREE_CODE (access_mode) != ADDR_EXPR)
{
error ("attribute %qE invalid mode", name);
return NULL_TREE;
}
access_mode = TREE_OPERAND (access_mode, 0);
access_mode = DECL_NAME (access_mode);
funcall = true;
}
else if (TREE_CODE (access_mode) != IDENTIFIER_NODE)
{
error ("attribute %qE mode %qE is not an identifier; expected one of "
"%qs, %qs, %qs, or %qs", name, access_mode,
"read_only", "read_write", "write_only", "none");
return NULL_TREE;
}
const char* const access_str = IDENTIFIER_POINTER (access_mode);
const char *ps = access_str;
if (ps[0] == '_' && ps[1] == '_')
{
size_t len = strlen (ps);
if (ps[len - 1] == '_' && ps[len - 2] == '_')
ps += 2;
}
int imode;
{
const int nmodes =
sizeof attr_access::mode_names / sizeof *attr_access::mode_names;
for (imode = 0; imode != nmodes; ++imode)
if (!strncmp (ps, attr_access::mode_names[imode],
strlen (attr_access::mode_names[imode])))
break;
if (imode == nmodes)
{
error ("attribute %qE invalid mode %qs; expected one of "
"%qs, %qs, %qs, or %qs", name, access_str,
"read_only", "read_write", "write_only", "none");
return NULL_TREE;
}
}
const ::access_mode mode = static_cast<::access_mode>(imode);
if (funcall)
{
error ("attribute %qE unexpected %<(%> after mode %qs; expected "
"a positional argument or %<)%>",
name, access_str);
return NULL_TREE;
}
args = TREE_CHAIN (args);
if (!args)
{
/* The first positional argument is required. It may be worth
dropping the requirement at some point and having read_only
apply to all const-qualified pointers and read_write or
write_only to the rest. */
error ("attribute %<%E(%s)%> missing an argument",
name, access_str);
return NULL_TREE;
}
/* One or more positional arguments have been specified. Validate
them. */
tree idxnodes[2] = { NULL_TREE, NULL_TREE };
tree argtypes[2] = { NULL_TREE, NULL_TREE };
/* 1-based attribute positional arguments or zero if not specified.
Invalid negative or excessive values are also stored but used
only in diagnostics. */
HOST_WIDE_INT idxs[2] = { 0, 0 };
/* Number of function formal arguments (used in diagnostics). */
unsigned nfuncargs = 0;
/* Number of (optional) attribute positional arguments. */
unsigned nattrargs = 0;
for (unsigned i = 0; i != 2; ++i, args = TREE_CHAIN (args), ++nattrargs)
{
if (!args)
break;
idxnodes[i] = TREE_VALUE (args);
if (TREE_CODE (idxnodes[i]) != IDENTIFIER_NODE
&& TREE_CODE (idxnodes[i]) != FUNCTION_DECL)
idxnodes[i] = default_conversion (idxnodes[i]);
if (tree_fits_shwi_p (idxnodes[i]))
{
idxs[i] = tree_to_shwi (idxnodes[i]);
argtypes[i] = get_argument_type (type, idxs[i], &nfuncargs);
}
}
if ((nattrargs == 1 && !idxs[0])
|| (nattrargs == 2 && (!idxs[0] || !idxs[1])))
{
if (idxnodes[1])
error ("attribute %<%E(%s, %E, %E)%> invalid positional argument %i",
name, access_str, idxnodes[0], idxnodes[1], idxs[0] ? 2 : 1);
else
error ("attribute %<%E(%s, %E)%> invalid positional argument %i",
name, access_str, idxnodes[0], idxs[0] ? 2 : 1);
return NULL_TREE;
}
/* Format the attribute specification to include in diagnostics. */
char attrstr[80];
if (idxnodes[1])
snprintf (attrstr, sizeof attrstr, "%s(%s, %lli, %lli)",
IDENTIFIER_POINTER (name), access_str,
(long long) idxs[0], (long long) idxs[1]);
else if (idxnodes[0])
snprintf (attrstr, sizeof attrstr, "%s(%s, %lli)",
IDENTIFIER_POINTER (name), access_str,
(long long) idxs[0]);
else
snprintf (attrstr, sizeof attrstr, "%s(%s)",
IDENTIFIER_POINTER (name), access_str);
/* Verify the positional argument values are in range. */
if (!argtypes[0] || (idxnodes[1] && !argtypes[1]))
{
if (idxnodes[0])
{
if (idxs[0] < 0 || idxs[1] < 0)
error ("attribute %qs positional argument %i invalid value %wi",
attrstr, idxs[0] < 0 ? 1 : 2,
idxs[0] < 0 ? idxs[0] : idxs[1]);
else
error ("attribute %qs positional argument %i value %wi exceeds "
"number of function arguments %u",
attrstr, idxs[0] ? 1 : 2,
idxs[0] ? idxs[0] : idxs[1],
nfuncargs);
}
else
error ("attribute %qs invalid positional argument", attrstr);
return NULL_TREE;
}
if (!POINTER_TYPE_P (argtypes[0]))
{
/* The first argument must have a pointer or reference type. */
error ("attribute %qs positional argument 1 references "
"non-pointer argument type %qT",
attrstr, argtypes[0]);
return NULL_TREE;
}
{
/* Pointers to functions are not allowed. */
tree ptrtype = TREE_TYPE (argtypes[0]);
if (FUNC_OR_METHOD_TYPE_P (ptrtype))
{
error ("attribute %qs positional argument 1 references "
"argument of function type %qT",
attrstr, ptrtype);
return NULL_TREE;
}
}
if (mode == access_read_write || mode == access_write_only)
{
/* Read_write and write_only modes must reference non-const
arguments. */
if (TYPE_READONLY (TREE_TYPE (argtypes[0])))
{
error ("attribute %qs positional argument 1 references "
"%qs-qualified argument type %qT",
attrstr, "const", argtypes[0]);
return NULL_TREE;
}
}
else if (!TYPE_READONLY (TREE_TYPE (argtypes[0])))
{
/* A read_only mode should ideally reference const-qualified
arguments but it's not diagnosed error if one doesn't.
This makes it possible to annotate legacy, const-incorrect
APIs. It might be worth a diagnostic along the lines of
-Wsuggest-const. */
;
}
if (argtypes[1] && !INTEGRAL_TYPE_P (argtypes[1]))
{
error ("attribute %qs positional argument 2 references "
"non-integer argument type %qT",
attrstr, argtypes[1]);
return NULL_TREE;
}
/* Verify that the new attribute doesn't conflict with any existing
attributes specified on previous declarations of the same type
and if not, concatenate the two. */
const char code = attr_access::mode_chars[mode];
tree new_attrs = append_access_attr (node, attrs, attrstr, code, idxs);
if (!new_attrs)
return NULL_TREE;
/* Replace any existing access attribute specification with
the concatenation above. */
new_attrs = tree_cons (NULL_TREE, new_attrs, NULL_TREE);
new_attrs = tree_cons (name, new_attrs, NULL_TREE);
if (node[1])
{
/* Repeat for the previously declared type. */
attrs = TYPE_ATTRIBUTES (TREE_TYPE (node[1]));
new_attrs = append_access_attr (node, attrs, attrstr, code, idxs);
if (!new_attrs)
return NULL_TREE;
new_attrs = tree_cons (NULL_TREE, new_attrs, NULL_TREE);
new_attrs = tree_cons (name, new_attrs, NULL_TREE);
}
/* Recursively call self to "replace" the documented/external form
of the attribute with the condensed internal form. */
decl_attributes (node, new_attrs, flags | ATTR_FLAG_INTERNAL);
return NULL_TREE;
}
/* Extract attribute "arg spec" from each FNDECL argument that has it,
build a single attribute access corresponding to all the arguments,
and return the result. SKIP_VOIDPTR set to ignore void* parameters
(used for user-defined functions for which, unlike in for built-ins,
void* cannot be relied on to determine anything about the access
through it or whether it even takes place).
For example, the parameters in the declaration:
void f (int x, int y, char [x][1][y][3], char [y][2][y][5]);
result in the following attribute access:
value: "+^2[*],$0$1^3[*],$1$1"
list: < <0, x> <1, y> >
where the list has a single value which itself is a list, each
of whose <node>s corresponds to one VLA bound for each of the two
parameters. */
tree
build_attr_access_from_parms (tree parms, bool skip_voidptr)
{
/* Maps each named integral argument DECL seen so far to its position
in the argument list; used to associate VLA sizes with arguments. */
hash_map<tree, unsigned> arg2pos;
/* The string representation of the access specification for all
arguments. */
std::string spec;
unsigned argpos = 0;
/* A TREE_LIST of VLA bounds. */
tree vblist = NULL_TREE;
for (tree arg = parms; arg; arg = TREE_CHAIN (arg), ++argpos)
{
if (!DECL_P (arg))
continue;
tree argtype = TREE_TYPE (arg);
if (DECL_NAME (arg) && INTEGRAL_TYPE_P (argtype))
arg2pos.put (arg, argpos);
tree argspec = DECL_ATTRIBUTES (arg);
if (!argspec)
continue;
if (POINTER_TYPE_P (argtype))
{
/* void* arguments in user-defined functions could point to
anything; skip them. */
tree reftype = TREE_TYPE (argtype);
if (skip_voidptr && VOID_TYPE_P (reftype))
continue;
}
/* Each parameter should have at most one "arg spec" attribute. */
argspec = lookup_attribute ("arg spec", argspec);
if (!argspec)
continue;
/* Attribute arg spec should have one or two arguments. */
argspec = TREE_VALUE (argspec);
/* The attribute arg spec string. */
tree str = TREE_VALUE (argspec);
const char *s = TREE_STRING_POINTER (str);
/* Create the attribute access string from the arg spec string,
optionally followed by position of the VLA bound argument if
it is one. */
{
size_t specend = spec.length ();
if (!specend)
{
spec = '+';
specend = 1;
}
/* Format the access string in place. */
int len = snprintf (NULL, 0, "%c%u%s",
attr_access::mode_chars[access_deferred],
argpos, s);
spec.resize (specend + len + 1);
sprintf (&spec[specend], "%c%u%s",
attr_access::mode_chars[access_deferred],
argpos, s);
/* Trim the trailing NUL. */
spec.resize (specend + len);
}
/* The (optional) list of expressions denoting the VLA bounds
N in ARGTYPE <arg>[Ni]...[Nj]...[Nk]. */
tree argvbs = TREE_CHAIN (argspec);
if (argvbs)
{
spec += ',';
/* Add ARGVBS to the list. Their presence is indicated by
appending a comma followed by the dollar sign and, when
it corresponds to a function parameter, the position of
each bound Ni, so it can be distinguished from
an unspecified bound (as in T[*]). The list is in reverse
order of arguments and needs to be reversed to access in
order. */
vblist = tree_cons (NULL_TREE, argvbs, vblist);
unsigned nelts = 0;
for (tree vb = argvbs; vb; vb = TREE_CHAIN (vb), ++nelts)
{
tree bound = TREE_VALUE (vb);
if (const unsigned *psizpos = arg2pos.get (bound))
{
/* BOUND previously seen in the parameter list. */
TREE_PURPOSE (vb) = size_int (*psizpos);
/* Format the position string in place. */
int len = snprintf (NULL, 0, "$%u", *psizpos);
size_t specend = spec.length ();
spec.resize (specend + len + 1);
sprintf (&spec[specend], "$%u", *psizpos);
/* Trim the trailing NUL. */
spec.resize (specend + len);
}
else
{
/* BOUND doesn't name a parameter (it could be a global
variable or an expression such as a function call). */
spec += '$';
}
}
}
}
if (!spec.length ())
return NULL_TREE;
/* Attribute access takes a two or three arguments. Wrap VBLIST in
another list in case it has more nodes than would otherwise fit. */
vblist = build_tree_list (NULL_TREE, vblist);
/* Build a single attribute access with the string describing all
array arguments and an optional list of any non-parameter VLA
bounds in order. */
tree str = build_string (spec.length (), spec.c_str ());
tree attrargs = tree_cons (NULL_TREE, str, vblist);
tree name = get_identifier ("access");
return build_tree_list (name, attrargs);
}
/* Handle a "nothrow" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_nothrow_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (TREE_CODE (*node) == FUNCTION_DECL)
TREE_NOTHROW (*node) = 1;
/* ??? TODO: Support types. */
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "cleanup" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_cleanup_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
tree decl = *node;
tree cleanup_id, cleanup_decl;
/* ??? Could perhaps support cleanups on TREE_STATIC, much like we do
for global destructors in C++. This requires infrastructure that
we don't have generically at the moment. It's also not a feature
we'd be missing too much, since we do have attribute constructor. */
if (!VAR_P (decl) || TREE_STATIC (decl))
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
return NULL_TREE;
}
/* Verify that the argument is a function in scope. */
/* ??? We could support pointers to functions here as well, if
that was considered desirable. */
cleanup_id = TREE_VALUE (args);
if (TREE_CODE (cleanup_id) != IDENTIFIER_NODE)
{
error ("cleanup argument not an identifier");
*no_add_attrs = true;
return NULL_TREE;
}
cleanup_decl = lookup_name (cleanup_id);
if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL)
{
error ("cleanup argument not a function");
*no_add_attrs = true;
return NULL_TREE;
}
/* That the function has proper type is checked with the
eventual call to build_function_call. */
return NULL_TREE;
}
/* Handle a "warn_unused_result" attribute. No special handling. */
static tree
handle_warn_unused_result_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
/* Ignore the attribute for functions not returning any value. */
if (VOID_TYPE_P (TREE_TYPE (*node)))
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "sentinel" attribute. */
static tree
handle_sentinel_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
if (!prototype_p (*node))
{
warning (OPT_Wattributes,
"%qE attribute requires prototypes with named arguments", name);
*no_add_attrs = true;
}
else
{
if (!stdarg_p (*node))
{
warning (OPT_Wattributes,
"%qE attribute only applies to variadic functions", name);
*no_add_attrs = true;
}
}
if (args)
{
tree position = TREE_VALUE (args);
if (position && TREE_CODE (position) != IDENTIFIER_NODE
&& TREE_CODE (position) != FUNCTION_DECL)
position = default_conversion (position);
if (TREE_CODE (position) != INTEGER_CST
|| !INTEGRAL_TYPE_P (TREE_TYPE (position)))
{
warning (OPT_Wattributes,
"requested position is not an integer constant");
*no_add_attrs = true;
}
else
{
if (tree_int_cst_lt (position, integer_zero_node))
{
warning (OPT_Wattributes,
"requested position is less than zero");
*no_add_attrs = true;
}
}
}
return NULL_TREE;
}
/* Handle a "type_generic" attribute. */
static tree
handle_type_generic_attribute (tree *node, tree ARG_UNUSED (name),
tree ARG_UNUSED (args), int ARG_UNUSED (flags),
bool * ARG_UNUSED (no_add_attrs))
{
/* Ensure we have a function type. */
gcc_assert (TREE_CODE (*node) == FUNCTION_TYPE);
/* Ensure we have a variadic function. */
gcc_assert (!prototype_p (*node) || stdarg_p (*node));
return NULL_TREE;
}
/* Handle a "target" attribute. */
static tree
handle_target_attribute (tree *node, tree name, tree args, int flags,
bool *no_add_attrs)
{
/* Ensure we have a function type. */
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
else if (lookup_attribute ("target_clones", DECL_ATTRIBUTES (*node)))
{
warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
"with %qs attribute", name, "target_clones");
*no_add_attrs = true;
}
else if (! targetm.target_option.valid_attribute_p (*node, name, args,
flags))
*no_add_attrs = true;
/* Check that there's no empty string in values of the attribute. */
for (tree t = args; t != NULL_TREE; t = TREE_CHAIN (t))
{
tree value = TREE_VALUE (t);
if (TREE_CODE (value) == STRING_CST
&& TREE_STRING_LENGTH (value) == 1
&& TREE_STRING_POINTER (value)[0] == '\0')
{
warning (OPT_Wattributes, "empty string in attribute %<target%>");
*no_add_attrs = true;
}
}
return NULL_TREE;
}
/* Handle a "target_clones" attribute. */
static tree
handle_target_clones_attribute (tree *node, tree name, tree ARG_UNUSED (args),
int ARG_UNUSED (flags), bool *no_add_attrs)
{
/* Ensure we have a function type. */
if (TREE_CODE (*node) == FUNCTION_DECL)
{
if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
{
error ("%qE attribute argument not a string constant", name);
*no_add_attrs = true;
}
else if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (*node)))
{
warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
"with %qs attribute", name, "always_inline");
*no_add_attrs = true;
}
else if (lookup_attribute ("target", DECL_ATTRIBUTES (*node)))
{
warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
"with %qs attribute", name, "target");
*no_add_attrs = true;
}
else if (get_target_clone_attr_len (args) == -1)
{
warning (OPT_Wattributes,
"single %<target_clones%> attribute is ignored");
*no_add_attrs = true;
}
else
/* Do not inline functions with multiple clone targets. */
DECL_UNINLINABLE (*node) = 1;
}
else
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* For handling "optimize" attribute. arguments as in
struct attribute_spec.handler. */
static tree
handle_optimize_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags), bool *no_add_attrs)
{
/* Ensure we have a function type. */
if (TREE_CODE (*node) != FUNCTION_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
}
else
{
struct cl_optimization cur_opts;
tree old_opts = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node);
/* Save current options. */
cl_optimization_save (&cur_opts, &global_options, &global_options_set);
tree prev_target_node = build_target_option_node (&global_options,
&global_options_set);
/* If we previously had some optimization options, use them as the
default. */
gcc_options *saved_global_options = NULL;
/* When #pragma GCC optimize pragma is used, it modifies global_options
without calling targetm.override_options_after_change. That can leave
target flags inconsistent for comparison. */
if (flag_checking && optimization_current_node == optimization_default_node)
{
saved_global_options = XNEW (gcc_options);
*saved_global_options = global_options;
}
if (old_opts)
cl_optimization_restore (&global_options, &global_options_set,
TREE_OPTIMIZATION (old_opts));
/* Parse options, and update the vector. */
parse_optimize_options (args, true);
DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node)
= build_optimization_node (&global_options, &global_options_set);
tree target_node = build_target_option_node (&global_options,
&global_options_set);
if (prev_target_node != target_node)
DECL_FUNCTION_SPECIFIC_TARGET (*node) = target_node;
/* Restore current options. */
cl_optimization_restore (&global_options, &global_options_set,
&cur_opts);
cl_target_option_restore (&global_options, &global_options_set,
TREE_TARGET_OPTION (prev_target_node));
if (saved_global_options != NULL)
{
if (!seen_error ())
cl_optimization_compare (saved_global_options, &global_options);
free (saved_global_options);
}
}
return NULL_TREE;
}
/* Handle a "no_split_stack" attribute. */
static tree
handle_no_split_stack_attribute (tree *node, tree name,
tree ARG_UNUSED (args),
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree decl = *node;
if (TREE_CODE (decl) != FUNCTION_DECL)
{
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute applies only to functions", name);
*no_add_attrs = true;
}
else if (DECL_INITIAL (decl))
{
error_at (DECL_SOURCE_LOCATION (decl),
"cannot set %qE attribute after definition", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "zero_call_used_regs" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_zero_call_used_regs_attribute (tree *node, tree name, tree args,
int ARG_UNUSED (flags),
bool *no_add_attrs)
{
tree decl = *node;
tree id = TREE_VALUE (args);
if (TREE_CODE (decl) != FUNCTION_DECL)
{
error_at (DECL_SOURCE_LOCATION (decl),
"%qE attribute applies only to functions", name);
*no_add_attrs = true;
return NULL_TREE;
}
if (TREE_CODE (id) != STRING_CST)
{
error_at (DECL_SOURCE_LOCATION (decl),
"%qE argument not a string", name);
*no_add_attrs = true;
return NULL_TREE;
}
bool found = false;
for (unsigned int i = 0; zero_call_used_regs_opts[i].name != NULL; ++i)
if (strcmp (TREE_STRING_POINTER (id),
zero_call_used_regs_opts[i].name) == 0)
{
found = true;
break;
}
if (!found)
{
error_at (DECL_SOURCE_LOCATION (decl),
"unrecognized %qE attribute argument %qs",
name, TREE_STRING_POINTER (id));
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "returns_nonnull" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_returns_nonnull_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
// Even without a prototype we still have a return type we can check.
if (TREE_CODE (TREE_TYPE (*node)) != POINTER_TYPE)
{
error ("%qE attribute on a function not returning a pointer", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "designated_init" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_designated_init_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
if (TREE_CODE (*node) != RECORD_TYPE)
{
error ("%qE attribute is only valid on %<struct%> type", name);
*no_add_attrs = true;
}
return NULL_TREE;
}
/* Handle a "fallthrough" attribute; arguments as in struct
attribute_spec.handler. */
tree
handle_fallthrough_attribute (tree *, tree name, tree, int,
bool *no_add_attrs)
{
pedwarn (input_location, OPT_Wattributes, "%qE attribute ignored", name);
*no_add_attrs = true;
return NULL_TREE;
}
/* Handle a "patchable_function_entry" attributes; arguments as in
struct attribute_spec.handler. */
static tree
handle_patchable_function_entry_attribute (tree *, tree name, tree args,
int, bool *no_add_attrs)
{
for (; args; args = TREE_CHAIN (args))
{
tree val = TREE_VALUE (args);
if (val && TREE_CODE (val) != IDENTIFIER_NODE
&& TREE_CODE (val) != FUNCTION_DECL)
val = default_conversion (val);
if (!tree_fits_uhwi_p (val))
{
warning (OPT_Wattributes,
"%qE attribute argument %qE is not an integer constant",
name, val);
*no_add_attrs = true;
return NULL_TREE;
}
if (tree_to_uhwi (val) > USHRT_MAX)
{
warning (OPT_Wattributes,
"%qE attribute argument %qE exceeds %u",
name, val, USHRT_MAX);
*no_add_attrs = true;
return NULL_TREE;
}
}
return NULL_TREE;
}
/* Handle a "NSObject" attributes; arguments as in
struct attribute_spec.handler. */
static tree
handle_nsobject_attribute (tree *node, tree name, tree args,
int /*flags*/, bool *no_add_attrs)
{
*no_add_attrs = true;
/* This attribute only applies to typedefs (or field decls for properties),
we drop it otherwise - but warn about this if enabled. */
if (TREE_CODE (*node) != TYPE_DECL && TREE_CODE (*node) != FIELD_DECL)
{
warning (OPT_WNSObject_attribute, "%qE attribute may be put on a"
" typedef only; attribute is ignored", name);
return NULL_TREE;
}
/* The original implementation only allowed pointers to records, however
recent implementations also allow void *. */
tree type = TREE_TYPE (*node);
if (!type || !POINTER_TYPE_P (type)
|| (TREE_CODE (TREE_TYPE (type)) != RECORD_TYPE
&& !VOID_TYPE_P (TREE_TYPE (type))))
{
error ("%qE attribute is for pointer types only", name);
return NULL_TREE;
}
tree t = tree_cons (name, args, TYPE_ATTRIBUTES (type));
TREE_TYPE (*node) = build_type_attribute_variant (type, t);
return NULL_TREE;
}
/* Handle a "objc_root_class" attributes; arguments as in
struct attribute_spec.handler. */
static tree
handle_objc_root_class_attribute (tree */*node*/, tree name, tree /*args*/,
int /*flags*/, bool *no_add_attrs)
{
/* This has no meaning outside Objective-C. */
if (!c_dialect_objc())
warning (OPT_Wattributes, "%qE is only applicable to Objective-C"
" class interfaces, attribute ignored", name);
*no_add_attrs = true;
return NULL_TREE;
}
/* Handle an "objc_nullability" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_objc_nullability_attribute (tree *node, tree name, tree args,
int /*flags*/,
bool *no_add_attrs)
{
*no_add_attrs = true;
tree type = TREE_TYPE (*node);
if (TREE_CODE (*node) == FUNCTION_DECL)
type = TREE_TYPE (type);
if (type && !POINTER_TYPE_P (type))
{
error ("%qE cannot be applied to non-pointer type %qT", name, type);
return NULL_TREE;
}
/* We accept objc_nullability() with a single argument.
string: "unspecified", "nullable", "nonnull" or "resettable"
integer: 0 and 3 where the values have the same meaning as
the strings. */
tree val = TREE_VALUE (args);
if (TREE_CODE (val) == INTEGER_CST)
{
val = default_conversion (val);
if (!tree_fits_uhwi_p (val) || tree_to_uhwi (val) > 3)
error ("%qE attribute argument %qE is not an integer constant"
" between 0 and 3", name, val);
else
*no_add_attrs = false; /* OK */
}
else if (TREE_CODE (val) == STRING_CST
&& (strcmp (TREE_STRING_POINTER (val), "nullable") == 0
|| strcmp (TREE_STRING_POINTER (val), "nonnull") == 0
|| strcmp (TREE_STRING_POINTER (val), "unspecified") == 0
|| strcmp (TREE_STRING_POINTER (val), "resettable") == 0))
*no_add_attrs = false; /* OK */
else if (val != error_mark_node)
error ("%qE attribute argument %qE is not recognised", name, val);
return NULL_TREE;
}
/* Handle a "tainted_args" attribute; arguments as in
struct attribute_spec.handler. */
static tree
handle_tainted_args_attribute (tree *node, tree name, tree, int,
bool *no_add_attrs)
{
if (TREE_CODE (*node) != FUNCTION_DECL
&& TREE_CODE (*node) != FIELD_DECL)
{
warning (OPT_Wattributes, "%qE attribute ignored; valid only "
"for functions and function pointer fields",
name);
*no_add_attrs = true;
return NULL_TREE;
}
if (TREE_CODE (*node) == FIELD_DECL
&& !(TREE_CODE (TREE_TYPE (*node)) == POINTER_TYPE
&& TREE_CODE (TREE_TYPE (TREE_TYPE (*node))) == FUNCTION_TYPE))
{
warning (OPT_Wattributes, "%qE attribute ignored;"
" field must be a function pointer",
name);
*no_add_attrs = true;
return NULL_TREE;
}
*no_add_attrs = false; /* OK */
return NULL_TREE;
}
/* Attempt to partially validate a single attribute ATTR as if
it were to be applied to an entity OPER. */
static bool
validate_attribute (location_t atloc, tree oper, tree attr)
{
/* Determine whether the name of the attribute is valid
and fail with an error if not. */
tree atname = get_attribute_name (attr);
if (!lookup_attribute_spec (atname))
{
if (atloc != UNKNOWN_LOCATION)
error_at (atloc, "unknown attribute %qE", atname);
return false;
}
tree args = TREE_VALUE (attr);
if (!args)
return true;
/* FIXME: Do some validation. */
const char *atstr = IDENTIFIER_POINTER (atname);
if (!strcmp (atstr, "format"))
return true;
/* Only when attribute arguments have been provided try to validate
the whole thing. decl_attributes doesn't return an indication of
success or failure so proceed regardless. */
const char tmpname[] = "__builtin_has_attribute_tmp.";
tree tmpid = get_identifier (tmpname);
tree tmpdecl;
if (!strcmp (atstr, "vector_size"))
{
tree type = TYPE_P (oper) ? oper : TREE_TYPE (oper);
/* Check for function type here since type_for_vector_size
strips it while looking for a function's return type. */
if (FUNC_OR_METHOD_TYPE_P (type))
{
warning_at (atloc, OPT_Wattributes,
"invalid operand type %qT for %qs", type, atstr);
return false;
}
type = type_for_vector_size (type);
if (VECTOR_TYPE_P (type))
type = TREE_TYPE (type);
/* Avoid trying to apply attribute vector_size to OPER since
it's overly restrictive. Simply make sure it has the right
type. */
return type_valid_for_vector_size (type, atname, args, NULL);
}
if (TYPE_P (oper))
tmpdecl = build_decl (atloc, TYPE_DECL, tmpid, oper);
else if (DECL_P (oper))
tmpdecl = build_decl (atloc, TREE_CODE (oper), tmpid, TREE_TYPE (oper));
else if (EXPR_P (oper))
tmpdecl = build_decl (atloc, TYPE_DECL, tmpid, TREE_TYPE (oper));
else
return false;
/* Temporarily clear CURRENT_FUNCTION_DECL to make decl_attributes
believe the DECL declared above is at file scope. (See bug 87526.) */
tree save_curfunc = current_function_decl;
current_function_decl = NULL_TREE;
if (DECL_P (tmpdecl))
{
if (DECL_P (oper))
/* An alias cannot be a definition so declare the symbol extern. */
DECL_EXTERNAL (tmpdecl) = true;
/* Attribute visibility only applies to symbols visible from other
translation units so make it "public." */
TREE_PUBLIC (tmpdecl) = TREE_PUBLIC (oper);
}
decl_attributes (&tmpdecl, attr, 0);
current_function_decl = save_curfunc;
/* FIXME: Change decl_attributes to indicate success or failure (and
parameterize it to avoid failing with errors). */
return true;
}
/* Return true if the DECL, EXPR, or TYPE t has been declared with
attribute ATTR. For DECL, consider also its type. For EXPR,
consider just its type. */
bool
has_attribute (location_t atloc, tree t, tree attr, tree (*convert)(tree))
{
if (!attr || !t || t == error_mark_node)
return false;
if (!validate_attribute (atloc, t, attr))
return false;
tree type = NULL_TREE;
tree expr = NULL_TREE;
if (TYPE_P (t))
type = t;
else
{
do
{
/* Determine the array element/member declaration from
a COMPONENT_REF and an INDIRECT_REF involving a refeence. */
STRIP_NOPS (t);
tree_code code = TREE_CODE (t);
if (code == INDIRECT_REF)
{
tree op0 = TREE_OPERAND (t, 0);
if (TREE_CODE (TREE_TYPE (op0)) == REFERENCE_TYPE)
t = op0;
else
break;
}
else if (code == COMPONENT_REF)
t = TREE_OPERAND (t, 1);
else
break;
} while (true);
expr = t;
}
/* Set to true when an attribute is found in the referenced entity
that matches the specified attribute. */
bool found_match = false;
tree atname = get_attribute_name (attr);
const char *namestr = IDENTIFIER_POINTER (atname);
/* Iterate once for a type and twice for a function or variable
declaration: once for the DECL and the second time for its
TYPE. */
for (bool done = false; !found_match && !done; )
{
tree atlist;
if (type)
{
if (type == error_mark_node)
{
/* This could be a label. FIXME: add support for labels. */
warning_at (atloc, OPT_Wattributes,
(TYPE_P (t)
? G_("%qs attribute not supported for %qT "
"in %<__builtin_has_attribute%>")
: G_("%qs attribute not supported for %qE "
"in %<__builtin_has_attribute%>")),
namestr, t);
return false;
}
/* Clear EXPR to prevent considering it again below. */
atlist = TYPE_ATTRIBUTES (type);
expr = NULL_TREE;
done = true;
}
else if (DECL_P (expr))
{
/* Set TYPE to the DECL's type to process it on the next
iteration. */
atlist = DECL_ATTRIBUTES (expr);
type = TREE_TYPE (expr);
}
else
{
type = TREE_TYPE (expr);
atlist = TYPE_ATTRIBUTES (type);
done = true;
}
/* True when an attribute with the sought name (though not necessarily
with the sought attributes) has been found on the attribute chain. */
bool found_attr = false;
/* When clear, the first mismatched attribute argument results
in failure. Otherwise, the first matched attribute argument
results in success. */
bool attr_nonnull = !strcmp ("nonnull", namestr);
bool ignore_mismatches = attr_nonnull;
/* Iterate over the instances of the sought attribute on the DECL or
TYPE (there may be multiple instances with different arguments). */
for (; (atlist = lookup_attribute (namestr, atlist));
found_attr = true, atlist = TREE_CHAIN (atlist))
{
/* If there are no arguments to match the result is true except
for nonnull where the attribute with no arguments must match. */
if (!TREE_VALUE (attr))
return attr_nonnull ? !TREE_VALUE (atlist) : true;
/* Attribute nonnull with no arguments subsumes all values of
the attribute. FIXME: This is overly broad since it only
applies to pointer arguments, but querying non-pointer
arguments is diagnosed. */
if (!TREE_VALUE (atlist) && attr_nonnull)
return true;
/* Iterate over the DECL or TYPE attribute argument's values. */
for (tree val = TREE_VALUE (atlist); val; val = TREE_CHAIN (val))
{
/* Iterate over the arguments in the sought attribute comparing
their values to those specified for the DECL or TYPE. */
for (tree arg = TREE_VALUE (attr); arg; arg = TREE_CHAIN (arg))
{
tree v1 = TREE_VALUE (val);
tree v2 = TREE_VALUE (arg);
if (v1 == v2)
return true;
if (!v1 || !v2)
break;
if (TREE_CODE (v1) == IDENTIFIER_NODE
|| TREE_CODE (v2) == IDENTIFIER_NODE)
/* Two identifiers are the same if their values are
equal (that's handled above). Otherwise ther are
either not the same or oneis not an identifier. */
return false;
/* Convert to make them equality-comparable. */
v1 = convert (v1);
v2 = convert (v2);
/* A positive value indicates equality, negative means
"don't know." */
if (simple_cst_equal (v1, v2) == 1)
return true;
if (!ignore_mismatches)
break;
}
}
}
if (!found_attr)
{
/* Some attributes are encoded directly in the tree node. */
if (!strcmp ("aligned", namestr))
{
if (tree arg = TREE_VALUE (attr))
{
arg = convert (TREE_VALUE (arg));
if (!tree_fits_uhwi_p (arg))
/* Invalid argument. */;
else if (expr && DECL_P (expr)
&& DECL_USER_ALIGN (expr))
found_match = DECL_ALIGN_UNIT (expr) == tree_to_uhwi (arg);
else if (type && TYPE_USER_ALIGN (type))
found_match = TYPE_ALIGN_UNIT (type) == tree_to_uhwi (arg);
}
else if (expr && DECL_P (expr))
found_match = DECL_USER_ALIGN (expr);
else if (type)
found_match = TYPE_USER_ALIGN (type);
}
else if (!strcmp ("const", namestr))
{
if (expr && DECL_P (expr))
found_match = TREE_READONLY (expr);
}
else if (!strcmp ("noreturn", namestr))
{
/* C11 _Noreturn sets the volatile bit without attaching
an attribute to the decl. */
if (expr
&& DECL_P (expr)
&& FUNC_OR_METHOD_TYPE_P (TREE_TYPE (expr)))
found_match = TREE_THIS_VOLATILE (expr);
}
else if (!strcmp ("pure", namestr))
{
if (expr && DECL_P (expr))
found_match = DECL_PURE_P (expr);
}
else if (!strcmp ("deprecated", namestr))
{
found_match = TREE_DEPRECATED (expr ? expr : type);
if (found_match)
return true;
}
else if (!strcmp ("vector_size", namestr))
{
if (!type || !VECTOR_TYPE_P (type))
return false;
if (tree arg = TREE_VALUE (attr))
{
/* Compare the vector size argument for equality. */
arg = convert (TREE_VALUE (arg));
return tree_int_cst_equal (arg, TYPE_SIZE_UNIT (type)) == 1;
}
else
return true;
}
else if (!strcmp ("warn_if_not_aligned", namestr))
{
if (tree arg = TREE_VALUE (attr))
{
arg = convert (TREE_VALUE (arg));
if (expr && DECL_P (expr))
found_match = (DECL_WARN_IF_NOT_ALIGN (expr)
== tree_to_uhwi (arg) * BITS_PER_UNIT);
else if (type)
found_match = (TYPE_WARN_IF_NOT_ALIGN (type)
== tree_to_uhwi (arg) * BITS_PER_UNIT);
}
else if (expr && DECL_P (expr))
found_match = DECL_WARN_IF_NOT_ALIGN (expr);
else if (type)
found_match = TYPE_WARN_IF_NOT_ALIGN (type);
}
else if (!strcmp ("transparent_union", namestr))
{
if (type)
found_match = TYPE_TRANSPARENT_AGGR (type) != 0;
}
else if (!strcmp ("mode", namestr))
{
/* Finally issue a warning for attributes that cannot
be supported in this context. Attribute mode is not
added to a symbol and cannot be determined from it. */
warning_at (atloc, OPT_Wattributes,
"%qs attribute not supported in "
"%<__builtin_has_attribute%>", namestr);
break;
}
}
}
return found_match;
}
|
b9a76c805ce8b57e24cd0b5adaa3b2315bb9b4aa | ac9f0b09754038a3531d1297e03f166eb170f1d0 | /testMap/newmain.cpp | 62ba48bf7609419362e6847892296bfca119db44 | [] | no_license | vascoV/Map-class | adaff5130e06c07c685386b28d8eff78cba4d93e | 5b8d34665960d521619cfcf824d4a663202d7085 | refs/heads/master | 2020-06-13T05:45:33.991973 | 2017-02-02T16:50:01 | 2017-02-02T16:50:01 | 75,485,100 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,125 | cpp | newmain.cpp | #include <iostream>
#include <string>
#include "CMap.h"
class Fruits{
private:
std::string name;
public:
Fruits(std::string fruit) {
this->name = fruit;
}
std::string getFruit(){
return name;
}
};
int main() {
//
CMap<int, int>* map_ints = new CMap<int, int>;
map_ints->insert(1, 19);
map_ints->insert(2, 11);
map_ints->insert(3, 32);
map_ints->insert(4, 39);
// std::cout << map_ints->at(3) << std::endl;
// std::cout << map_ints->getSize() << std::endl;
//
// map_ints->qSort(0, 3);
// map_ints->erase(2);
map_ints->print();
// std::cout << std::endl;
//
// map_ints->print();
//
// std::cout << map_ints->at(3) << std::endl;
// map_ints->erase(1);
// std::cout << map_ints->at(1) << std::endl;
// std::cout << map_ints->at(2) << std::endl;
// CMap<int, std::string>* map_strings = new CMap<int, std::string>();
//
// map_strings->insert(2, "Test2");
// map_strings->insert(3, "Test3");
// map_strings->insert(1, "Test1");
// map_strings->insert(65, "Test65");
// map_strings->insert(21, "Test21");
// map_strings->insert(14, "Test14");
// map_strings->insert(18, "Test18");
// map_strings->insert(5, "Test5");
// map_strings->insert(9, "Test9");
// map_strings->insert(10, "Test10");
// map_strings->print();
// map_strings->qSort(0, 2);
// std::cout << std::endl;
// map_strings->print();
// map_ints->erase(1);
// map_ints->insert(1, "dsfd");
// std::cout << map_ints->at(2) << std::endl;
// std::cout << map_ints->at(1) << std::endl;
// std::cout << map_ints->at(3) << std::endl;
// map_ints->print();
// CMap<int, Fruits*>* map_obj = new CMap<int, Fruits*>();
//
// map_obj->insert(1, new Fruits("Banana"));
// map_obj->insert(2, new Fruits("Strawberry"));
// map_obj->insert(3, new Fruits("Orange"));
// std::cout << map_obj->at(1)->getFruit();
// map_obj->erase(1);
// std::cout << map_obj->at(1)->getFruit() << std::endl;;
// std::cout << map_obj->at(2)->getFruit() << std::endl;;
//
// map_obj->print();
// std::cout << "Hello from the Map Class" << std::endl << std::endl;
//
//
// std::cout << "----------" << "Object Test" << "----------" << std::endl;
// CMap<int, Fruits*>* objMap = new CMap<int, Fruits*>();
//
// Fruits* c1 = new Fruits("Apple");
// Fruits* c2 = new Fruits("Orange");
// Fruits* c3 = new Fruits("Pineapple");
// Fruits* c4 = new Fruits("Grapes");
// Fruits* c5 = new Fruits("Banana");
// c1->getFruit();
// c2->getFruit();
// c3->getFruit();
// c4->getFruit();
// c5->getFruit();
//
// objMap->insert(1, c1);
// objMap->insert(2, c2);
// objMap->insert(3, c3);
// objMap->insert(4, c4);
// objMap->insert(5, c5);
//
// objMap->print();
//
//
// std::cout << std::endl;
// std::cout << "My Map contains "<< objMap->size() << " objects." << std::endl;
// std::cout << std::endl << std::endl; //print empty two lines
//
// std::cout << "----------" << "String Test" << "----------" << std::endl;
// CMap<int, char*>* strMap = new CMap<int, char*>();
//
// strMap->insert(1, "String-1");
// strMap->insert(2, "String-2");
// strMap->insert(3, "String-3");
// strMap->insert(4, "String-4");
// strMap->insert(5, "String-5");
//
// strMap->print();
// strMap->at(2);
// std::cout << std::endl; //print empty line
// strMap->erase(5);
// std::cout << std::endl; //print empty line
// strMap->print();
//
// std::cout << std::endl;
// std::cout << "My Map contains " << strMap->size() << " strings." << std::endl << std::endl;
//
// std::cout << "----------" << "Integer Test" << "----------" << std::endl;
// CMap<int, int>* intMap = new CMap<int, int>();
//
// intMap->insert(1, 10);
// intMap->insert(2, 20);
// intMap->insert(3, 30);
// intMap->insert(4, 40);
// intMap->insert(5, 50);
//
// intMap->print();
// intMap->at(6);
// intMap->insert(2, 80);
// std::cout << std::endl; //print empty line
// intMap->erase(5);
// std::cout << std::endl; //print empty line
// intMap->print();
//
// std::cout << std::endl;
// std::cout << "My Map contains " << intMap->size() << " integers." << std::endl << std::endl;
//
// std::cout << "----------" << "Characters Test" << "----------" << std::endl;
// CMap<int, char>* chrMap = new CMap<int, char>();
//
// chrMap->insert(1, 'a');
// chrMap->insert(2, 'b');
// chrMap->insert(3, 'c');
// chrMap->insert(4, 'd');
// chrMap->insert(5, 'e');
//
// chrMap->print();
// std::cout << chrMap->at(5) << std::endl;
// std::cout << std::endl; //print empty line
// chrMap->erase(3);
// std::cout << chrMap->at(3) << std::endl;
// std::cout << std::endl; //print empty line
// chrMap->print();
//
// std::cout << std::endl;
// std::cout << "My Map contains " << chrMap->size() << " characters." << std::endl << std::endl;
return 0;
} |
b4b5910f0dc4e087c0cfae7ec446ea3d149c2d28 | 6f2f4e0ee3fce8a2592a5673b3e1c96a10602fe3 | /72/leetcode_72_2.cpp | 3a4a1d49090354394bfca76f276074d8f4033926 | [] | no_license | Ivanqi/leetcode | 33a09bf96b850da5a050d0a67266e2a395f54b82 | bdd569c0f5d69596aa9848a28f1f4c4d4cc6a35c | refs/heads/master | 2022-04-28T12:38:18.220161 | 2022-04-27T14:08:24 | 2022-04-27T14:08:24 | 199,861,353 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,776 | cpp | leetcode_72_2.cpp | #include <iostream>
#include <algorithm>
using namespace std;
class Solution {
public:
int minDistance(string word1, string word2) {
int n = word1.length();
int m = word2.length();
// 有一个字符为空串
if (n * m == 0) return n + m;
// DP数组
int D[n + 1][m + 1];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
D[i][j] = 0;
}
}
// 边界初始化
for (int i = 0; i < n + 1; i++) {
D[i][0] = i;
}
for (int j = 0; j < m + 1; j++) {
D[0][j] = j;
}
// 计算所有DP值
for (int i = 1; i < n + 1; i++) {
for (int j = 1; j < m + 1; j++) {
int left = D[i - 1][j] + 1;
int down = D[i][j - 1] + 1;
int left_down = D[i - 1][j - 1];
if (word1[i - 1] != word2[j - 1]) left_down += 1;
D[i][j] = min(left, min(down, left_down));
}
}
return D[n][m];
}
};
void test_case_1(Solution So) {
string word1 = "horse";
string word2 = "ros";
int ret = So.minDistance(word1, word2);
cout << "结果为:" << ret << endl;
}
void test_case_2(Solution So) {
string word1 = "";
string word2 = "aab";
int ret = So.minDistance(word1, word2);
cout << "结果为:" << ret << endl;
}
void test_case_3(Solution So) {
string word1 = "b";
string word2 = "";
int ret = So.minDistance(word1, word2);
cout << "结果为:" << ret << endl;
}
int main() {
Solution So;
test_case_1(So);
}
|
84b4936068b65015e2122332ca26f923ff3184e3 | fe215b10bbe3e924cfacd02f2e5b95cc9a2fb031 | /Libs/Dx12Lib/App.cpp | 97a30beb9d4b3c7be0296a5729cf620380734690 | [
"MIT"
] | permissive | yasyamanoi/BaseDx12 | ac9fe74eb720b79738c0ae464b4b5c8cb30875fd | c01e084691f3aa4d08e4bfc2d6336b642c43381d | refs/heads/master | 2021-01-01T07:03:07.695484 | 2020-08-02T07:23:50 | 2020-08-02T07:23:50 | 239,158,042 | 3 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 4,199 | cpp | App.cpp | #include "stdafx.h"
namespace basedx12 {
HWND App::m_hwnd = nullptr;
SceneBase* App::m_pSceneBase = nullptr;
//サイズはWinMainから渡される
int App::m_width = 0;
int App::m_height = 0;
shared_ptr<BaseDevice> App::m_baseDevice = nullptr;
StepTimer App::m_timer;
Controler App::m_controler;
wstring App::m_classsName = L"BaseDx12Class";
wstring App::m_title = L"BaseDx12Title";
wstring App::m_wstrModulePath; ///< モジュール名フルパス
wstring App::m_wstrDir; ///< モジュールがあるディレクトリ
wstring App::m_wstrDataPath; ///< 絶対パスのメディアディレクトリ
wstring App::m_wstrShadersPath; ///< 絶対パスのシェーダディレクトリ
wstring App::m_wstrRelativeDataPath; ///< 相対パスのメディアディレクトリ
wstring App::m_wstrRelativeShadersPath; ///< 相対パスのシェーダディレクトリ
wstring App::m_wstrRelativeAssetsPath; ///< 相対パスのアセットディレクトリ
void App::SetAssetsPath() {
//基準ディレクトリの設定
//相対パスにすると、ファイルダイアログでカレントパスが狂うので
//絶対パス指定
wchar_t Modulebuff[MAX_PATH];
wchar_t Drivebuff[_MAX_DRIVE];
wchar_t Dirbuff[_MAX_DIR];
wchar_t FileNamebuff[_MAX_FNAME];
wchar_t Extbuff[_MAX_EXT];
::ZeroMemory(Modulebuff, sizeof(Modulebuff));
::ZeroMemory(Drivebuff, sizeof(Drivebuff));
::ZeroMemory(Dirbuff, sizeof(Dirbuff));
::ZeroMemory(FileNamebuff, sizeof(FileNamebuff));
::ZeroMemory(Extbuff, sizeof(Extbuff));
//モジュール名(プログラムファイル名)を得る
if (!::GetModuleFileName(nullptr, Modulebuff, sizeof(Modulebuff))) {
throw runtime_error("モジュールが取得できません。");
}
m_wstrModulePath = Modulebuff;
//モジュール名から、各ブロックに分ける
_wsplitpath_s(Modulebuff,
Drivebuff, _MAX_DRIVE,
Dirbuff, _MAX_DIR,
FileNamebuff, _MAX_FNAME,
Extbuff, _MAX_EXT);
//ドライブ名の取得
m_wstrDir = Drivebuff;
//ディレクトリ名の取得
m_wstrDir += Dirbuff;
//mediaディレクトリを探す
m_wstrDataPath = m_wstrDir;
m_wstrDataPath += L"media";
//まず、実行ファイルと同じディレクトリを探す
DWORD RetCode;
RetCode = GetFileAttributes(m_wstrDataPath.c_str());
if (RetCode == 0xFFFFFFFF) {
//失敗した
m_wstrDataPath = m_wstrDir;
m_wstrDataPath += L"..\\media";
RetCode = GetFileAttributes(m_wstrDataPath.c_str());
if (RetCode == 0xFFFFFFFF) {
//再び失敗した
throw runtime_error("mediaディレクトリを確認できません。");
}
else {
m_wstrDataPath += L"\\";
//相対パスの設定
m_wstrRelativeDataPath = L"..\\media\\";
}
}
else {
m_wstrDataPath += L"\\";
//相対パスの設定
m_wstrRelativeDataPath = L"media\\";
}
m_wstrShadersPath = m_wstrDataPath + L"Shaders\\";
m_wstrRelativeShadersPath = m_wstrRelativeDataPath + L"Shaders\\";
//Assetsディレクトリを探す
m_wstrRelativeAssetsPath = m_wstrDir;
m_wstrRelativeAssetsPath += L"..\\..\\Assets";
//相対ディレクトリを探す
RetCode = GetFileAttributes(m_wstrRelativeAssetsPath.c_str());
if (RetCode == 0xFFFFFFFF) {
//失敗した
//アセットディレクトリをメディアディレクトリにする
m_wstrRelativeAssetsPath = m_wstrRelativeDataPath;
}
else {
//成功した
m_wstrRelativeAssetsPath += L"\\";
}
}
void App::Init(HWND hwd, SceneBase* pSceneBase, HINSTANCE hInstance, int nCmdShow, int width, int height)
{
m_width = width;
m_height = height;
m_pSceneBase = pSceneBase;
m_hwnd = hwd;
SetAssetsPath();
//デバイスの初期化はシーンから呼ばれる
m_pSceneBase->OnInit();
}
void App::UpdateDraw() {
m_timer.Tick();
m_controler.ResetControlerState();
if (m_pSceneBase && m_baseDevice)
{
m_baseDevice->OnUpdate();
m_baseDevice->OnDraw();
}
}
void App::Destroy() {
if (m_pSceneBase) {
m_pSceneBase->OnDestroy();
}
if (m_baseDevice) {
m_baseDevice->OnDestroy();
m_baseDevice.reset();
}
m_pSceneBase = nullptr;
}
}
//end basedx12
|
c6cd471afb26183295fe736ad1c6b8f5dcea2328 | 56d780f7cd4a1c9f22c84d56f7b260f39bf071a7 | /code/CSpace/CSpace_Mapping/CSpace_Mapping.ino | 0383dec8f5dec8d1fa8b0332ef8a90d1869fda5d | [] | no_license | wilsjame/SeniorDesign | 6fe391f0ef9ab518b4c8886a2c125d765740619b | 2d1b0237ebd4c26615a6ecb00e4604005baecf3f | refs/heads/master | 2020-04-09T20:51:00.977037 | 2017-08-07T14:19:44 | 2017-08-07T14:19:44 | 88,535,863 | 0 | 0 | null | 2017-04-17T18:07:56 | 2017-04-17T18:07:56 | null | UTF-8 | C++ | false | false | 2,651 | ino | CSpace_Mapping.ino | #include <stdio.h>
//=========DEFINITIONS==================
int encA_pin1 = 6;
int encB_pin1 = 7;
long encA_ticks1 = 0;
//for polling implementation
int n = LOW;
int encA_pin1_prev = LOW;
unsigned long time;
char buffer [50];
int i = 0;
int encA_pin2 = 2;
int encB_pin2 = 4;
volatile long encA_ticks2 = 0;
int encA_pin3 = 3;
int encB_pin3 = 5;
volatile long encA_ticks3 = 0;
const float pi = 3.14;
volatile int state = HIGH;
volatile float encA_degree1 = 0;
volatile float encA_degree2 = 0;
volatile float encA_degree3 = 0;
/*
2 - Motor 1: A
3 - Motor 1: B
4 - Motor 2: A
5 - Motor 2: B
6 - Motor 3: A
7 - Motor 3: B
*/
//=========SET-UP==================
void setup() {
// put your setup code here, to run once:
pinMode(encA_pin1, INPUT);
pinMode(encA_pin2, INPUT);
pinMode(encA_pin3, INPUT);
digitalWrite(encA_pin1, HIGH);
digitalWrite(encA_pin2, HIGH);
digitalWrite(encA_pin3, HIGH);
pinMode(13, OUTPUT);
// INIT interrups
//switch motor 1 to polling
//attachInterrupt(digitalPinToInterrupt(encA_pin1),encoderA1,RISING);
attachInterrupt(digitalPinToInterrupt(encA_pin2),encoderA2,RISING);
attachInterrupt(digitalPinToInterrupt(encA_pin3),encoderA3,RISING);
Serial.begin(9600);
}
//========= LOOP ==================
void loop() {
// put your main code here, to run repeatedly:
time = millis();
//Poll innermost motor to circumvent limited number
//of Arduino UNO interupts
n = digitalRead(encA_pin1);
if ((encA_pin1_prev == LOW) && (n == HIGH)) {
if (digitalRead(encB_pin1) == LOW) {
encA_ticks1 -= 1.0;
} else {
encA_ticks1 += 1.0;
}
}
encA_pin1_prev = n;
digitalWrite(13,state);
//if enough time has passed, print a status update
//print status update every .5 seconds
//output the valid configurations to Serial which will then be stored in a file
encA_degree1 = encA_ticks1*2.25;
encA_degree2 = encA_ticks2*2.25;
encA_degree3 = encA_ticks3*2.25;
Serial.println("0");
Serial.println(encA_degree1);
Serial.println(encA_degree2);
Serial.println(encA_degree3);
Serial.println(";");
delay(500);
}
//Arduino UNO only has two interupts
//Switch innermost motor to polling
//void encoderA1(){
// state=!state;
// if(digitalRead(encB_pin1)==HIGH){
// encA_ticks1=encA_ticks1+1.0;
// }else{
// encA_ticks1=encA_ticks1-1.0;
// }
// }
void encoderA2(){
state=!state;
if(digitalRead(encB_pin2)==HIGH){
encA_ticks2=encA_ticks2+1.0;
}else{
encA_ticks2=encA_ticks2-1.0;
}
}
void encoderA3(){
state=!state;
if(digitalRead(encB_pin3)==HIGH){
encA_ticks3=encA_ticks3+1.0;
}else{
encA_ticks3=encA_ticks3-1.0;
}
}
|
1b98ccb01cc900a350e276621571044e9b3ee58d | 48298469e7d828ab1aa54a419701c23afeeadce1 | /Client/SceneEdit/src/ui/MoveUpDownSettingDialog.cpp | d45951bb89dffa873bfc63cb973eb5b5ea77c8ab | [] | no_license | brock7/TianLong | c39fccb3fd2aa0ad42c9c4183d67a843ab2ce9c2 | 8142f9ccb118e76a5cd0a8b168bcf25e58e0be8b | refs/heads/master | 2021-01-10T14:19:19.850859 | 2016-02-20T13:58:55 | 2016-02-20T13:58:55 | 52,155,393 | 5 | 3 | null | null | null | null | GB18030 | C++ | false | false | 2,231 | cpp | MoveUpDownSettingDialog.cpp | // ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "MoveUpDownSettingDialog.h"
#endif
// For compilers that support precompilation, includes "wx/wx.h>.
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
// for all others, include the necessary headers (this file is usually all you
// need because it includes almost all "standard" wxWidgets headers)
#ifndef WX_PRECOMP
#include <wx/scrolwin.h>
#include <wx/toolbar.h>
#include <wx/stattext.h>
#include <wx/button.h>
#endif
#include "MoveUpDownSettingDialog.h"
// ----------------------------------------------------------------------------
// Resources
// ----------------------------------------------------------------------------
#include "res/MoveUpDownSetting_wdr.h"
// ----------------------------------------------------------------------------
// Ogre headers
// ----------------------------------------------------------------------------
#include <OgreRoot.h>
#include <OgreRenderSystem.h>
#include <OgreCodec.h>
// ----------------------------------------------------------------------------
// macros
// ----------------------------------------------------------------------------
#if wxUSE_STL
#define AS_STRING(s) (s)
#else
#define AS_STRING(s) ((s).c_str())
#endif
// ----------------------------------------------------------------------------
// MoveUpDownSettingDialog class
// ----------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(MoveUpDownSettingDialog, wxDialog)
// the event tables connect the wxWidgets events with the functions (event
// handlers) which process them.
BEGIN_EVENT_TABLE(MoveUpDownSettingDialog, wxDialog)
EVT_INIT_DIALOG(MoveUpDownSettingDialog::OnInitDialog)
END_EVENT_TABLE()
void
MoveUpDownSettingDialog::OnInitDialog(wxInitDialogEvent &e)
{
wxDialog::OnInitDialog(e);
wxSizer* sizer = MoveUpDown(this, true, true);
/// 获取各控件的引用
mSpinCtrl = wxDynamicCast(this->FindWindow(ID_SPINCTRL),wxSpinCtrl);
}
|
229de47edd104124b44b65f4391e4c6161e9a992 | 9ccfab8d79ade3f508a11ea14cf33fcb6590c162 | /include/gtk-accounting/transaction/Transaction.h | 0d453b4d433e402a93c9f1d847cebe392cc852af | [
"MIT"
] | permissive | iShabang/gtk-accounting | 33f85901b6e7022bd4c39821bd1f28e6f3f208a7 | 305702bce0187e0e83b74301abeaa50ba35fe0bf | refs/heads/master | 2021-05-24T15:16:21.806862 | 2021-04-19T17:31:42 | 2021-04-19T17:31:42 | 253,623,817 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | h | Transaction.h | #ifndef _GTK_ACCOUNTING_TRANSACTION_H_
#define _GTK_ACCOUNTING_TRANSACTION_H_
#include <string>
#include <cstdint>
namespace acc {
/* Transaction object used to store information about the transaction itself */
struct Transaction {
uint64_t id;
std::string name;
std::string date; // date format in YYYY-MM-DD
double amount;
};
}
#endif // _GTK_ACCOUNTING_TRANSACTION_H_
|
914f56ab715931c1c73e77be358afd2db7b76d97 | 332825d7afa9550c1400702d1c5300908af9d20f | /Src/Quote/Quote/RPT.HXX | 95bd0fa68d5441d1bae1119f7ed1e31c094cb84b | [] | no_license | wardquinlan/win16 | 35a17b7a16a6ffd51665be6d6b72b57323269953 | 4b17ca4d61c04f275f93f201f90d10b8426f4e23 | refs/heads/master | 2021-07-21T18:06:38.760494 | 2020-04-02T03:16:10 | 2020-04-02T03:16:10 | 90,180,588 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,762 | hxx | RPT.HXX | //////////////////////////////////////////////////////////////////////////////
// RPT.HXX
//
// This file generates scan results
//
// Copyright (c) Ward Quinlan, 1996
//////////////////////////////////////////////////////////////////////////////
#ifndef _RPT_HXX
#define _RPT_HXX
#include "word.hxx"
//////////////////////////////////////////////////////////////////////////////
// seconds2days( )
//
// Helper to convert seconds to days
//////////////////////////////////////////////////////////////////////////////
inline ULONG seconds2days( time_t seconds )
{
return ( (ULONG) seconds / (ULONG) 86400 );
}
//////////////////////////////////////////////////////////////////////////////
// struct ScanResults
//////////////////////////////////////////////////////////////////////////////
class QScanList;
struct ScanResults
{
ScanResults( const CHAR *szName, int nDays, BOOL fBuys, BOOL fSells, const QScanList &scanlist )
:m_nDays( nDays ), m_fBuys( fBuys ), m_fSells( fSells ), m_scanlist( scanlist )
{
lstrcpy( m_szName, szName );
}
CHAR m_szName[ _cbNameMax + 1 ];
int m_nDays;
BOOL m_fBuys;
BOOL m_fSells;
const QScanList &m_scanlist;
};
//////////////////////////////////////////////////////////////////////////////
// class QScan
//
// Defines one discovered (scanned) signal
//////////////////////////////////////////////////////////////////////////////
class QScan : public QListObject
{
public:
QScan( )
: m_sName( ), m_date( ), m_sg( QSignal::sgBuy ), m_numPrice( 0 ), m_fPendingState( FALSE )
{
}
~QScan( )
{
Cleanup( );
}
virtual void Cleanup( )
{
m_sName.Cleanup( );
m_date.Cleanup( );
}
const CHAR *company( ) const
{
return m_sName;
}
void company( const CHAR *pszName )
{
m_sName = pszName;
}
const QTime &date( ) const
{
return m_date;
}
void date( const QTime &d )
{
m_date = d;
}
const QSignal::SignalType &signaltype( ) const
{
return m_sg;
}
void signaltype( const QSignal::SignalType &sg )
{
m_sg = sg;
}
const NUM &price( ) const
{
return m_numPrice;
}
void price( const NUM &num )
{
m_numPrice = num;
}
BOOL pendingState( ) const
{
return m_fPendingState;
}
void pendingState( BOOL f )
{
m_fPendingState = f;
}
#ifdef DEBUG
void AssertValid( ) const;
#endif
private:
BOOL m_fPendingState;
QString m_sName;
QTime m_date;
QSignal::SignalType m_sg;
NUM m_numPrice;
};
//////////////////////////////////////////////////////////////////////////////
// class QScanList
//
// Collection class for the scanner
//////////////////////////////////////////////////////////////////////////////
class QScanList : public QVirtualList
{
public:
QScanList( )
{
}
~QScanList( )
{
Cleanup( );
}
virtual void Cleanup( );
void Build( HWND hwndParent,
const CHAR *szName,
int nDays,
const CHAR *pszFilter,
BOOL fBuys,
BOOL fSells );
const QWordList &corruptfiles( ) const
{
return m_wordlist;
}
#ifdef DEBUG
void AssertValid( ) const;
#endif
private:
virtual void Abstract( )
{
}
void AppendCompany( const CHAR *szName, BOOL fBuys, BOOL fSells, int nDays );
void SignalList2ScanList( QSignalList &sglist, BOOL fBuys, BOOL fSells, int nDays );
NUM Price( const QTime &date ) const;
QWordList m_wordlist;
};
//////////////////////////////////////////////////////////////////////////////
// Miscellaneous
//////////////////////////////////////////////////////////////////////////////
extern void ChartScanner( HWND hwndParent,
const CHAR *szName,
int nDays,
const CHAR *pszFilter,
BOOL fBuys,
BOOL fSells );
extern void IndicatorValue( HWND hwnd, const CHAR *pszName, const QTime &dt );
extern void SaveScanResults( HWND hwnd, const ScanResults &res, const CHAR *pszPath );
#endif
|
b2a06a2d023d4f89a035c675d522e532bd676048 | d64737d31ae9caba2820ea1048be3f9bce708b42 | /cpp/repeated-dna-sequences.cpp | 1b3ae72f441428144f394bcab414fc61129b5548 | [] | no_license | ldcduc/leetcode-training | 2453ec13e69160bc29e8e516e19544c2b25bf945 | 40db37375372f14dd45d0a069c8b86fe36221f09 | refs/heads/master | 2023-08-05T01:46:52.993542 | 2021-09-18T16:47:54 | 2021-09-18T16:47:54 | 271,736,046 | 9 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 684 | cpp | repeated-dna-sequences.cpp | /* Problem url: https://leetcode.com/problems/repeated-dna-sequences
* Code by: ldcduc
* */
/* Begin of Solution */
class Solution {
public:
vector<string> findRepeatedDnaSequences(string s) {
vector<string> result;
if (s.length() >= 10) {
unordered_map<string, int> M;
for (int i = 0; i < s.length() - 10 + 1; ++ i) {
string str = s.substr(i, 10);
++ M[str];
if (M[str] == 2) {
result.push_back(str);
}
}
}
return result;
}
};
/* End of Solution */
/*
* Comment by ldcduc
* Suggested tags: string, sub-string
*
* */
|
1d925198fe6d7fbd0d66d7b07441471694b14d00 | 9cb4de290d4dbb5fd5298043a9a8f1cf08615687 | /adversarial_utils.h | 09c4edc716ac5f0fb3b378892e3124104bbc4b2f | [] | no_license | rsofaer/no_tipping | 0f9ee69fd5640fe8ed92d4ed31ce4b351db36f40 | 06dbce5a9eda3a14cbd3befc21e0764d50a26c16 | refs/heads/master | 2020-11-26T14:05:03.405033 | 2011-11-27T20:10:34 | 2011-11-27T20:10:34 | 2,487,036 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,546 | h | adversarial_utils.h | #ifndef _NO_TIPPING_GAME_ADVERSARIAL_UTILS_H_
#define _NO_TIPPING_GAME_ADVERSARIAL_UTILS_H_
#include "combination.h"
#if NDEBUG
#define HPS_NTG_ASSERT_BOARD_HASH_NO_DUPS(states)
#else
#define HPS_NTG_ASSERT_BOARD_HASH_NO_DUPS(states) \
for (BoardHashList::const_iterator hash = states.begin() + 1; \
hash != states.end(); \
++hash) \
{ \
assert(*hash != *(hash - 1)); \
}
#endif
namespace hps
{
namespace ntg
{
namespace detail
{
/// <summary> Test board for conflict with a base board. </summary>
struct ConflictBoard
{
ConflictBoard(const Board& board_)
: board(board_)
{}
bool operator()(const Board& testBoard) const
{
// Find conflict in the board to the comparison board.
Board::const_iterator baseW = board.begin();
Board::const_iterator testW = testBoard.begin();
for (; baseW != board.end(); ++baseW, ++testW)
{
const bool baseOccipied = (Board::Empty != *baseW);
const bool testOccipied = (Board::Empty != *testW);
const bool baseConflict = (*testW != *baseW);
if (baseOccipied && testOccipied && baseConflict)
{
return true;
}
}
return false;
}
Board board;
};
/// <summary> Identify states that conflict a given game board by applying a
/// ply to the given state.
/// </summary>
struct ConflictBoardFromState
{
ConflictBoardFromState(const Board& board_, State* state_)
: conflictBoard(board_),
state(state_)
{
assert(state);
}
/// <summary> Test the given ply at the base state for conflicts to
/// the comparison board.
/// </summary>
inline bool operator()(const Ply& ply) const
{
DoPly(ply, state);
const bool conflict = conflictBoard(state->board);
UndoPly(ply, state);
return conflict;
}
ConflictBoard conflictBoard;
mutable State* state;
};
/// <summary> Adapter for single/double states exclusion. </summary>
template <typename ExcludeFunc>
struct ExclBoardAdapter
{
ExclBoardAdapter(ExcludeFunc* exclFunc_, State* state_)
: exclFunc(exclFunc_),
state(state_)
{}
inline bool operator()(const Ply& ply)
{
DoPly(ply, state);
const bool exclude = (*exclFunc)(state->board);
UndoPly(ply, state);
return exclude;
}
ExcludeFunc* exclFunc;
State* state;
};
struct DoubleWeightWinStateHelper
{
DoubleWeightWinStateHelper(const Board& board_)
: board(board_)
{}
bool operator()(Board& testBoard) const
{
// Find conflict in the board to the comparison board.
Board::const_iterator baseW = board.begin();
Board::iterator testW = testBoard.begin();
Weight tmpW = Board::Empty;
for (; baseW != board.end(); ++baseW, ++testW)
{
const bool baseOccupied = (Board::Empty != *baseW);
const bool testOccupied = (Board::Empty != *testW);
const bool baseConflict = (*testW != *baseW);
if (baseOccupied && testOccupied && baseConflict)
{
return true;
}
if (testOccupied)
{
std::swap(tmpW, *testW);
const bool tipped = Tipped(testBoard);
std::swap(tmpW, *testW);
if (!tipped)
{
return true;
}
}
}
return false;
}
Board board;
};
/// <summary> Set of stable boards with one weight. </summary>
/// <remarks>
/// <para> The player to go last loses if any state with one weight is
/// reached since he must remove the final weight and tip the board.
/// </para>
/// <para> To win with one weight there cannot be a pivot at 0. </para>
/// </remarks>
/// </summary>
template <typename StorageType,
typename StorageAdapterFunc,
typename ExcludeFunc>
int SingleWeightStates(std::vector<StorageType>* set,
StorageAdapterFunc* adaptFunc,
ExcludeFunc* exclFunc)
{
assert(set);
assert(adaptFunc);
assert(exclFunc);
// Generate the plys possible from the board being empty.
State state;
InitState(&state);
ClearBoard(&state.board);
state.turn = State::Turn_Blue;
std::vector<Ply> plys;
PossiblePlys(state, &plys);
ExclBoardAdapter<ExcludeFunc> exclAdapter(exclFunc, &state);
plys.erase(std::remove_if(plys.begin(), plys.end(), exclAdapter), plys.end());
// Adapt boards into storage.
set->reserve(plys.size());
set->clear();
for (std::vector<Ply>::const_iterator ply = plys.begin();
ply != plys.end();
++ply)
{
DoPly(*ply, &state);
set->push_back((*adaptFunc)(state.board));
UndoPly(*ply, &state);
}
return static_cast<int>(set->size());
}
template <typename PassType>
struct PassthroughAdapter
{
inline const PassType& operator()(const PassType& type)
{
return type;
}
};
template <typename ExclType>
struct ExcludeNoneFunc
{
inline const bool operator()(const ExclType&)
{
return false;
}
};
namespace detail
{
struct PlySortRecord
{
PlySortRecord(const Ply& ply_)
: ply(ply_),
key((ply.pos << 16) | (ply.wIdx & 0xFFFF))
{}
inline bool operator<(const PlySortRecord& rhs) const
{
return key < rhs.key;
}
Ply ply;
int key;
};
}
/// <summary> Set of plys stable with two weights. </summary>
template <typename StorageType,
typename StorageAdapterFunc,
typename ExcludeFunc>
int DoubleWeightStates(std::vector<StorageType>* set,
StorageAdapterFunc* adaptFunc,
ExcludeFunc* exclFunc)
{
assert(set);
assert(adaptFunc);
assert(exclFunc);
typedef
std::map<detail::PlySortRecord, std::map<detail::PlySortRecord, int> >
StateVisitedMap;
StateVisitedMap statesVisited;
// Set of all stable double weight states.
State blankState;
InitState(&blankState);
Board& board = blankState.board;
ClearBoard(&board);
blankState.turn = State::Turn_Blue;
std::vector<Ply> suicidalPlys;
SuicidalPlys(blankState, &suicidalPlys);
ExclBoardAdapter<ExcludeFunc> exclAdapter(exclFunc, &blankState);
suicidalPlys.erase(std::remove_if(suicidalPlys.begin(),
suicidalPlys.end(),
exclAdapter), suicidalPlys.end());
// Now get all reachable states from the suicidal set. Since each suicidal
// state is unique, then the set of reachable states for each suicidal state
// is also unique.
std::vector<Ply> plys;
for (std::vector<Ply>::const_iterator suicidePly = suicidalPlys.begin();
suicidePly != suicidalPlys.end();
++suicidePly)
{
// Mutate state to suicidal state.
DoPly(*suicidePly, &blankState);
// Get possible plys from suicidal state.
plys.clear();
PossiblePlys(blankState, &plys);
const size_t setNewSize = set->size() + plys.size();
set->reserve(setNewSize);
// Only keep plys that do not stand on their own.
for (std::vector<Ply>::const_iterator ply = plys.begin();
ply != plys.end();
++ply)
{
// Always key by lowest pos.
bool visited;
{
detail::PlySortRecord suicidePlySortRec(*suicidePly);
detail::PlySortRecord plySortRec(*ply);
if (suicidePly->pos < ply->pos)
{
visited = (statesVisited[suicidePlySortRec].count(plySortRec) > 0);
++statesVisited[suicidePlySortRec][plySortRec];
}
else
{
visited = (statesVisited[plySortRec].count(suicidePlySortRec) > 0);
++statesVisited[plySortRec][suicidePlySortRec];
}
}
if (!visited)
{
DoPly(*ply, &blankState);
if (!(*exclFunc)(board))
{
set->push_back((*adaptFunc)(board));
}
UndoPly(*ply, &blankState);
}
}
// Revert state.
UndoPly(*suicidePly, &blankState);
}
return static_cast<int>(set->size());
}
}
/// <summary> Get states with one weight. </summary>
inline int SingleWeightStates(std::vector<Board>* set)
{
static detail::PassthroughAdapter<Board> s_passthrough;
static detail::ExcludeNoneFunc<Board> s_excl;
return detail::SingleWeightStates(set, &s_passthrough, &s_excl);
}
/// <summary> Get states with one weight that do not conflict with the
/// given board.
/// </summary>
inline int SingleWeightStatesNoConflict(const Board& conflictBoard,
std::vector<Board>* set)
{
static detail::PassthroughAdapter<Board> s_passthrough;
detail::ConflictBoard s_excl(conflictBoard);
return detail::SingleWeightStates(set, &s_passthrough, &s_excl);
}
/// <summary> Get states with two weights. </summary>
inline int DoubleWeightStates(std::vector<Board>* set)
{
static detail::PassthroughAdapter<Board> s_passthrough;
static detail::ExcludeNoneFunc<Board> s_excl;
return detail::DoubleWeightStates(set, &s_passthrough, &s_excl);
}
inline int DoubleWeightStatesNoConflictNoRemove(const Board& conflictBoard,
std::vector<Board>* set)
{
static detail::PassthroughAdapter<Board> s_passthrough;
detail::DoubleWeightWinStateHelper s_excl(conflictBoard);
return detail::DoubleWeightStates(set, &s_passthrough, &s_excl);
}
namespace detail
{
inline void HashPosWeight(const int p, const int w, unsigned int* h)
{
assert(Board::Empty != w);
// Encode position.
{
const unsigned int highorder = *h & 0xf8000000;
*h = *h << 5;
*h = *h ^ (highorder >> 27);
*h = *h ^ p;
}
// Encode weight.
{
const unsigned int highorder = *h & 0xf8000000;
*h = *h << 5;
*h = *h ^ (highorder >> 27);
*h = *h ^ w;
}
}
}
inline unsigned int HashBoardCRC(const Board& board)
{
// reissb -- 20111009 -- Taken from
// http://www.cs.hmc.edu/~geoff/classes/hmc.cs070.200101/
// homework10/hashfuncs.html
unsigned int h = 0;
int p = -Board::Size;
for (Board::const_iterator w = board.begin(); w != board.end(); ++w, ++p)
{
if (Board::Empty != *w)
{
detail::HashPosWeight(p, *w, &h);
}
}
return h;
}
inline unsigned int HashPosWeightPairsCRC(const int count,
const std::pair<int, int>* posWeightPairs)
{
// reissb -- 20111009 -- Taken from
// http://www.cs.hmc.edu/~geoff/classes/hmc.cs070.200101/
// homework10/hashfuncs.html
unsigned int h = 0;
const std::pair<int, int>* posWeightPairsEnd = posWeightPairs + count;
for (const std::pair<int, int>* posWeightPair = posWeightPairs;
posWeightPair != posWeightPairsEnd;
++posWeightPair)
{
detail::HashPosWeight(posWeightPair->first, posWeightPair->second, &h);
}
return h;
}
/// <summary> A key for a board state. </summary>
struct BoardHashKey
{
explicit BoardHashKey(const unsigned int key_) : key(key_) {}
BoardHashKey(const Board& board) : key(HashBoardCRC(board)) {}
inline bool operator<(const BoardHashKey& rhs) const
{
return key < rhs.key;
}
inline bool operator==(const BoardHashKey& rhs) const
{
return key == rhs.key;
}
inline bool operator!=(const BoardHashKey& rhs) const
{
return !(*this == rhs);
}
unsigned int key;
};
struct BoardEvaluationReachableWinStates
{
typedef std::vector<BoardHashKey> BoardHashList;
struct NumWeightsWinStates
{
int numWeights;
BoardHashList states;
};
typedef std::vector<NumWeightsWinStates> WinStateList;
/// <summary> Adapt boards to keys. </summary>
struct BoardHashStorageAdapter
{
inline BoardHashKey operator()(const Board& board) const
{
return BoardHashKey(board);
}
};
BoardEvaluationReachableWinStates(const State::Turn who_)
: who(who_),
redWinStates(),
totalRedWinStates(0),
blueWinStates(),
totalBlueWinStates(0)
{
State initState;
InitState(&initState);
// Get states where blue wins. These are all states where the board is
// balanced with one weight left.
{
blueWinStates.push_back(NumWeightsWinStates());
NumWeightsWinStates& singleWinStates = blueWinStates.back();
singleWinStates.numWeights = 1;
BoardHashList& states = singleWinStates.states;
BoardHashStorageAdapter adapter;
detail::ConflictBoard exclFunc(initState.board);
detail::SingleWeightStates(&states, &adapter, &exclFunc);
std::sort(states.begin(), states.end());
HPS_NTG_ASSERT_BOARD_HASH_NO_DUPS(states);
totalBlueWinStates = static_cast<int>(states.size());
}
// Get states where red wins. These are all states with two weights where
// the removal of either weight is suicidal.
{
redWinStates.push_back(NumWeightsWinStates());
NumWeightsWinStates& doubleWinStates = redWinStates.back();
doubleWinStates.numWeights = 2;
BoardHashList& states = doubleWinStates.states;
BoardHashStorageAdapter adapter;
detail::DoubleWeightWinStateHelper exclFunc(initState.board);
detail::DoubleWeightStates(&states, &adapter, &exclFunc);
std::sort(states.begin(), states.end());
HPS_NTG_ASSERT_BOARD_HASH_NO_DUPS(states);
totalRedWinStates = static_cast<int>(states.size());
}
}
/// <summary> Gather the occupied positions from a board. </summary>
static void CollectOccupiedPositions(const Board& board,
int* positionsOccupied,
int* positions)
{
assert(positionsOccupied);
assert(positions);
*positionsOccupied = 0;
int *posOut = positions;
int pos = -Board::Size;
for (Board::const_iterator w = board.begin(); w != board.end(); ++w, ++pos)
{
if (Board::Empty != *w)
{
*posOut = pos;
++posOut;
++(*positionsOccupied);
}
}
}
/// <summary> Count blue win states reachable from the given board. </summary>
int WinStatesReachable(const Board& board, const WinStateList& winStates) const
{
int count = 0;
int positionsOccupied;
int positions[Board::Positions];
CollectOccupiedPositions(board, &positionsOccupied, positions);
Combination cmb;
std::pair<int, int> posWeightPairs[Board::Positions];
unsigned long long m;
// Find all win states included in the board.
for (WinStateList::const_iterator winState = winStates.begin();
winState != winStates.end();
++winState)
{
// Are there enough weights to satisfy these win states?
const int numWeights = winState->numWeights;
if (positionsOccupied < numWeights)
{
continue;
}
// See if any of the win states are reachable. Make combinations of
// the filled board positions.
const BoardHashList& states = winState->states;
FastCombinationIterator cmbIter(positionsOccupied, numWeights, 0ULL);
const int numCmb = static_cast<int>(cmbIter.GetCombinationCount());
for (int cmbIdx = 0; cmbIdx < numCmb; ++cmbIdx)
{
// Get next combination and collect board pairs.
cmbIter.Next(&m, &cmb);
{
std::pair<int, int>* posWeightPair = posWeightPairs;
for (int cmbEleIdx = 0;
cmbEleIdx < numWeights;
++cmbEleIdx, ++posWeightPair)
{
const int pos = positions[cmb[cmbEleIdx]];
posWeightPair->first = pos;
posWeightPair->second = board[pos];
}
}
// See if this board is a win state.
const BoardHashKey boardKey(HashPosWeightPairsCRC(numWeights,
posWeightPairs));
const bool winState = std::binary_search(states.begin(),
states.end(),
boardKey);
count += winState;
}
}
return count;
}
/// <summary> Compute win states from the current state. </summary>
void Update(const State& state,
const int invDepthBegin,
const int invDepthEnd)
{
assert(invDepthBegin < invDepthEnd);
const Board& currentBoard = state.board;
// Enumerate all possible combinations of weights at depth.
int positionsOccupied;
int positions[Board::Positions];
CollectOccupiedPositions(currentBoard, &positionsOccupied, positions);
Combination cmb;
unsigned long long m;
Board testBoard;
ClearBoard(&testBoard);
for (int invDepth = invDepthBegin;
(invDepth != invDepthEnd) && (positionsOccupied >= invDepth);
++invDepth)
{
// Blue wins at odd depths and red at even.
WinStateList* winStates;
int* winStateCount;
if (invDepth & 1)
{
winStates = &blueWinStates;
winStateCount = &totalBlueWinStates;
}
else
{
winStates = &redWinStates;
winStateCount = &totalRedWinStates;
}
// See if we have computed for this depth.
for (WinStateList::iterator chkDepth = winStates->begin();
chkDepth != winStates->end();
++chkDepth)
{
if (chkDepth->numWeights == invDepth)
{
*winStateCount -= chkDepth->states.size();
winStates->erase(chkDepth);
break;
}
}
winStates->push_back(NumWeightsWinStates());
NumWeightsWinStates& depthState = winStates->back();
depthState.numWeights = invDepth;
BoardHashList& states = depthState.states;
// Enumerate the board weight combinations.
FastCombinationIterator cmbIter(positionsOccupied, invDepth, 0);
const int cmbCount = static_cast<int>(cmbIter.GetCombinationCount());
for (int cmbIdx = 0; cmbIdx < cmbCount; ++cmbIdx)
{
cmbIter.Next(&m, &cmb);
// Build the board;
for (Combination::const_iterator cmbEle = cmb.begin();
cmbEle != cmb.end();
++cmbEle)
{
const int pos = positions[*cmbEle];
assert(Board::Empty == testBoard[pos]);
testBoard[pos] = currentBoard[pos];
}
const bool stable = !Tipped(testBoard);
if (stable)
{
// See if I can't remove a weight.
bool winState = true;
for (Combination::const_iterator cmbEle = cmb.begin();
cmbEle != cmb.end();
++cmbEle)
{
const int pos = positions[*cmbEle];
testBoard[pos] = Board::Empty;
const bool tipped = Tipped(testBoard);
testBoard[pos] = currentBoard[pos];
if (!tipped)
{
winState = false;
break;
}
}
if (winState)
{
states.push_back(BoardHashKey(testBoard));
++(*winStateCount);
}
}
// Reset the board.
for (Combination::const_iterator cmbEle = cmb.begin();
cmbEle != cmb.end();
++cmbEle)
{
const int pos = positions[*cmbEle];
assert(Board::Empty != testBoard[pos]);
testBoard[pos] = Board::Empty;
}
}
if (!states.empty())
{
std::sort(states.begin(), states.end());
HPS_NTG_ASSERT_BOARD_HASH_NO_DUPS(states);
}
else
{
winStates->pop_back();
}
}
}
/// <summary> Score a board. </summary>
int operator()(const State& state) const
{
assert(!Tipped(state.board));
// Count win states reachable.
const int redWinStatesReachable = WinStatesReachable(state.board,
redWinStates);
const int blueWinStatesReachable = WinStatesReachable(state.board,
blueWinStates);
// If we have no information about win states...
const bool blind = (redWinStatesReachable + blueWinStatesReachable) > 0;
int score;
// I am red?
if (State::Turn_Red == who)
{
score = redWinStatesReachable - blueWinStatesReachable;
if (blind)
{
score = -blueWinStatesReachable;
}
}
// I am blue.
else
{
score = blueWinStatesReachable - redWinStatesReachable;
if (blind)
{
score = -redWinStatesReachable;
}
}
return score;
}
/// <summary> The player for whom we evaluate the board state. </sumamry>
State::Turn who;
/// <summary> List of red win states. </summary>
WinStateList redWinStates;
int totalRedWinStates;
/// <summary> List of blue win states. </summary>
WinStateList blueWinStates;
int totalBlueWinStates;
};
}
using namespace ntg;
}
#endif //_NO_TIPPING_GAME_ADVERSARIAL_UTILS_H_
|
891ecdff7d259721d1df151f767c83aded75325b | 15e6afaebf3c57e570bc7fee9404f8a7abbd5bea | /OpenHome/Media/Pipeline/SpotifyReporter.h | 36b611c38a404ddf0f50584fccbebb4bf007af0a | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | david-dever-23-box/ohPipeline | 64cc23dd1d59090567577c7ee2833d0a74285f1f | ebaaaaa33a3b7a93bb4e5d5dbfdd5d996c1935f5 | refs/heads/master | 2021-04-06T05:24:22.343182 | 2018-03-05T11:45:57 | 2018-03-05T11:45:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,270 | h | SpotifyReporter.h | #pragma once
#include <OpenHome/Types.h>
#include <OpenHome/Media/Pipeline/Msg.h>
#include <OpenHome/Media/Pipeline/AudioReservoir.h>
#include <OpenHome/Media/Pipeline/Reporter.h>
namespace OpenHome {
namespace Media {
class ISpotifyReporter
{
public:
virtual TUint64 SubSamples() const = 0;
virtual void Flush(TUint aFlushId) = 0; // Do not increment subsample count until aFlushId passes.
virtual ~ISpotifyReporter() {}
};
class ISpotifyMetadata
{
public:
virtual const Brx& PlaybackSource() const = 0;
virtual const Brx& PlaybackSourceUri() const = 0;
virtual const Brx& Track() const = 0;
virtual const Brx& TrackUri() const = 0;
virtual const Brx& Artist() const = 0;
virtual const Brx& ArtistUri() const = 0;
virtual const Brx& Album() const = 0;
virtual const Brx& AlbumUri() const = 0;
virtual const Brx& AlbumCoverUri() const = 0;
virtual const Brx& AlbumCoverUrl() const = 0;
virtual TUint DurationMs() const = 0;
virtual TUint Bitrate() const = 0;
virtual ~ISpotifyMetadata() {}
};
class ISpotifyMetadataAllocated
{
public:
virtual const ISpotifyMetadata& Metadata() const = 0;
virtual void AddReference() = 0;
virtual void RemoveReference() = 0;
virtual ~ISpotifyMetadataAllocated() {}
};
class ISpotifyTrackObserver
{
public:
virtual void MetadataChanged(Media::ISpotifyMetadataAllocated* aMetadata) = 0;
/*
* Should be called when track offset has actively changed (e.g., due to a
* seek).
*/
virtual void TrackOffsetChanged(TUint aOffsetMs) = 0;
/*
* Should be called to update current playback pos, so that action can be
* taken if loss of sync detected.
*/
virtual void TrackPosition(TUint aPositionMs) = 0;
//virtual void FlushTrackState() = 0;
virtual ~ISpotifyTrackObserver() {}
};
class SpotifyDidlLiteWriter : private INonCopyable
{
private:
// H+:MM:SS[.F0/F1]
// Fraction of seconds is fixed (value is in milliseconds, so F0 is always
// 3 bytes, and F1 always has value 1000, i.e., is 4 bytes).
// Everything else apart from hours is fixed. Assume no track will ever be
// >99 hours, so hours requires 2 bytes.
// Therefore, need enough bytes for string of form: 12:34:56.789/1000
static const TUint kMaxDurationBytes = 17;
public:
SpotifyDidlLiteWriter(const Brx& aUri, const ISpotifyMetadata& aMetadata);
void Write(IWriter& aWriter, TUint aBitDepth, TUint aChannels, TUint aSampleRate) const;
private:
void SetDurationString(Bwx& aBuf) const;
void WriteRes(IWriter& aWriter, TUint aBitDepth, TUint aChannels, TUint aSampleRate) const;
void WriteOptionalAttributes(IWriter& aWriter, TUint aBitDepth, TUint aChannels, TUint aSampleRate) const;
protected:
const BwsTrackUri iUri;
const ISpotifyMetadata& iMetadata;
};
/**
* Helper class to store start offset expressed in milliseconds or samples.
* Each call to either of the Set() methods overwrites any value set (be it in
* milliseconds or samples) in a previous call.
*/
class StartOffset
{
public:
StartOffset();
void SetMs(TUint aOffsetMs);
TUint64 OffsetSample(TUint aSampleRate) const;
TUint OffsetMs() const;
TUint AbsoluteDiff(TUint aOffsetMs) const;
private:
TUint iOffsetMs;
};
/*
* Element to report number of samples seen since last MsgMode.
*/
class SpotifyReporter : public PipelineElement, public IPipelineElementUpstream, public ISpotifyReporter, public ISpotifyTrackObserver, private INonCopyable
{
private:
static const TUint kSupportedMsgTypes;
static const TUint kTrackOffsetChangeThresholdMs;
static const Brn kInterceptMode;
public:
SpotifyReporter(IPipelineElementUpstream& aUpstreamElement, MsgFactory& aMsgFactory, TrackFactory& aTrackFactory);
~SpotifyReporter();
public: // from IPipelineElementUpstream
Msg* Pull() override;
public: // from ISpotifyReporter
TUint64 SubSamples() const override;
void Flush(TUint aFlushId) override;
public: // from ISpotifyTrackObserver
void MetadataChanged(Media::ISpotifyMetadataAllocated* aMetadata) override;
void TrackOffsetChanged(TUint aOffsetMs) override;
void TrackPosition(TUint aPositionMs) override;
//void FlushTrackState() override;
private: // PipelineElement
Msg* ProcessMsg(MsgMode* aMsg) override;
Msg* ProcessMsg(MsgTrack* aMsg) override;
Msg* ProcessMsg(MsgDecodedStream* aMsg) override;
Msg* ProcessMsg(MsgAudioPcm* aMsg) override;
Msg* ProcessMsg(MsgFlush* aMsg) override;
private:
void ClearDecodedStream();
void UpdateDecodedStream(MsgDecodedStream& aMsg);
TUint64 TrackLengthJiffiesLocked() const;
MsgDecodedStream* CreateMsgDecodedStreamLocked() const;
private:
IPipelineElementUpstream& iUpstreamElement;
MsgFactory& iMsgFactory;
TrackFactory& iTrackFactory;
StartOffset iStartOffset;
TUint iTrackDurationMs;
BwsTrackUri iTrackUri;
ISpotifyMetadataAllocated* iMetadata;
TBool iMsgDecodedStreamPending;
MsgDecodedStream* iDecodedStream;
TUint64 iSubSamples;
TBool iInterceptMode;
TBool iPipelineTrackSeen;
TBool iGeneratedTrackPending;
TUint iPendingFlushId;
mutable Mutex iLock;
};
} // namespace Media
} // namespace OpenHome
|
69efbe6dacb7861a3b7738b90362ab44c9d3f879 | 00b2421552ae8881c7d71fae6d8747e572e150f2 | /UVa/containers.cpp | f3ca4c6fc1961968b47d48d6483a6f7f5d9bb53e | [] | no_license | serendiipity/Competitive-Programming | 870eabb067e1746ae76d4d6fbf94fe24ae9b6ab1 | 3ecca29a7d69f8bab44bec646166a3885ae4d2f5 | refs/heads/master | 2022-05-05T03:48:49.355716 | 2022-03-17T13:35:22 | 2022-03-17T13:35:22 | 184,333,777 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 755 | cpp | containers.cpp | #include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
string line;
int c = 1;
while (cin >> line) {
if (line == "end")
break;
vector < stack <char> > stacks;
for (int i = 0; i < line.size(); i++) {
bool placed = false;
if (!stacks.empty()) {
for (int j = 0; j < stacks.size(); j++) {
if (stacks[j].top() >= line[i]) {
stacks[j].push(line[i]);
placed = true;
break;
}
}
if (!placed) {
stack <char> new_stack;
new_stack.push(line[i]);
stacks.push_back(new_stack);
}
} else {
stack <char> new_stack;
new_stack.push(line[i]);
stacks.push_back(new_stack);
}
}
cout << "Case " << c++ << ": " << stacks.size() << endl;
}
return 0;
} |
b8ed67f78370d6fc9beaa892c762f2a3f91ca5df | a5cecfca2a9c6367977df2f89efa06a796384e15 | /segregate_even_odd.cpp | f13891a01555cbfc36802744736289e4345ca855 | [] | no_license | Jagdish587/linkedlist | 33d635f061e232201f933d610e310efdeb42da21 | 6df4d0a3c837ea60a4faefe6ee0c63fb780320d9 | refs/heads/master | 2021-12-15T11:36:35.039327 | 2018-01-08T17:52:07 | 2018-01-08T17:52:07 | 105,436,528 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,612 | cpp | segregate_even_odd.cpp | #include <iostream>
using namespace std;
struct Node {
int data;
Node* link;
};
void printlist(Node* head)
{
Node* temp = head;
while(temp!=NULL) {
cout<<temp->data<<" ";
temp = temp->link;
}
}
void push(Node** head,int data)
{
Node* node = new Node;
node->data = data;
node->link = *head;
*head = node;
}
void dividelist(Node* head)
{
Node* evenstart = NULL;
Node* oddstart = NULL;
Node* evenend = NULL;
Node* oddend = NULL;
Node* currenthead = head;
while(currenthead!=NULL) {
if(currenthead->data % 2 == 0) {
if(evenstart == NULL) {
evenstart = currenthead ;
evenend = currenthead ;
}
else {
evenend->link = currenthead;
evenend = currenthead ;
}
}
else if(currenthead->data % 2 != 0) {
if(oddstart == NULL) {
oddstart = currenthead ;
oddend = currenthead ;
}
else {
oddend->link = currenthead;
oddend = currenthead ;
}
}
currenthead = currenthead->link ;
}
evenend->link = oddstart;
oddend->link = NULL;
printlist(evenstart);
}
int main()
{
Node* head = NULL;
push(&head,9);
push(&head,8);
push(&head,7);
push(&head,6);
push(&head,5);
push(&head,4);
push(&head,3);
push(&head,2);
push(&head,1);
push(&head,0);
printlist(head);
cout<<endl;
dividelist(head);
return 0;
} |
3d3ea799fa757c4e03bca806a088300efa5dc992 | 1d55bb4200447dca33868f797877338a45970945 | /algorithm/code/cpp_code/math/10to-2.cpp | bedc5993eb3fd65d5cfb40d90679bfedbc1b5f3f | [] | no_license | dh00023/TIL | 3acb7955470a4e7e5177b54d7a08f72f260a8be5 | 3e793f77d4d42b8aad7c4a065da001fc9761a7f7 | refs/heads/master | 2022-05-31T09:14:49.480169 | 2022-02-28T08:40:10 | 2022-02-28T08:40:10 | 83,773,571 | 6 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 903 | cpp | 10to-2.cpp | /*
8진수가 주어졌을 때, 2진수로 변환하는 프로그램을 작성하시오.
첫째 줄에 8진수가 주어진다. 주어지는 수의 길이는 333,334을 넘지 않는다.
첫째 줄에 주어진 수를 2진수로 변환하여 출력한다. 수가 0인 경우를 제외하고는 반드시 1로 시작해야 한다.
*/
#include <algorithm>
#include <string>
#include <iostream>
using namespace std;
int main(){
int n;
scanf("%d",&n);
string ans="";
if(n==0)printf("%d",n);
while(n!=1){
if(n>0){
if(n%(-2)==0){
ans+='0';
}else{
ans+='1';
}
}else{
if(n%(-2)==0){
ans+='0';
}else{
ans+='1';
n-=1;
}
}
n/=-2;
}
ans+='1';
reverse(ans.begin(), ans.end());
cout << ans;
}
|
3d8bafb1f565c59defd15bc075f393295ff2021c | 5f7eb4881c65c9bf3db64087fde1082e15b1cb3d | /leetcode_349.cpp | bd41b8dfac13a9d2ff17612ae088b6af3c9f1a40 | [] | no_license | nefuxulinlin/leetcode | 6164ede1dc2930bb2e587e0cc87654c67a4afb8f | a6ff9c55d1f18bc066a719caf4c05553a9d2aa09 | refs/heads/master | 2020-07-02T20:51:32.660614 | 2017-07-01T00:16:49 | 2017-07-01T00:16:49 | 74,282,739 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,311 | cpp | leetcode_349.cpp | // 349. Intersection of Two Arrays
// https://leetcode.com/problems/intersection-of-two-arrays/#/description
#include <vector>
#include <iostream>
#include <set>
using std::vector;
using std::set;
class Solution {
public:
vector<int> intersection(vector<int>& nums1, vector<int>& nums2)
{
set<int> set_1, set_2;
for (vector<int>::iterator it = nums1.begin(); it != nums1.end(); it++)
{
set_1.insert(*it);
}
for (vector<int>::iterator it = nums2.begin(); it != nums2.end(); it++)
{
if (set_1.find(*it) != set_1.end())
set_2.insert(*it);
}
vector<int> result;
for (set<int>::iterator it = set_2.begin(); it != set_2.end(); it++)
{
result.push_back(*it);
}
return result;
}
};
int main(int argc, char * argv[])
{
vector<int> nums1;
nums1.push_back(1);
nums1.push_back(2);
nums1.push_back(2);
nums1.push_back(1);
vector<int> nums2;
nums2.push_back(2);
nums2.push_back(2);
vector<int> result = (new Solution())->intersection(nums1, nums2);
for (vector<int>::iterator it = result.begin(); it != result.end(); it++)
std::cout << *it << " ";
std::cout << std::endl;
return 0;
}
|
a6ee2cfcae5b13256822a7c75d8fa225855b5507 | 4514dfc5b61b84fe310e90cfd2e1e3a29423f657 | /arduino & nodemcu/nodemcu_send_via_blynx/nodemcu_send_via_blynx.ino | 5732e06638516963e663e6e09d1446599dd601c0 | [] | no_license | alanyukeroo/IWACOM-IoT | 52f95c2d14757dffd47f46f301314e230cd23fb7 | 0d02c3e53a57763338ee9dffe7ca4d4e7f867631 | refs/heads/master | 2020-04-05T15:15:10.937733 | 2019-01-29T06:26:23 | 2019-01-29T06:26:23 | 156,960,901 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 855 | ino | nodemcu_send_via_blynx.ino |
//SoftwareSerial DebugSerial(2, 3); // RX, TX
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include <SimpleTimer.h>
SimpleTimer timer;
char auth[] = "0234093d03824eafbcf08a6770d82456";
char ssid[] = "OPPO A37f";
char pass[] = "12345678";
String myString;
char c;
int Index1,Index2,Index3,Index4;
String secondValue, thirdValue, fourthValue;
void sendSensor()
{
float ph = 1;
float d = 2;
float t = 3;
// You can send any value at any time.
// Please don't send more that 10 values per second.
Blynk.virtualWrite(V0, ph);
Blynk.virtualWrite(V1, d);
Blynk.virtualWrite(V2, t);
}
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
// Setup a function to be called every second
timer.setInterval(1000L, sendSensor);
}
void loop()
{
Blynk.run();
timer.run(); // Initiates SimpleTimer
}
|
a3ca75b722d64624e4e8e398f748075e358ddf82 | 464aa9d7d6c4906b083e6c3da12341504b626404 | /src/lib/entitydef/unit_test/main.cpp | b63975e52ed6ff6ccf8eff0305e55f45d1805e6d | [] | no_license | v2v3v4/BigWorld-Engine-2.0.1 | 3a6fdbb7e08a3e09bcf1fd82f06c1d3f29b84f7d | 481e69a837a9f6d63f298a4f24d423b6329226c6 | refs/heads/master | 2023-01-13T03:49:54.244109 | 2022-12-25T14:21:30 | 2022-12-25T14:21:30 | 163,719,991 | 182 | 167 | null | null | null | null | UTF-8 | C++ | false | false | 2,229 | cpp | main.cpp | /******************************************************************************
BigWorld Technology
Copyright BigWorld Pty, Ltd.
All Rights Reserved. Commercial in confidence.
WARNING: This computer program is protected by copyright law and international
treaties. Unauthorized use, reproduction or distribution of this program, or
any portion of this program, may result in the imposition of civil and
criminal penalties as provided by law.
******************************************************************************/
#include "pch.hpp"
#include "chunk/chunk.hpp"
#include "cstdmf/bw_util.hpp"
#include "cstdmf/memory_tracker.hpp"
#include "entitydef/data_description.hpp"
#include "pyscript/py_import_paths.hpp"
#include "pyscript/py_output_writer.hpp"
#include "pyscript/script.hpp"
#include "resmgr/bwresource.hpp"
#include "unit_test_lib/unit_test.hpp"
#include <string>
extern int Math_token;
extern int ResMgr_token;
extern int PyScript_token;
extern int ChunkUserDataObject_token;
extern int PyUserDataObject_token;
extern int UserDataObjectDescriptionMap_Token;
int s_tokens =
Math_token |
ResMgr_token |
PyScript_token |
ChunkUserDataObject_token |
PyUserDataObject_token |
UserDataObjectDescriptionMap_Token;
int main( int argc, char* argv[] )
{
#ifdef ENABLE_MEMTRACKER
MemTracker::instance().setCrashOnLeak( true );
#endif
BWResource bwresource;
std::string binDir = BWUtil::executableDirectory();
binDir += "/../../bigworld/res";
const char *resPaths[3] = { "--res", binDir.c_str(), NULL };
if (!BWResource::init( ARRAY_SIZE( resPaths ), resPaths ))
{
fprintf( stderr, "Could not initialise BWResource\n" );
return 1;
}
// TODO: Could be good to support mutliply start and stopping the Script
// module.
PyImportPaths importPaths;
importPaths.addPath( "." );
if (!Script::init( importPaths ))
{
fprintf( stderr, "Could not initialise Script module" );
return 1;
}
PyOutputWriter::overrideSysMembers( false );
int returnValue = BWUnitTest::runTest( "entitydef", argc, argv );
Script::fini();
// Hmmm... it would be good not to require these
MetaDataType::fini();
// Double hmmm...
Chunk::fini();
DebugFilter::fini();
return returnValue;
}
// main.cpp
|
9ea1289607d65818b5a9ed5813dd674b43a161d7 | ea3704ff07b67e767433da56624d396bd784fd5c | /Header/ShellSort.h | af00e8ec4470814bbc84abeceab2550e53e4ecce | [] | no_license | bestfancc/algorithms | 6fb15372a0c3314e55a7c349e3b4413cda9a0ae1 | b027b7ddb2911565d22472b26da0e528c93a2b46 | refs/heads/master | 2020-03-21T18:33:42.204521 | 2019-01-02T15:02:36 | 2019-01-02T15:02:36 | 138,899,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 286 | h | ShellSort.h | /**
* User: bestfancc
* Email:bestfancc@gmail.com
* Date: 2018/11/20
*/
#include "BaseSort.h"
#ifndef SUANFA_SHELLSORT_H
#define SUANFA_SHELLSORT_H
//希尔排序
class ShellSort :public BaseSort
{
public:
virtual void sort(double *a,int size);
};
#endif //SUANFA_SHELLSORT_H
|
6a245b6357c12427cc0ed57968ee1f1dd3d0ea7d | a2ebf22e6172cadaa2d6e06c0c5778d2284fa723 | /lib/src/facts/linux/dmi_resolver.cc | 29345705e3e139ccb2b24985142abdcdab6adcbf | [
"Apache-2.0"
] | permissive | ferventcoder/facter | 15150ad5bdfb585fe667a70e7670360a88f4f65e | f034727b92992f6f56a76ae1c925e668a7b07161 | refs/heads/master | 2021-01-16T19:31:36.516750 | 2015-06-30T19:14:12 | 2015-06-30T19:14:12 | 10,981,713 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,006 | cc | dmi_resolver.cc | #include <internal/facts/linux/dmi_resolver.hpp>
#include <leatherman/logging/logging.hpp>
#include <facter/util/file.hpp>
#include <boost/filesystem.hpp>
#include <boost/algorithm/string.hpp>
using namespace std;
using namespace facter::util;
using namespace boost::filesystem;
namespace bs = boost::system;
namespace facter { namespace facts { namespace linux {
dmi_resolver::data dmi_resolver::collect_data(collection& facts)
{
data result;
result.bios_vendor = read("/sys/class/dmi/id/bios_vendor");
result.bios_version = read("/sys/class/dmi/id/bios_version");
result.bios_release_date = read("/sys/class/dmi/id/bios_date");
result.board_asset_tag = read("/sys/class/dmi/id/board_asset_tag");
result.board_manufacturer = read("/sys/class/dmi/id/board_vendor");
result.board_product_name = read("/sys/class/dmi/id/board_name");
result.board_serial_number = read("/sys/class/dmi/id/board_serial");
result.chassis_asset_tag = read("/sys/class/dmi/id/chassis_asset_tag");
result.manufacturer = read("/sys/class/dmi/id/sys_vendor");
result.product_name = read("/sys/class/dmi/id/product_name");
result.serial_number = read("/sys/class/dmi/id/product_serial");
result.uuid = read("/sys/class/dmi/id/product_uuid");
result.chassis_type = to_chassis_description(read("/sys/class/dmi/id/chassis_type"));
return result;
}
string dmi_resolver::read(std::string const& path)
{
bs::error_code ec;
if (!is_regular_file(path, ec)) {
LOG_DEBUG("%1%: %2%.", path, ec.message());
return {};
}
string value;
if (!file::read(path, value)) {
LOG_DEBUG("%1%: file could not be read.", path);
return {};
}
boost::trim(value);
return value;
}
}}} // namespace facter::facts::linux
|
fe270afc0bebf202515ee5bff915d362a533aa13 | a68389cd02e6b8d1caa9513040cc4d5f970ae565 | /ChatVR-Windows_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Il2CppCCalculateFieldValues1.cpp | 6374109d1e1fa9121ea91f3e34b11d3ff689837a | [] | no_license | Breality/ChatSpace-VR | 585ace201640d5856fb744be9ee0a262ad6870c7 | a6f2edcf202e726014235444a7239f0d696a14f3 | refs/heads/master | 2023-03-26T22:55:17.157573 | 2021-03-29T03:08:18 | 2021-03-29T03:08:18 | 352,499,841 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,243,603 | cpp | Il2CppCCalculateFieldValues1.cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <limits>
// System.Action`1<System.ArraySegment`1<System.Byte>>
struct Action_1_tC4A1932C3BAC3AB12474910E0F61464B28376DDC;
// System.Action`1<UnityEngine.XR.InteractionSubsystems.ActivateGestureEvent>
struct Action_1_t8449C51FE9FCCB2FF0A192EC12D9EEEE95A985D8;
// System.Action`1<UnityEngine.AsyncOperation>
struct Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31;
// System.Action`1<System.Boolean>
struct Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83;
// System.Action`1<UnityEngine.Camera>
struct Action_1_tF542A16B67D2A30E5C824E6EF0DD0ED4A065680B;
// System.Action`1<UnityEngine.Color32>
struct Action_1_tDE087FB8337F5181D6160B08FC098DCB4808E995;
// System.Action`1<Mirror.SimpleWeb.Connection>
struct Action_1_t767A2E7158577A182BEB480A4907BBABD8F08159;
// System.Action`1<Dissonance.Audio.Playback.DecoderPipeline>
struct Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C;
// System.Action`1<System.Exception>
struct Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90;
// System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>
struct Action_1_t392757B0DD9A2AF4C9115C61CB8035D3604D3194;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputUpdateType>
struct Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7;
// System.Action`1<System.Int32>
struct Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B;
// System.Action`1<System.IntPtr>
struct Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914;
// System.Action`1<Mirror.NetworkConnection>
struct Action_1_tDD0F70E97D1C1787B9CDF47B4B7B69D3C9CA597F;
// System.Action`1<Dissonance.Networking.NetworkMode>
struct Action_1_t78D08A0A3D1C21FB0E352DEA17955B49623F766A;
// System.Action`1<System.Object>
struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC;
// System.Action`1<UnityEngine.Playables.PlayableDirector>
struct Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B;
// System.Action`1<UnityEngine.InputSystem.PlayerInput>
struct Action_1_t0C6E460D99DF87F7BAF9F9E577137631EC948E42;
// System.Action`1<Dissonance.Networking.RoomEvent>
struct Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B;
// System.Action`1<System.String>
struct Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3;
// System.Action`1<Dissonance.Networking.TextMessage>
struct Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97;
// System.Action`1<UnityEngine.VFX.VFXOutputEventArgs>
struct Action_1_t5C8C9298698F95A378E73C4584F33A97EF82A064;
// System.Action`1<Dissonance.Networking.VoicePacket>
struct Action_1_t5A467B8732A616A66CE9622FF81B66822C024784;
// System.Action`1<Dissonance.VoicePlayerState>
struct Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRHoldGestureEvent>
struct Action_1_t73C9A7D5EFA3B3D03B7E0BB20C32DF8C42ECFAE0;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent>
struct Action_1_tF3020183D71BC218BD8379D1E59A2A4181FC3E62;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent>
struct Action_1_t6E7B6A7A2E9E0074FC39F0DE79553455C2DC11BE;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent>
struct Action_1_t30F433DC87338E8C363AAF5AE7DC5A7CB631F28D;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>
struct Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record>
struct Action_1_tC2ABE6D6AAD61029C3A7FE0E69A27C1AFB8DE290;
// System.Action`2<System.ArraySegment`1<System.Byte>,System.Int32>
struct Action_2_tD4220498136D5B8049F5DA471AAB03E317F604AC;
// System.Action`2<UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange>
struct Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F;
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice>
struct Action_2_t4EA3B785FF965DC7089CB1E9267F42935A19E5F1;
// System.Action`2<System.Int32,System.ArraySegment`1<System.Byte>>
struct Action_2_t114340853CF5612872D25F64A7CA982AC91BCFF9;
// System.Action`2<System.Int32,System.Exception>
struct Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67;
// System.Action`2<System.Object,UnityEngine.InputSystem.InputActionChange>
struct Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058;
// System.Action`2<Mirror.Examples.Chat.Player,System.String>
struct Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE;
// System.Action`2<System.String,Dissonance.AudioQuality>
struct Action_2_t473E38F5219024BDD077E6C7B7A5FCCD96097A30;
// System.Action`2<System.String,Dissonance.ChannelProperties>
struct Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456;
// System.Action`2<System.String,Dissonance.CodecSettings>
struct Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F;
// System.Action`2<System.String,Dissonance.FrameSize>
struct Action_2_tF343FAC67EDCECD56758B1365596AEB10A8B627A;
// System.Action`2<Dissonance.VoicePlayerState,System.String>
struct Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99;
// System.Action`3<System.Boolean,System.Boolean,System.Int32>
struct Action_3_t8E4F9AA95E04BAD17F5B7C55ECF0611F34518863;
// System.Action`3<UnityEngine.InputSystem.Users.InputUser,UnityEngine.InputSystem.Users.InputUserChange,UnityEngine.InputSystem.InputDevice>
struct Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52;
// System.Action`3<System.Int32,System.ArraySegment`1<System.Byte>,System.Int32>
struct Action_3_t47376D6133EE9BC1FE8FA49DBD664F9E4D3D4AA0;
// System.Action`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Int64>
struct Action_4_t1062BB9DCD0740556E48D14D768FB56DBAEDA384;
// System.Action`4<UnityEngine.InputSystem.InputControl,System.Double,System.Int64,System.Int32>
struct Action_4_tD518FAD83CD3802EC74EBEDF51225FCD8FD7CD10;
// Dissonance.Networking.Server.BroadcastingClientCollection`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct BroadcastingClientCollection_1_t3F741C631A42928650B1B9A3B3E5531013614930;
// System.Comparison`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct Comparison_1_t560EBE718EAC033C417610C7D1F9640526205BA0;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult>
struct Comparison_1_t47C8B3739FFDD51D29B281A2FD2C36A57DDF9E38;
// System.Comparison`1<UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData>
struct Comparison_1_t5534DE0683D138C32ECDC27ADFC7CDD9415A232A;
// System.Collections.Concurrent.ConcurrentDictionary`2<System.Int32,Mirror.SimpleWeb.Connection>
struct ConcurrentDictionary_2_tFBE52C8624D40D3A5E382857535FC5706937657C;
// Dissonance.Datastructures.ConcurrentPool`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>>
struct ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF;
// Dissonance.Datastructures.ConcurrentPool`1<System.Byte[]>
struct ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64;
// System.Collections.Concurrent.ConcurrentQueue`1<Mirror.SimpleWeb.ArrayBuffer>
struct ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140;
// System.Collections.Concurrent.ConcurrentQueue`1<Mirror.SimpleWeb.Message>
struct ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3;
// Dissonance.Networking.Client.ConnectionNegotiator`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct ConnectionNegotiator_1_tAD71CCC3CD748BCC51CDEE27E5345593CCAB410B;
// System.Collections.Generic.Dictionary`2<Mirror.Examples.MultipleMatch.CellValue,Mirror.Examples.MultipleMatch.CellGUI>
struct Dictionary_2_t21A58570BF69142737A6DA95313A875D27EE6806;
// System.Collections.Generic.Dictionary`2<Dissonance.Audio.Playback.FrameFormat,Dissonance.Datastructures.ConcurrentPool`1<Dissonance.Audio.Playback.DecoderPipeline>>
struct Dictionary_2_t7E150DE9CA8CBE6B725D8B71627DFA90C90CD976;
// System.Collections.Generic.Dictionary`2<System.Guid,System.Collections.Generic.HashSet`1<Mirror.NetworkConnection>>
struct Dictionary_2_t18408A8739CDC98CB4C267D6E79759D21845375D;
// System.Collections.Generic.Dictionary`2<System.Guid,System.Collections.Generic.HashSet`1<Mirror.NetworkIdentity>>
struct Dictionary_2_t0AD6F3FBC670F3334FD89A23E535548066E3E249;
// System.Collections.Generic.Dictionary`2<System.Guid,Mirror.Examples.MultipleMatch.MatchInfo>
struct Dictionary_2_tD45905B3308F3A9FF85973451EA8D635912FBFFB;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Int32>
struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08;
// System.Collections.Generic.Dictionary`2<System.Int32,Mirror.SimpleWeb.WebSocketClientWebGl>
struct Dictionary_2_t01A2131BF985D5E215CEBBE143E11C84C8B2FECA;
// System.Collections.Generic.Dictionary`2<System.Int64,Mirror.Discovery.ServerResponse>
struct Dictionary_2_tDDE9489AE1543EE24275481D4C0DE919F138E279;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Func`1<UnityEngine.InputSystem.Layouts.InputControlLayout>>
struct Dictionary_2_t5FF7E0EBD122DF4C2818E1EBC72616C24A7898E7;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString[]>
struct Dictionary_2_tFA8504CE904CD62B021A37F5A43F67F6C23E48FC;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Layouts.InputControlLayout>
struct Dictionary_2_tA47942F4C0B6F1BDD63537784B660B80EA3D9DF7;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString>
struct Dictionary_2_tAE5AA9DDBBC12053A29F9B0D9C55653F73E75C54;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.String>
struct Dictionary_2_tA38B50B608F2776821B9397832231B38EC41AE99;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Type>
struct Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E;
// System.Collections.Generic.Dictionary`2<Mirror.NetworkConnection,System.Guid>
struct Dictionary_2_tA170FF089B0D79D7FB5F8103E204E2228389FA52;
// System.Collections.Generic.Dictionary`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo>
struct Dictionary_2_tAAEC28EBB63F2A0F01461299811AD67701E18869;
// System.Collections.Generic.Dictionary`2<UnityEngine.SceneManagement.Scene,System.Collections.Generic.HashSet`1<Mirror.NetworkIdentity>>
struct Dictionary_2_tBD3DEFDAD6ABE2273F932674C3C8035AAE714A97;
// System.Collections.Generic.Dictionary`2<System.String,Dissonance.IDissonancePlayer>
struct Dictionary_2_t8817F3A987324CDC7C5F0EA715F3CEE5E46F66BE;
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5;
// System.Collections.Generic.Dictionary`2<System.String,Dissonance.VoicePlayerState>
struct Dictionary_2_t6EA78531C6BD1D0D6869E4AFA23A0A91E400EDC7;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem>
struct Dictionary_2_t7E1F133D1556AAA0EE83A9C3B21974C8302A22CA;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.InputSystem.Utilities.JsonParser/JsonValue>
struct Dictionary_2_t2657880C905B3E6D65E01EF276D9A2058BC4E986;
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.ISubsystem>
struct Dictionary_2_t4F3B5B526335E16355EDBC766052AEAB07B1777B;
// System.Collections.Generic.Dictionary`2<System.UInt16,Dissonance.PlayerChannel>
struct Dictionary_2_tD582F7DE6BB29C0BA60E7DBCAEF74B886482F1B7;
// System.Collections.Generic.Dictionary`2<System.UInt16,Dissonance.RoomChannel>
struct Dictionary_2_t3E57DFB977147681A3B607BBDFCA2879C39EF4F4;
// System.Collections.Generic.Dictionary`2<System.UInt16,System.String>
struct Dictionary_2_t59EE317CA9A434D0722D0151A3A2FC7AC6492429;
// System.Collections.Generic.Dictionary`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,UnityEngine.Terrain>
struct Dictionary_2_t4990FF96A726883A9DEEF78473DD04BB3125158C;
// System.Func`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>>
struct Func_1_t11F4F370029637BDB88D9DF51145F59F3E333BA0;
// System.Func`1<System.Byte[]>
struct Func_1_tD8059ADEA67BC54CB9CB92E8719A3A6BE8473473;
// System.Func`1<Dissonance.Networking.ICommsNetwork>
struct Func_1_t3388F18A852ED93A4A6813FBF9F53705FF0785ED;
// System.Func`1<UnityEngine.XR.WindowsMR.XRAnchorStore>
struct Func_1_t9B5FAF7ADCD1E8916816029C3644CDB5AB837E93;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Int32,Mirror.NetworkConnectionToClient>,System.Boolean>
struct Func_2_t1186B7233CEE692AB7374C6620B782BD969E354C;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,UnityEngine.InputSystem.Utilities.JsonParser/JsonValue>,System.String>
struct Func_2_t79BE3FA148FF3C6F18A760446293B53CB6EDF284;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.String>,System.Boolean>
struct Func_2_t9D8F134C9E54CAE6E15061CDBB5CA955E6F873F4;
// System.Func`2<Dissonance.BaseCommsTrigger,System.Boolean>
struct Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508;
// System.Func`2<System.Char,System.Boolean>
struct Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A;
// System.Func`2<System.Exception,System.Boolean>
struct Func_2_t6283F9D1F2A6C8BB45F72CDAD5856BC3FDF29C3F;
// System.Func`2<UnityEngine.UI.InputField,System.Boolean>
struct Func_2_t024C0A7C543DB721C2F3FB161CD9AB3EAF246786;
// System.Func`2<UnityEngine.InputSystem.LowLevel.InputUpdateType,System.Boolean>
struct Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE;
// System.Func`2<UnityEngine.InputSystem.Utilities.InternedString,System.String>
struct Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A;
// System.Func`2<Dissonance.LogCategory,System.Int32>
struct Func_2_t68D1CD9CD53C6A7AEBEDC071D3379856F36023DA;
// System.Func`2<UnityEngine.InputSystem.Utilities.NameAndParameters,System.String>
struct Func_2_t5E3D63532BD1661CDCB3BB8B3A400B52910EAC69;
// System.Func`2<UnityEngine.InputSystem.Utilities.NamedValue,System.String>
struct Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57;
// System.Func`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo>
struct Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString>
struct Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.AecSuppressionLevels>
struct Func_2_tA9BDCBBEB71CE336A58F177827521DC1044A47ED;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.AecmRoutingMode>
struct Func_2_t0C5792E29EB9CC3B19190C3495C4FEED52A2D42C;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.NoiseSuppressionLevels>
struct Func_2_tE5326E03A425FADD1D84C2B2EF14083E7214F452;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.VadSensitivityLevels>
struct Func_2_tF2895A2A5370D7EA225167E0401B6007581CFA02;
// System.Func`2<UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem,System.String>
struct Func_2_t3D1E1E8061D4CF9019FF4A0140DB88184189A04B;
// System.Func`2<UnityEngine.InputSystem.Utilities.JsonParser/JsonValue,System.String>
struct Func_2_t5FBAA27D01DE58A7A7E8FD3AEB979E13498F15A3;
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean>
struct Func_3_tD9575C6FC5ED9BEECD456B91570103C1729D05E5;
// System.Func`3<System.String,Dissonance.AudioQuality,Dissonance.AudioQuality>
struct Func_3_tB0205164890D22AA643059B40E1963E0EECD10F5;
// System.Func`3<System.String,Dissonance.FrameSize,Dissonance.FrameSize>
struct Func_3_t1C022D4F055858AB2BB00F4FEFC88961768C4302;
// System.Func`3<System.String,System.Int32,System.Collections.Generic.KeyValuePair`2<System.UInt16,System.String>>
struct Func_3_t4659ECF91981588BB5823DBD033881A20E516CFB;
// System.Func`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean>
struct Func_4_tEF59657BD58790AC17A23EB03335705A0F993224;
// Mirror.Grid2D`1<Mirror.NetworkConnection>
struct Grid2D_1_tC786F7DED4BEF8B433939EB9BCC28385BD615D2A;
// System.Collections.Generic.HashSet`1<UnityEngine.InputSystem.Utilities.InternedString>
struct HashSet_1_t0E3574D88D302F9A170D67757DB280451225C974;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Management.XRLoader>
struct HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6;
// System.Collections.Generic.IComparer`1<System.String>
struct IComparer_1_t9D94970C7FA2307DB453148499A627C3F64331AE;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.String>>
struct IEnumerable_1_tD97CF3B7663B1E107B513CD0E4891FB9EE646853;
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38;
// Dissonance.Datastructures.IRecycler`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>>
struct IRecycler_1_t861C6379A216AD29E63B1E3E519D4CEE12866FC3;
// Dissonance.Networking.BaseCommsNetwork`5/IState<Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer,Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient,Dissonance.Integrations.MirrorIgnorance.MirrorConn,Dissonance.Unit,Dissonance.Unit>
struct IState_tBDF8A4839CAF87BC4F8D6DFC5C875AF86D9F609C;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.XR.Bone>
struct InputProcessor_1_tCA8506517B37A8D2A1A50F012BBB333526DBD074;
// UnityEngine.InputSystem.InputProcessor`1<System.Double>
struct InputProcessor_1_t9DA531BFC4BF6C3C20E3702BA15C74B7848D4B32;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.XR.Eyes>
struct InputProcessor_1_t37521CB73AF2FA9C09F06598ED0F38D4B964EF0F;
// UnityEngine.InputSystem.InputProcessor`1<System.Int32>
struct InputProcessor_1_t21D82C0318D0E3A650343B394D0065575B5012ED;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Quaternion>
struct InputProcessor_1_tAD36CCFAB97386AE002785AC2C2FD827D243874B;
// UnityEngine.InputSystem.InputProcessor`1<System.Single>
struct InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.TouchPhase>
struct InputProcessor_1_t8A948F94E00456CCC7891205ABDA93F8B972545A;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputProcessor_1_t92BEBDA259FFB7276E98E415C3B3D3DCFF5A1367;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>
struct InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector3>
struct InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap>
struct KeyCollection_t749DBEFA13BA24F77DF2C12137D5331F541F3B15;
// System.Collections.Generic.KeyValuePair`2<UnityEngine.InputSystem.Utilities.InternedString,System.Object>
struct KeyValuePair_2_t8437CFCF35B557B23AD6F0D32340D2791BC7E990;
// System.Collections.Generic.List`1<System.ArraySegment`1<System.Byte>>
struct List_1_tAC5780506F34558E53CD51BF8B2E6633C667059B;
// System.Collections.Generic.List`1<System.Single[]>
struct List_1_t497D7DE6115163D5A37B3548DB4B1051ED42E019;
// System.Collections.Generic.List`1<UnityEngine.XR.LegacyInputHelpers.ArmModelTransition>
struct List_1_t4AD417C23F654717B58D1A5F4AC2744627D6749F;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
struct List_1_t39946D94B66FAE9B0DED5D3A84AD116AF9DDDCC1;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
struct List_1_tEF3D2378B547F18609950BEABF54AF34FBBC9733;
// System.Collections.Generic.List`1<UnityEngine.GameObject>
struct List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5;
// System.Collections.Generic.List`1<Dissonance.Audio.Capture.IMicrophoneSubscriber>
struct List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1;
// System.Collections.Generic.List`1<Dissonance.VAD.IVoiceActivationListener>
struct List_1_tCCDF71E53021357B4D855C099B7432593A80C03E;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>
struct List_1_t5CF69F3C4DB94B482FE2B3DB5E0587D062A31D4C;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7;
// System.Collections.Generic.List`1<Dissonance.LogLevel>
struct List_1_tE4E393CEA3E9417EDFED1DA92029B804E91BC4FA;
// System.Collections.Generic.List`1<Mirror.NetworkConnection>
struct List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB;
// System.Collections.Generic.List`1<Mirror.NetworkRoomPlayer>
struct List_1_t12E07DEAE79B9E370C8C88598C5BC4D3A5B328A6;
// System.Collections.Generic.List`1<Mirror.Examples.Basic.Player>
struct List_1_t7EE8AD10A31DC45B87819C12220F9C5FCB9BC828;
// System.Collections.Generic.List`1<System.ComponentModel.PropertyChangedEventHandler>
struct List_1_tB6945C4024192C43286A9102644AACC8A59C1002;
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>
struct List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447;
// System.Collections.Generic.List`1<Dissonance.RemoteChannel>
struct List_1_tB90370531F6ADBA86DD9F181B2FB70CEDA9AA682;
// System.Collections.Generic.List`1<Dissonance.RoomMembership>
struct List_1_tACF496AFFDE7D9C395D1B4060C4300275E8D3F94;
// System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene>
struct List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2;
// System.Collections.Generic.List`1<Mirror.Cloud.Example.ServerListUIItem>
struct List_1_t36A6E36EADBFDAA5E030637E01D34A68D99629AC;
// System.Collections.Generic.List`1<System.Single>
struct List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA;
// System.Collections.Generic.List`1<System.String>
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3;
// System.Collections.Generic.List`1<UnityEngine.SubsystemDescriptor>
struct List_1_t32E50BD66297C6541AEA401E1C13D4EC530CC56B;
// System.Collections.Generic.List`1<Mirror.SyncObject>
struct List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156;
// System.Collections.Generic.List`1<UnityEngine.Transform>
struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0;
// System.Collections.Generic.List`1<System.UInt16>
struct List_1_tBBC4E953860E582A3E060CC10B1387AFC5A36FC5;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.XR.UsageHint>
struct List_1_t571FC509DE86251A12DF4812CF4AB2577D9D9C94;
// System.Collections.Generic.List`1<Dissonance.VoicePlayerState>
struct List_1_t1F9759DA97A37E8AB1E682B486518AD112873ED1;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor>
struct List_1_tDED98C236097B36F9015B396398179A6F8A62E50;
// System.Collections.Generic.List`1<UnityEngine.XR.XRDisplaySubsystemDescriptor>
struct List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.XR.XRFeatureDescriptor>
struct List_1_tDF217C044E63C826CDD699480A5CDC6DC952D0BA;
// System.Collections.Generic.List`1<UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor>
struct List_1_tFDF63FE53408489D6A2F16814E1594D8AF3B4942;
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem>
struct List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4;
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystemDescriptor>
struct List_1_t885BD663DFFEB6C32E74934BE1CE00D566657BA0;
// System.Collections.Generic.List`1<UnityEngine.XR.Management.XRLoader>
struct List_1_t6331523A19E51FB87CA899920C03B10A48A562B0;
// System.Collections.Generic.List`1<UnityEngine.XR.XRMeshSubsystemDescriptor>
struct List_1_tA4CB3CC063D44B52D336C5DDA258EF7CE9B98A94;
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>
struct List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor>
struct List_1_tDA25459A722F5B00FFE84463D9952660BC3F6673;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor>
struct List_1_t4A0E7C5254B1CFED3739E96929DB17DE511CEA1C;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>
struct List_1_t5268E05431CC1AEF3E23C0EDE5B33E2160D57A44;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.Utilities.JsonParser/JsonValue>
struct List_1_tE21CDEF5093DAE74219FD3CA75E81EA9E5DA8574;
// System.Collections.Generic.List`1<Mirror.NetworkRoomManager/PendingPlayer>
struct List_1_t38A5A5E401291927667E9840827169D1FFDA2EFC;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData>
struct List_1_t346A4398199DF77337DC6F4722671C87FFC58E36;
// System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose>
struct List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248;
// System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>
struct List_1_t33EFE71131470863D507CAF630920B63D09EBA7D;
// System.Collections.Generic.List`1<UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData>
struct List_1_t60B9CBF17F0BC53257EC16939D6BA3B183B58E3F;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher>
struct List_1_tCD03EFE7B0D4807007EF1EB1EA0C8E62F8C33243;
// Dissonance.Threading.LockedValue`1<System.IntPtr>
struct LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E;
// Dissonance.Threading.LockedValue`1<Dissonance.Audio.Playback.PlaybackOptions>
struct LockedValue_1_t9CB12AECE65CC17C452CD271323CB05CBAE820E6;
// Dissonance.Threading.LockedValue`1<NAudio.Wave.WaveFileWriter>
struct LockedValue_1_t716427A3458F1D0388CCD2371C906BFAA9CDA64E;
// HandyCollections.Heap.MinHeap`1<Dissonance.Networking.VoicePacket>
struct MinHeap_1_t0F4AB65671BD330993C2934421706F4485E0ECD1;
// Dissonance.Datastructures.Pool`1<Dissonance.ChannelProperties>
struct Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E;
// Dissonance.Datastructures.Pool`1<Dissonance.Audio.Playback.VoicePlayback>
struct Pool_1_t9AF1D81BC156A602FF6DF900480ACD3426F2901A;
// System.Predicate`1<UnityEngine.GameObject>
struct Predicate_1_tA7752B0A4A9766B08D060160D0440B3FA7475B0B;
// System.Predicate`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor>
struct Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3;
// System.Collections.Generic.Queue`1<Dissonance.Networking.BaseCommsNetwork`5/IState<Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer,Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient,Dissonance.Integrations.MirrorIgnorance.MirrorConn,Dissonance.Unit,Dissonance.Unit>>
struct Queue_1_tBF6B653A982896460424073BA4349C60AFD793D0;
// System.Collections.Generic.Queue`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.UInt32>>
struct Queue_1_tEA0E6416EAD27E48B243348D24732434E0C19CBF;
// System.Collections.Generic.Queue`1<LogEntry>
struct Queue_1_t5543B1E1DBA4BCCB1ACCAC3ADDA974B47B507971;
// System.Collections.Generic.Queue`1<Dissonance.Audio.Playback.SpeechSession>
struct Queue_1_t639714B43606F2231F81C8D78C34EFDB9944A8D9;
// System.Collections.Generic.Queue`1<Dissonance.Demo.ChatLogController/ChatLogEntry>
struct Queue_1_tEFC6C725E408C2AB7A61282DE3B17E7F0E55FF13;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.String>
struct ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28;
// System.Collections.ObjectModel.ReadOnlyCollection`1<Dissonance.VoicePlayerState>
struct ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24;
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.Audio.Capture.IMicrophoneSubscriber>>
struct ReadonlyLockedValue_1_t2E2291D836CF4B3033F5D5AA07429A6066CB7187;
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.VAD.IVoiceActivationListener>>
struct ReadonlyLockedValue_1_t1DDB0BC1CBF89D1A072EC6E4E0E5E769813DEBD2;
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>>
struct ReadonlyLockedValue_1_tEF0F4999B780816F08D1C8BCF4F0FE810EE86FF2;
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.Networking.Client.EventQueue/NetworkEvent>>
struct ReadonlyLockedValue_1_tD465C7F8735FD73FA413FC29534FCB0D61FD237E;
// Dissonance.Threading.ReadonlyLockedValue`1<Dissonance.Datastructures.Pool`1<System.Byte[]>>
struct ReadonlyLockedValue_1_t8390FC2C35847E0732A73548E8E21CBAAA51F038;
// Dissonance.Threading.ReadonlyLockedValue`1<Dissonance.Audio.Codecs.IVoiceEncoder>
struct ReadonlyLockedValue_1_tC39DD07E32DF4E1EF5BD6D078E44E39C5C78DCFA;
// Dissonance.Datastructures.RingBuffer`1<System.Boolean>
struct RingBuffer_1_t256913632BC857184C5CF26218BEF30965CCD7B3;
// Dissonance.Datastructures.RingBuffer`1<System.Single>
struct RingBuffer_1_t4315BC8919DE2735CA5A405E59ECB998F4E9598C;
// Dissonance.Networking.Client.SendQueue`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct SendQueue_1_tDB5EF63D43AD1A1574E4335741EFD13BB411862C;
// Dissonance.Networking.Server.ServerRelay`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct ServerRelay_1_tDDBE58373C06BD60C501B887B411CD2AC48148AD;
// Dissonance.Networking.Client.SlaveClientCollection`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct SlaveClientCollection_1_tBC29ABC58EEF5EE36B3051C7AEF3DC9E24398E19;
// Mirror.SyncDictionary`2<Mirror.NetworkIdentity,Mirror.Examples.MultipleMatch.MatchPlayerData>
struct SyncDictionary_2_t8A6D4F99FF2865D416595C6EEECC24FB3912BA20;
// Dissonance.Networking.Client.TextReceiver`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct TextReceiver_1_tACD4599E57CCE8587217AAD444CE433CC3E35248;
// Dissonance.Networking.Client.TextSender`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct TextSender_1_t8102972DFF58CEA10A1CE868646582BF946828DC;
// Dissonance.Datastructures.TransferBuffer`1<System.Single>
struct TransferBuffer_1_t6DDAF9101E0ED4BF18A87145CEE768CFD9B00D3E;
// Dissonance.Datastructures.TransferBuffer`1<Dissonance.Networking.VoicePacket>
struct TransferBuffer_1_tB145027F08C9ECAE887B4763DB580F67940D20D6;
// Dissonance.Datastructures.TransferBuffer`1<Dissonance.Logs/LogMessage>
struct TransferBuffer_1_t0FF807875488268C2EBBD8F2C019408B3C308773;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap>
struct ValueCollection_tF5A29AA52483C44A9B166F23F45001565015B4EB;
// Dissonance.Networking.Client.VoiceReceiver`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct VoiceReceiver_1_t55DD08D7D3AA4245E26A230E2062034AC3A3D937;
// Dissonance.Networking.Client.VoiceSender`1<Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct VoiceSender_1_t7D62AC56D772A7C409629D0109972978AC83D2E5;
// System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>[]
struct Action_1U5BU5D_tDDE2156C908F39DC45E0C5BF07A78027BD505244;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>[]
struct Action_1U5BU5D_t3C1BD0EC95480F22CA692861B72AB4FF8BFA6C4B;
// System.Action`1<UnityEngine.InputSystem.PlayerInput>[]
struct Action_1U5BU5D_tBDD576064FED02690E78A91E67198C3FA991D48D;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>[]
struct Action_1U5BU5D_tD756925E5F23D9B8CE84B56AB4058C1794A78041;
// System.Action`2<UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr>[]
struct Action_2U5BU5D_t625E6B7C7EBD503714FD631C4057076CAADDBC8F;
// System.Action`3<UnityEngine.InputSystem.Users.InputUser,UnityEngine.InputSystem.Users.InputUserChange,UnityEngine.InputSystem.InputDevice>[]
struct Action_3U5BU5D_tA3B6EBDDE3F5F9C8906A47EF0508ADBA3E13CCFC;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap>[]
struct EntryU5BU5D_t8F8773833E17C6A0E66C03DDD293977F035F44EC;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.XR.Bone>[]
struct InputProcessor_1U5BU5D_t6D636A5E2986861F9AC1E4271A2B8D8CB0D6A238;
// UnityEngine.InputSystem.InputProcessor`1<System.Double>[]
struct InputProcessor_1U5BU5D_t1ACC7E4B50EA467C0CAE902DAF3537AF72C68B93;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.XR.Eyes>[]
struct InputProcessor_1U5BU5D_tC4DBBA2C3CEC072F573298582CA4264D7743E9B2;
// UnityEngine.InputSystem.InputProcessor`1<System.Int32>[]
struct InputProcessor_1U5BU5D_t8382BF9F3A5BE46D9F9573BD40879B291E8DDBF9;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Quaternion>[]
struct InputProcessor_1U5BU5D_t2CA73D6AD9E9E555C3DD084C5C92E389FAE74684;
// UnityEngine.InputSystem.InputProcessor`1<System.Single>[]
struct InputProcessor_1U5BU5D_tEECE90C638097487F8CB8CBFDF48F647326251F7;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.TouchPhase>[]
struct InputProcessor_1U5BU5D_t36B6A48E77993EB94FECB02040333AA3826D6F40;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.LowLevel.TouchState>[]
struct InputProcessor_1U5BU5D_tD347EDB2271CD8F66750A4168568087A4B79376D;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>[]
struct InputProcessor_1U5BU5D_tE96161B725565BF82932B2577AED3ACDD86B394C;
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector3>[]
struct InputProcessor_1U5BU5D_tC29D5C6F972DA562431D70C8A279F06F23A975A9;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>[]
struct KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48;
// System.Collections.Generic.KeyValuePair`2<UnityEngine.InputSystem.Utilities.InternedString,System.Object>[]
struct KeyValuePair_2U5BU5D_tD091D99F54F79B269CC17F6E7BBE1B5F3F3E92D0;
// UnityEngine.AnimatorControllerParameter[]
struct AnimatorControllerParameterU5BU5D_t51A7788330152A26BE85C81C904CD9C874598EDE;
// Dissonance.BaseCommsTrigger[]
struct BaseCommsTriggerU5BU5D_tD91FC845C04F69A37B0218A3679CD57397650F16;
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
// Mirror.SimpleWeb.BufferBucket[]
struct BufferBucketU5BU5D_t31BDD9BB794E8F63CF5FC07EA3AF282E339439EF;
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// UnityEngine.InputSystem.EnhancedTouch.Finger[]
struct FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0;
// UnityEngine.InputSystem.Gamepad[]
struct GamepadU5BU5D_tADC6AE9AAC4D620747969774FDC2F65081D07994;
// UnityEngine.InputSystem.InputAction[]
struct InputActionU5BU5D_tFB9A0AC479A696221583FE41D91E1999E5C4BDC4;
// UnityEngine.InputSystem.InputActionMap[]
struct InputActionMapU5BU5D_t8CFF380A45911DF7C74E5A80E22F99918AA012E0;
// UnityEngine.InputSystem.InputActionState[]
struct InputActionStateU5BU5D_tB047A6015D8DCFE82B9CBC278A8F4B44BC4944C1;
// UnityEngine.InputSystem.InputControl[]
struct InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7;
// UnityEngine.InputSystem.InputDevice[]
struct InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24;
// UnityEngine.InputSystem.Users.InputUser[]
struct InputUserU5BU5D_t2ECAB832F3121C09778A45471474155A3D1359E8;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// UnityEngine.InputSystem.Utilities.InternedString[]
struct InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95;
// Mirror.Cloud.ListServerService.KeyValue[]
struct KeyValueU5BU5D_t2A2C9FE161E3BDAEE4DB89FD0BC9BC94712358D9;
// Mirror.Examples.MultipleMatch.MatchInfo[]
struct MatchInfoU5BU5D_tE0CCFDB0A3251D86BDE9E129AC74744828045150;
// UnityEngine.InputSystem.Utilities.NameAndParameters[]
struct NameAndParametersU5BU5D_t2466D89C902D694BABA1EC06710098003006C805;
// UnityEngine.InputSystem.Utilities.NamedValue[]
struct NamedValueU5BU5D_t068C676C52C41C54DF8C431D510051E712E4FBDC;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// Mirror.Examples.MultipleMatch.PlayerInfo[]
struct PlayerInfoU5BU5D_t3D0A3C42EE97C97D72728BAA3654556B5A3C99D8;
// UnityEngine.InputSystem.PlayerInput[]
struct PlayerInputU5BU5D_tAF5068150849B59DB571B74CDB7CEFABCDDA90F4;
// UnityEngine.InputSystem.Pointer[]
struct PointerU5BU5D_t592015C59CE1B29F8FED33A0A2C36A0DE3A827B8;
// UnityEngine.InputSystem.UI.PointerModel[]
struct PointerModelU5BU5D_t590CFD9DF7B935E2AA16D64A6FD958543D7415B5;
// Mirror.Cloud.ListServerService.ServerJson[]
struct ServerJsonU5BU5D_t5869F80E502452D21643CC0B75C3E7B019911641;
// System.Single[]
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
// UnityEngine.InputSystem.EnhancedTouch.Touch[]
struct TouchU5BU5D_tD0D34FBC901C4753544349F768BE6F9840B43A4F;
// UnityEngine.InputSystem.Touchscreen[]
struct TouchscreenU5BU5D_t69A59345DAE1F55AAF31E95EEF09C34F92CBC541;
// UnityEngine.InputSystem.UI.TrackedDeviceRaycaster[]
struct TrackedDeviceRaycasterU5BU5D_t5C5883E9BE95892047C0B1C3114238E5CB9748AB;
// System.UInt64[]
struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA;
// UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor[]
struct HIDCollectionDescriptorU5BU5D_tED5DE85471097AA3625D7CE7A3C0AE1450E644D2;
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor[]
struct HIDElementDescriptorU5BU5D_t26190AF45F71BF4163B4E5DB6A9F424B2E9E0471;
// UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage[]
struct HIDPageUsageU5BU5D_t19A60A4D2B527A660CA96FE5B658E5F1D3750AB0;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem[]
struct ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson[]
struct ControlItemJsonU5BU5D_tDF16EC641652E35F42D90B60C753DF09F188CF7B;
// UnityEngine.InputSystem.InputControlScheme/DeviceRequirement[]
struct DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[]
struct DeviceInfoU5BU5D_tE904BBEAFB84F98A3635CA21223E62B9D89CDF43;
// UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection[]
struct OngoingAccountSelectionU5BU5D_t105469891865A4ECAD348DAAFBB4E709E82FDBCE;
// UnityEngine.InputSystem.Users.InputUser/UserData[]
struct UserDataU5BU5D_t5E059C5F41EE12689E296EE5EB6AFF369E81DA8F;
// UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo[]
struct OnScreenDeviceInfoU5BU5D_t24916F5CFCC7E980DCE0944066FB4724EC60D2E3;
// UnityEngine.InputSystem.PlayerInput/ActionEvent[]
struct ActionEventU5BU5D_tCA45F63827E00649F086A33E7259C839CC5D811F;
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation/SimulatedTouch[]
struct SimulatedTouchU5BU5D_t8953BAB69DB02999DE5A5B75DE89C2D85B04036E;
// UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRPlane[]
struct WMRPlaneU5BU5D_tC28080B40113E442BC0C9D74D326973B2C2E136F;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson/Capability[]
struct CapabilityU5BU5D_t59DCD2AF33973359753487FD30B891BD661DFBBC;
// System.Double[0...,0...]
struct DoubleU5BU2CU5D_t469708E84B24DAB3E509BDEC941060C69370193E;
// System.Action
struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6;
// UnityEngine.InputSystem.LowLevel.ActionEvent
struct ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF;
// Mirror.Examples.Additive.AdditiveNetworkManager
struct AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74;
// UnityEngine.AndroidJavaClass
struct AndroidJavaClass_t52E934B16476D72AA6E4B248F989F2F825EB62D4;
// UnityEngine.AndroidJavaRunnable
struct AndroidJavaRunnable_tFA31E7D68EAAEB756F1B8F2EF8344C24042EDD60;
// UnityEngine.Animator
struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149;
// Mirror.Cloud.ApiConnector
struct ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80;
// UnityEngine.XR.LegacyInputHelpers.ArmModel
struct ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768;
// Mirror.SimpleWeb.ArrayBuffer
struct ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// UnityEngine.AsyncOperation
struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86;
// UnityEngine.AudioClip
struct AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE;
// Dissonance.Audio.AudioFileWriter
struct AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A;
// UnityEngine.Experimental.Audio.AudioSampleProvider
struct AudioSampleProvider_tD8B613D55D09D6CE86B851A5D8F33560FFCC705B;
// UnityEngine.AudioSource
struct AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B;
// System.Threading.AutoResetEvent
struct AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D;
// UnityEngine.InputSystem.Controls.AxisControl
struct AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD;
// UnityEngine.EventSystems.AxisEventData
struct AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E;
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E;
// UnityEngine.EventSystems.BaseInput
struct BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D;
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924;
// UnityEngine.Experimental.XR.Interaction.BasePoseProvider
struct BasePoseProvider_t04EB173A7CC01D10EF789D54577ACAEBFAD5B04E;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876;
// UnityEngine.Yoga.BaselineFunction
struct BaselineFunction_t7C180BD26F5C8850EEDDBEC2471D9A466EF0D24A;
// Mirror.Authenticators.BasicAuthenticator
struct BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309;
// System.IO.BinaryWriter
struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F;
// Mirror.SimpleWeb.BufferPool
struct BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC;
// Dissonance.Audio.Playback.BufferedDecoder
struct BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB;
// Dissonance.Audio.Capture.BufferedSampleProvider
struct BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF;
// UnityEngine.UI.Button
struct Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D;
// UnityEngine.InputSystem.Controls.ButtonControl
struct ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE;
// UnityEngine.Camera
struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C;
// UnityEditor.XR.LegacyInputHelpers.CameraOffset
struct CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D;
// UnityEngine.Canvas
struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA;
// Mirror.Examples.MultipleMatch.CanvasController
struct CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D;
// UnityEngine.CanvasGroup
struct CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F;
// Dissonance.Audio.Capture.CapturePipelineManager
struct CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B;
// Dissonance.ChannelProperties
struct ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8;
// UnityEngine.CharacterController
struct CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E;
// Dissonance.Demo.ChatLogController
struct ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4;
// Mirror.Examples.Chat.ChatWindow
struct ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B;
// Mirror.SimpleWeb.ClientHandshake
struct ClientHandshake_t3E9C39478EEC2624B360B1AC80376DE447365F41;
// Mirror.SimpleWeb.ClientSslHelper
struct ClientSslHelper_t12C64C0DE7596082EDDDE82258586B251B3BACF2;
// Dissonance.CodecSettingsLoader
struct CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619;
// UnityEngine.Collider
struct Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02;
// UnityEngine.XR.ARSubsystems.ConfigurationChooser
struct ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4;
// Mirror.SimpleWeb.Connection
struct Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721;
// UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7;
// Dissonance.Threading.DThread
struct DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42;
// Dissonance.Audio.Playback.DecoderPipeline
struct DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// Dissonance.DissonanceComms
struct DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901;
// UnityEngine.InputSystem.Controls.DoubleControl
struct DoubleControl_tFADBAC12A9645997D2FE941F0A194E86FFECBABF;
// UnityEngine.InputSystem.Controls.DpadControl
struct DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049;
// Dissonance.Audio.Playback.EncodedAudioBuffer
struct EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43;
// Dissonance.Audio.Capture.EncoderPipeline
struct EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750;
// Dissonance.Networking.Client.EventQueue
struct EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C;
// System.Exception
struct Exception_t;
// UnityEngine.InputSystem.UI.ExtendedPointerEventData
struct ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F;
// UnityEngine.InputSystem.EnhancedTouch.Finger
struct Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB;
// UnityEngine.GameObject
struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319;
// UnityEngine.GlobalJavaObjectRef
struct GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289;
// UnityEngine.UI.Graphic
struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24;
// Dissonance.Audio.Capture.IAmplitudeProvider
struct IAmplitudeProvider_tEE745F5C4578355911DFBD5AC765A98D81CB2A42;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// Mirror.SimpleWeb.IBufferOwner
struct IBufferOwner_tFFAB95F74F3660C2FFF41ED1EED9EABFAA42A7AE;
// Dissonance.Audio.Capture.IChannelPriorityProvider
struct IChannelPriorityProvider_t8FDD8EF443B79DE129D45B63856DFB30797B778F;
// Dissonance.Networking.ICommsNetwork
struct ICommsNetwork_t9C1011CF7DA66433BC9D79FCF72DCC8427D15B78;
// Dissonance.Audio.Playback.IDecoderPipeline
struct IDecoderPipeline_t7F1BE33BF1DA7BA7DB3D5FD34AB54DC25BB74833;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// Dissonance.IDissonancePlayer
struct IDissonancePlayer_tB842F82BC6942C8A13E27FA89A84F1252886C5CC;
// Dissonance.Audio.Capture.IFrameProvider
struct IFrameProvider_t85EFA862974B5C19C7F5E5083E03D449F6EC724D;
// Dissonance.Audio.Playback.IFrameSource
struct IFrameSource_t2FD8C44141E6482CCB3821B2CD92697EA609B667;
// UnityEngine.InputSystem.IInputActionCollection
struct IInputActionCollection_tA8932ACD7E5FF8C58DE24F70039D95E09DD2C875;
// UnityEngine.InputSystem.LowLevel.IInputRuntime
struct IInputRuntime_t55ADA76286155015F72FCBCFE38F6477EE9E41EC;
// Dissonance.Audio.Playback.IJitterEstimator
struct IJitterEstimator_t53C3E24030EC548ED2A78205CAD69E47BD445E30;
// Dissonance.ILossEstimator
struct ILossEstimator_t076C627055BF437E1AB269B0CF7E6731ACA95CA1;
// Dissonance.Audio.Capture.IMicrophoneCapture
struct IMicrophoneCapture_t421372E588FA3B4A2BB6DFE82EB21AA34F8C18B8;
// System.Net.IPEndPoint
struct IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E;
// Dissonance.Audio.Capture.IPreprocessingPipeline
struct IPreprocessingPipeline_tBA6E5B7FF45BA8135685C29D838B3022B80FA181;
// Dissonance.Audio.Playback.IPriorityManager
struct IPriorityManager_tE5069979B00FB4DF9448609EBB7B73DF57748C96;
// Dissonance.Audio.Playback.IRateProvider
struct IRateProvider_tECEA35DE5B20EB0A5B475AF80DA4DEB984627A0C;
// Dissonance.Audio.Playback.IRemoteChannelProvider
struct IRemoteChannelProvider_t17C16535B0ACC34424685A7CF082FD3C54AC416A;
// NAudio.Wave.ISampleProvider
struct ISampleProvider_t2AA99D294395DF11B4539312CEDD11DA7DDA5FA4;
// Dissonance.Audio.Playback.ISampleSource
struct ISampleSource_tB5A765F782CF6C5A8207AF2FE50FEB5108829F5B;
// UnityEngine.ISubsystemDescriptor
struct ISubsystemDescriptor_tEB935323042076ECFC076435FBD756B1E7953A14;
// Dissonance.Audio.Codecs.IVoiceDecoder
struct IVoiceDecoder_t25BE25A490A01411F6BAA08F46B1E0675B20873E;
// Dissonance.Audio.Playback.IVoicePlaybackInternal
struct IVoicePlaybackInternal_tCE2BF4ECCE0FADEC52541AF9F3B11997F33C58A1;
// Dissonance.Audio.Playback.IVolumeProvider
struct IVolumeProvider_t355887CF212FA412ED7E6A16C7F53025B694D8F1;
// UnityEngine.UI.Image
struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C;
// UnityEngine.InputSystem.InputAction
struct InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60;
// UnityEngine.InputSystem.InputActionAsset
struct InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF;
// UnityEngine.InputSystem.InputActionMap
struct InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB;
// UnityEngine.InputSystem.InputActionReference
struct InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5;
// UnityEngine.InputSystem.InputActionState
struct InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E;
// UnityEngine.InputSystem.Utilities.InputActionTrace
struct InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8;
// UnityEngine.InputSystem.InputControl
struct InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008;
// UnityEngine.InputSystem.InputDevice
struct InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59;
// UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate
struct InputDeviceExecuteCommandDelegate_t45AC4F6B3E20B2281CB61D999CD25853C8D847C2;
// UnityEngine.InputSystem.LowLevel.InputEvent
struct InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96;
// UnityEngine.InputSystem.LowLevel.InputEventTrace
struct InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2;
// UnityEngine.UI.InputField
struct InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0;
// UnityEngine.InputSystem.LowLevel.InputStateHistory
struct InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA;
// UnityEngine.InputSystem.UI.InputSystemUIInputModule
struct InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB;
// UnityEngine.InputSystem.LowLevel.InputUpdateDelegate
struct InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA;
// UnityEngine.InputSystem.InputValue
struct InputValue_t7DAE4709CBEB6C72C828D8E5A6A42E51DE6EF6B0;
// UnityEngine.InputSystem.Controls.IntegerControl
struct IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9;
// UnityEngine.Light
struct Light_tA2F349FE839781469A0344CF6039B51512394275;
// Dissonance.LocalVoicePlayerState
struct LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1;
// Dissonance.Log
struct Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0;
// System.Threading.ManualResetEventSlim
struct ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E;
// Mirror.Examples.MultipleMatch.MatchController
struct MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69;
// UnityEngine.Material
struct Material_t8927C00353A72755313F046D0CE85178AE8218EE;
// UnityEngine.Yoga.MeasureFunction
struct MeasureFunction_tBD19E8A44621B4D553785068ECCF0439CD9666C6;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient
struct MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD;
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork
struct MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03;
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer
struct MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7;
// Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager
struct MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F;
// UnityEngine.AI.NavMeshAgent
struct NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B;
// Mirror.NetworkAnimator
struct NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550;
// Mirror.NetworkAuthenticator
struct NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF;
// Mirror.NetworkConnection
struct NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311;
// Mirror.Discovery.NetworkDiscovery
struct NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26;
// Mirror.NetworkIdentity
struct NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6;
// Mirror.Cloud.Example.NetworkManagerListServer
struct NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2;
// Mirror.Cloud.Example.NetworkManagerListServerPong
struct NetworkManagerListServerPong_tFD0529F7ADF9CE633C97C0815CBA838C5A5D8BD5;
// Mirror.NetworkRoomPlayer
struct NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F;
// UnityEngine.InputSystem.OnScreen.OnScreenControl
struct OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381;
// Dissonance.Audio.OpenChannelVolumeDuck
struct OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1;
// Dissonance.Datastructures.POTBuffer
struct POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A;
// Dissonance.Networking.Client.PacketDelaySimulator
struct PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A;
// Dissonance.Datastructures.PacketLossCalculator
struct PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE;
// Dissonance.PacketLossMonitor
struct PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC;
// Dissonance.PlaybackPool
struct PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA;
// Mirror.Examples.Basic.Player
struct Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8;
// Dissonance.PlayerChannels
struct PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC;
// Dissonance.PlayerCollection
struct PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8;
// Dissonance.PlayerTrackerManager
struct PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1;
// Dissonance.Audio.Playback.PriorityManager
struct PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB;
// System.ComponentModel.PropertyChangedEventHandler
struct PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99;
// UnityEngine.InputSystem.Controls.QuaternionControl
struct QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6;
// System.Security.Cryptography.RNGCryptoServiceProvider
struct RNGCryptoServiceProvider_t696D1B0DFED446BE4718F7E18ABFFBB6E5A8A5A1;
// System.Random
struct Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118;
// Mirror.Examples.MultipleAdditiveScenes.RandomColor
struct RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455;
// Mirror.Examples.NetworkRoom.RandomColor
struct RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// System.Threading.ReaderWriterLockSlim
struct ReaderWriterLockSlim_tABE1342190B3292CBA83424BDE0B46B40965BD7F;
// UnityEngine.RectTransform
struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072;
// System.Text.RegularExpressions.Regex
struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F;
// Dissonance.Audio.Capture.Resampler
struct Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C;
// UnityEngine.Rigidbody
struct Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A;
// UnityEngine.Rigidbody2D
struct Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5;
// Dissonance.RoomChannels
struct RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2;
// Mirror.Examples.MultipleMatch.RoomGUI
struct RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78;
// Dissonance.RoomMembershipComparer
struct RoomMembershipComparer_t38BE46113FEC084A55CEE60BDC705547EF2D693F;
// Dissonance.Rooms
struct Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872;
// System.Security.Cryptography.SHA1
struct SHA1_t15B592B9935E19EC3FD5679B969239AC572E2C0E;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// Dissonance.Audio.Playback.SamplePlaybackComponent
struct SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49;
// Dissonance.Audio.Capture.SampleToFrameProvider
struct SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0;
// UnityEngine.UI.Scrollbar
struct Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28;
// Dissonance.SemanticVersion
struct SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385;
// Mirror.Discovery.ServerFoundUnityEvent
struct ServerFoundUnityEvent_t4E4DCA48D70BC4E17D90B92E694B5C64F2BDDA43;
// Mirror.SimpleWeb.ServerHandshake
struct ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5;
// Mirror.Cloud.Example.ServerListUI
struct ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA;
// Mirror.Cloud.Example.ServerListUIItem
struct ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09;
// Mirror.SimpleWeb.ServerSslHelper
struct ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34;
// Mirror.SimpleWeb.SimpleWebClient
struct SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0;
// Mirror.SimpleWeb.SimpleWebServer
struct SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881;
// Dissonance.Demo.SpeakerIndicator
struct SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC;
// Dissonance.Audio.Playback.SpeechSessionStream
struct SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C;
// UnityEngine.InputSystem.Controls.StickControl
struct StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49;
// System.Diagnostics.Stopwatch
struct Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89;
// System.IO.Stream
struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// UnityEngine.SubsystemsImplementation.SubsystemProvider
struct SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9;
// Dissonance.Audio.Playback.SynchronizerSampleSource
struct SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C;
// System.Net.Sockets.TcpClient
struct TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE;
// System.Net.Sockets.TcpListener
struct TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B;
// UnityEngine.Terrain
struct Terrain_t2C0E3B3A2895E81446EFF4F5AFD601CF977D1836;
// UnityEngine.UI.Text
struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1;
// Dissonance.TextChat
struct TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04;
// UnityEngine.Texture2D
struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF;
// System.Threading.Thread
struct Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414;
// Mirror.Authenticators.TimeoutAuthenticator
struct TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01;
// UnityEngine.UI.Toggle
struct Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E;
// UnityEngine.UI.ToggleGroup
struct ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95;
// Dissonance.TokenSet
struct TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0;
// UnityEngine.InputSystem.Controls.TouchPhaseControl
struct TouchPhaseControl_t1AF25F13C09F9F2273B7B4F8832E111D84065960;
// UnityEngine.InputSystem.Controls.TouchPressControl
struct TouchPressControl_tAB19A027BD716995BDE06B0DD1BA1BD05777D45E;
// UnityEngine.InputSystem.Touchscreen
struct Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B;
// UnityEngine.InputSystem.UI.TrackedDeviceRaycaster
struct TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C;
// Dissonance.Networking.TrafficCounter
struct TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2;
// UnityEngine.Transform
struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1;
// Mirror.Transport
struct Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D;
// System.Type
struct Type_t;
// System.Net.Sockets.UdpClient
struct UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920;
// Mirror.UnityEventNetworkConnection
struct UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB;
// System.Uri
struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612;
// UnityEngine.VFX.VFXEventAttribute
struct VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF;
// UnityEngine.InputSystem.Controls.Vector2Control
struct Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11;
// UnityEngine.InputSystem.Controls.Vector3Control
struct Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475;
// UnityEngine.Video.VideoPlayer
struct VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86;
// UnityEngine.VFX.VisualEffectAsset
struct VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50;
// Dissonance.VoiceBroadcastTrigger
struct VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395;
// Dissonance.Audio.Playback.VoicePlayback
struct VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2;
// Dissonance.VoicePlayerState
struct VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// Dissonance.VolumeFaderSettings
struct VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3;
// NAudio.Wave.WaveFormat
struct WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC;
// NAudio.Dsp.WdlResampler
struct WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2;
// Mirror.SimpleWeb.WebSocketClientStandAlone
struct WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3;
// Mirror.SimpleWeb.WebSocketServer
struct WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65;
// Dissonance.Datastructures.WindowDeviationCalculator
struct WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F;
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem
struct WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60;
// System.Security.Cryptography.X509Certificates.X509Certificate2
struct X509Certificate2_t2FF04591FB660272854D92805B5DB1A5C22E37DD;
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor
struct XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B;
// UnityEngine.InputSystem.XR.XRDeviceDescriptor
struct XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D;
// UnityEngine.InputSystem.XR.XRLayoutBuilder
struct XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745;
// UnityEngine.XR.Management.XRLoader
struct XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B;
// UnityEngine.XR.Management.XRManagerSettings
struct XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F;
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor
struct XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C;
// UnityEngine.Yoga.YogaNode
struct YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6;
// UnityEngine.Analytics.AnalyticsSessionInfo/IdentityTokenChanged
struct IdentityTokenChanged_t306C7E37727221C44C9D5843455B1FD7286C38B1;
// UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged
struct SessionStateChanged_tB042EAE0E6718825B246F7744C738DC80E529ACF;
// UnityEngine.AudioClip/PCMReaderCallback
struct PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B;
// UnityEngine.AudioClip/PCMSetPositionCallback
struct PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C;
// UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler
struct SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487;
// UnityEngine.AudioSettings/AudioConfigurationChangeHandler
struct AudioConfigurationChangeHandler_t1A997C51DF7B553A94DAD358F8D968308994774A;
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder
struct HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Builder
struct Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator
struct Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF;
// UnityEngine.AI.NavMesh/OnNavMeshPreUpdate
struct OnNavMeshPreUpdate_t5E34F761F39A1F6B898F0E729B36C0782B92D572;
// Mirror.Cloud.Example.NetworkManagerListServer/OnPlayerListChanged
struct OnPlayerListChanged_tAE9C3FA9011C49CF6D1CDE78E4B040C0DFEE50CF;
// Mirror.Experimental.NetworkRigidbody/ClientSyncState
struct ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074;
// Mirror.Experimental.NetworkRigidbody2D/ClientSyncState
struct ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98;
// Mirror.NetworkTransformBase/DataPoint
struct DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003;
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusDecoder
struct OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE;
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusEncoder
struct OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335;
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusSoftClip
struct OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3;
// UnityEngine.InputSystem.PlayerInput/ControlsChangedEvent
struct ControlsChangedEvent_tD7A83A666777246B9B22B47348E25EB613C2769F;
// UnityEngine.InputSystem.PlayerInput/DeviceLostEvent
struct DeviceLostEvent_tF3C401927234A694F690FA685FCAE477D37FC2E9;
// UnityEngine.InputSystem.PlayerInput/DeviceRegainedEvent
struct DeviceRegainedEvent_t94948DD31F91C3CBB27954D00A04B5F49DBC9676;
// UnityEngine.InputSystem.PlayerInputManager/PlayerJoinedEvent
struct PlayerJoinedEvent_tE262B40C1032F1DFCA9AAD89AB20E69CA2CBE3F1;
// UnityEngine.InputSystem.PlayerInputManager/PlayerLeftEvent
struct PlayerLeftEvent_tE22FB60A78C639453B4A023A35E0D5A7D2B2C6B2;
// UnityEngine.RemoteSettings/UpdatedEventHandler
struct UpdatedEventHandler_tB65DDD5524F88B07DDF23FD1607DF1887404EC55;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974;
// UnityEngine.Experimental.TerrainAPI.TerrainCallbacks/HeightmapChangedCallback
struct HeightmapChangedCallback_tB00DA531F9C32468E88700A5C2D55E05189E0FA0;
// UnityEngine.Experimental.TerrainAPI.TerrainCallbacks/TextureChangedCallback
struct TextureChangedCallback_tD8BA8EA99CC9FA597E4AA143944720822EFB7D9F;
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/<>c__DisplayClass4_0
struct U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8;
// UnityEngine.Video.VideoPlayer/ErrorEventHandler
struct ErrorEventHandler_tD47781EBB7CF0CC4C111496024BD59B1D1A6A1F2;
// UnityEngine.Video.VideoPlayer/EventHandler
struct EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD;
// UnityEngine.Video.VideoPlayer/FrameReadyEventHandler
struct FrameReadyEventHandler_t9529BD5A34E9C8BE7D8A39D46A6C4ABC673374EC;
// UnityEngine.Video.VideoPlayer/TimeEventHandler
struct TimeEventHandler_t7CA131EB85E0FFCBE8660E030698BD83D3994DD8;
// NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter
struct WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4;
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor
struct WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020;
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider
struct WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB;
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider
struct Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2;
// UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem/Provider
struct Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058;
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider
struct Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A;
struct ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF ;
struct Capability_tF5B6FF984626974127E090122C8E72283DEAE653_marshaled_com;
struct Capability_tF5B6FF984626974127E090122C8E72283DEAE653_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct DeviceRequirement_tDA5868427F9D3EC59A2293DE9F18C699FF64F955_marshaled_com;
struct DeviceRequirement_tDA5868427F9D3EC59A2293DE9F18C699FF64F955_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756 ;
struct HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B_marshaled_com;
struct HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B_marshaled_pinvoke;
struct KeyValue_t0F3C5C28E58D4980486F31F2C33C3980AF3CBFD4_marshaled_com;
struct KeyValue_t0F3C5C28E58D4980486F31F2C33C3980AF3CBFD4_marshaled_pinvoke;
struct MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574 ;
struct PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6_marshaled_com;
struct PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6_marshaled_pinvoke;
struct ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22_marshaled_com;
struct ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22_marshaled_pinvoke;
struct Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_marshaled_com;
struct Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_marshaled_pinvoke;
struct VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF_marshaled_com;
struct VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF_marshaled_pinvoke;
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_tFDCAFCBB4B3431CFF2DC4D3E03FBFDF54EFF7E9A
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t3198FDC877D1140F2DFCFCA8DB98C13A64679C55
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tE71D999FC4810E1412D290032139B743CF6651EC
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t8DB545DD3D74D2D201141FFF637385C9C1882C70
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t9F8E07FC09BAC6C0CF940F5F75C18C0A172B2BB3
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t99E787199628CADFEDB970A988F9CB77E16BF755
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tB8F942C945100A842E788EAA237D897165953264
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t519B4BC78210ED2C0341FBEF1F1AA6F8BBAE5F33
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t855B30DFE3FFAE745C486DDA5066E147CDA2A98C
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t1A5F46CB58C39FA8C3A1BEF72944AB765466DF6C
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tC2BAE4687A10DC304C734306E2DAE46832ACEE40
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tC451880E1B66784143BA4EFDDE1B655D2AAB3053
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t0C6A181D8FE60479BE7418C18D308CD00363B587
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tE7281C0E269ACF224AB82F00FE8D46ED8C621032
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t5DC9681BD1ACB43AC4E834362F4E6CBF34AF0FEF
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t7768C1C288272E025E1B9080894F8B56DBF683E5
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t16907FB6E08E92217A5123230DA0635610807D19
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t7988782848E87B4A172D2199D2BAC372F93351FD
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t6975E9BBACF02877D569BBF09DC44C44D3C346CB
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tB91F6724AB37F320FBC87720324AFF126B3A392A
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t0349A77A3F13355590A8D42950AB18125A07DF5D
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tF7FEB84D8A221BE7CE101152ED17C3BE04A96C35
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t1E32A317E34BC1FD0A7614BD67748813CD043632
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t7D18733187A931E9811113AAEA88D52F26128295
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tB192D216DD8406BFF7972D93280BB245AF529D46
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t9BC900AC115CCA160074141915B355D8F694FB1F
{
public:
public:
};
// <Module>
struct U3CModuleU3E_t7757219A6D4DF3F0E2950E860119AEA621C68AF1
{
public:
public:
};
// <Module>
struct U3CModuleU3E_tDED13434226C69F13F118765EFC9D2C00A0FC49D
{
public:
public:
};
// System.Object
// Dissonance.Networking.BaseClient`3<Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer,Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient,Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2 : public RuntimeObject
{
public:
// Dissonance.Log Dissonance.Networking.BaseClient`3::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Boolean Dissonance.Networking.BaseClient`3::_disconnected
bool ____disconnected_1;
// System.Boolean Dissonance.Networking.BaseClient`3::_error
bool ____error_2;
// Dissonance.Networking.Client.EventQueue Dissonance.Networking.BaseClient`3::_events
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 * ____events_3;
// Dissonance.Networking.Client.SlaveClientCollection`1<TPeer> Dissonance.Networking.BaseClient`3::_peers
SlaveClientCollection_1_tBC29ABC58EEF5EE36B3051C7AEF3DC9E24398E19 * ____peers_4;
// Dissonance.Networking.Client.ConnectionNegotiator`1<TPeer> Dissonance.Networking.BaseClient`3::_serverNegotiator
ConnectionNegotiator_1_tAD71CCC3CD748BCC51CDEE27E5345593CCAB410B * ____serverNegotiator_5;
// Dissonance.Networking.Client.SendQueue`1<TPeer> Dissonance.Networking.BaseClient`3::_sendQueue
SendQueue_1_tDB5EF63D43AD1A1574E4335741EFD13BB411862C * ____sendQueue_6;
// Dissonance.Networking.Client.PacketDelaySimulator Dissonance.Networking.BaseClient`3::_lossSimulator
PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A * ____lossSimulator_7;
// Dissonance.Networking.Client.VoiceReceiver`1<TPeer> Dissonance.Networking.BaseClient`3::_voiceReceiver
VoiceReceiver_1_t55DD08D7D3AA4245E26A230E2062034AC3A3D937 * ____voiceReceiver_8;
// Dissonance.Networking.Client.VoiceSender`1<TPeer> Dissonance.Networking.BaseClient`3::_voiceSender
VoiceSender_1_t7D62AC56D772A7C409629D0109972978AC83D2E5 * ____voiceSender_9;
// Dissonance.Networking.Client.TextReceiver`1<TPeer> Dissonance.Networking.BaseClient`3::_textReceiver
TextReceiver_1_tACD4599E57CCE8587217AAD444CE433CC3E35248 * ____textReceiver_10;
// Dissonance.Networking.Client.TextSender`1<TPeer> Dissonance.Networking.BaseClient`3::_textSender
TextSender_1_t8102972DFF58CEA10A1CE868646582BF946828DC * ____textSender_11;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_recvRemoveClient
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____recvRemoveClient_12;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_recvVoiceData
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____recvVoiceData_13;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_recvTextData
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____recvTextData_14;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_recvHandshakeResponse
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____recvHandshakeResponse_15;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_recvHandshakeP2P
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____recvHandshakeP2P_16;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_recvClientState
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____recvClientState_17;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_recvDeltaState
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____recvDeltaState_18;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseClient`3::_sentServer
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ____sentServer_19;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of__disconnected_1() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____disconnected_1)); }
inline bool get__disconnected_1() const { return ____disconnected_1; }
inline bool* get_address_of__disconnected_1() { return &____disconnected_1; }
inline void set__disconnected_1(bool value)
{
____disconnected_1 = value;
}
inline static int32_t get_offset_of__error_2() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____error_2)); }
inline bool get__error_2() const { return ____error_2; }
inline bool* get_address_of__error_2() { return &____error_2; }
inline void set__error_2(bool value)
{
____error_2 = value;
}
inline static int32_t get_offset_of__events_3() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____events_3)); }
inline EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 * get__events_3() const { return ____events_3; }
inline EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 ** get_address_of__events_3() { return &____events_3; }
inline void set__events_3(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 * value)
{
____events_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____events_3), (void*)value);
}
inline static int32_t get_offset_of__peers_4() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____peers_4)); }
inline SlaveClientCollection_1_tBC29ABC58EEF5EE36B3051C7AEF3DC9E24398E19 * get__peers_4() const { return ____peers_4; }
inline SlaveClientCollection_1_tBC29ABC58EEF5EE36B3051C7AEF3DC9E24398E19 ** get_address_of__peers_4() { return &____peers_4; }
inline void set__peers_4(SlaveClientCollection_1_tBC29ABC58EEF5EE36B3051C7AEF3DC9E24398E19 * value)
{
____peers_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____peers_4), (void*)value);
}
inline static int32_t get_offset_of__serverNegotiator_5() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____serverNegotiator_5)); }
inline ConnectionNegotiator_1_tAD71CCC3CD748BCC51CDEE27E5345593CCAB410B * get__serverNegotiator_5() const { return ____serverNegotiator_5; }
inline ConnectionNegotiator_1_tAD71CCC3CD748BCC51CDEE27E5345593CCAB410B ** get_address_of__serverNegotiator_5() { return &____serverNegotiator_5; }
inline void set__serverNegotiator_5(ConnectionNegotiator_1_tAD71CCC3CD748BCC51CDEE27E5345593CCAB410B * value)
{
____serverNegotiator_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverNegotiator_5), (void*)value);
}
inline static int32_t get_offset_of__sendQueue_6() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____sendQueue_6)); }
inline SendQueue_1_tDB5EF63D43AD1A1574E4335741EFD13BB411862C * get__sendQueue_6() const { return ____sendQueue_6; }
inline SendQueue_1_tDB5EF63D43AD1A1574E4335741EFD13BB411862C ** get_address_of__sendQueue_6() { return &____sendQueue_6; }
inline void set__sendQueue_6(SendQueue_1_tDB5EF63D43AD1A1574E4335741EFD13BB411862C * value)
{
____sendQueue_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sendQueue_6), (void*)value);
}
inline static int32_t get_offset_of__lossSimulator_7() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____lossSimulator_7)); }
inline PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A * get__lossSimulator_7() const { return ____lossSimulator_7; }
inline PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A ** get_address_of__lossSimulator_7() { return &____lossSimulator_7; }
inline void set__lossSimulator_7(PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A * value)
{
____lossSimulator_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lossSimulator_7), (void*)value);
}
inline static int32_t get_offset_of__voiceReceiver_8() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____voiceReceiver_8)); }
inline VoiceReceiver_1_t55DD08D7D3AA4245E26A230E2062034AC3A3D937 * get__voiceReceiver_8() const { return ____voiceReceiver_8; }
inline VoiceReceiver_1_t55DD08D7D3AA4245E26A230E2062034AC3A3D937 ** get_address_of__voiceReceiver_8() { return &____voiceReceiver_8; }
inline void set__voiceReceiver_8(VoiceReceiver_1_t55DD08D7D3AA4245E26A230E2062034AC3A3D937 * value)
{
____voiceReceiver_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____voiceReceiver_8), (void*)value);
}
inline static int32_t get_offset_of__voiceSender_9() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____voiceSender_9)); }
inline VoiceSender_1_t7D62AC56D772A7C409629D0109972978AC83D2E5 * get__voiceSender_9() const { return ____voiceSender_9; }
inline VoiceSender_1_t7D62AC56D772A7C409629D0109972978AC83D2E5 ** get_address_of__voiceSender_9() { return &____voiceSender_9; }
inline void set__voiceSender_9(VoiceSender_1_t7D62AC56D772A7C409629D0109972978AC83D2E5 * value)
{
____voiceSender_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____voiceSender_9), (void*)value);
}
inline static int32_t get_offset_of__textReceiver_10() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____textReceiver_10)); }
inline TextReceiver_1_tACD4599E57CCE8587217AAD444CE433CC3E35248 * get__textReceiver_10() const { return ____textReceiver_10; }
inline TextReceiver_1_tACD4599E57CCE8587217AAD444CE433CC3E35248 ** get_address_of__textReceiver_10() { return &____textReceiver_10; }
inline void set__textReceiver_10(TextReceiver_1_tACD4599E57CCE8587217AAD444CE433CC3E35248 * value)
{
____textReceiver_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____textReceiver_10), (void*)value);
}
inline static int32_t get_offset_of__textSender_11() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____textSender_11)); }
inline TextSender_1_t8102972DFF58CEA10A1CE868646582BF946828DC * get__textSender_11() const { return ____textSender_11; }
inline TextSender_1_t8102972DFF58CEA10A1CE868646582BF946828DC ** get_address_of__textSender_11() { return &____textSender_11; }
inline void set__textSender_11(TextSender_1_t8102972DFF58CEA10A1CE868646582BF946828DC * value)
{
____textSender_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____textSender_11), (void*)value);
}
inline static int32_t get_offset_of__recvRemoveClient_12() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____recvRemoveClient_12)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__recvRemoveClient_12() const { return ____recvRemoveClient_12; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__recvRemoveClient_12() { return &____recvRemoveClient_12; }
inline void set__recvRemoveClient_12(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____recvRemoveClient_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recvRemoveClient_12), (void*)value);
}
inline static int32_t get_offset_of__recvVoiceData_13() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____recvVoiceData_13)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__recvVoiceData_13() const { return ____recvVoiceData_13; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__recvVoiceData_13() { return &____recvVoiceData_13; }
inline void set__recvVoiceData_13(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____recvVoiceData_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recvVoiceData_13), (void*)value);
}
inline static int32_t get_offset_of__recvTextData_14() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____recvTextData_14)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__recvTextData_14() const { return ____recvTextData_14; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__recvTextData_14() { return &____recvTextData_14; }
inline void set__recvTextData_14(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____recvTextData_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recvTextData_14), (void*)value);
}
inline static int32_t get_offset_of__recvHandshakeResponse_15() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____recvHandshakeResponse_15)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__recvHandshakeResponse_15() const { return ____recvHandshakeResponse_15; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__recvHandshakeResponse_15() { return &____recvHandshakeResponse_15; }
inline void set__recvHandshakeResponse_15(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____recvHandshakeResponse_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recvHandshakeResponse_15), (void*)value);
}
inline static int32_t get_offset_of__recvHandshakeP2P_16() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____recvHandshakeP2P_16)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__recvHandshakeP2P_16() const { return ____recvHandshakeP2P_16; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__recvHandshakeP2P_16() { return &____recvHandshakeP2P_16; }
inline void set__recvHandshakeP2P_16(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____recvHandshakeP2P_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recvHandshakeP2P_16), (void*)value);
}
inline static int32_t get_offset_of__recvClientState_17() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____recvClientState_17)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__recvClientState_17() const { return ____recvClientState_17; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__recvClientState_17() { return &____recvClientState_17; }
inline void set__recvClientState_17(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____recvClientState_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recvClientState_17), (void*)value);
}
inline static int32_t get_offset_of__recvDeltaState_18() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____recvDeltaState_18)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__recvDeltaState_18() const { return ____recvDeltaState_18; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__recvDeltaState_18() { return &____recvDeltaState_18; }
inline void set__recvDeltaState_18(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____recvDeltaState_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recvDeltaState_18), (void*)value);
}
inline static int32_t get_offset_of__sentServer_19() { return static_cast<int32_t>(offsetof(BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2, ____sentServer_19)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get__sentServer_19() const { return ____sentServer_19; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of__sentServer_19() { return &____sentServer_19; }
inline void set__sentServer_19(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
____sentServer_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sentServer_19), (void*)value);
}
};
// Dissonance.Networking.BaseServer`3<Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer,Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient,Dissonance.Integrations.MirrorIgnorance.MirrorConn>
struct BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E : public RuntimeObject
{
public:
// Dissonance.Log Dissonance.Networking.BaseServer`3::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Boolean Dissonance.Networking.BaseServer`3::_disconnected
bool ____disconnected_1;
// System.Boolean Dissonance.Networking.BaseServer`3::_error
bool ____error_2;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseServer`3::<RecvHandshakeRequest>k__BackingField
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ___U3CRecvHandshakeRequestU3Ek__BackingField_3;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseServer`3::<RecvClientState>k__BackingField
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ___U3CRecvClientStateU3Ek__BackingField_4;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseServer`3::<RecvPacketRelay>k__BackingField
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ___U3CRecvPacketRelayU3Ek__BackingField_5;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseServer`3::<RecvDeltaChannelState>k__BackingField
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ___U3CRecvDeltaChannelStateU3Ek__BackingField_6;
// Dissonance.Networking.TrafficCounter Dissonance.Networking.BaseServer`3::<SentTraffic>k__BackingField
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * ___U3CSentTrafficU3Ek__BackingField_7;
// Dissonance.Networking.Server.ServerRelay`1<TPeer> Dissonance.Networking.BaseServer`3::_relay
ServerRelay_1_tDDBE58373C06BD60C501B887B411CD2AC48148AD * ____relay_8;
// Dissonance.Networking.Server.BroadcastingClientCollection`1<TPeer> Dissonance.Networking.BaseServer`3::_clients
BroadcastingClientCollection_1_t3F741C631A42928650B1B9A3B3E5531013614930 * ____clients_9;
// System.UInt32 Dissonance.Networking.BaseServer`3::_sessionId
uint32_t ____sessionId_10;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of__disconnected_1() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ____disconnected_1)); }
inline bool get__disconnected_1() const { return ____disconnected_1; }
inline bool* get_address_of__disconnected_1() { return &____disconnected_1; }
inline void set__disconnected_1(bool value)
{
____disconnected_1 = value;
}
inline static int32_t get_offset_of__error_2() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ____error_2)); }
inline bool get__error_2() const { return ____error_2; }
inline bool* get_address_of__error_2() { return &____error_2; }
inline void set__error_2(bool value)
{
____error_2 = value;
}
inline static int32_t get_offset_of_U3CRecvHandshakeRequestU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ___U3CRecvHandshakeRequestU3Ek__BackingField_3)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get_U3CRecvHandshakeRequestU3Ek__BackingField_3() const { return ___U3CRecvHandshakeRequestU3Ek__BackingField_3; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of_U3CRecvHandshakeRequestU3Ek__BackingField_3() { return &___U3CRecvHandshakeRequestU3Ek__BackingField_3; }
inline void set_U3CRecvHandshakeRequestU3Ek__BackingField_3(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
___U3CRecvHandshakeRequestU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRecvHandshakeRequestU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CRecvClientStateU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ___U3CRecvClientStateU3Ek__BackingField_4)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get_U3CRecvClientStateU3Ek__BackingField_4() const { return ___U3CRecvClientStateU3Ek__BackingField_4; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of_U3CRecvClientStateU3Ek__BackingField_4() { return &___U3CRecvClientStateU3Ek__BackingField_4; }
inline void set_U3CRecvClientStateU3Ek__BackingField_4(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
___U3CRecvClientStateU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRecvClientStateU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CRecvPacketRelayU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ___U3CRecvPacketRelayU3Ek__BackingField_5)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get_U3CRecvPacketRelayU3Ek__BackingField_5() const { return ___U3CRecvPacketRelayU3Ek__BackingField_5; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of_U3CRecvPacketRelayU3Ek__BackingField_5() { return &___U3CRecvPacketRelayU3Ek__BackingField_5; }
inline void set_U3CRecvPacketRelayU3Ek__BackingField_5(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
___U3CRecvPacketRelayU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRecvPacketRelayU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CRecvDeltaChannelStateU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ___U3CRecvDeltaChannelStateU3Ek__BackingField_6)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get_U3CRecvDeltaChannelStateU3Ek__BackingField_6() const { return ___U3CRecvDeltaChannelStateU3Ek__BackingField_6; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of_U3CRecvDeltaChannelStateU3Ek__BackingField_6() { return &___U3CRecvDeltaChannelStateU3Ek__BackingField_6; }
inline void set_U3CRecvDeltaChannelStateU3Ek__BackingField_6(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
___U3CRecvDeltaChannelStateU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRecvDeltaChannelStateU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CSentTrafficU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ___U3CSentTrafficU3Ek__BackingField_7)); }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * get_U3CSentTrafficU3Ek__BackingField_7() const { return ___U3CSentTrafficU3Ek__BackingField_7; }
inline TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 ** get_address_of_U3CSentTrafficU3Ek__BackingField_7() { return &___U3CSentTrafficU3Ek__BackingField_7; }
inline void set_U3CSentTrafficU3Ek__BackingField_7(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 * value)
{
___U3CSentTrafficU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CSentTrafficU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of__relay_8() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ____relay_8)); }
inline ServerRelay_1_tDDBE58373C06BD60C501B887B411CD2AC48148AD * get__relay_8() const { return ____relay_8; }
inline ServerRelay_1_tDDBE58373C06BD60C501B887B411CD2AC48148AD ** get_address_of__relay_8() { return &____relay_8; }
inline void set__relay_8(ServerRelay_1_tDDBE58373C06BD60C501B887B411CD2AC48148AD * value)
{
____relay_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____relay_8), (void*)value);
}
inline static int32_t get_offset_of__clients_9() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ____clients_9)); }
inline BroadcastingClientCollection_1_t3F741C631A42928650B1B9A3B3E5531013614930 * get__clients_9() const { return ____clients_9; }
inline BroadcastingClientCollection_1_t3F741C631A42928650B1B9A3B3E5531013614930 ** get_address_of__clients_9() { return &____clients_9; }
inline void set__clients_9(BroadcastingClientCollection_1_t3F741C631A42928650B1B9A3B3E5531013614930 * value)
{
____clients_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clients_9), (void*)value);
}
inline static int32_t get_offset_of__sessionId_10() { return static_cast<int32_t>(offsetof(BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E, ____sessionId_10)); }
inline uint32_t get__sessionId_10() const { return ____sessionId_10; }
inline uint32_t* get_address_of__sessionId_10() { return &____sessionId_10; }
inline void set__sessionId_10(uint32_t value)
{
____sessionId_10 = value;
}
};
// Dissonance.Datastructures.BaseWindowCalculator`1<System.Boolean>
struct BaseWindowCalculator_1_t6C370E28D3564A3A4B61B2C3E1C42A7A019753EC : public RuntimeObject
{
public:
// Dissonance.Datastructures.RingBuffer`1<T> Dissonance.Datastructures.BaseWindowCalculator`1::_buffer
RingBuffer_1_t256913632BC857184C5CF26218BEF30965CCD7B3 * ____buffer_0;
public:
inline static int32_t get_offset_of__buffer_0() { return static_cast<int32_t>(offsetof(BaseWindowCalculator_1_t6C370E28D3564A3A4B61B2C3E1C42A7A019753EC, ____buffer_0)); }
inline RingBuffer_1_t256913632BC857184C5CF26218BEF30965CCD7B3 * get__buffer_0() const { return ____buffer_0; }
inline RingBuffer_1_t256913632BC857184C5CF26218BEF30965CCD7B3 ** get_address_of__buffer_0() { return &____buffer_0; }
inline void set__buffer_0(RingBuffer_1_t256913632BC857184C5CF26218BEF30965CCD7B3 * value)
{
____buffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_0), (void*)value);
}
};
// Dissonance.Datastructures.BaseWindowCalculator`1<System.Single>
struct BaseWindowCalculator_1_tB6FBD04DDF34A827BECDC96AE22D99EE0922B31A : public RuntimeObject
{
public:
// Dissonance.Datastructures.RingBuffer`1<T> Dissonance.Datastructures.BaseWindowCalculator`1::_buffer
RingBuffer_1_t4315BC8919DE2735CA5A405E59ECB998F4E9598C * ____buffer_0;
public:
inline static int32_t get_offset_of__buffer_0() { return static_cast<int32_t>(offsetof(BaseWindowCalculator_1_tB6FBD04DDF34A827BECDC96AE22D99EE0922B31A, ____buffer_0)); }
inline RingBuffer_1_t4315BC8919DE2735CA5A405E59ECB998F4E9598C * get__buffer_0() const { return ____buffer_0; }
inline RingBuffer_1_t4315BC8919DE2735CA5A405E59ECB998F4E9598C ** get_address_of__buffer_0() { return &____buffer_0; }
inline void set__buffer_0(RingBuffer_1_t4315BC8919DE2735CA5A405E59ECB998F4E9598C * value)
{
____buffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_0), (void*)value);
}
};
// Dissonance.Channels`2<Dissonance.PlayerChannel,System.String>
struct Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC : public RuntimeObject
{
public:
// Dissonance.Log Dissonance.Channels`2::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Collections.Generic.Dictionary`2<System.UInt16,T> Dissonance.Channels`2::_openChannelsBySubId
Dictionary_2_tD582F7DE6BB29C0BA60E7DBCAEF74B886482F1B7 * ____openChannelsBySubId_1;
// Dissonance.Datastructures.Pool`1<Dissonance.ChannelProperties> Dissonance.Channels`2::_propertiesPool
Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E * ____propertiesPool_2;
// System.UInt16 Dissonance.Channels`2::_nextId
uint16_t ____nextId_3;
// System.Action`2<TId,Dissonance.ChannelProperties> Dissonance.Channels`2::OpenedChannel
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___OpenedChannel_4;
// System.Action`2<TId,Dissonance.ChannelProperties> Dissonance.Channels`2::ClosedChannel
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___ClosedChannel_5;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of__openChannelsBySubId_1() { return static_cast<int32_t>(offsetof(Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC, ____openChannelsBySubId_1)); }
inline Dictionary_2_tD582F7DE6BB29C0BA60E7DBCAEF74B886482F1B7 * get__openChannelsBySubId_1() const { return ____openChannelsBySubId_1; }
inline Dictionary_2_tD582F7DE6BB29C0BA60E7DBCAEF74B886482F1B7 ** get_address_of__openChannelsBySubId_1() { return &____openChannelsBySubId_1; }
inline void set__openChannelsBySubId_1(Dictionary_2_tD582F7DE6BB29C0BA60E7DBCAEF74B886482F1B7 * value)
{
____openChannelsBySubId_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____openChannelsBySubId_1), (void*)value);
}
inline static int32_t get_offset_of__propertiesPool_2() { return static_cast<int32_t>(offsetof(Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC, ____propertiesPool_2)); }
inline Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E * get__propertiesPool_2() const { return ____propertiesPool_2; }
inline Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E ** get_address_of__propertiesPool_2() { return &____propertiesPool_2; }
inline void set__propertiesPool_2(Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E * value)
{
____propertiesPool_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertiesPool_2), (void*)value);
}
inline static int32_t get_offset_of__nextId_3() { return static_cast<int32_t>(offsetof(Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC, ____nextId_3)); }
inline uint16_t get__nextId_3() const { return ____nextId_3; }
inline uint16_t* get_address_of__nextId_3() { return &____nextId_3; }
inline void set__nextId_3(uint16_t value)
{
____nextId_3 = value;
}
inline static int32_t get_offset_of_OpenedChannel_4() { return static_cast<int32_t>(offsetof(Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC, ___OpenedChannel_4)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_OpenedChannel_4() const { return ___OpenedChannel_4; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_OpenedChannel_4() { return &___OpenedChannel_4; }
inline void set_OpenedChannel_4(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___OpenedChannel_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OpenedChannel_4), (void*)value);
}
inline static int32_t get_offset_of_ClosedChannel_5() { return static_cast<int32_t>(offsetof(Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC, ___ClosedChannel_5)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_ClosedChannel_5() const { return ___ClosedChannel_5; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_ClosedChannel_5() { return &___ClosedChannel_5; }
inline void set_ClosedChannel_5(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___ClosedChannel_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClosedChannel_5), (void*)value);
}
};
// Dissonance.Channels`2<Dissonance.RoomChannel,System.String>
struct Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693 : public RuntimeObject
{
public:
// Dissonance.Log Dissonance.Channels`2::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Collections.Generic.Dictionary`2<System.UInt16,T> Dissonance.Channels`2::_openChannelsBySubId
Dictionary_2_t3E57DFB977147681A3B607BBDFCA2879C39EF4F4 * ____openChannelsBySubId_1;
// Dissonance.Datastructures.Pool`1<Dissonance.ChannelProperties> Dissonance.Channels`2::_propertiesPool
Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E * ____propertiesPool_2;
// System.UInt16 Dissonance.Channels`2::_nextId
uint16_t ____nextId_3;
// System.Action`2<TId,Dissonance.ChannelProperties> Dissonance.Channels`2::OpenedChannel
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___OpenedChannel_4;
// System.Action`2<TId,Dissonance.ChannelProperties> Dissonance.Channels`2::ClosedChannel
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___ClosedChannel_5;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of__openChannelsBySubId_1() { return static_cast<int32_t>(offsetof(Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693, ____openChannelsBySubId_1)); }
inline Dictionary_2_t3E57DFB977147681A3B607BBDFCA2879C39EF4F4 * get__openChannelsBySubId_1() const { return ____openChannelsBySubId_1; }
inline Dictionary_2_t3E57DFB977147681A3B607BBDFCA2879C39EF4F4 ** get_address_of__openChannelsBySubId_1() { return &____openChannelsBySubId_1; }
inline void set__openChannelsBySubId_1(Dictionary_2_t3E57DFB977147681A3B607BBDFCA2879C39EF4F4 * value)
{
____openChannelsBySubId_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____openChannelsBySubId_1), (void*)value);
}
inline static int32_t get_offset_of__propertiesPool_2() { return static_cast<int32_t>(offsetof(Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693, ____propertiesPool_2)); }
inline Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E * get__propertiesPool_2() const { return ____propertiesPool_2; }
inline Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E ** get_address_of__propertiesPool_2() { return &____propertiesPool_2; }
inline void set__propertiesPool_2(Pool_1_tB77D102E6C54D0B41EAFB4D6026F6663C84A7F7E * value)
{
____propertiesPool_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____propertiesPool_2), (void*)value);
}
inline static int32_t get_offset_of__nextId_3() { return static_cast<int32_t>(offsetof(Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693, ____nextId_3)); }
inline uint16_t get__nextId_3() const { return ____nextId_3; }
inline uint16_t* get_address_of__nextId_3() { return &____nextId_3; }
inline void set__nextId_3(uint16_t value)
{
____nextId_3 = value;
}
inline static int32_t get_offset_of_OpenedChannel_4() { return static_cast<int32_t>(offsetof(Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693, ___OpenedChannel_4)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_OpenedChannel_4() const { return ___OpenedChannel_4; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_OpenedChannel_4() { return &___OpenedChannel_4; }
inline void set_OpenedChannel_4(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___OpenedChannel_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OpenedChannel_4), (void*)value);
}
inline static int32_t get_offset_of_ClosedChannel_5() { return static_cast<int32_t>(offsetof(Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693, ___ClosedChannel_5)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_ClosedChannel_5() const { return ___ClosedChannel_5; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_ClosedChannel_5() { return &___ClosedChannel_5; }
inline void set_ClosedChannel_5(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___ClosedChannel_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClosedChannel_5), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap>
struct Dictionary_2_t8BE99204247C1C97B2675C8E9AB2B482BADCD725 : 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_t8F8773833E17C6A0E66C03DDD293977F035F44EC* ___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_t749DBEFA13BA24F77DF2C12137D5331F541F3B15 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tF5A29AA52483C44A9B166F23F45001565015B4EB * ___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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___entries_1)); }
inline EntryU5BU5D_t8F8773833E17C6A0E66C03DDD293977F035F44EC* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t8F8773833E17C6A0E66C03DDD293977F035F44EC** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t8F8773833E17C6A0E66C03DDD293977F035F44EC* 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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___keys_7)); }
inline KeyCollection_t749DBEFA13BA24F77DF2C12137D5331F541F3B15 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t749DBEFA13BA24F77DF2C12137D5331F541F3B15 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t749DBEFA13BA24F77DF2C12137D5331F541F3B15 * 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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ___values_8)); }
inline ValueCollection_tF5A29AA52483C44A9B166F23F45001565015B4EB * get_values_8() const { return ___values_8; }
inline ValueCollection_tF5A29AA52483C44A9B166F23F45001565015B4EB ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tF5A29AA52483C44A9B166F23F45001565015B4EB * 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_t8BE99204247C1C97B2675C8E9AB2B482BADCD725, ____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);
}
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t08C4A899AB8B4B0856A9A62FFA6EB065F0AC8FCE : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t08C4A899AB8B4B0856A9A62FFA6EB065F0AC8FCE_StaticFields
{
public:
// System.Int32 <PrivateImplementationDetails>::DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563
int32_t ___DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0;
public:
inline static int32_t get_offset_of_DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t08C4A899AB8B4B0856A9A62FFA6EB065F0AC8FCE_StaticFields, ___DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0)); }
inline int32_t get_DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0() const { return ___DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0; }
inline int32_t* get_address_of_DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0() { return &___DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0; }
inline void set_DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0(int32_t value)
{
___DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0 = value;
}
};
// UnityEngine.EventSystems.AbstractEventData
struct AbstractEventData_tA0B5065DE3430C0031ADE061668E1C7073D718DF : public RuntimeObject
{
public:
// System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used
bool ___m_Used_0;
public:
inline static int32_t get_offset_of_m_Used_0() { return static_cast<int32_t>(offsetof(AbstractEventData_tA0B5065DE3430C0031ADE061668E1C7073D718DF, ___m_Used_0)); }
inline bool get_m_Used_0() const { return ___m_Used_0; }
inline bool* get_address_of_m_Used_0() { return &___m_Used_0; }
inline void set_m_Used_0(bool value)
{
___m_Used_0 = value;
}
};
// Dissonance.Audio.AecDiagnostics
struct AecDiagnostics_t5FCA216CE5786B1E045B78E7C687E816822C5939 : public RuntimeObject
{
public:
public:
};
// UnityEngine.Analytics.AnalyticsSessionInfo
struct AnalyticsSessionInfo_t09A4555A2B7A6BC59C0BE66273B5D9B26952EEEB : public RuntimeObject
{
public:
public:
};
struct AnalyticsSessionInfo_t09A4555A2B7A6BC59C0BE66273B5D9B26952EEEB_StaticFields
{
public:
// UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged UnityEngine.Analytics.AnalyticsSessionInfo::sessionStateChanged
SessionStateChanged_tB042EAE0E6718825B246F7744C738DC80E529ACF * ___sessionStateChanged_0;
// UnityEngine.Analytics.AnalyticsSessionInfo/IdentityTokenChanged UnityEngine.Analytics.AnalyticsSessionInfo::identityTokenChanged
IdentityTokenChanged_t306C7E37727221C44C9D5843455B1FD7286C38B1 * ___identityTokenChanged_1;
public:
inline static int32_t get_offset_of_sessionStateChanged_0() { return static_cast<int32_t>(offsetof(AnalyticsSessionInfo_t09A4555A2B7A6BC59C0BE66273B5D9B26952EEEB_StaticFields, ___sessionStateChanged_0)); }
inline SessionStateChanged_tB042EAE0E6718825B246F7744C738DC80E529ACF * get_sessionStateChanged_0() const { return ___sessionStateChanged_0; }
inline SessionStateChanged_tB042EAE0E6718825B246F7744C738DC80E529ACF ** get_address_of_sessionStateChanged_0() { return &___sessionStateChanged_0; }
inline void set_sessionStateChanged_0(SessionStateChanged_tB042EAE0E6718825B246F7744C738DC80E529ACF * value)
{
___sessionStateChanged_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sessionStateChanged_0), (void*)value);
}
inline static int32_t get_offset_of_identityTokenChanged_1() { return static_cast<int32_t>(offsetof(AnalyticsSessionInfo_t09A4555A2B7A6BC59C0BE66273B5D9B26952EEEB_StaticFields, ___identityTokenChanged_1)); }
inline IdentityTokenChanged_t306C7E37727221C44C9D5843455B1FD7286C38B1 * get_identityTokenChanged_1() const { return ___identityTokenChanged_1; }
inline IdentityTokenChanged_t306C7E37727221C44C9D5843455B1FD7286C38B1 ** get_address_of_identityTokenChanged_1() { return &___identityTokenChanged_1; }
inline void set_identityTokenChanged_1(IdentityTokenChanged_t306C7E37727221C44C9D5843455B1FD7286C38B1 * value)
{
___identityTokenChanged_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___identityTokenChanged_1), (void*)value);
}
};
// UnityEngine.AndroidJNI
struct AndroidJNI_t4ADD4E8322A2E7638103A35259232E333D8ABF85 : public RuntimeObject
{
public:
public:
};
// UnityEngine.AndroidJNIHelper
struct AndroidJNIHelper_t42BC87A499D1F8E320AC8D663692540AA0DE2847 : public RuntimeObject
{
public:
public:
};
// UnityEngine.AndroidJNISafe
struct AndroidJNISafe_t2DF3C52D886D3CA488B0322BC39A0691F15EE27E : public RuntimeObject
{
public:
public:
};
// UnityEngine.AndroidJavaObject
struct AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E : public RuntimeObject
{
public:
// UnityEngine.GlobalJavaObjectRef UnityEngine.AndroidJavaObject::m_jobject
GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * ___m_jobject_1;
// UnityEngine.GlobalJavaObjectRef UnityEngine.AndroidJavaObject::m_jclass
GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * ___m_jclass_2;
public:
inline static int32_t get_offset_of_m_jobject_1() { return static_cast<int32_t>(offsetof(AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E, ___m_jobject_1)); }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * get_m_jobject_1() const { return ___m_jobject_1; }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 ** get_address_of_m_jobject_1() { return &___m_jobject_1; }
inline void set_m_jobject_1(GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * value)
{
___m_jobject_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_jobject_1), (void*)value);
}
inline static int32_t get_offset_of_m_jclass_2() { return static_cast<int32_t>(offsetof(AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E, ___m_jclass_2)); }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * get_m_jclass_2() const { return ___m_jclass_2; }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 ** get_address_of_m_jclass_2() { return &___m_jclass_2; }
inline void set_m_jclass_2(GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * value)
{
___m_jclass_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_jclass_2), (void*)value);
}
};
struct AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E_StaticFields
{
public:
// System.Boolean UnityEngine.AndroidJavaObject::enableDebugPrints
bool ___enableDebugPrints_0;
public:
inline static int32_t get_offset_of_enableDebugPrints_0() { return static_cast<int32_t>(offsetof(AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E_StaticFields, ___enableDebugPrints_0)); }
inline bool get_enableDebugPrints_0() const { return ___enableDebugPrints_0; }
inline bool* get_address_of_enableDebugPrints_0() { return &___enableDebugPrints_0; }
inline void set_enableDebugPrints_0(bool value)
{
___enableDebugPrints_0 = value;
}
};
// UnityEngine.XR.LegacyInputHelpers.ArmModelTransition
struct ArmModelTransition_t51924183E232CC5C4DE122484E82022D498B51A3 : public RuntimeObject
{
public:
// System.String UnityEngine.XR.LegacyInputHelpers.ArmModelTransition::m_KeyName
String_t* ___m_KeyName_0;
// UnityEngine.XR.LegacyInputHelpers.ArmModel UnityEngine.XR.LegacyInputHelpers.ArmModelTransition::m_ArmModel
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * ___m_ArmModel_1;
public:
inline static int32_t get_offset_of_m_KeyName_0() { return static_cast<int32_t>(offsetof(ArmModelTransition_t51924183E232CC5C4DE122484E82022D498B51A3, ___m_KeyName_0)); }
inline String_t* get_m_KeyName_0() const { return ___m_KeyName_0; }
inline String_t** get_address_of_m_KeyName_0() { return &___m_KeyName_0; }
inline void set_m_KeyName_0(String_t* value)
{
___m_KeyName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_KeyName_0), (void*)value);
}
inline static int32_t get_offset_of_m_ArmModel_1() { return static_cast<int32_t>(offsetof(ArmModelTransition_t51924183E232CC5C4DE122484E82022D498B51A3, ___m_ArmModel_1)); }
inline ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * get_m_ArmModel_1() const { return ___m_ArmModel_1; }
inline ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 ** get_address_of_m_ArmModel_1() { return &___m_ArmModel_1; }
inline void set_m_ArmModel_1(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * value)
{
___m_ArmModel_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ArmModel_1), (void*)value);
}
};
// Mirror.SimpleWeb.ArrayBuffer
struct ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A : public RuntimeObject
{
public:
// Mirror.SimpleWeb.IBufferOwner Mirror.SimpleWeb.ArrayBuffer::owner
RuntimeObject* ___owner_0;
// System.Byte[] Mirror.SimpleWeb.ArrayBuffer::array
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array_1;
// System.Int32 Mirror.SimpleWeb.ArrayBuffer::count
int32_t ___count_2;
// System.Int32 Mirror.SimpleWeb.ArrayBuffer::releasesRequired
int32_t ___releasesRequired_3;
public:
inline static int32_t get_offset_of_owner_0() { return static_cast<int32_t>(offsetof(ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A, ___owner_0)); }
inline RuntimeObject* get_owner_0() const { return ___owner_0; }
inline RuntimeObject** get_address_of_owner_0() { return &___owner_0; }
inline void set_owner_0(RuntimeObject* value)
{
___owner_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___owner_0), (void*)value);
}
inline static int32_t get_offset_of_array_1() { return static_cast<int32_t>(offsetof(ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A, ___array_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_array_1() const { return ___array_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_array_1() { return &___array_1; }
inline void set_array_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___array_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A, ___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_releasesRequired_3() { return static_cast<int32_t>(offsetof(ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A, ___releasesRequired_3)); }
inline int32_t get_releasesRequired_3() const { return ___releasesRequired_3; }
inline int32_t* get_address_of_releasesRequired_3() { return &___releasesRequired_3; }
inline void set_releasesRequired_3(int32_t value)
{
___releasesRequired_3 = value;
}
};
// UnityEngine.InputSystem.Utilities.ArrayHelpers
struct ArrayHelpers_tEF65782797419B6CE25868E255085959525A5FDC : public RuntimeObject
{
public:
public:
};
// Dissonance.Extensions.ArraySegmentExtensions
struct ArraySegmentExtensions_tC59C2E8BF2691B4ED2CE95E533B800CAA5A2B099 : public RuntimeObject
{
public:
public:
};
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
{
public:
public:
};
// Dissonance.Audio.AudioFileWriter
struct AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A : public RuntimeObject
{
public:
// Dissonance.Threading.LockedValue`1<NAudio.Wave.WaveFileWriter> Dissonance.Audio.AudioFileWriter::_lock
LockedValue_1_t716427A3458F1D0388CCD2371C906BFAA9CDA64E * ____lock_0;
public:
inline static int32_t get_offset_of__lock_0() { return static_cast<int32_t>(offsetof(AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A, ____lock_0)); }
inline LockedValue_1_t716427A3458F1D0388CCD2371C906BFAA9CDA64E * get__lock_0() const { return ____lock_0; }
inline LockedValue_1_t716427A3458F1D0388CCD2371C906BFAA9CDA64E ** get_address_of__lock_0() { return &____lock_0; }
inline void set__lock_0(LockedValue_1_t716427A3458F1D0388CCD2371C906BFAA9CDA64E * value)
{
____lock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lock_0), (void*)value);
}
};
// UnityEngine.Experimental.Audio.AudioSampleProvider
struct AudioSampleProvider_tD8B613D55D09D6CE86B851A5D8F33560FFCC705B : public RuntimeObject
{
public:
// UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler UnityEngine.Experimental.Audio.AudioSampleProvider::sampleFramesAvailable
SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 * ___sampleFramesAvailable_0;
// UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler UnityEngine.Experimental.Audio.AudioSampleProvider::sampleFramesOverflow
SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 * ___sampleFramesOverflow_1;
public:
inline static int32_t get_offset_of_sampleFramesAvailable_0() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD8B613D55D09D6CE86B851A5D8F33560FFCC705B, ___sampleFramesAvailable_0)); }
inline SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 * get_sampleFramesAvailable_0() const { return ___sampleFramesAvailable_0; }
inline SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 ** get_address_of_sampleFramesAvailable_0() { return &___sampleFramesAvailable_0; }
inline void set_sampleFramesAvailable_0(SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 * value)
{
___sampleFramesAvailable_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sampleFramesAvailable_0), (void*)value);
}
inline static int32_t get_offset_of_sampleFramesOverflow_1() { return static_cast<int32_t>(offsetof(AudioSampleProvider_tD8B613D55D09D6CE86B851A5D8F33560FFCC705B, ___sampleFramesOverflow_1)); }
inline SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 * get_sampleFramesOverflow_1() const { return ___sampleFramesOverflow_1; }
inline SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 ** get_address_of_sampleFramesOverflow_1() { return &___sampleFramesOverflow_1; }
inline void set_sampleFramesOverflow_1(SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 * value)
{
___sampleFramesOverflow_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sampleFramesOverflow_1), (void*)value);
}
};
// UnityEngine.AudioSettings
struct AudioSettings_t1941E7DE9FEF65F7742713EB862D3025244FCB08 : public RuntimeObject
{
public:
public:
};
struct AudioSettings_t1941E7DE9FEF65F7742713EB862D3025244FCB08_StaticFields
{
public:
// UnityEngine.AudioSettings/AudioConfigurationChangeHandler UnityEngine.AudioSettings::OnAudioConfigurationChanged
AudioConfigurationChangeHandler_t1A997C51DF7B553A94DAD358F8D968308994774A * ___OnAudioConfigurationChanged_0;
public:
inline static int32_t get_offset_of_OnAudioConfigurationChanged_0() { return static_cast<int32_t>(offsetof(AudioSettings_t1941E7DE9FEF65F7742713EB862D3025244FCB08_StaticFields, ___OnAudioConfigurationChanged_0)); }
inline AudioConfigurationChangeHandler_t1A997C51DF7B553A94DAD358F8D968308994774A * get_OnAudioConfigurationChanged_0() const { return ___OnAudioConfigurationChanged_0; }
inline AudioConfigurationChangeHandler_t1A997C51DF7B553A94DAD358F8D968308994774A ** get_address_of_OnAudioConfigurationChanged_0() { return &___OnAudioConfigurationChanged_0; }
inline void set_OnAudioConfigurationChanged_0(AudioConfigurationChangeHandler_t1A997C51DF7B553A94DAD358F8D968308994774A * value)
{
___OnAudioConfigurationChanged_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnAudioConfigurationChanged_0), (void*)value);
}
};
// Dissonance.Audio.Codecs.Opus.BandwidthExtensions
struct BandwidthExtensions_t5C4C7D7DB340BEE2E2823CD70DEA4E4E352C1CA7 : public RuntimeObject
{
public:
public:
};
struct BandwidthExtensions_t5C4C7D7DB340BEE2E2823CD70DEA4E4E352C1CA7_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Codecs.Opus.BandwidthExtensions::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(BandwidthExtensions_t5C4C7D7DB340BEE2E2823CD70DEA4E4E352C1CA7_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Mirror.SimpleWeb.BufferBucket
struct BufferBucket_tE62FEE054D9BD89BE6BE2C604F976D0BD92E8554 : public RuntimeObject
{
public:
// System.Int32 Mirror.SimpleWeb.BufferBucket::arraySize
int32_t ___arraySize_0;
// System.Collections.Concurrent.ConcurrentQueue`1<Mirror.SimpleWeb.ArrayBuffer> Mirror.SimpleWeb.BufferBucket::buffers
ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 * ___buffers_1;
// System.Int32 Mirror.SimpleWeb.BufferBucket::_current
int32_t ____current_2;
public:
inline static int32_t get_offset_of_arraySize_0() { return static_cast<int32_t>(offsetof(BufferBucket_tE62FEE054D9BD89BE6BE2C604F976D0BD92E8554, ___arraySize_0)); }
inline int32_t get_arraySize_0() const { return ___arraySize_0; }
inline int32_t* get_address_of_arraySize_0() { return &___arraySize_0; }
inline void set_arraySize_0(int32_t value)
{
___arraySize_0 = value;
}
inline static int32_t get_offset_of_buffers_1() { return static_cast<int32_t>(offsetof(BufferBucket_tE62FEE054D9BD89BE6BE2C604F976D0BD92E8554, ___buffers_1)); }
inline ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 * get_buffers_1() const { return ___buffers_1; }
inline ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 ** get_address_of_buffers_1() { return &___buffers_1; }
inline void set_buffers_1(ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 * value)
{
___buffers_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffers_1), (void*)value);
}
inline static int32_t get_offset_of__current_2() { return static_cast<int32_t>(offsetof(BufferBucket_tE62FEE054D9BD89BE6BE2C604F976D0BD92E8554, ____current_2)); }
inline int32_t get__current_2() const { return ____current_2; }
inline int32_t* get_address_of__current_2() { return &____current_2; }
inline void set__current_2(int32_t value)
{
____current_2 = value;
}
};
// Mirror.SimpleWeb.BufferPool
struct BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC : public RuntimeObject
{
public:
// Mirror.SimpleWeb.BufferBucket[] Mirror.SimpleWeb.BufferPool::buckets
BufferBucketU5BU5D_t31BDD9BB794E8F63CF5FC07EA3AF282E339439EF* ___buckets_0;
// System.Int32 Mirror.SimpleWeb.BufferPool::bucketCount
int32_t ___bucketCount_1;
// System.Int32 Mirror.SimpleWeb.BufferPool::smallest
int32_t ___smallest_2;
// System.Int32 Mirror.SimpleWeb.BufferPool::largest
int32_t ___largest_3;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC, ___buckets_0)); }
inline BufferBucketU5BU5D_t31BDD9BB794E8F63CF5FC07EA3AF282E339439EF* get_buckets_0() const { return ___buckets_0; }
inline BufferBucketU5BU5D_t31BDD9BB794E8F63CF5FC07EA3AF282E339439EF** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(BufferBucketU5BU5D_t31BDD9BB794E8F63CF5FC07EA3AF282E339439EF* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_bucketCount_1() { return static_cast<int32_t>(offsetof(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC, ___bucketCount_1)); }
inline int32_t get_bucketCount_1() const { return ___bucketCount_1; }
inline int32_t* get_address_of_bucketCount_1() { return &___bucketCount_1; }
inline void set_bucketCount_1(int32_t value)
{
___bucketCount_1 = value;
}
inline static int32_t get_offset_of_smallest_2() { return static_cast<int32_t>(offsetof(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC, ___smallest_2)); }
inline int32_t get_smallest_2() const { return ___smallest_2; }
inline int32_t* get_address_of_smallest_2() { return &___smallest_2; }
inline void set_smallest_2(int32_t value)
{
___smallest_2 = value;
}
inline static int32_t get_offset_of_largest_3() { return static_cast<int32_t>(offsetof(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC, ___largest_3)); }
inline int32_t get_largest_3() const { return ___largest_3; }
inline int32_t* get_address_of_largest_3() { return &___largest_3; }
inline void set_largest_3(int32_t value)
{
___largest_3 = value;
}
};
// Dissonance.Audio.Playback.BufferedDecoder
struct BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB : public RuntimeObject
{
public:
// Dissonance.Audio.Playback.EncodedAudioBuffer Dissonance.Audio.Playback.BufferedDecoder::_buffer
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43 * ____buffer_0;
// Dissonance.Audio.Codecs.IVoiceDecoder Dissonance.Audio.Playback.BufferedDecoder::_decoder
RuntimeObject* ____decoder_1;
// System.UInt32 Dissonance.Audio.Playback.BufferedDecoder::_frameSize
uint32_t ____frameSize_2;
// NAudio.Wave.WaveFormat Dissonance.Audio.Playback.BufferedDecoder::_waveFormat
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____waveFormat_3;
// System.Action`1<Dissonance.Networking.VoicePacket> Dissonance.Audio.Playback.BufferedDecoder::_recycleFrame
Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * ____recycleFrame_4;
// Dissonance.Audio.AudioFileWriter Dissonance.Audio.Playback.BufferedDecoder::_diagnosticOutput
AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * ____diagnosticOutput_5;
// Dissonance.Threading.LockedValue`1<Dissonance.Audio.Playback.PlaybackOptions> Dissonance.Audio.Playback.BufferedDecoder::_options
LockedValue_1_t9CB12AECE65CC17C452CD271323CB05CBAE820E6 * ____options_6;
// System.Boolean Dissonance.Audio.Playback.BufferedDecoder::_receivedFirstPacket
bool ____receivedFirstPacket_7;
// System.Int32 Dissonance.Audio.Playback.BufferedDecoder::_approxChannelCount
int32_t ____approxChannelCount_8;
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>> Dissonance.Audio.Playback.BufferedDecoder::_channels
ReadonlyLockedValue_1_tEF0F4999B780816F08D1C8BCF4F0FE810EE86FF2 * ____channels_9;
public:
inline static int32_t get_offset_of__buffer_0() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____buffer_0)); }
inline EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43 * get__buffer_0() const { return ____buffer_0; }
inline EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43 ** get_address_of__buffer_0() { return &____buffer_0; }
inline void set__buffer_0(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43 * value)
{
____buffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_0), (void*)value);
}
inline static int32_t get_offset_of__decoder_1() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____decoder_1)); }
inline RuntimeObject* get__decoder_1() const { return ____decoder_1; }
inline RuntimeObject** get_address_of__decoder_1() { return &____decoder_1; }
inline void set__decoder_1(RuntimeObject* value)
{
____decoder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____decoder_1), (void*)value);
}
inline static int32_t get_offset_of__frameSize_2() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____frameSize_2)); }
inline uint32_t get__frameSize_2() const { return ____frameSize_2; }
inline uint32_t* get_address_of__frameSize_2() { return &____frameSize_2; }
inline void set__frameSize_2(uint32_t value)
{
____frameSize_2 = value;
}
inline static int32_t get_offset_of__waveFormat_3() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____waveFormat_3)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__waveFormat_3() const { return ____waveFormat_3; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__waveFormat_3() { return &____waveFormat_3; }
inline void set__waveFormat_3(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____waveFormat_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____waveFormat_3), (void*)value);
}
inline static int32_t get_offset_of__recycleFrame_4() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____recycleFrame_4)); }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * get__recycleFrame_4() const { return ____recycleFrame_4; }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 ** get_address_of__recycleFrame_4() { return &____recycleFrame_4; }
inline void set__recycleFrame_4(Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * value)
{
____recycleFrame_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____recycleFrame_4), (void*)value);
}
inline static int32_t get_offset_of__diagnosticOutput_5() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____diagnosticOutput_5)); }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * get__diagnosticOutput_5() const { return ____diagnosticOutput_5; }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A ** get_address_of__diagnosticOutput_5() { return &____diagnosticOutput_5; }
inline void set__diagnosticOutput_5(AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * value)
{
____diagnosticOutput_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____diagnosticOutput_5), (void*)value);
}
inline static int32_t get_offset_of__options_6() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____options_6)); }
inline LockedValue_1_t9CB12AECE65CC17C452CD271323CB05CBAE820E6 * get__options_6() const { return ____options_6; }
inline LockedValue_1_t9CB12AECE65CC17C452CD271323CB05CBAE820E6 ** get_address_of__options_6() { return &____options_6; }
inline void set__options_6(LockedValue_1_t9CB12AECE65CC17C452CD271323CB05CBAE820E6 * value)
{
____options_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____options_6), (void*)value);
}
inline static int32_t get_offset_of__receivedFirstPacket_7() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____receivedFirstPacket_7)); }
inline bool get__receivedFirstPacket_7() const { return ____receivedFirstPacket_7; }
inline bool* get_address_of__receivedFirstPacket_7() { return &____receivedFirstPacket_7; }
inline void set__receivedFirstPacket_7(bool value)
{
____receivedFirstPacket_7 = value;
}
inline static int32_t get_offset_of__approxChannelCount_8() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____approxChannelCount_8)); }
inline int32_t get__approxChannelCount_8() const { return ____approxChannelCount_8; }
inline int32_t* get_address_of__approxChannelCount_8() { return &____approxChannelCount_8; }
inline void set__approxChannelCount_8(int32_t value)
{
____approxChannelCount_8 = value;
}
inline static int32_t get_offset_of__channels_9() { return static_cast<int32_t>(offsetof(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB, ____channels_9)); }
inline ReadonlyLockedValue_1_tEF0F4999B780816F08D1C8BCF4F0FE810EE86FF2 * get__channels_9() const { return ____channels_9; }
inline ReadonlyLockedValue_1_tEF0F4999B780816F08D1C8BCF4F0FE810EE86FF2 ** get_address_of__channels_9() { return &____channels_9; }
inline void set__channels_9(ReadonlyLockedValue_1_tEF0F4999B780816F08D1C8BCF4F0FE810EE86FF2 * value)
{
____channels_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channels_9), (void*)value);
}
};
// Dissonance.Audio.Capture.BufferedSampleProvider
struct BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF : public RuntimeObject
{
public:
// NAudio.Wave.WaveFormat Dissonance.Audio.Capture.BufferedSampleProvider::_format
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____format_0;
// Dissonance.Datastructures.TransferBuffer`1<System.Single> Dissonance.Audio.Capture.BufferedSampleProvider::_samples
TransferBuffer_1_t6DDAF9101E0ED4BF18A87145CEE768CFD9B00D3E * ____samples_1;
public:
inline static int32_t get_offset_of__format_0() { return static_cast<int32_t>(offsetof(BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF, ____format_0)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__format_0() const { return ____format_0; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__format_0() { return &____format_0; }
inline void set__format_0(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____format_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____format_0), (void*)value);
}
inline static int32_t get_offset_of__samples_1() { return static_cast<int32_t>(offsetof(BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF, ____samples_1)); }
inline TransferBuffer_1_t6DDAF9101E0ED4BF18A87145CEE768CFD9B00D3E * get__samples_1() const { return ____samples_1; }
inline TransferBuffer_1_t6DDAF9101E0ED4BF18A87145CEE768CFD9B00D3E ** get_address_of__samples_1() { return &____samples_1; }
inline void set__samples_1(TransferBuffer_1_t6DDAF9101E0ED4BF18A87145CEE768CFD9B00D3E * value)
{
____samples_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____samples_1), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.CSharpCodeHelpers
struct CSharpCodeHelpers_tEE6CB93216411268241C4AE6DE871E6465124729 : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.ClientHandshake
struct ClientHandshake_t3E9C39478EEC2624B360B1AC80376DE447365F41 : public RuntimeObject
{
public:
public:
};
// Dissonance.Networking.ClientIdCollection
struct ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525 : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<System.String> Dissonance.Networking.ClientIdCollection::_items
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ____items_1;
// System.Collections.Generic.List`1<System.UInt16> Dissonance.Networking.ClientIdCollection::_freeIds
List_1_tBBC4E953860E582A3E060CC10B1387AFC5A36FC5 * ____freeIds_2;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.String>> Dissonance.Networking.ClientIdCollection::_alive
RuntimeObject* ____alive_3;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525, ____items_1)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get__items_1() const { return ____items_1; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__freeIds_2() { return static_cast<int32_t>(offsetof(ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525, ____freeIds_2)); }
inline List_1_tBBC4E953860E582A3E060CC10B1387AFC5A36FC5 * get__freeIds_2() const { return ____freeIds_2; }
inline List_1_tBBC4E953860E582A3E060CC10B1387AFC5A36FC5 ** get_address_of__freeIds_2() { return &____freeIds_2; }
inline void set__freeIds_2(List_1_tBBC4E953860E582A3E060CC10B1387AFC5A36FC5 * value)
{
____freeIds_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____freeIds_2), (void*)value);
}
inline static int32_t get_offset_of__alive_3() { return static_cast<int32_t>(offsetof(ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525, ____alive_3)); }
inline RuntimeObject* get__alive_3() const { return ____alive_3; }
inline RuntimeObject** get_address_of__alive_3() { return &____alive_3; }
inline void set__alive_3(RuntimeObject* value)
{
____alive_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____alive_3), (void*)value);
}
};
struct ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525_StaticFields
{
public:
// Dissonance.Log Dissonance.Networking.ClientIdCollection::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Mirror.SimpleWeb.ClientSslHelper
struct ClientSslHelper_t12C64C0DE7596082EDDDE82258586B251B3BACF2 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.ConfigurationChooser
struct ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.Constants
struct Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9 : public RuntimeObject
{
public:
public:
};
struct Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9_StaticFields
{
public:
// System.Int32 Mirror.SimpleWeb.Constants::HandshakeGUIDLength
int32_t ___HandshakeGUIDLength_8;
// System.Byte[] Mirror.SimpleWeb.Constants::HandshakeGUIDBytes
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___HandshakeGUIDBytes_9;
// System.Byte[] Mirror.SimpleWeb.Constants::endOfHandshake
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___endOfHandshake_10;
public:
inline static int32_t get_offset_of_HandshakeGUIDLength_8() { return static_cast<int32_t>(offsetof(Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9_StaticFields, ___HandshakeGUIDLength_8)); }
inline int32_t get_HandshakeGUIDLength_8() const { return ___HandshakeGUIDLength_8; }
inline int32_t* get_address_of_HandshakeGUIDLength_8() { return &___HandshakeGUIDLength_8; }
inline void set_HandshakeGUIDLength_8(int32_t value)
{
___HandshakeGUIDLength_8 = value;
}
inline static int32_t get_offset_of_HandshakeGUIDBytes_9() { return static_cast<int32_t>(offsetof(Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9_StaticFields, ___HandshakeGUIDBytes_9)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_HandshakeGUIDBytes_9() const { return ___HandshakeGUIDBytes_9; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_HandshakeGUIDBytes_9() { return &___HandshakeGUIDBytes_9; }
inline void set_HandshakeGUIDBytes_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___HandshakeGUIDBytes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___HandshakeGUIDBytes_9), (void*)value);
}
inline static int32_t get_offset_of_endOfHandshake_10() { return static_cast<int32_t>(offsetof(Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9_StaticFields, ___endOfHandshake_10)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_endOfHandshake_10() const { return ___endOfHandshake_10; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_endOfHandshake_10() { return &___endOfHandshake_10; }
inline void set_endOfHandshake_10(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___endOfHandshake_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___endOfHandshake_10), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.Constants
struct Constants_t5F643525F9DC2B4E093E6D2EA2BBB2F20BDD7377 : public RuntimeObject
{
public:
public:
};
// UnityEngine.Analytics.ContinuousEvent
struct ContinuousEvent_t3F564D8670B20B2AED1CF9CC8D8F7DC74FF5B526 : public RuntimeObject
{
public:
public:
};
// Dissonance.Threading.DThread
struct DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42 : public RuntimeObject
{
public:
// System.Threading.Thread Dissonance.Threading.DThread::_thread
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * ____thread_0;
// System.Boolean Dissonance.Threading.DThread::<IsStarted>k__BackingField
bool ___U3CIsStartedU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of__thread_0() { return static_cast<int32_t>(offsetof(DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42, ____thread_0)); }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * get__thread_0() const { return ____thread_0; }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 ** get_address_of__thread_0() { return &____thread_0; }
inline void set__thread_0(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * value)
{
____thread_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____thread_0), (void*)value);
}
inline static int32_t get_offset_of_U3CIsStartedU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42, ___U3CIsStartedU3Ek__BackingField_1)); }
inline bool get_U3CIsStartedU3Ek__BackingField_1() const { return ___U3CIsStartedU3Ek__BackingField_1; }
inline bool* get_address_of_U3CIsStartedU3Ek__BackingField_1() { return &___U3CIsStartedU3Ek__BackingField_1; }
inline void set_U3CIsStartedU3Ek__BackingField_1(bool value)
{
___U3CIsStartedU3Ek__BackingField_1 = value;
}
};
// Dissonance.Audio.Playback.DecoderFactory
struct DecoderFactory_t22B8AF664A67E4EA8A30752B2767C96CF9ABE095 : public RuntimeObject
{
public:
public:
};
struct DecoderFactory_t22B8AF664A67E4EA8A30752B2767C96CF9ABE095_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.DecoderFactory::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(DecoderFactory_t22B8AF664A67E4EA8A30752B2767C96CF9ABE095_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Dissonance.Audio.Playback.DecoderPipelinePool
struct DecoderPipelinePool_t736A122F218D8B3DCDD8717A1ED3D8DB63536082 : public RuntimeObject
{
public:
public:
};
struct DecoderPipelinePool_t736A122F218D8B3DCDD8717A1ED3D8DB63536082_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<Dissonance.Audio.Playback.FrameFormat,Dissonance.Datastructures.ConcurrentPool`1<Dissonance.Audio.Playback.DecoderPipeline>> Dissonance.Audio.Playback.DecoderPipelinePool::Pools
Dictionary_2_t7E150DE9CA8CBE6B725D8B71627DFA90C90CD976 * ___Pools_0;
// System.Int32 Dissonance.Audio.Playback.DecoderPipelinePool::_nextPipelineId
int32_t ____nextPipelineId_1;
public:
inline static int32_t get_offset_of_Pools_0() { return static_cast<int32_t>(offsetof(DecoderPipelinePool_t736A122F218D8B3DCDD8717A1ED3D8DB63536082_StaticFields, ___Pools_0)); }
inline Dictionary_2_t7E150DE9CA8CBE6B725D8B71627DFA90C90CD976 * get_Pools_0() const { return ___Pools_0; }
inline Dictionary_2_t7E150DE9CA8CBE6B725D8B71627DFA90C90CD976 ** get_address_of_Pools_0() { return &___Pools_0; }
inline void set_Pools_0(Dictionary_2_t7E150DE9CA8CBE6B725D8B71627DFA90C90CD976 * value)
{
___Pools_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Pools_0), (void*)value);
}
inline static int32_t get_offset_of__nextPipelineId_1() { return static_cast<int32_t>(offsetof(DecoderPipelinePool_t736A122F218D8B3DCDD8717A1ED3D8DB63536082_StaticFields, ____nextPipelineId_1)); }
inline int32_t get__nextPipelineId_1() const { return ____nextPipelineId_1; }
inline int32_t* get_address_of__nextPipelineId_1() { return &____nextPipelineId_1; }
inline void set__nextPipelineId_1(int32_t value)
{
____nextPipelineId_1 = value;
}
};
// UnityEngine.InputSystem.Utilities.DelegateHelpers
struct DelegateHelpers_t2842AC2C068CB7E7CAB9176EEDC04C91B83B1517 : public RuntimeObject
{
public:
public:
};
// Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessageExtensions
struct DissonanceNetworkMessageExtensions_tA462231488F1D4D9AA051A561DEB8381A4EB14BF : public RuntimeObject
{
public:
public:
};
struct DissonanceNetworkMessageExtensions_tA462231488F1D4D9AA051A561DEB8381A4EB14BF_StaticFields
{
public:
// Dissonance.Datastructures.ConcurrentPool`1<System.Byte[]> Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessageExtensions::SerializationBuffers
ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * ___SerializationBuffers_1;
public:
inline static int32_t get_offset_of_SerializationBuffers_1() { return static_cast<int32_t>(offsetof(DissonanceNetworkMessageExtensions_tA462231488F1D4D9AA051A561DEB8381A4EB14BF_StaticFields, ___SerializationBuffers_1)); }
inline ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * get_SerializationBuffers_1() const { return ___SerializationBuffers_1; }
inline ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 ** get_address_of_SerializationBuffers_1() { return &___SerializationBuffers_1; }
inline void set_SerializationBuffers_1(ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * value)
{
___SerializationBuffers_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SerializationBuffers_1), (void*)value);
}
};
// Dissonance.DissonanceRootPath
struct DissonanceRootPath_t57B08B06F8F014AB50F07C2B94527E0A24FE0F8B : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.DualShock.DualShockSupport
struct DualShockSupport_t4A4EB57323155BE0F3A4DAB69C74B8B84E049CBF : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.Utilities.ExceptionHelpers
struct ExceptionHelpers_t4536D3B874E8BB81119F4585B2C62FDDE10B580D : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.FeatureApi
struct FeatureApi_t53B95CB484F9FF05454468D50689FC4A6A5BEBA6 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.FeatureExtensions
struct FeatureExtensions_t3AE82EEF9BA5B67267E4A8371D344F93AA983603 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.EnhancedTouch.Finger
struct Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB : public RuntimeObject
{
public:
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.Finger::<screen>k__BackingField
Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * ___U3CscreenU3Ek__BackingField_0;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Finger::<index>k__BackingField
int32_t ___U3CindexU3Ek__BackingField_1;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.Finger::m_StateHistory
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___m_StateHistory_2;
public:
inline static int32_t get_offset_of_U3CscreenU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB, ___U3CscreenU3Ek__BackingField_0)); }
inline Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * get_U3CscreenU3Ek__BackingField_0() const { return ___U3CscreenU3Ek__BackingField_0; }
inline Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B ** get_address_of_U3CscreenU3Ek__BackingField_0() { return &___U3CscreenU3Ek__BackingField_0; }
inline void set_U3CscreenU3Ek__BackingField_0(Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * value)
{
___U3CscreenU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CscreenU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CindexU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB, ___U3CindexU3Ek__BackingField_1)); }
inline int32_t get_U3CindexU3Ek__BackingField_1() const { return ___U3CindexU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CindexU3Ek__BackingField_1() { return &___U3CindexU3Ek__BackingField_1; }
inline void set_U3CindexU3Ek__BackingField_1(int32_t value)
{
___U3CindexU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_m_StateHistory_2() { return static_cast<int32_t>(offsetof(Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB, ___m_StateHistory_2)); }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * get_m_StateHistory_2() const { return ___m_StateHistory_2; }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 ** get_address_of_m_StateHistory_2() { return &___m_StateHistory_2; }
inline void set_m_StateHistory_2(InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * value)
{
___m_StateHistory_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StateHistory_2), (void*)value);
}
};
// Dissonance.Audio.Playback.FrameToSampleConverter
struct FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6 : public RuntimeObject
{
public:
// Dissonance.Audio.Playback.IFrameSource Dissonance.Audio.Playback.FrameToSampleConverter::_source
RuntimeObject* ____source_1;
// System.Single[] Dissonance.Audio.Playback.FrameToSampleConverter::_temp
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____temp_2;
// System.Boolean Dissonance.Audio.Playback.FrameToSampleConverter::_upstreamComplete
bool ____upstreamComplete_3;
// System.Int32 Dissonance.Audio.Playback.FrameToSampleConverter::_firstSample
int32_t ____firstSample_4;
// System.Int32 Dissonance.Audio.Playback.FrameToSampleConverter::_lastSample
int32_t ____lastSample_5;
public:
inline static int32_t get_offset_of__source_1() { return static_cast<int32_t>(offsetof(FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6, ____source_1)); }
inline RuntimeObject* get__source_1() const { return ____source_1; }
inline RuntimeObject** get_address_of__source_1() { return &____source_1; }
inline void set__source_1(RuntimeObject* value)
{
____source_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_1), (void*)value);
}
inline static int32_t get_offset_of__temp_2() { return static_cast<int32_t>(offsetof(FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6, ____temp_2)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__temp_2() const { return ____temp_2; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__temp_2() { return &____temp_2; }
inline void set__temp_2(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
____temp_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____temp_2), (void*)value);
}
inline static int32_t get_offset_of__upstreamComplete_3() { return static_cast<int32_t>(offsetof(FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6, ____upstreamComplete_3)); }
inline bool get__upstreamComplete_3() const { return ____upstreamComplete_3; }
inline bool* get_address_of__upstreamComplete_3() { return &____upstreamComplete_3; }
inline void set__upstreamComplete_3(bool value)
{
____upstreamComplete_3 = value;
}
inline static int32_t get_offset_of__firstSample_4() { return static_cast<int32_t>(offsetof(FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6, ____firstSample_4)); }
inline int32_t get__firstSample_4() const { return ____firstSample_4; }
inline int32_t* get_address_of__firstSample_4() { return &____firstSample_4; }
inline void set__firstSample_4(int32_t value)
{
____firstSample_4 = value;
}
inline static int32_t get_offset_of__lastSample_5() { return static_cast<int32_t>(offsetof(FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6, ____lastSample_5)); }
inline int32_t get__lastSample_5() const { return ____lastSample_5; }
inline int32_t* get_address_of__lastSample_5() { return &____lastSample_5; }
inline void set__lastSample_5(int32_t value)
{
____lastSample_5 = value;
}
};
struct FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.FrameToSampleConverter::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Mirror.GeneratedNetworkCode
struct GeneratedNetworkCode_tA5DCDE73EABE64446CC3985FE891D3CA9B55A51E : public RuntimeObject
{
public:
public:
};
// Mirror.GeneratedNetworkCode
struct GeneratedNetworkCode_tCA1290D91CA91D79A913D7DC2297FF457048EBAB : public RuntimeObject
{
public:
public:
};
// Mirror.GeneratedNetworkCode
struct GeneratedNetworkCode_tEDAF492877BF85A197904BE6AB8C31647DD386D9 : public RuntimeObject
{
public:
public:
};
// Mirror.GeneratedNetworkCode
struct GeneratedNetworkCode_t4E12F3615E580416D13E3FD79696296E8A5EDB15 : public RuntimeObject
{
public:
public:
};
// Mirror.GeneratedNetworkCode
struct GeneratedNetworkCode_t2F912513AF32BD27C1B54043FE0B651980C98713 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.HID.HIDParser
struct HIDParser_t3D375D88E31A9682A1903BE69160B5F717307C48 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.HID.HIDSupport
struct HIDSupport_t43762F934A959612C7332695E5C2FFE18956FA19 : public RuntimeObject
{
public:
public:
};
struct HIDSupport_t43762F934A959612C7332695E5C2FFE18956FA19_StaticFields
{
public:
// UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage[] UnityEngine.InputSystem.HID.HIDSupport::s_SupportedHIDUsages
HIDPageUsageU5BU5D_t19A60A4D2B527A660CA96FE5B658E5F1D3750AB0* ___s_SupportedHIDUsages_0;
public:
inline static int32_t get_offset_of_s_SupportedHIDUsages_0() { return static_cast<int32_t>(offsetof(HIDSupport_t43762F934A959612C7332695E5C2FFE18956FA19_StaticFields, ___s_SupportedHIDUsages_0)); }
inline HIDPageUsageU5BU5D_t19A60A4D2B527A660CA96FE5B658E5F1D3750AB0* get_s_SupportedHIDUsages_0() const { return ___s_SupportedHIDUsages_0; }
inline HIDPageUsageU5BU5D_t19A60A4D2B527A660CA96FE5B658E5F1D3750AB0** get_address_of_s_SupportedHIDUsages_0() { return &___s_SupportedHIDUsages_0; }
inline void set_s_SupportedHIDUsages_0(HIDPageUsageU5BU5D_t19A60A4D2B527A660CA96FE5B658E5F1D3750AB0* value)
{
___s_SupportedHIDUsages_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SupportedHIDUsages_0), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.HashCode
struct HashCode_t04F499E8E1D225853C1B731BE6D80A44C9DD1800 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.Interactions.HoldInteraction
struct HoldInteraction_tF0BCC4B032E233A71599B68FF0FC7EE7B1C21EE2 : public RuntimeObject
{
public:
// System.Single UnityEngine.InputSystem.Interactions.HoldInteraction::duration
float ___duration_0;
// System.Single UnityEngine.InputSystem.Interactions.HoldInteraction::pressPoint
float ___pressPoint_1;
// System.Double UnityEngine.InputSystem.Interactions.HoldInteraction::m_TimePressed
double ___m_TimePressed_2;
public:
inline static int32_t get_offset_of_duration_0() { return static_cast<int32_t>(offsetof(HoldInteraction_tF0BCC4B032E233A71599B68FF0FC7EE7B1C21EE2, ___duration_0)); }
inline float get_duration_0() const { return ___duration_0; }
inline float* get_address_of_duration_0() { return &___duration_0; }
inline void set_duration_0(float value)
{
___duration_0 = value;
}
inline static int32_t get_offset_of_pressPoint_1() { return static_cast<int32_t>(offsetof(HoldInteraction_tF0BCC4B032E233A71599B68FF0FC7EE7B1C21EE2, ___pressPoint_1)); }
inline float get_pressPoint_1() const { return ___pressPoint_1; }
inline float* get_address_of_pressPoint_1() { return &___pressPoint_1; }
inline void set_pressPoint_1(float value)
{
___pressPoint_1 = value;
}
inline static int32_t get_offset_of_m_TimePressed_2() { return static_cast<int32_t>(offsetof(HoldInteraction_tF0BCC4B032E233A71599B68FF0FC7EE7B1C21EE2, ___m_TimePressed_2)); }
inline double get_m_TimePressed_2() const { return ___m_TimePressed_2; }
inline double* get_address_of_m_TimePressed_2() { return &___m_TimePressed_2; }
inline void set_m_TimePressed_2(double value)
{
___m_TimePressed_2 = value;
}
};
// Dissonance.Extensions.IEnumerableExtensions
struct IEnumerableExtensions_t92EC5D814BD53AB252E710ECDFD2C71D9A11FB18 : public RuntimeObject
{
public:
public:
};
// Dissonance.Audio.Codecs.Identity.IdentityDecoder
struct IdentityDecoder_t8369BCE4F0B4CF94AB45079C99857AD3F4E57315 : public RuntimeObject
{
public:
// NAudio.Wave.WaveFormat Dissonance.Audio.Codecs.Identity.IdentityDecoder::_format
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____format_0;
public:
inline static int32_t get_offset_of__format_0() { return static_cast<int32_t>(offsetof(IdentityDecoder_t8369BCE4F0B4CF94AB45079C99857AD3F4E57315, ____format_0)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__format_0() const { return ____format_0; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__format_0() { return &____format_0; }
inline void set__format_0(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____format_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____format_0), (void*)value);
}
};
// Dissonance.Audio.Codecs.Identity.IdentityEncoder
struct IdentityEncoder_t31964F69456FEE32EF9EEFF6AD49CD575CDC0796 : public RuntimeObject
{
public:
// System.Int32 Dissonance.Audio.Codecs.Identity.IdentityEncoder::_sampleRate
int32_t ____sampleRate_0;
// System.Int32 Dissonance.Audio.Codecs.Identity.IdentityEncoder::_frameSize
int32_t ____frameSize_1;
public:
inline static int32_t get_offset_of__sampleRate_0() { return static_cast<int32_t>(offsetof(IdentityEncoder_t31964F69456FEE32EF9EEFF6AD49CD575CDC0796, ____sampleRate_0)); }
inline int32_t get__sampleRate_0() const { return ____sampleRate_0; }
inline int32_t* get_address_of__sampleRate_0() { return &____sampleRate_0; }
inline void set__sampleRate_0(int32_t value)
{
____sampleRate_0 = value;
}
inline static int32_t get_offset_of__frameSize_1() { return static_cast<int32_t>(offsetof(IdentityEncoder_t31964F69456FEE32EF9EEFF6AD49CD575CDC0796, ____frameSize_1)); }
inline int32_t get__frameSize_1() const { return ____frameSize_1; }
inline int32_t* get_address_of__frameSize_1() { return &____frameSize_1; }
inline void set__frameSize_1(int32_t value)
{
____frameSize_1 = value;
}
};
// UnityEngine.InputSystem.Utilities.InputArrayExtensions
struct InputArrayExtensions_tFD5B1576F37ABB31BF208E0C47D3FF71951F01A6 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.InputLayoutLoader
struct InputLayoutLoader_t8194F7E176BF352FBBD40A342873F2A6933A65CA : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.InputRuntime
struct InputRuntime_t6DA0C21F743E96EA00319B761990461A6974754F : public RuntimeObject
{
public:
public:
};
struct InputRuntime_t6DA0C21F743E96EA00319B761990461A6974754F_StaticFields
{
public:
// UnityEngine.InputSystem.LowLevel.IInputRuntime UnityEngine.InputSystem.LowLevel.InputRuntime::s_Instance
RuntimeObject* ___s_Instance_0;
// System.Double UnityEngine.InputSystem.LowLevel.InputRuntime::s_CurrentTimeOffsetToRealtimeSinceStartup
double ___s_CurrentTimeOffsetToRealtimeSinceStartup_1;
public:
inline static int32_t get_offset_of_s_Instance_0() { return static_cast<int32_t>(offsetof(InputRuntime_t6DA0C21F743E96EA00319B761990461A6974754F_StaticFields, ___s_Instance_0)); }
inline RuntimeObject* get_s_Instance_0() const { return ___s_Instance_0; }
inline RuntimeObject** get_address_of_s_Instance_0() { return &___s_Instance_0; }
inline void set_s_Instance_0(RuntimeObject* value)
{
___s_Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value);
}
inline static int32_t get_offset_of_s_CurrentTimeOffsetToRealtimeSinceStartup_1() { return static_cast<int32_t>(offsetof(InputRuntime_t6DA0C21F743E96EA00319B761990461A6974754F_StaticFields, ___s_CurrentTimeOffsetToRealtimeSinceStartup_1)); }
inline double get_s_CurrentTimeOffsetToRealtimeSinceStartup_1() const { return ___s_CurrentTimeOffsetToRealtimeSinceStartup_1; }
inline double* get_address_of_s_CurrentTimeOffsetToRealtimeSinceStartup_1() { return &___s_CurrentTimeOffsetToRealtimeSinceStartup_1; }
inline void set_s_CurrentTimeOffsetToRealtimeSinceStartup_1(double value)
{
___s_CurrentTimeOffsetToRealtimeSinceStartup_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputRuntimeExtensions
struct InputRuntimeExtensions_t774E4CE66E1C22F9D0036C849689D5518CB4977C : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.InputState
struct InputState_t5CCD8491F5738041AAE842A263DB6CE89E8A51B0 : public RuntimeObject
{
public:
public:
};
// Dissonance.Log
struct Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 : public RuntimeObject
{
public:
// System.String Dissonance.Log::_traceFormat
String_t* ____traceFormat_0;
// System.String Dissonance.Log::_debugFormat
String_t* ____debugFormat_1;
// System.String Dissonance.Log::_basicFormat
String_t* ____basicFormat_2;
// System.Int32 Dissonance.Log::_category
int32_t ____category_3;
public:
inline static int32_t get_offset_of__traceFormat_0() { return static_cast<int32_t>(offsetof(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0, ____traceFormat_0)); }
inline String_t* get__traceFormat_0() const { return ____traceFormat_0; }
inline String_t** get_address_of__traceFormat_0() { return &____traceFormat_0; }
inline void set__traceFormat_0(String_t* value)
{
____traceFormat_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____traceFormat_0), (void*)value);
}
inline static int32_t get_offset_of__debugFormat_1() { return static_cast<int32_t>(offsetof(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0, ____debugFormat_1)); }
inline String_t* get__debugFormat_1() const { return ____debugFormat_1; }
inline String_t** get_address_of__debugFormat_1() { return &____debugFormat_1; }
inline void set__debugFormat_1(String_t* value)
{
____debugFormat_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____debugFormat_1), (void*)value);
}
inline static int32_t get_offset_of__basicFormat_2() { return static_cast<int32_t>(offsetof(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0, ____basicFormat_2)); }
inline String_t* get__basicFormat_2() const { return ____basicFormat_2; }
inline String_t** get_address_of__basicFormat_2() { return &____basicFormat_2; }
inline void set__basicFormat_2(String_t* value)
{
____basicFormat_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____basicFormat_2), (void*)value);
}
inline static int32_t get_offset_of__category_3() { return static_cast<int32_t>(offsetof(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0, ____category_3)); }
inline int32_t get__category_3() const { return ____category_3; }
inline int32_t* get_address_of__category_3() { return &____category_3; }
inline void set__category_3(int32_t value)
{
____category_3 = value;
}
};
// Dissonance.Logs
struct Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9 : public RuntimeObject
{
public:
public:
};
struct Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9_StaticFields
{
public:
// System.Boolean Dissonance.Logs::<Disable>k__BackingField
bool ___U3CDisableU3Ek__BackingField_0;
// Dissonance.Datastructures.TransferBuffer`1<Dissonance.Logs/LogMessage> Dissonance.Logs::LogsFromOtherThreads
TransferBuffer_1_t0FF807875488268C2EBBD8F2C019408B3C308773 * ___LogsFromOtherThreads_1;
// System.Threading.Thread Dissonance.Logs::_main
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * ____main_2;
public:
inline static int32_t get_offset_of_U3CDisableU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9_StaticFields, ___U3CDisableU3Ek__BackingField_0)); }
inline bool get_U3CDisableU3Ek__BackingField_0() const { return ___U3CDisableU3Ek__BackingField_0; }
inline bool* get_address_of_U3CDisableU3Ek__BackingField_0() { return &___U3CDisableU3Ek__BackingField_0; }
inline void set_U3CDisableU3Ek__BackingField_0(bool value)
{
___U3CDisableU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_LogsFromOtherThreads_1() { return static_cast<int32_t>(offsetof(Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9_StaticFields, ___LogsFromOtherThreads_1)); }
inline TransferBuffer_1_t0FF807875488268C2EBBD8F2C019408B3C308773 * get_LogsFromOtherThreads_1() const { return ___LogsFromOtherThreads_1; }
inline TransferBuffer_1_t0FF807875488268C2EBBD8F2C019408B3C308773 ** get_address_of_LogsFromOtherThreads_1() { return &___LogsFromOtherThreads_1; }
inline void set_LogsFromOtherThreads_1(TransferBuffer_1_t0FF807875488268C2EBBD8F2C019408B3C308773 * value)
{
___LogsFromOtherThreads_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___LogsFromOtherThreads_1), (void*)value);
}
inline static int32_t get_offset_of__main_2() { return static_cast<int32_t>(offsetof(Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9_StaticFields, ____main_2)); }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * get__main_2() const { return ____main_2; }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 ** get_address_of__main_2() { return &____main_2; }
inline void set__main_2(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * value)
{
____main_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____main_2), (void*)value);
}
};
// System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject
{
public:
// System.Object System.MarshalByRefObject::_identity
RuntimeObject * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); }
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(RuntimeObject * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// UnityEngine.InputSystem.Utilities.MemoryHelpers
struct MemoryHelpers_tBBAE577F7F8329B36FB7F400215DEEDFF5D3AFCB : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.MessageProcessor
struct MessageProcessor_tE0C1BF68FE28C0F725E7A66A9D72A0B744B8BF4C : public RuntimeObject
{
public:
public:
};
// Dissonance.Metrics
struct Metrics_tDF1305845E3755026F43FE5BE145047F1EC2F151 : public RuntimeObject
{
public:
public:
};
struct Metrics_tDF1305845E3755026F43FE5BE145047F1EC2F151_StaticFields
{
public:
// Dissonance.Log Dissonance.Metrics::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Threading.Thread Dissonance.Metrics::_main
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * ____main_1;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(Metrics_tDF1305845E3755026F43FE5BE145047F1EC2F151_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of__main_1() { return static_cast<int32_t>(offsetof(Metrics_tDF1305845E3755026F43FE5BE145047F1EC2F151_StaticFields, ____main_1)); }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * get__main_1() const { return ____main_1; }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 ** get_address_of__main_1() { return &____main_1; }
inline void set__main_1(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * value)
{
____main_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____main_1), (void*)value);
}
};
// UnityEngine.Microphone
struct Microphone_tB61F7FF9EB388460F0539DDEAA25EBBEF27248C8 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.Native
struct Native_t558849F3C2B4DC5969DEE6CCB9AC2945D7F93965 : public RuntimeObject
{
public:
public:
};
// UnityEngine.Yoga.Native
struct Native_tFAF7EACFD900864BAD8C4F8341331AA9D5B1D476 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.NativeApi
struct NativeApi_tED86D6EEEB849DFB4E49896148A28584D4245151 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.NativeCopyUtility
struct NativeCopyUtility_t537698701837049415442B997E0E9BA15843AE3E : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.NativeInputRuntime
struct NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C : public RuntimeObject
{
public:
// System.Action UnityEngine.InputSystem.LowLevel.NativeInputRuntime::m_ShutdownMethod
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___m_ShutdownMethod_1;
// UnityEngine.InputSystem.LowLevel.InputUpdateDelegate UnityEngine.InputSystem.LowLevel.NativeInputRuntime::m_OnUpdate
InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA * ___m_OnUpdate_2;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputUpdateType> UnityEngine.InputSystem.LowLevel.NativeInputRuntime::m_OnBeforeUpdate
Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 * ___m_OnBeforeUpdate_3;
// System.Func`2<UnityEngine.InputSystem.LowLevel.InputUpdateType,System.Boolean> UnityEngine.InputSystem.LowLevel.NativeInputRuntime::m_OnShouldRunUpdate
Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE * ___m_OnShouldRunUpdate_4;
// System.Single UnityEngine.InputSystem.LowLevel.NativeInputRuntime::m_PollingFrequency
float ___m_PollingFrequency_5;
// System.Boolean UnityEngine.InputSystem.LowLevel.NativeInputRuntime::m_DidCallOnShutdown
bool ___m_DidCallOnShutdown_6;
// System.Action`1<System.Boolean> UnityEngine.InputSystem.LowLevel.NativeInputRuntime::m_FocusChangedMethod
Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * ___m_FocusChangedMethod_7;
public:
inline static int32_t get_offset_of_m_ShutdownMethod_1() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C, ___m_ShutdownMethod_1)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_m_ShutdownMethod_1() const { return ___m_ShutdownMethod_1; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_m_ShutdownMethod_1() { return &___m_ShutdownMethod_1; }
inline void set_m_ShutdownMethod_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___m_ShutdownMethod_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ShutdownMethod_1), (void*)value);
}
inline static int32_t get_offset_of_m_OnUpdate_2() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C, ___m_OnUpdate_2)); }
inline InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA * get_m_OnUpdate_2() const { return ___m_OnUpdate_2; }
inline InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA ** get_address_of_m_OnUpdate_2() { return &___m_OnUpdate_2; }
inline void set_m_OnUpdate_2(InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA * value)
{
___m_OnUpdate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnUpdate_2), (void*)value);
}
inline static int32_t get_offset_of_m_OnBeforeUpdate_3() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C, ___m_OnBeforeUpdate_3)); }
inline Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 * get_m_OnBeforeUpdate_3() const { return ___m_OnBeforeUpdate_3; }
inline Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 ** get_address_of_m_OnBeforeUpdate_3() { return &___m_OnBeforeUpdate_3; }
inline void set_m_OnBeforeUpdate_3(Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 * value)
{
___m_OnBeforeUpdate_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnBeforeUpdate_3), (void*)value);
}
inline static int32_t get_offset_of_m_OnShouldRunUpdate_4() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C, ___m_OnShouldRunUpdate_4)); }
inline Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE * get_m_OnShouldRunUpdate_4() const { return ___m_OnShouldRunUpdate_4; }
inline Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE ** get_address_of_m_OnShouldRunUpdate_4() { return &___m_OnShouldRunUpdate_4; }
inline void set_m_OnShouldRunUpdate_4(Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE * value)
{
___m_OnShouldRunUpdate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnShouldRunUpdate_4), (void*)value);
}
inline static int32_t get_offset_of_m_PollingFrequency_5() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C, ___m_PollingFrequency_5)); }
inline float get_m_PollingFrequency_5() const { return ___m_PollingFrequency_5; }
inline float* get_address_of_m_PollingFrequency_5() { return &___m_PollingFrequency_5; }
inline void set_m_PollingFrequency_5(float value)
{
___m_PollingFrequency_5 = value;
}
inline static int32_t get_offset_of_m_DidCallOnShutdown_6() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C, ___m_DidCallOnShutdown_6)); }
inline bool get_m_DidCallOnShutdown_6() const { return ___m_DidCallOnShutdown_6; }
inline bool* get_address_of_m_DidCallOnShutdown_6() { return &___m_DidCallOnShutdown_6; }
inline void set_m_DidCallOnShutdown_6(bool value)
{
___m_DidCallOnShutdown_6 = value;
}
inline static int32_t get_offset_of_m_FocusChangedMethod_7() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C, ___m_FocusChangedMethod_7)); }
inline Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * get_m_FocusChangedMethod_7() const { return ___m_FocusChangedMethod_7; }
inline Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 ** get_address_of_m_FocusChangedMethod_7() { return &___m_FocusChangedMethod_7; }
inline void set_m_FocusChangedMethod_7(Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * value)
{
___m_FocusChangedMethod_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FocusChangedMethod_7), (void*)value);
}
};
struct NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C_StaticFields
{
public:
// UnityEngine.InputSystem.LowLevel.NativeInputRuntime UnityEngine.InputSystem.LowLevel.NativeInputRuntime::instance
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C * ___instance_0;
public:
inline static int32_t get_offset_of_instance_0() { return static_cast<int32_t>(offsetof(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C_StaticFields, ___instance_0)); }
inline NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C * get_instance_0() const { return ___instance_0; }
inline NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C ** get_address_of_instance_0() { return &___instance_0; }
inline void set_instance_0(NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C * value)
{
___instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instance_0), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.NativeTypes
struct NativeTypes_t2BBAC7306EFF0C4FA66164F944E5A02589C6470E : public RuntimeObject
{
public:
public:
};
// UnityEngine.AI.NavMesh
struct NavMesh_t6A9D1EE380DAD7B40A82058C6956154300CC7D92 : public RuntimeObject
{
public:
public:
};
struct NavMesh_t6A9D1EE380DAD7B40A82058C6956154300CC7D92_StaticFields
{
public:
// UnityEngine.AI.NavMesh/OnNavMeshPreUpdate UnityEngine.AI.NavMesh::onPreUpdate
OnNavMeshPreUpdate_t5E34F761F39A1F6B898F0E729B36C0782B92D572 * ___onPreUpdate_0;
public:
inline static int32_t get_offset_of_onPreUpdate_0() { return static_cast<int32_t>(offsetof(NavMesh_t6A9D1EE380DAD7B40A82058C6956154300CC7D92_StaticFields, ___onPreUpdate_0)); }
inline OnNavMeshPreUpdate_t5E34F761F39A1F6B898F0E729B36C0782B92D572 * get_onPreUpdate_0() const { return ___onPreUpdate_0; }
inline OnNavMeshPreUpdate_t5E34F761F39A1F6B898F0E729B36C0782B92D572 ** get_address_of_onPreUpdate_0() { return &___onPreUpdate_0; }
inline void set_onPreUpdate_0(OnNavMeshPreUpdate_t5E34F761F39A1F6B898F0E729B36C0782B92D572 * value)
{
___onPreUpdate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPreUpdate_0), (void*)value);
}
};
// Dissonance.Networking.NetworkModeExtensions
struct NetworkModeExtensions_t495D6E5191C515BF47EDE2698A4F3D1376873560 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.Utilities.NumberHelpers
struct NumberHelpers_tD0ACB85ACB75800E127C55193C24A7A78A87247E : public RuntimeObject
{
public:
public:
};
// Dissonance.Audio.Codecs.Opus.OpusDecoder
struct OpusDecoder_tAA65811FA9918A5832A7279E74D95B86768BBF6B : public RuntimeObject
{
public:
// NAudio.Wave.WaveFormat Dissonance.Audio.Codecs.Opus.OpusDecoder::_format
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____format_0;
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusDecoder Dissonance.Audio.Codecs.Opus.OpusDecoder::_decoder
OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE * ____decoder_1;
public:
inline static int32_t get_offset_of__format_0() { return static_cast<int32_t>(offsetof(OpusDecoder_tAA65811FA9918A5832A7279E74D95B86768BBF6B, ____format_0)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__format_0() const { return ____format_0; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__format_0() { return &____format_0; }
inline void set__format_0(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____format_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____format_0), (void*)value);
}
inline static int32_t get_offset_of__decoder_1() { return static_cast<int32_t>(offsetof(OpusDecoder_tAA65811FA9918A5832A7279E74D95B86768BBF6B, ____decoder_1)); }
inline OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE * get__decoder_1() const { return ____decoder_1; }
inline OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE ** get_address_of__decoder_1() { return &____decoder_1; }
inline void set__decoder_1(OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE * value)
{
____decoder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____decoder_1), (void*)value);
}
};
// Dissonance.Audio.Codecs.Opus.OpusEncoder
struct OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977 : public RuntimeObject
{
public:
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusEncoder Dissonance.Audio.Codecs.Opus.OpusEncoder::_encoder
OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335 * ____encoder_1;
// System.Int32 Dissonance.Audio.Codecs.Opus.OpusEncoder::_frameSize
int32_t ____frameSize_4;
public:
inline static int32_t get_offset_of__encoder_1() { return static_cast<int32_t>(offsetof(OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977, ____encoder_1)); }
inline OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335 * get__encoder_1() const { return ____encoder_1; }
inline OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335 ** get_address_of__encoder_1() { return &____encoder_1; }
inline void set__encoder_1(OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335 * value)
{
____encoder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encoder_1), (void*)value);
}
inline static int32_t get_offset_of__frameSize_4() { return static_cast<int32_t>(offsetof(OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977, ____frameSize_4)); }
inline int32_t get__frameSize_4() const { return ____frameSize_4; }
inline int32_t* get_address_of__frameSize_4() { return &____frameSize_4; }
inline void set__frameSize_4(int32_t value)
{
____frameSize_4 = value;
}
};
struct OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Codecs.Opus.OpusEncoder::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Int32[] Dissonance.Audio.Codecs.Opus.OpusEncoder::PermittedFrameSizesSamples
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___PermittedFrameSizesSamples_2;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of_PermittedFrameSizesSamples_2() { return static_cast<int32_t>(offsetof(OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977_StaticFields, ___PermittedFrameSizesSamples_2)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_PermittedFrameSizesSamples_2() const { return ___PermittedFrameSizesSamples_2; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_PermittedFrameSizesSamples_2() { return &___PermittedFrameSizesSamples_2; }
inline void set_PermittedFrameSizesSamples_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___PermittedFrameSizesSamples_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PermittedFrameSizesSamples_2), (void*)value);
}
};
// Dissonance.Datastructures.POTBuffer
struct POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<System.Single[]> Dissonance.Datastructures.POTBuffer::_buffers
List_1_t497D7DE6115163D5A37B3548DB4B1051ED42E019 * ____buffers_0;
// System.UInt32 Dissonance.Datastructures.POTBuffer::<MaxCount>k__BackingField
uint32_t ___U3CMaxCountU3Ek__BackingField_1;
// System.UInt32 Dissonance.Datastructures.POTBuffer::<Count>k__BackingField
uint32_t ___U3CCountU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of__buffers_0() { return static_cast<int32_t>(offsetof(POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A, ____buffers_0)); }
inline List_1_t497D7DE6115163D5A37B3548DB4B1051ED42E019 * get__buffers_0() const { return ____buffers_0; }
inline List_1_t497D7DE6115163D5A37B3548DB4B1051ED42E019 ** get_address_of__buffers_0() { return &____buffers_0; }
inline void set__buffers_0(List_1_t497D7DE6115163D5A37B3548DB4B1051ED42E019 * value)
{
____buffers_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffers_0), (void*)value);
}
inline static int32_t get_offset_of_U3CMaxCountU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A, ___U3CMaxCountU3Ek__BackingField_1)); }
inline uint32_t get_U3CMaxCountU3Ek__BackingField_1() const { return ___U3CMaxCountU3Ek__BackingField_1; }
inline uint32_t* get_address_of_U3CMaxCountU3Ek__BackingField_1() { return &___U3CMaxCountU3Ek__BackingField_1; }
inline void set_U3CMaxCountU3Ek__BackingField_1(uint32_t value)
{
___U3CMaxCountU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CCountU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A, ___U3CCountU3Ek__BackingField_2)); }
inline uint32_t get_U3CCountU3Ek__BackingField_2() const { return ___U3CCountU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CCountU3Ek__BackingField_2() { return &___U3CCountU3Ek__BackingField_2; }
inline void set_U3CCountU3Ek__BackingField_2(uint32_t value)
{
___U3CCountU3Ek__BackingField_2 = value;
}
};
// Dissonance.Networking.Client.PacketDelaySimulator
struct PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A : public RuntimeObject
{
public:
// System.Random Dissonance.Networking.Client.PacketDelaySimulator::_rnd
Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 * ____rnd_0;
public:
inline static int32_t get_offset_of__rnd_0() { return static_cast<int32_t>(offsetof(PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A, ____rnd_0)); }
inline Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 * get__rnd_0() const { return ____rnd_0; }
inline Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 ** get_address_of__rnd_0() { return &____rnd_0; }
inline void set__rnd_0(Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 * value)
{
____rnd_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rnd_0), (void*)value);
}
};
// Dissonance.PlaybackPool
struct PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA : public RuntimeObject
{
public:
// Dissonance.Datastructures.Pool`1<Dissonance.Audio.Playback.VoicePlayback> Dissonance.PlaybackPool::_pool
Pool_1_t9AF1D81BC156A602FF6DF900480ACD3426F2901A * ____pool_0;
// Dissonance.Audio.Playback.IPriorityManager Dissonance.PlaybackPool::_priority
RuntimeObject* ____priority_1;
// Dissonance.Audio.Playback.IVolumeProvider Dissonance.PlaybackPool::_volume
RuntimeObject* ____volume_2;
// UnityEngine.GameObject Dissonance.PlaybackPool::_prefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ____prefab_3;
// UnityEngine.Transform Dissonance.PlaybackPool::_parent
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ____parent_4;
public:
inline static int32_t get_offset_of__pool_0() { return static_cast<int32_t>(offsetof(PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA, ____pool_0)); }
inline Pool_1_t9AF1D81BC156A602FF6DF900480ACD3426F2901A * get__pool_0() const { return ____pool_0; }
inline Pool_1_t9AF1D81BC156A602FF6DF900480ACD3426F2901A ** get_address_of__pool_0() { return &____pool_0; }
inline void set__pool_0(Pool_1_t9AF1D81BC156A602FF6DF900480ACD3426F2901A * value)
{
____pool_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____pool_0), (void*)value);
}
inline static int32_t get_offset_of__priority_1() { return static_cast<int32_t>(offsetof(PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA, ____priority_1)); }
inline RuntimeObject* get__priority_1() const { return ____priority_1; }
inline RuntimeObject** get_address_of__priority_1() { return &____priority_1; }
inline void set__priority_1(RuntimeObject* value)
{
____priority_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____priority_1), (void*)value);
}
inline static int32_t get_offset_of__volume_2() { return static_cast<int32_t>(offsetof(PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA, ____volume_2)); }
inline RuntimeObject* get__volume_2() const { return ____volume_2; }
inline RuntimeObject** get_address_of__volume_2() { return &____volume_2; }
inline void set__volume_2(RuntimeObject* value)
{
____volume_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____volume_2), (void*)value);
}
inline static int32_t get_offset_of__prefab_3() { return static_cast<int32_t>(offsetof(PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA, ____prefab_3)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get__prefab_3() const { return ____prefab_3; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of__prefab_3() { return &____prefab_3; }
inline void set__prefab_3(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
____prefab_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____prefab_3), (void*)value);
}
inline static int32_t get_offset_of__parent_4() { return static_cast<int32_t>(offsetof(PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA, ____parent_4)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get__parent_4() const { return ____parent_4; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of__parent_4() { return &____parent_4; }
inline void set__parent_4(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
____parent_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____parent_4), (void*)value);
}
};
// Dissonance.PlayerCollection
struct PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<System.String,Dissonance.VoicePlayerState> Dissonance.PlayerCollection::_playersLookup
Dictionary_2_t6EA78531C6BD1D0D6869E4AFA23A0A91E400EDC7 * ____playersLookup_1;
// System.Collections.Generic.List`1<Dissonance.VoicePlayerState> Dissonance.PlayerCollection::_players
List_1_t1F9759DA97A37E8AB1E682B486518AD112873ED1 * ____players_2;
// System.Collections.ObjectModel.ReadOnlyCollection`1<Dissonance.VoicePlayerState> Dissonance.PlayerCollection::_playersReadOnly
ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 * ____playersReadOnly_3;
// Dissonance.LocalVoicePlayerState Dissonance.PlayerCollection::<Local>k__BackingField
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1 * ___U3CLocalU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of__playersLookup_1() { return static_cast<int32_t>(offsetof(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8, ____playersLookup_1)); }
inline Dictionary_2_t6EA78531C6BD1D0D6869E4AFA23A0A91E400EDC7 * get__playersLookup_1() const { return ____playersLookup_1; }
inline Dictionary_2_t6EA78531C6BD1D0D6869E4AFA23A0A91E400EDC7 ** get_address_of__playersLookup_1() { return &____playersLookup_1; }
inline void set__playersLookup_1(Dictionary_2_t6EA78531C6BD1D0D6869E4AFA23A0A91E400EDC7 * value)
{
____playersLookup_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playersLookup_1), (void*)value);
}
inline static int32_t get_offset_of__players_2() { return static_cast<int32_t>(offsetof(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8, ____players_2)); }
inline List_1_t1F9759DA97A37E8AB1E682B486518AD112873ED1 * get__players_2() const { return ____players_2; }
inline List_1_t1F9759DA97A37E8AB1E682B486518AD112873ED1 ** get_address_of__players_2() { return &____players_2; }
inline void set__players_2(List_1_t1F9759DA97A37E8AB1E682B486518AD112873ED1 * value)
{
____players_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____players_2), (void*)value);
}
inline static int32_t get_offset_of__playersReadOnly_3() { return static_cast<int32_t>(offsetof(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8, ____playersReadOnly_3)); }
inline ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 * get__playersReadOnly_3() const { return ____playersReadOnly_3; }
inline ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 ** get_address_of__playersReadOnly_3() { return &____playersReadOnly_3; }
inline void set__playersReadOnly_3(ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 * value)
{
____playersReadOnly_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playersReadOnly_3), (void*)value);
}
inline static int32_t get_offset_of_U3CLocalU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8, ___U3CLocalU3Ek__BackingField_4)); }
inline LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1 * get_U3CLocalU3Ek__BackingField_4() const { return ___U3CLocalU3Ek__BackingField_4; }
inline LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1 ** get_address_of_U3CLocalU3Ek__BackingField_4() { return &___U3CLocalU3Ek__BackingField_4; }
inline void set_U3CLocalU3Ek__BackingField_4(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1 * value)
{
___U3CLocalU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CLocalU3Ek__BackingField_4), (void*)value);
}
};
struct PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8_StaticFields
{
public:
// Dissonance.Log Dissonance.PlayerCollection::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Dissonance.PlayerTrackerManager
struct PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<System.String,Dissonance.IDissonancePlayer> Dissonance.PlayerTrackerManager::_unlinkedPlayerTrackers
Dictionary_2_t8817F3A987324CDC7C5F0EA715F3CEE5E46F66BE * ____unlinkedPlayerTrackers_1;
// Dissonance.PlayerCollection Dissonance.PlayerTrackerManager::_players
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * ____players_2;
public:
inline static int32_t get_offset_of__unlinkedPlayerTrackers_1() { return static_cast<int32_t>(offsetof(PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1, ____unlinkedPlayerTrackers_1)); }
inline Dictionary_2_t8817F3A987324CDC7C5F0EA715F3CEE5E46F66BE * get__unlinkedPlayerTrackers_1() const { return ____unlinkedPlayerTrackers_1; }
inline Dictionary_2_t8817F3A987324CDC7C5F0EA715F3CEE5E46F66BE ** get_address_of__unlinkedPlayerTrackers_1() { return &____unlinkedPlayerTrackers_1; }
inline void set__unlinkedPlayerTrackers_1(Dictionary_2_t8817F3A987324CDC7C5F0EA715F3CEE5E46F66BE * value)
{
____unlinkedPlayerTrackers_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____unlinkedPlayerTrackers_1), (void*)value);
}
inline static int32_t get_offset_of__players_2() { return static_cast<int32_t>(offsetof(PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1, ____players_2)); }
inline PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * get__players_2() const { return ____players_2; }
inline PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 ** get_address_of__players_2() { return &____players_2; }
inline void set__players_2(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * value)
{
____players_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____players_2), (void*)value);
}
};
struct PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1_StaticFields
{
public:
// Dissonance.Log Dissonance.PlayerTrackerManager::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// UnityEngine.SpatialTracking.PoseDataSource
struct PoseDataSource_t729321C69DC33F646ED3624A4E79FFDB69C51D44 : public RuntimeObject
{
public:
public:
};
struct PoseDataSource_t729321C69DC33F646ED3624A4E79FFDB69C51D44_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState> UnityEngine.SpatialTracking.PoseDataSource::nodeStates
List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * ___nodeStates_0;
public:
inline static int32_t get_offset_of_nodeStates_0() { return static_cast<int32_t>(offsetof(PoseDataSource_t729321C69DC33F646ED3624A4E79FFDB69C51D44_StaticFields, ___nodeStates_0)); }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * get_nodeStates_0() const { return ___nodeStates_0; }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 ** get_address_of_nodeStates_0() { return &___nodeStates_0; }
inline void set_nodeStates_0(List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * value)
{
___nodeStates_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nodeStates_0), (void*)value);
}
};
// Dissonance.Config.Preferences
struct Preferences_t3BC96E21ADC4B7AA98A2FBF843EF468FD77F8DB3 : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.ReadHelper
struct ReadHelper_tFD164B0B3C265A0C15F78577A3471E0F6CD703B0 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArrayExtensions
struct ReadOnlyArrayExtensions_tDFB68A003B2A1AB6B4107CF85E79679B31597269 : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.ReceiveLoop
struct ReceiveLoop_tE5C5E2E5EB75303BCC47DE5439E5E078E753BA76 : public RuntimeObject
{
public:
public:
};
// UnityEngine.RemoteConfigSettingsHelper
struct RemoteConfigSettingsHelper_t4F594BB463720302BF8F02062BC9F2F3EAB39AE3 : public RuntimeObject
{
public:
public:
};
// UnityEngine.RemoteSettings
struct RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4 : public RuntimeObject
{
public:
public:
};
struct RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4_StaticFields
{
public:
// UnityEngine.RemoteSettings/UpdatedEventHandler UnityEngine.RemoteSettings::Updated
UpdatedEventHandler_tB65DDD5524F88B07DDF23FD1607DF1887404EC55 * ___Updated_0;
// System.Action UnityEngine.RemoteSettings::BeforeFetchFromServer
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___BeforeFetchFromServer_1;
// System.Action`3<System.Boolean,System.Boolean,System.Int32> UnityEngine.RemoteSettings::Completed
Action_3_t8E4F9AA95E04BAD17F5B7C55ECF0611F34518863 * ___Completed_2;
public:
inline static int32_t get_offset_of_Updated_0() { return static_cast<int32_t>(offsetof(RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4_StaticFields, ___Updated_0)); }
inline UpdatedEventHandler_tB65DDD5524F88B07DDF23FD1607DF1887404EC55 * get_Updated_0() const { return ___Updated_0; }
inline UpdatedEventHandler_tB65DDD5524F88B07DDF23FD1607DF1887404EC55 ** get_address_of_Updated_0() { return &___Updated_0; }
inline void set_Updated_0(UpdatedEventHandler_tB65DDD5524F88B07DDF23FD1607DF1887404EC55 * value)
{
___Updated_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Updated_0), (void*)value);
}
inline static int32_t get_offset_of_BeforeFetchFromServer_1() { return static_cast<int32_t>(offsetof(RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4_StaticFields, ___BeforeFetchFromServer_1)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_BeforeFetchFromServer_1() const { return ___BeforeFetchFromServer_1; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_BeforeFetchFromServer_1() { return &___BeforeFetchFromServer_1; }
inline void set_BeforeFetchFromServer_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___BeforeFetchFromServer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___BeforeFetchFromServer_1), (void*)value);
}
inline static int32_t get_offset_of_Completed_2() { return static_cast<int32_t>(offsetof(RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4_StaticFields, ___Completed_2)); }
inline Action_3_t8E4F9AA95E04BAD17F5B7C55ECF0611F34518863 * get_Completed_2() const { return ___Completed_2; }
inline Action_3_t8E4F9AA95E04BAD17F5B7C55ECF0611F34518863 ** get_address_of_Completed_2() { return &___Completed_2; }
inline void set_Completed_2(Action_3_t8E4F9AA95E04BAD17F5B7C55ECF0611F34518863 * value)
{
___Completed_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Completed_2), (void*)value);
}
};
// Dissonance.Audio.Capture.Resampler
struct Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C : public RuntimeObject
{
public:
// NAudio.Wave.WaveFormat Dissonance.Audio.Capture.Resampler::_format
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____format_0;
// NAudio.Dsp.WdlResampler Dissonance.Audio.Capture.Resampler::_resampler
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 * ____resampler_1;
// NAudio.Wave.ISampleProvider Dissonance.Audio.Capture.Resampler::_source
RuntimeObject* ____source_2;
public:
inline static int32_t get_offset_of__format_0() { return static_cast<int32_t>(offsetof(Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C, ____format_0)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__format_0() const { return ____format_0; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__format_0() { return &____format_0; }
inline void set__format_0(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____format_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____format_0), (void*)value);
}
inline static int32_t get_offset_of__resampler_1() { return static_cast<int32_t>(offsetof(Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C, ____resampler_1)); }
inline WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 * get__resampler_1() const { return ____resampler_1; }
inline WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 ** get_address_of__resampler_1() { return &____resampler_1; }
inline void set__resampler_1(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 * value)
{
____resampler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resampler_1), (void*)value);
}
inline static int32_t get_offset_of__source_2() { return static_cast<int32_t>(offsetof(Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C, ____source_2)); }
inline RuntimeObject* get__source_2() const { return ____source_2; }
inline RuntimeObject** get_address_of__source_2() { return &____source_2; }
inline void set__source_2(RuntimeObject* value)
{
____source_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_2), (void*)value);
}
};
// Dissonance.Audio.Playback.Resampler
struct Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4 : public RuntimeObject
{
public:
// Dissonance.Audio.Playback.ISampleSource Dissonance.Audio.Playback.Resampler::_source
RuntimeObject* ____source_1;
// Dissonance.Audio.Playback.IRateProvider Dissonance.Audio.Playback.Resampler::_rate
RuntimeObject* ____rate_2;
// NAudio.Wave.WaveFormat modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Playback.Resampler::_outputFormat
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____outputFormat_3;
// NAudio.Dsp.WdlResampler Dissonance.Audio.Playback.Resampler::_resampler
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 * ____resampler_4;
public:
inline static int32_t get_offset_of__source_1() { return static_cast<int32_t>(offsetof(Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4, ____source_1)); }
inline RuntimeObject* get__source_1() const { return ____source_1; }
inline RuntimeObject** get_address_of__source_1() { return &____source_1; }
inline void set__source_1(RuntimeObject* value)
{
____source_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_1), (void*)value);
}
inline static int32_t get_offset_of__rate_2() { return static_cast<int32_t>(offsetof(Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4, ____rate_2)); }
inline RuntimeObject* get__rate_2() const { return ____rate_2; }
inline RuntimeObject** get_address_of__rate_2() { return &____rate_2; }
inline void set__rate_2(RuntimeObject* value)
{
____rate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rate_2), (void*)value);
}
inline static int32_t get_offset_of__outputFormat_3() { return static_cast<int32_t>(offsetof(Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4, ____outputFormat_3)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__outputFormat_3() const { return ____outputFormat_3; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__outputFormat_3() { return &____outputFormat_3; }
inline void set__outputFormat_3(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____outputFormat_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outputFormat_3), (void*)value);
}
inline static int32_t get_offset_of__resampler_4() { return static_cast<int32_t>(offsetof(Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4, ____resampler_4)); }
inline WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 * get__resampler_4() const { return ____resampler_4; }
inline WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 ** get_address_of__resampler_4() { return &____resampler_4; }
inline void set__resampler_4(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 * value)
{
____resampler_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resampler_4), (void*)value);
}
};
struct Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.Resampler::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Dissonance.RoomIdConversion
struct RoomIdConversion_tCCF923A1D1C492E782F80D869AB44252BAAD9065 : public RuntimeObject
{
public:
public:
};
// Dissonance.RoomMembershipComparer
struct RoomMembershipComparer_t38BE46113FEC084A55CEE60BDC705547EF2D693F : public RuntimeObject
{
public:
public:
};
// Dissonance.Rooms
struct Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<Dissonance.RoomMembership> Dissonance.Rooms::_rooms
List_1_tACF496AFFDE7D9C395D1B4060C4300275E8D3F94 * ____rooms_2;
// System.Collections.Generic.List`1<System.String> Dissonance.Rooms::_roomNames
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ____roomNames_3;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> Dissonance.Rooms::_roomNamesReadonly
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ____roomNamesReadonly_4;
// System.Action`1<System.String> Dissonance.Rooms::JoinedRoom
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___JoinedRoom_5;
// System.Action`1<System.String> Dissonance.Rooms::LeftRoom
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___LeftRoom_6;
public:
inline static int32_t get_offset_of__rooms_2() { return static_cast<int32_t>(offsetof(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872, ____rooms_2)); }
inline List_1_tACF496AFFDE7D9C395D1B4060C4300275E8D3F94 * get__rooms_2() const { return ____rooms_2; }
inline List_1_tACF496AFFDE7D9C395D1B4060C4300275E8D3F94 ** get_address_of__rooms_2() { return &____rooms_2; }
inline void set__rooms_2(List_1_tACF496AFFDE7D9C395D1B4060C4300275E8D3F94 * value)
{
____rooms_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rooms_2), (void*)value);
}
inline static int32_t get_offset_of__roomNames_3() { return static_cast<int32_t>(offsetof(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872, ____roomNames_3)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get__roomNames_3() const { return ____roomNames_3; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of__roomNames_3() { return &____roomNames_3; }
inline void set__roomNames_3(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
____roomNames_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomNames_3), (void*)value);
}
inline static int32_t get_offset_of__roomNamesReadonly_4() { return static_cast<int32_t>(offsetof(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872, ____roomNamesReadonly_4)); }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * get__roomNamesReadonly_4() const { return ____roomNamesReadonly_4; }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 ** get_address_of__roomNamesReadonly_4() { return &____roomNamesReadonly_4; }
inline void set__roomNamesReadonly_4(ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * value)
{
____roomNamesReadonly_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomNamesReadonly_4), (void*)value);
}
inline static int32_t get_offset_of_JoinedRoom_5() { return static_cast<int32_t>(offsetof(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872, ___JoinedRoom_5)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_JoinedRoom_5() const { return ___JoinedRoom_5; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_JoinedRoom_5() { return &___JoinedRoom_5; }
inline void set_JoinedRoom_5(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___JoinedRoom_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___JoinedRoom_5), (void*)value);
}
inline static int32_t get_offset_of_LeftRoom_6() { return static_cast<int32_t>(offsetof(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872, ___LeftRoom_6)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_LeftRoom_6() const { return ___LeftRoom_6; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_LeftRoom_6() { return &___LeftRoom_6; }
inline void set_LeftRoom_6(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___LeftRoom_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___LeftRoom_6), (void*)value);
}
};
struct Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872_StaticFields
{
public:
// Dissonance.Log Dissonance.Rooms::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// Dissonance.RoomMembershipComparer Dissonance.Rooms::Comparer
RoomMembershipComparer_t38BE46113FEC084A55CEE60BDC705547EF2D693F * ___Comparer_1;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of_Comparer_1() { return static_cast<int32_t>(offsetof(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872_StaticFields, ___Comparer_1)); }
inline RoomMembershipComparer_t38BE46113FEC084A55CEE60BDC705547EF2D693F * get_Comparer_1() const { return ___Comparer_1; }
inline RoomMembershipComparer_t38BE46113FEC084A55CEE60BDC705547EF2D693F ** get_address_of_Comparer_1() { return &___Comparer_1; }
inline void set_Comparer_1(RoomMembershipComparer_t38BE46113FEC084A55CEE60BDC705547EF2D693F * value)
{
___Comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Comparer_1), (void*)value);
}
};
// Dissonance.Audio.Capture.SampleToFrameProvider
struct SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0 : public RuntimeObject
{
public:
// NAudio.Wave.ISampleProvider Dissonance.Audio.Capture.SampleToFrameProvider::_source
RuntimeObject* ____source_0;
// System.UInt32 Dissonance.Audio.Capture.SampleToFrameProvider::_frameSize
uint32_t ____frameSize_1;
// System.Int32 Dissonance.Audio.Capture.SampleToFrameProvider::_samplesInFrame
int32_t ____samplesInFrame_2;
// System.Single[] Dissonance.Audio.Capture.SampleToFrameProvider::_frame
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____frame_3;
public:
inline static int32_t get_offset_of__source_0() { return static_cast<int32_t>(offsetof(SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0, ____source_0)); }
inline RuntimeObject* get__source_0() const { return ____source_0; }
inline RuntimeObject** get_address_of__source_0() { return &____source_0; }
inline void set__source_0(RuntimeObject* value)
{
____source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_0), (void*)value);
}
inline static int32_t get_offset_of__frameSize_1() { return static_cast<int32_t>(offsetof(SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0, ____frameSize_1)); }
inline uint32_t get__frameSize_1() const { return ____frameSize_1; }
inline uint32_t* get_address_of__frameSize_1() { return &____frameSize_1; }
inline void set__frameSize_1(uint32_t value)
{
____frameSize_1 = value;
}
inline static int32_t get_offset_of__samplesInFrame_2() { return static_cast<int32_t>(offsetof(SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0, ____samplesInFrame_2)); }
inline int32_t get__samplesInFrame_2() const { return ____samplesInFrame_2; }
inline int32_t* get_address_of__samplesInFrame_2() { return &____samplesInFrame_2; }
inline void set__samplesInFrame_2(int32_t value)
{
____samplesInFrame_2 = value;
}
inline static int32_t get_offset_of__frame_3() { return static_cast<int32_t>(offsetof(SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0, ____frame_3)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__frame_3() const { return ____frame_3; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__frame_3() { return &____frame_3; }
inline void set__frame_3(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
____frame_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____frame_3), (void*)value);
}
};
// Dissonance.SemanticVersion
struct SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592 : public RuntimeObject
{
public:
// System.Int32 Dissonance.SemanticVersion::_major
int32_t ____major_0;
// System.Int32 Dissonance.SemanticVersion::_minor
int32_t ____minor_1;
// System.Int32 Dissonance.SemanticVersion::_patch
int32_t ____patch_2;
// System.String Dissonance.SemanticVersion::_tag
String_t* ____tag_3;
public:
inline static int32_t get_offset_of__major_0() { return static_cast<int32_t>(offsetof(SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592, ____major_0)); }
inline int32_t get__major_0() const { return ____major_0; }
inline int32_t* get_address_of__major_0() { return &____major_0; }
inline void set__major_0(int32_t value)
{
____major_0 = value;
}
inline static int32_t get_offset_of__minor_1() { return static_cast<int32_t>(offsetof(SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592, ____minor_1)); }
inline int32_t get__minor_1() const { return ____minor_1; }
inline int32_t* get_address_of__minor_1() { return &____minor_1; }
inline void set__minor_1(int32_t value)
{
____minor_1 = value;
}
inline static int32_t get_offset_of__patch_2() { return static_cast<int32_t>(offsetof(SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592, ____patch_2)); }
inline int32_t get__patch_2() const { return ____patch_2; }
inline int32_t* get_address_of__patch_2() { return &____patch_2; }
inline void set__patch_2(int32_t value)
{
____patch_2 = value;
}
inline static int32_t get_offset_of__tag_3() { return static_cast<int32_t>(offsetof(SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592, ____tag_3)); }
inline String_t* get__tag_3() const { return ____tag_3; }
inline String_t** get_address_of__tag_3() { return &____tag_3; }
inline void set__tag_3(String_t* value)
{
____tag_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____tag_3), (void*)value);
}
};
// Mirror.SimpleWeb.SendLoop
struct SendLoop_t257E2D4AA4732B0B645CCCD908B3185A364F183E : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.ServerHandshake
struct ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5 : public RuntimeObject
{
public:
// System.Int32 Mirror.SimpleWeb.ServerHandshake::maxHttpHeaderSize
int32_t ___maxHttpHeaderSize_5;
// System.Security.Cryptography.SHA1 Mirror.SimpleWeb.ServerHandshake::sha1
SHA1_t15B592B9935E19EC3FD5679B969239AC572E2C0E * ___sha1_6;
// Mirror.SimpleWeb.BufferPool Mirror.SimpleWeb.ServerHandshake::bufferPool
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * ___bufferPool_7;
public:
inline static int32_t get_offset_of_maxHttpHeaderSize_5() { return static_cast<int32_t>(offsetof(ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5, ___maxHttpHeaderSize_5)); }
inline int32_t get_maxHttpHeaderSize_5() const { return ___maxHttpHeaderSize_5; }
inline int32_t* get_address_of_maxHttpHeaderSize_5() { return &___maxHttpHeaderSize_5; }
inline void set_maxHttpHeaderSize_5(int32_t value)
{
___maxHttpHeaderSize_5 = value;
}
inline static int32_t get_offset_of_sha1_6() { return static_cast<int32_t>(offsetof(ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5, ___sha1_6)); }
inline SHA1_t15B592B9935E19EC3FD5679B969239AC572E2C0E * get_sha1_6() const { return ___sha1_6; }
inline SHA1_t15B592B9935E19EC3FD5679B969239AC572E2C0E ** get_address_of_sha1_6() { return &___sha1_6; }
inline void set_sha1_6(SHA1_t15B592B9935E19EC3FD5679B969239AC572E2C0E * value)
{
___sha1_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sha1_6), (void*)value);
}
inline static int32_t get_offset_of_bufferPool_7() { return static_cast<int32_t>(offsetof(ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5, ___bufferPool_7)); }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * get_bufferPool_7() const { return ___bufferPool_7; }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC ** get_address_of_bufferPool_7() { return &___bufferPool_7; }
inline void set_bufferPool_7(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * value)
{
___bufferPool_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bufferPool_7), (void*)value);
}
};
// Dissonance.Audio.Codecs.Silence.SilenceDecoder
struct SilenceDecoder_tBFA79598B0EDA562F4951D1BBD9A5537BC42DEE8 : public RuntimeObject
{
public:
// System.Int32 Dissonance.Audio.Codecs.Silence.SilenceDecoder::_frameSize
int32_t ____frameSize_0;
// NAudio.Wave.WaveFormat Dissonance.Audio.Codecs.Silence.SilenceDecoder::_format
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____format_1;
public:
inline static int32_t get_offset_of__frameSize_0() { return static_cast<int32_t>(offsetof(SilenceDecoder_tBFA79598B0EDA562F4951D1BBD9A5537BC42DEE8, ____frameSize_0)); }
inline int32_t get__frameSize_0() const { return ____frameSize_0; }
inline int32_t* get_address_of__frameSize_0() { return &____frameSize_0; }
inline void set__frameSize_0(int32_t value)
{
____frameSize_0 = value;
}
inline static int32_t get_offset_of__format_1() { return static_cast<int32_t>(offsetof(SilenceDecoder_tBFA79598B0EDA562F4951D1BBD9A5537BC42DEE8, ____format_1)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__format_1() const { return ____format_1; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__format_1() { return &____format_1; }
inline void set__format_1(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____format_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____format_1), (void*)value);
}
};
// Mirror.SimpleWeb.SimpleWebJSLib
struct SimpleWebJSLib_tD3DAB21D6BAAC009AFE3AEB5DDA992AC7E6D75E4 : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.SimpleWebServer
struct SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881 : public RuntimeObject
{
public:
// System.Int32 Mirror.SimpleWeb.SimpleWebServer::maxMessagesPerTick
int32_t ___maxMessagesPerTick_0;
// Mirror.SimpleWeb.WebSocketServer Mirror.SimpleWeb.SimpleWebServer::server
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * ___server_1;
// Mirror.SimpleWeb.BufferPool Mirror.SimpleWeb.SimpleWebServer::bufferPool
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * ___bufferPool_2;
// System.Boolean Mirror.SimpleWeb.SimpleWebServer::<Active>k__BackingField
bool ___U3CActiveU3Ek__BackingField_3;
// System.Action`1<System.Int32> Mirror.SimpleWeb.SimpleWebServer::onConnect
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___onConnect_4;
// System.Action`1<System.Int32> Mirror.SimpleWeb.SimpleWebServer::onDisconnect
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___onDisconnect_5;
// System.Action`2<System.Int32,System.ArraySegment`1<System.Byte>> Mirror.SimpleWeb.SimpleWebServer::onData
Action_2_t114340853CF5612872D25F64A7CA982AC91BCFF9 * ___onData_6;
// System.Action`2<System.Int32,System.Exception> Mirror.SimpleWeb.SimpleWebServer::onError
Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 * ___onError_7;
public:
inline static int32_t get_offset_of_maxMessagesPerTick_0() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___maxMessagesPerTick_0)); }
inline int32_t get_maxMessagesPerTick_0() const { return ___maxMessagesPerTick_0; }
inline int32_t* get_address_of_maxMessagesPerTick_0() { return &___maxMessagesPerTick_0; }
inline void set_maxMessagesPerTick_0(int32_t value)
{
___maxMessagesPerTick_0 = value;
}
inline static int32_t get_offset_of_server_1() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___server_1)); }
inline WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * get_server_1() const { return ___server_1; }
inline WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 ** get_address_of_server_1() { return &___server_1; }
inline void set_server_1(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * value)
{
___server_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___server_1), (void*)value);
}
inline static int32_t get_offset_of_bufferPool_2() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___bufferPool_2)); }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * get_bufferPool_2() const { return ___bufferPool_2; }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC ** get_address_of_bufferPool_2() { return &___bufferPool_2; }
inline void set_bufferPool_2(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * value)
{
___bufferPool_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bufferPool_2), (void*)value);
}
inline static int32_t get_offset_of_U3CActiveU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___U3CActiveU3Ek__BackingField_3)); }
inline bool get_U3CActiveU3Ek__BackingField_3() const { return ___U3CActiveU3Ek__BackingField_3; }
inline bool* get_address_of_U3CActiveU3Ek__BackingField_3() { return &___U3CActiveU3Ek__BackingField_3; }
inline void set_U3CActiveU3Ek__BackingField_3(bool value)
{
___U3CActiveU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_onConnect_4() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___onConnect_4)); }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * get_onConnect_4() const { return ___onConnect_4; }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B ** get_address_of_onConnect_4() { return &___onConnect_4; }
inline void set_onConnect_4(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * value)
{
___onConnect_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onConnect_4), (void*)value);
}
inline static int32_t get_offset_of_onDisconnect_5() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___onDisconnect_5)); }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * get_onDisconnect_5() const { return ___onDisconnect_5; }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B ** get_address_of_onDisconnect_5() { return &___onDisconnect_5; }
inline void set_onDisconnect_5(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * value)
{
___onDisconnect_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onDisconnect_5), (void*)value);
}
inline static int32_t get_offset_of_onData_6() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___onData_6)); }
inline Action_2_t114340853CF5612872D25F64A7CA982AC91BCFF9 * get_onData_6() const { return ___onData_6; }
inline Action_2_t114340853CF5612872D25F64A7CA982AC91BCFF9 ** get_address_of_onData_6() { return &___onData_6; }
inline void set_onData_6(Action_2_t114340853CF5612872D25F64A7CA982AC91BCFF9 * value)
{
___onData_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onData_6), (void*)value);
}
inline static int32_t get_offset_of_onError_7() { return static_cast<int32_t>(offsetof(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881, ___onError_7)); }
inline Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 * get_onError_7() const { return ___onError_7; }
inline Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 ** get_address_of_onError_7() { return &___onError_7; }
inline void set_onError_7(Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 * value)
{
___onError_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onError_7), (void*)value);
}
};
// Dissonance.Audio.Capture.SineSampleProvider
struct SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF : public RuntimeObject
{
public:
// NAudio.Wave.WaveFormat Dissonance.Audio.Capture.SineSampleProvider::_format
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____format_0;
// System.Single Dissonance.Audio.Capture.SineSampleProvider::_frequency
float ____frequency_1;
// System.Double Dissonance.Audio.Capture.SineSampleProvider::_step
double ____step_2;
// System.Double Dissonance.Audio.Capture.SineSampleProvider::_index
double ____index_4;
public:
inline static int32_t get_offset_of__format_0() { return static_cast<int32_t>(offsetof(SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF, ____format_0)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__format_0() const { return ____format_0; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__format_0() { return &____format_0; }
inline void set__format_0(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____format_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____format_0), (void*)value);
}
inline static int32_t get_offset_of__frequency_1() { return static_cast<int32_t>(offsetof(SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF, ____frequency_1)); }
inline float get__frequency_1() const { return ____frequency_1; }
inline float* get_address_of__frequency_1() { return &____frequency_1; }
inline void set__frequency_1(float value)
{
____frequency_1 = value;
}
inline static int32_t get_offset_of__step_2() { return static_cast<int32_t>(offsetof(SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF, ____step_2)); }
inline double get__step_2() const { return ____step_2; }
inline double* get_address_of__step_2() { return &____step_2; }
inline void set__step_2(double value)
{
____step_2 = value;
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF, ____index_4)); }
inline double get__index_4() const { return ____index_4; }
inline double* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(double value)
{
____index_4 = value;
}
};
// UnityEngine.InputSystem.Interactions.SlowTapInteraction
struct SlowTapInteraction_tE0F79FB3F9BBA707AC9E4416CAFFA8890CEC0CDD : public RuntimeObject
{
public:
// System.Single UnityEngine.InputSystem.Interactions.SlowTapInteraction::duration
float ___duration_0;
// System.Single UnityEngine.InputSystem.Interactions.SlowTapInteraction::pressPoint
float ___pressPoint_1;
// System.Double UnityEngine.InputSystem.Interactions.SlowTapInteraction::m_SlowTapStartTime
double ___m_SlowTapStartTime_2;
public:
inline static int32_t get_offset_of_duration_0() { return static_cast<int32_t>(offsetof(SlowTapInteraction_tE0F79FB3F9BBA707AC9E4416CAFFA8890CEC0CDD, ___duration_0)); }
inline float get_duration_0() const { return ___duration_0; }
inline float* get_address_of_duration_0() { return &___duration_0; }
inline void set_duration_0(float value)
{
___duration_0 = value;
}
inline static int32_t get_offset_of_pressPoint_1() { return static_cast<int32_t>(offsetof(SlowTapInteraction_tE0F79FB3F9BBA707AC9E4416CAFFA8890CEC0CDD, ___pressPoint_1)); }
inline float get_pressPoint_1() const { return ___pressPoint_1; }
inline float* get_address_of_pressPoint_1() { return &___pressPoint_1; }
inline void set_pressPoint_1(float value)
{
___pressPoint_1 = value;
}
inline static int32_t get_offset_of_m_SlowTapStartTime_2() { return static_cast<int32_t>(offsetof(SlowTapInteraction_tE0F79FB3F9BBA707AC9E4416CAFFA8890CEC0CDD, ___m_SlowTapStartTime_2)); }
inline double get_m_SlowTapStartTime_2() const { return ___m_SlowTapStartTime_2; }
inline double* get_address_of_m_SlowTapStartTime_2() { return &___m_SlowTapStartTime_2; }
inline void set_m_SlowTapStartTime_2(double value)
{
___m_SlowTapStartTime_2 = value;
}
};
// Dissonance.Audio.Playback.SoftClipSampleSource
struct SoftClipSampleSource_t20BA529528872D3557F3354FE7E5EC2C3C0D7671 : public RuntimeObject
{
public:
// Dissonance.Audio.Playback.ISampleSource Dissonance.Audio.Playback.SoftClipSampleSource::_upstream
RuntimeObject* ____upstream_0;
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusSoftClip Dissonance.Audio.Playback.SoftClipSampleSource::_clipper
OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3 * ____clipper_1;
public:
inline static int32_t get_offset_of__upstream_0() { return static_cast<int32_t>(offsetof(SoftClipSampleSource_t20BA529528872D3557F3354FE7E5EC2C3C0D7671, ____upstream_0)); }
inline RuntimeObject* get__upstream_0() const { return ____upstream_0; }
inline RuntimeObject** get_address_of__upstream_0() { return &____upstream_0; }
inline void set__upstream_0(RuntimeObject* value)
{
____upstream_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____upstream_0), (void*)value);
}
inline static int32_t get_offset_of__clipper_1() { return static_cast<int32_t>(offsetof(SoftClipSampleSource_t20BA529528872D3557F3354FE7E5EC2C3C0D7671, ____clipper_1)); }
inline OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3 * get__clipper_1() const { return ____clipper_1; }
inline OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3 ** get_address_of__clipper_1() { return &____clipper_1; }
inline void set__clipper_1(OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3 * value)
{
____clipper_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clipper_1), (void*)value);
}
};
// Mirror.Examples.MultipleAdditiveScenes.Spawner
struct Spawner_tE1D9FC7CBE2C02A623247F9BBE98312C839594B4 : public RuntimeObject
{
public:
public:
};
// Mirror.Examples.NetworkRoom.Spawner
struct Spawner_tBBF6EA0F50BBB5D8CA665B2F0EFFF790BDABC8CC : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.SslConfigLoader
struct SslConfigLoader_tB43C8B440EE9EE79C213932CE4F88E2EE0312515 : public RuntimeObject
{
public:
public:
};
// Dissonance.Extensions.StringExtensions
struct StringExtensions_t22E06137608F8FD938C34C889CD266B91AAB8AD0 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.Utilities.StringHelpers
struct StringHelpers_tC81753D40F0E068C363B57E3FB4882AEDD165A18 : public RuntimeObject
{
public:
public:
};
// UnityEngine.Subsystem
struct Subsystem_t2D97454A946149D608974CB6B674F5F5C613A6A4 : public RuntimeObject
{
public:
// UnityEngine.ISubsystemDescriptor UnityEngine.Subsystem::m_SubsystemDescriptor
RuntimeObject* ___m_SubsystemDescriptor_0;
public:
inline static int32_t get_offset_of_m_SubsystemDescriptor_0() { return static_cast<int32_t>(offsetof(Subsystem_t2D97454A946149D608974CB6B674F5F5C613A6A4, ___m_SubsystemDescriptor_0)); }
inline RuntimeObject* get_m_SubsystemDescriptor_0() const { return ___m_SubsystemDescriptor_0; }
inline RuntimeObject** get_address_of_m_SubsystemDescriptor_0() { return &___m_SubsystemDescriptor_0; }
inline void set_m_SubsystemDescriptor_0(RuntimeObject* value)
{
___m_SubsystemDescriptor_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SubsystemDescriptor_0), (void*)value);
}
};
// UnityEngine.SubsystemDescriptor
struct SubsystemDescriptor_tF663011CB44AB1D342821BBEF7B6811E799A7245 : public RuntimeObject
{
public:
// System.String UnityEngine.SubsystemDescriptor::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.SubsystemDescriptor::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemDescriptor_tF663011CB44AB1D342821BBEF7B6811E799A7245, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemDescriptor_tF663011CB44AB1D342821BBEF7B6811E799A7245, ___U3CsubsystemImplementationTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_1() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_1), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider
struct SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E : public RuntimeObject
{
public:
// System.String UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider
struct SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.SubsystemsImplementation.SubsystemProvider::m_Running
bool ___m_Running_0;
public:
inline static int32_t get_offset_of_m_Running_0() { return static_cast<int32_t>(offsetof(SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9, ___m_Running_0)); }
inline bool get_m_Running_0() const { return ___m_Running_0; }
inline bool* get_address_of_m_Running_0() { return &___m_Running_0; }
inline void set_m_Running_0(bool value)
{
___m_Running_0 = value;
}
};
// UnityEngine.SubsystemRegistration
struct SubsystemRegistration_tC119E4E15B2EA84DE58F44840EBED3221FF8CFF2 : public RuntimeObject
{
public:
public:
};
struct SubsystemRegistration_tC119E4E15B2EA84DE58F44840EBED3221FF8CFF2_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.SubsystemDescriptor> UnityEngine.SubsystemRegistration::k_SubsystemDescriptors
List_1_t32E50BD66297C6541AEA401E1C13D4EC530CC56B * ___k_SubsystemDescriptors_0;
public:
inline static int32_t get_offset_of_k_SubsystemDescriptors_0() { return static_cast<int32_t>(offsetof(SubsystemRegistration_tC119E4E15B2EA84DE58F44840EBED3221FF8CFF2_StaticFields, ___k_SubsystemDescriptors_0)); }
inline List_1_t32E50BD66297C6541AEA401E1C13D4EC530CC56B * get_k_SubsystemDescriptors_0() const { return ___k_SubsystemDescriptors_0; }
inline List_1_t32E50BD66297C6541AEA401E1C13D4EC530CC56B ** get_address_of_k_SubsystemDescriptors_0() { return &___k_SubsystemDescriptors_0; }
inline void set_k_SubsystemDescriptors_0(List_1_t32E50BD66297C6541AEA401E1C13D4EC530CC56B * value)
{
___k_SubsystemDescriptors_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___k_SubsystemDescriptors_0), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider
struct SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E : public RuntimeObject
{
public:
// System.Boolean UnityEngine.SubsystemsImplementation.SubsystemWithProvider::<running>k__BackingField
bool ___U3CrunningU3Ek__BackingField_0;
// UnityEngine.SubsystemsImplementation.SubsystemProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider::<providerBase>k__BackingField
SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * ___U3CproviderBaseU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CrunningU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E, ___U3CrunningU3Ek__BackingField_0)); }
inline bool get_U3CrunningU3Ek__BackingField_0() const { return ___U3CrunningU3Ek__BackingField_0; }
inline bool* get_address_of_U3CrunningU3Ek__BackingField_0() { return &___U3CrunningU3Ek__BackingField_0; }
inline void set_U3CrunningU3Ek__BackingField_0(bool value)
{
___U3CrunningU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CproviderBaseU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E, ___U3CproviderBaseU3Ek__BackingField_1)); }
inline SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * get_U3CproviderBaseU3Ek__BackingField_1() const { return ___U3CproviderBaseU3Ek__BackingField_1; }
inline SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 ** get_address_of_U3CproviderBaseU3Ek__BackingField_1() { return &___U3CproviderBaseU3Ek__BackingField_1; }
inline void set_U3CproviderBaseU3Ek__BackingField_1(SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * value)
{
___U3CproviderBaseU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderBaseU3Ek__BackingField_1), (void*)value);
}
};
// UnityEngine.InputSystem.Switch.SwitchSupportHID
struct SwitchSupportHID_t5C6FF34EA93931944EF143666A4396D88D6EBE6D : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.Tango.TangoInputTracking
struct TangoInputTracking_t304D3DAB1AE120AC3C4351A28FC9641AEC90D5F9 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.Interactions.TapInteraction
struct TapInteraction_tE6AA7FF389E0EB2A39025C1FD9970D329C51520E : public RuntimeObject
{
public:
// System.Single UnityEngine.InputSystem.Interactions.TapInteraction::duration
float ___duration_0;
// System.Single UnityEngine.InputSystem.Interactions.TapInteraction::pressPoint
float ___pressPoint_1;
// System.Double UnityEngine.InputSystem.Interactions.TapInteraction::m_TapStartTime
double ___m_TapStartTime_2;
public:
inline static int32_t get_offset_of_duration_0() { return static_cast<int32_t>(offsetof(TapInteraction_tE6AA7FF389E0EB2A39025C1FD9970D329C51520E, ___duration_0)); }
inline float get_duration_0() const { return ___duration_0; }
inline float* get_address_of_duration_0() { return &___duration_0; }
inline void set_duration_0(float value)
{
___duration_0 = value;
}
inline static int32_t get_offset_of_pressPoint_1() { return static_cast<int32_t>(offsetof(TapInteraction_tE6AA7FF389E0EB2A39025C1FD9970D329C51520E, ___pressPoint_1)); }
inline float get_pressPoint_1() const { return ___pressPoint_1; }
inline float* get_address_of_pressPoint_1() { return &___pressPoint_1; }
inline void set_pressPoint_1(float value)
{
___pressPoint_1 = value;
}
inline static int32_t get_offset_of_m_TapStartTime_2() { return static_cast<int32_t>(offsetof(TapInteraction_tE6AA7FF389E0EB2A39025C1FD9970D329C51520E, ___m_TapStartTime_2)); }
inline double get_m_TapStartTime_2() const { return ___m_TapStartTime_2; }
inline double* get_address_of_m_TapStartTime_2() { return &___m_TapStartTime_2; }
inline void set_m_TapStartTime_2(double value)
{
___m_TapStartTime_2 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainCallbacks
struct TerrainCallbacks_tF292CB70850DEF93A2AFD0005B4FF75C7FC8ECD0 : public RuntimeObject
{
public:
public:
};
struct TerrainCallbacks_tF292CB70850DEF93A2AFD0005B4FF75C7FC8ECD0_StaticFields
{
public:
// UnityEngine.Experimental.TerrainAPI.TerrainCallbacks/HeightmapChangedCallback UnityEngine.Experimental.TerrainAPI.TerrainCallbacks::heightmapChanged
HeightmapChangedCallback_tB00DA531F9C32468E88700A5C2D55E05189E0FA0 * ___heightmapChanged_0;
// UnityEngine.Experimental.TerrainAPI.TerrainCallbacks/TextureChangedCallback UnityEngine.Experimental.TerrainAPI.TerrainCallbacks::textureChanged
TextureChangedCallback_tD8BA8EA99CC9FA597E4AA143944720822EFB7D9F * ___textureChanged_1;
public:
inline static int32_t get_offset_of_heightmapChanged_0() { return static_cast<int32_t>(offsetof(TerrainCallbacks_tF292CB70850DEF93A2AFD0005B4FF75C7FC8ECD0_StaticFields, ___heightmapChanged_0)); }
inline HeightmapChangedCallback_tB00DA531F9C32468E88700A5C2D55E05189E0FA0 * get_heightmapChanged_0() const { return ___heightmapChanged_0; }
inline HeightmapChangedCallback_tB00DA531F9C32468E88700A5C2D55E05189E0FA0 ** get_address_of_heightmapChanged_0() { return &___heightmapChanged_0; }
inline void set_heightmapChanged_0(HeightmapChangedCallback_tB00DA531F9C32468E88700A5C2D55E05189E0FA0 * value)
{
___heightmapChanged_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___heightmapChanged_0), (void*)value);
}
inline static int32_t get_offset_of_textureChanged_1() { return static_cast<int32_t>(offsetof(TerrainCallbacks_tF292CB70850DEF93A2AFD0005B4FF75C7FC8ECD0_StaticFields, ___textureChanged_1)); }
inline TextureChangedCallback_tD8BA8EA99CC9FA597E4AA143944720822EFB7D9F * get_textureChanged_1() const { return ___textureChanged_1; }
inline TextureChangedCallback_tD8BA8EA99CC9FA597E4AA143944720822EFB7D9F ** get_address_of_textureChanged_1() { return &___textureChanged_1; }
inline void set_textureChanged_1(TextureChangedCallback_tD8BA8EA99CC9FA597E4AA143944720822EFB7D9F * value)
{
___textureChanged_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textureChanged_1), (void*)value);
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility
struct TerrainUtility_tDDD67DE494266AFC6E82B297619E3B84DF2CF37D : public RuntimeObject
{
public:
public:
};
// Dissonance.TextChat
struct TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04 : public RuntimeObject
{
public:
// System.Func`1<Dissonance.Networking.ICommsNetwork> Dissonance.TextChat::_getNetwork
Func_1_t3388F18A852ED93A4A6813FBF9F53705FF0785ED * ____getNetwork_0;
// System.Action`1<Dissonance.Networking.TextMessage> Dissonance.TextChat::MessageReceived
Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * ___MessageReceived_1;
public:
inline static int32_t get_offset_of__getNetwork_0() { return static_cast<int32_t>(offsetof(TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04, ____getNetwork_0)); }
inline Func_1_t3388F18A852ED93A4A6813FBF9F53705FF0785ED * get__getNetwork_0() const { return ____getNetwork_0; }
inline Func_1_t3388F18A852ED93A4A6813FBF9F53705FF0785ED ** get_address_of__getNetwork_0() { return &____getNetwork_0; }
inline void set__getNetwork_0(Func_1_t3388F18A852ED93A4A6813FBF9F53705FF0785ED * value)
{
____getNetwork_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____getNetwork_0), (void*)value);
}
inline static int32_t get_offset_of_MessageReceived_1() { return static_cast<int32_t>(offsetof(TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04, ___MessageReceived_1)); }
inline Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * get_MessageReceived_1() const { return ___MessageReceived_1; }
inline Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 ** get_address_of_MessageReceived_1() { return &___MessageReceived_1; }
inline void set_MessageReceived_1(Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * value)
{
___MessageReceived_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MessageReceived_1), (void*)value);
}
};
// Dissonance.TokenSet
struct TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<System.String> Dissonance.TokenSet::_tokens
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ____tokens_1;
// System.Action`1<System.String> Dissonance.TokenSet::TokenRemoved
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___TokenRemoved_2;
// System.Action`1<System.String> Dissonance.TokenSet::TokenAdded
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___TokenAdded_3;
public:
inline static int32_t get_offset_of__tokens_1() { return static_cast<int32_t>(offsetof(TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0, ____tokens_1)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get__tokens_1() const { return ____tokens_1; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of__tokens_1() { return &____tokens_1; }
inline void set__tokens_1(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
____tokens_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____tokens_1), (void*)value);
}
inline static int32_t get_offset_of_TokenRemoved_2() { return static_cast<int32_t>(offsetof(TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0, ___TokenRemoved_2)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_TokenRemoved_2() const { return ___TokenRemoved_2; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_TokenRemoved_2() { return &___TokenRemoved_2; }
inline void set_TokenRemoved_2(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___TokenRemoved_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TokenRemoved_2), (void*)value);
}
inline static int32_t get_offset_of_TokenAdded_3() { return static_cast<int32_t>(offsetof(TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0, ___TokenAdded_3)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_TokenAdded_3() const { return ___TokenAdded_3; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_TokenAdded_3() { return &___TokenAdded_3; }
inline void set_TokenAdded_3(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___TokenAdded_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TokenAdded_3), (void*)value);
}
};
struct TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0_StaticFields
{
public:
// System.Collections.Generic.IComparer`1<System.String> Dissonance.TokenSet::SortOrder
RuntimeObject* ___SortOrder_0;
public:
inline static int32_t get_offset_of_SortOrder_0() { return static_cast<int32_t>(offsetof(TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0_StaticFields, ___SortOrder_0)); }
inline RuntimeObject* get_SortOrder_0() const { return ___SortOrder_0; }
inline RuntimeObject** get_address_of_SortOrder_0() { return &___SortOrder_0; }
inline void set_SortOrder_0(RuntimeObject* value)
{
___SortOrder_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SortOrder_0), (void*)value);
}
};
// UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription
struct TrackedPoseDriverDataDescription_t1DDD4ABD8892762FC3F4825233D1EA413197B9A1 : public RuntimeObject
{
public:
public:
};
struct TrackedPoseDriverDataDescription_t1DDD4ABD8892762FC3F4825233D1EA413197B9A1_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData> UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription::DeviceData
List_1_t33EFE71131470863D507CAF630920B63D09EBA7D * ___DeviceData_0;
public:
inline static int32_t get_offset_of_DeviceData_0() { return static_cast<int32_t>(offsetof(TrackedPoseDriverDataDescription_t1DDD4ABD8892762FC3F4825233D1EA413197B9A1_StaticFields, ___DeviceData_0)); }
inline List_1_t33EFE71131470863D507CAF630920B63D09EBA7D * get_DeviceData_0() const { return ___DeviceData_0; }
inline List_1_t33EFE71131470863D507CAF630920B63D09EBA7D ** get_address_of_DeviceData_0() { return &___DeviceData_0; }
inline void set_DeviceData_0(List_1_t33EFE71131470863D507CAF630920B63D09EBA7D * value)
{
___DeviceData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DeviceData_0), (void*)value);
}
};
// Dissonance.Networking.TrafficCounter
struct TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2 : public RuntimeObject
{
public:
// System.UInt32 Dissonance.Networking.TrafficCounter::<Packets>k__BackingField
uint32_t ___U3CPacketsU3Ek__BackingField_0;
// System.UInt32 Dissonance.Networking.TrafficCounter::<Bytes>k__BackingField
uint32_t ___U3CBytesU3Ek__BackingField_1;
// System.UInt32 Dissonance.Networking.TrafficCounter::<BytesPerSecond>k__BackingField
uint32_t ___U3CBytesPerSecondU3Ek__BackingField_2;
// System.UInt32 Dissonance.Networking.TrafficCounter::_runningTotal
uint32_t ____runningTotal_3;
// System.Collections.Generic.Queue`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.UInt32>> Dissonance.Networking.TrafficCounter::_updated
Queue_1_tEA0E6416EAD27E48B243348D24732434E0C19CBF * ____updated_4;
public:
inline static int32_t get_offset_of_U3CPacketsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2, ___U3CPacketsU3Ek__BackingField_0)); }
inline uint32_t get_U3CPacketsU3Ek__BackingField_0() const { return ___U3CPacketsU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CPacketsU3Ek__BackingField_0() { return &___U3CPacketsU3Ek__BackingField_0; }
inline void set_U3CPacketsU3Ek__BackingField_0(uint32_t value)
{
___U3CPacketsU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CBytesU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2, ___U3CBytesU3Ek__BackingField_1)); }
inline uint32_t get_U3CBytesU3Ek__BackingField_1() const { return ___U3CBytesU3Ek__BackingField_1; }
inline uint32_t* get_address_of_U3CBytesU3Ek__BackingField_1() { return &___U3CBytesU3Ek__BackingField_1; }
inline void set_U3CBytesU3Ek__BackingField_1(uint32_t value)
{
___U3CBytesU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CBytesPerSecondU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2, ___U3CBytesPerSecondU3Ek__BackingField_2)); }
inline uint32_t get_U3CBytesPerSecondU3Ek__BackingField_2() const { return ___U3CBytesPerSecondU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CBytesPerSecondU3Ek__BackingField_2() { return &___U3CBytesPerSecondU3Ek__BackingField_2; }
inline void set_U3CBytesPerSecondU3Ek__BackingField_2(uint32_t value)
{
___U3CBytesPerSecondU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of__runningTotal_3() { return static_cast<int32_t>(offsetof(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2, ____runningTotal_3)); }
inline uint32_t get__runningTotal_3() const { return ____runningTotal_3; }
inline uint32_t* get_address_of__runningTotal_3() { return &____runningTotal_3; }
inline void set__runningTotal_3(uint32_t value)
{
____runningTotal_3 = value;
}
inline static int32_t get_offset_of__updated_4() { return static_cast<int32_t>(offsetof(TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2, ____updated_4)); }
inline Queue_1_tEA0E6416EAD27E48B243348D24732434E0C19CBF * get__updated_4() const { return ____updated_4; }
inline Queue_1_tEA0E6416EAD27E48B243348D24732434E0C19CBF ** get_address_of__updated_4() { return &____updated_4; }
inline void set__updated_4(Queue_1_tEA0E6416EAD27E48B243348D24732434E0C19CBF * value)
{
____updated_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____updated_4), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.TypeHelpers
struct TypeHelpers_tEAAE00644017036081242E79925B8D4998A15E67 : public RuntimeObject
{
public:
public:
};
// UnityEngine.UIElements.UIElementsRuntimeUtilityNative
struct UIElementsRuntimeUtilityNative_tD46E29AA27E608332B332CC105C50AF116363578 : public RuntimeObject
{
public:
public:
};
struct UIElementsRuntimeUtilityNative_tD46E29AA27E608332B332CC105C50AF116363578_StaticFields
{
public:
// System.Action UnityEngine.UIElements.UIElementsRuntimeUtilityNative::RepaintOverlayPanelsCallback
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___RepaintOverlayPanelsCallback_0;
// System.Action UnityEngine.UIElements.UIElementsRuntimeUtilityNative::UpdateRuntimePanelsCallback
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___UpdateRuntimePanelsCallback_1;
public:
inline static int32_t get_offset_of_RepaintOverlayPanelsCallback_0() { return static_cast<int32_t>(offsetof(UIElementsRuntimeUtilityNative_tD46E29AA27E608332B332CC105C50AF116363578_StaticFields, ___RepaintOverlayPanelsCallback_0)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_RepaintOverlayPanelsCallback_0() const { return ___RepaintOverlayPanelsCallback_0; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_RepaintOverlayPanelsCallback_0() { return &___RepaintOverlayPanelsCallback_0; }
inline void set_RepaintOverlayPanelsCallback_0(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___RepaintOverlayPanelsCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___RepaintOverlayPanelsCallback_0), (void*)value);
}
inline static int32_t get_offset_of_UpdateRuntimePanelsCallback_1() { return static_cast<int32_t>(offsetof(UIElementsRuntimeUtilityNative_tD46E29AA27E608332B332CC105C50AF116363578_StaticFields, ___UpdateRuntimePanelsCallback_1)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_UpdateRuntimePanelsCallback_1() const { return ___UpdateRuntimePanelsCallback_1; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_UpdateRuntimePanelsCallback_1() { return &___UpdateRuntimePanelsCallback_1; }
inline void set_UpdateRuntimePanelsCallback_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___UpdateRuntimePanelsCallback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UpdateRuntimePanelsCallback_1), (void*)value);
}
};
// Dissonance.Extensions.UShortExtensions
struct UShortExtensions_tA8B8404E36104BEF3B446718A4378A10450BCF83 : public RuntimeObject
{
public:
public:
};
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB : public RuntimeObject
{
public:
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * ___m_Calls_0;
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * ___m_PersistentCalls_1;
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
bool ___m_CallsDirty_2;
public:
inline static int32_t get_offset_of_m_Calls_0() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_Calls_0)); }
inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * get_m_Calls_0() const { return ___m_Calls_0; }
inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 ** get_address_of_m_Calls_0() { return &___m_Calls_0; }
inline void set_m_Calls_0(InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * value)
{
___m_Calls_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Calls_0), (void*)value);
}
inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_PersistentCalls_1)); }
inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; }
inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; }
inline void set_m_PersistentCalls_1(PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * value)
{
___m_PersistentCalls_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PersistentCalls_1), (void*)value);
}
inline static int32_t get_offset_of_m_CallsDirty_2() { return static_cast<int32_t>(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_CallsDirty_2)); }
inline bool get_m_CallsDirty_2() const { return ___m_CallsDirty_2; }
inline bool* get_address_of_m_CallsDirty_2() { return &___m_CallsDirty_2; }
inline void set_m_CallsDirty_2(bool value)
{
___m_CallsDirty_2 = value;
}
};
// Utils
struct Utils_tB7E464340F21C3BC9E90CD7C3670828A951C212E : public RuntimeObject
{
public:
public:
};
// Mirror.SimpleWeb.Utils
struct Utils_tE93B4E0AF2B3ADD66906733257B95F0E11EBF1BC : public RuntimeObject
{
public:
public:
};
// UnityEngine.VFX.VFXManager
struct VFXManager_tE525803FFE4F59D87D5B5E61AF8433037F226340 : public RuntimeObject
{
public:
public:
};
// 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
{
};
// Dissonance.VoicePlayerState
struct VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3 : public RuntimeObject
{
public:
// System.String Dissonance.VoicePlayerState::_name
String_t* ____name_1;
// System.Action`1<Dissonance.VoicePlayerState> Dissonance.VoicePlayerState::OnStartedSpeaking
Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * ___OnStartedSpeaking_2;
// System.Action`1<Dissonance.VoicePlayerState> Dissonance.VoicePlayerState::OnStoppedSpeaking
Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * ___OnStoppedSpeaking_3;
// System.Action`2<Dissonance.VoicePlayerState,System.String> Dissonance.VoicePlayerState::OnEnteredRoom
Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * ___OnEnteredRoom_4;
// System.Action`2<Dissonance.VoicePlayerState,System.String> Dissonance.VoicePlayerState::OnExitedRoom
Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * ___OnExitedRoom_5;
// System.Action`1<Dissonance.VoicePlayerState> Dissonance.VoicePlayerState::OnLeftSession
Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * ___OnLeftSession_6;
public:
inline static int32_t get_offset_of__name_1() { return static_cast<int32_t>(offsetof(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3, ____name_1)); }
inline String_t* get__name_1() const { return ____name_1; }
inline String_t** get_address_of__name_1() { return &____name_1; }
inline void set__name_1(String_t* value)
{
____name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____name_1), (void*)value);
}
inline static int32_t get_offset_of_OnStartedSpeaking_2() { return static_cast<int32_t>(offsetof(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3, ___OnStartedSpeaking_2)); }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * get_OnStartedSpeaking_2() const { return ___OnStartedSpeaking_2; }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E ** get_address_of_OnStartedSpeaking_2() { return &___OnStartedSpeaking_2; }
inline void set_OnStartedSpeaking_2(Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * value)
{
___OnStartedSpeaking_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnStartedSpeaking_2), (void*)value);
}
inline static int32_t get_offset_of_OnStoppedSpeaking_3() { return static_cast<int32_t>(offsetof(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3, ___OnStoppedSpeaking_3)); }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * get_OnStoppedSpeaking_3() const { return ___OnStoppedSpeaking_3; }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E ** get_address_of_OnStoppedSpeaking_3() { return &___OnStoppedSpeaking_3; }
inline void set_OnStoppedSpeaking_3(Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * value)
{
___OnStoppedSpeaking_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnStoppedSpeaking_3), (void*)value);
}
inline static int32_t get_offset_of_OnEnteredRoom_4() { return static_cast<int32_t>(offsetof(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3, ___OnEnteredRoom_4)); }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * get_OnEnteredRoom_4() const { return ___OnEnteredRoom_4; }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 ** get_address_of_OnEnteredRoom_4() { return &___OnEnteredRoom_4; }
inline void set_OnEnteredRoom_4(Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * value)
{
___OnEnteredRoom_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnEnteredRoom_4), (void*)value);
}
inline static int32_t get_offset_of_OnExitedRoom_5() { return static_cast<int32_t>(offsetof(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3, ___OnExitedRoom_5)); }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * get_OnExitedRoom_5() const { return ___OnExitedRoom_5; }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 ** get_address_of_OnExitedRoom_5() { return &___OnExitedRoom_5; }
inline void set_OnExitedRoom_5(Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * value)
{
___OnExitedRoom_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnExitedRoom_5), (void*)value);
}
inline static int32_t get_offset_of_OnLeftSession_6() { return static_cast<int32_t>(offsetof(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3, ___OnLeftSession_6)); }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * get_OnLeftSession_6() const { return ___OnLeftSession_6; }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E ** get_address_of_OnLeftSession_6() { return &___OnLeftSession_6; }
inline void set_OnLeftSession_6(Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * value)
{
___OnLeftSession_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnLeftSession_6), (void*)value);
}
};
struct VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3_StaticFields
{
public:
// Dissonance.Log Dissonance.VoicePlayerState::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Dissonance.VolumeFaderSettings
struct VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 : public RuntimeObject
{
public:
// System.Single Dissonance.VolumeFaderSettings::_volume
float ____volume_0;
// System.Int64 Dissonance.VolumeFaderSettings::_fadeInTicks
int64_t ____fadeInTicks_1;
// System.Int64 Dissonance.VolumeFaderSettings::_fadeOutTicks
int64_t ____fadeOutTicks_2;
public:
inline static int32_t get_offset_of__volume_0() { return static_cast<int32_t>(offsetof(VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3, ____volume_0)); }
inline float get__volume_0() const { return ____volume_0; }
inline float* get_address_of__volume_0() { return &____volume_0; }
inline void set__volume_0(float value)
{
____volume_0 = value;
}
inline static int32_t get_offset_of__fadeInTicks_1() { return static_cast<int32_t>(offsetof(VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3, ____fadeInTicks_1)); }
inline int64_t get__fadeInTicks_1() const { return ____fadeInTicks_1; }
inline int64_t* get_address_of__fadeInTicks_1() { return &____fadeInTicks_1; }
inline void set__fadeInTicks_1(int64_t value)
{
____fadeInTicks_1 = value;
}
inline static int32_t get_offset_of__fadeOutTicks_2() { return static_cast<int32_t>(offsetof(VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3, ____fadeOutTicks_2)); }
inline int64_t get__fadeOutTicks_2() const { return ____fadeOutTicks_2; }
inline int64_t* get_address_of__fadeOutTicks_2() { return &____fadeOutTicks_2; }
inline void set__fadeOutTicks_2(int64_t value)
{
____fadeOutTicks_2 = value;
}
};
// Dissonance.Audio.Playback.VolumeRampedFrameSource
struct VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1 : public RuntimeObject
{
public:
// Dissonance.Audio.Playback.IFrameSource Dissonance.Audio.Playback.VolumeRampedFrameSource::_source
RuntimeObject* ____source_0;
// Dissonance.Audio.Playback.IVolumeProvider Dissonance.Audio.Playback.VolumeRampedFrameSource::_volumeProvider
RuntimeObject* ____volumeProvider_1;
// System.Single Dissonance.Audio.Playback.VolumeRampedFrameSource::_targetVolume
float ____targetVolume_2;
// System.Single Dissonance.Audio.Playback.VolumeRampedFrameSource::_currentVolume
float ____currentVolume_3;
public:
inline static int32_t get_offset_of__source_0() { return static_cast<int32_t>(offsetof(VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1, ____source_0)); }
inline RuntimeObject* get__source_0() const { return ____source_0; }
inline RuntimeObject** get_address_of__source_0() { return &____source_0; }
inline void set__source_0(RuntimeObject* value)
{
____source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_0), (void*)value);
}
inline static int32_t get_offset_of__volumeProvider_1() { return static_cast<int32_t>(offsetof(VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1, ____volumeProvider_1)); }
inline RuntimeObject* get__volumeProvider_1() const { return ____volumeProvider_1; }
inline RuntimeObject** get_address_of__volumeProvider_1() { return &____volumeProvider_1; }
inline void set__volumeProvider_1(RuntimeObject* value)
{
____volumeProvider_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____volumeProvider_1), (void*)value);
}
inline static int32_t get_offset_of__targetVolume_2() { return static_cast<int32_t>(offsetof(VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1, ____targetVolume_2)); }
inline float get__targetVolume_2() const { return ____targetVolume_2; }
inline float* get_address_of__targetVolume_2() { return &____targetVolume_2; }
inline void set__targetVolume_2(float value)
{
____targetVolume_2 = value;
}
inline static int32_t get_offset_of__currentVolume_3() { return static_cast<int32_t>(offsetof(VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1, ____currentVolume_3)); }
inline float get__currentVolume_3() const { return ____currentVolume_3; }
inline float* get_address_of__currentVolume_3() { return &____currentVolume_3; }
inline void set__currentVolume_3(float value)
{
____currentVolume_3 = value;
}
};
// NAudio.Wave.WaveFormat
struct WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC : public RuntimeObject
{
public:
// System.Int32 NAudio.Wave.WaveFormat::_channels
int32_t ____channels_0;
// System.Int32 NAudio.Wave.WaveFormat::_sampleRate
int32_t ____sampleRate_1;
public:
inline static int32_t get_offset_of__channels_0() { return static_cast<int32_t>(offsetof(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC, ____channels_0)); }
inline int32_t get__channels_0() const { return ____channels_0; }
inline int32_t* get_address_of__channels_0() { return &____channels_0; }
inline void set__channels_0(int32_t value)
{
____channels_0 = value;
}
inline static int32_t get_offset_of__sampleRate_1() { return static_cast<int32_t>(offsetof(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC, ____sampleRate_1)); }
inline int32_t get__sampleRate_1() const { return ____sampleRate_1; }
inline int32_t* get_address_of__sampleRate_1() { return &____sampleRate_1; }
inline void set__sampleRate_1(int32_t value)
{
____sampleRate_1 = value;
}
};
// NAudio.Dsp.WdlResampler
struct WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2 : public RuntimeObject
{
public:
// System.Double NAudio.Dsp.WdlResampler::m_sratein
double ___m_sratein_3;
// System.Double NAudio.Dsp.WdlResampler::m_srateout
double ___m_srateout_4;
// System.Double NAudio.Dsp.WdlResampler::m_fracpos
double ___m_fracpos_5;
// System.Double NAudio.Dsp.WdlResampler::m_ratio
double ___m_ratio_6;
// System.Double NAudio.Dsp.WdlResampler::m_filter_ratio
double ___m_filter_ratio_7;
// System.Single NAudio.Dsp.WdlResampler::m_filterq
float ___m_filterq_8;
// System.Single NAudio.Dsp.WdlResampler::m_filterpos
float ___m_filterpos_9;
// System.Single[] NAudio.Dsp.WdlResampler::m_rsinbuf
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___m_rsinbuf_10;
// System.Single[] NAudio.Dsp.WdlResampler::m_filter_coeffs
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___m_filter_coeffs_11;
// NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter NAudio.Dsp.WdlResampler::m_iirfilter
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4 * ___m_iirfilter_12;
// System.Int32 NAudio.Dsp.WdlResampler::m_filter_coeffs_size
int32_t ___m_filter_coeffs_size_13;
// System.Int32 NAudio.Dsp.WdlResampler::m_last_requested
int32_t ___m_last_requested_14;
// System.Int32 NAudio.Dsp.WdlResampler::m_filtlatency
int32_t ___m_filtlatency_15;
// System.Int32 NAudio.Dsp.WdlResampler::m_samples_in_rsinbuf
int32_t ___m_samples_in_rsinbuf_16;
// System.Int32 NAudio.Dsp.WdlResampler::m_lp_oversize
int32_t ___m_lp_oversize_17;
// System.Int32 NAudio.Dsp.WdlResampler::m_sincsize
int32_t ___m_sincsize_18;
// System.Int32 NAudio.Dsp.WdlResampler::m_filtercnt
int32_t ___m_filtercnt_19;
// System.Int32 NAudio.Dsp.WdlResampler::m_sincoversize
int32_t ___m_sincoversize_20;
// System.Boolean NAudio.Dsp.WdlResampler::m_interp
bool ___m_interp_21;
// System.Boolean NAudio.Dsp.WdlResampler::m_feedmode
bool ___m_feedmode_22;
public:
inline static int32_t get_offset_of_m_sratein_3() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_sratein_3)); }
inline double get_m_sratein_3() const { return ___m_sratein_3; }
inline double* get_address_of_m_sratein_3() { return &___m_sratein_3; }
inline void set_m_sratein_3(double value)
{
___m_sratein_3 = value;
}
inline static int32_t get_offset_of_m_srateout_4() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_srateout_4)); }
inline double get_m_srateout_4() const { return ___m_srateout_4; }
inline double* get_address_of_m_srateout_4() { return &___m_srateout_4; }
inline void set_m_srateout_4(double value)
{
___m_srateout_4 = value;
}
inline static int32_t get_offset_of_m_fracpos_5() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_fracpos_5)); }
inline double get_m_fracpos_5() const { return ___m_fracpos_5; }
inline double* get_address_of_m_fracpos_5() { return &___m_fracpos_5; }
inline void set_m_fracpos_5(double value)
{
___m_fracpos_5 = value;
}
inline static int32_t get_offset_of_m_ratio_6() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_ratio_6)); }
inline double get_m_ratio_6() const { return ___m_ratio_6; }
inline double* get_address_of_m_ratio_6() { return &___m_ratio_6; }
inline void set_m_ratio_6(double value)
{
___m_ratio_6 = value;
}
inline static int32_t get_offset_of_m_filter_ratio_7() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_filter_ratio_7)); }
inline double get_m_filter_ratio_7() const { return ___m_filter_ratio_7; }
inline double* get_address_of_m_filter_ratio_7() { return &___m_filter_ratio_7; }
inline void set_m_filter_ratio_7(double value)
{
___m_filter_ratio_7 = value;
}
inline static int32_t get_offset_of_m_filterq_8() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_filterq_8)); }
inline float get_m_filterq_8() const { return ___m_filterq_8; }
inline float* get_address_of_m_filterq_8() { return &___m_filterq_8; }
inline void set_m_filterq_8(float value)
{
___m_filterq_8 = value;
}
inline static int32_t get_offset_of_m_filterpos_9() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_filterpos_9)); }
inline float get_m_filterpos_9() const { return ___m_filterpos_9; }
inline float* get_address_of_m_filterpos_9() { return &___m_filterpos_9; }
inline void set_m_filterpos_9(float value)
{
___m_filterpos_9 = value;
}
inline static int32_t get_offset_of_m_rsinbuf_10() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_rsinbuf_10)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_m_rsinbuf_10() const { return ___m_rsinbuf_10; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_m_rsinbuf_10() { return &___m_rsinbuf_10; }
inline void set_m_rsinbuf_10(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
___m_rsinbuf_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_rsinbuf_10), (void*)value);
}
inline static int32_t get_offset_of_m_filter_coeffs_11() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_filter_coeffs_11)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_m_filter_coeffs_11() const { return ___m_filter_coeffs_11; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_m_filter_coeffs_11() { return &___m_filter_coeffs_11; }
inline void set_m_filter_coeffs_11(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
___m_filter_coeffs_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_filter_coeffs_11), (void*)value);
}
inline static int32_t get_offset_of_m_iirfilter_12() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_iirfilter_12)); }
inline WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4 * get_m_iirfilter_12() const { return ___m_iirfilter_12; }
inline WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4 ** get_address_of_m_iirfilter_12() { return &___m_iirfilter_12; }
inline void set_m_iirfilter_12(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4 * value)
{
___m_iirfilter_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_iirfilter_12), (void*)value);
}
inline static int32_t get_offset_of_m_filter_coeffs_size_13() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_filter_coeffs_size_13)); }
inline int32_t get_m_filter_coeffs_size_13() const { return ___m_filter_coeffs_size_13; }
inline int32_t* get_address_of_m_filter_coeffs_size_13() { return &___m_filter_coeffs_size_13; }
inline void set_m_filter_coeffs_size_13(int32_t value)
{
___m_filter_coeffs_size_13 = value;
}
inline static int32_t get_offset_of_m_last_requested_14() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_last_requested_14)); }
inline int32_t get_m_last_requested_14() const { return ___m_last_requested_14; }
inline int32_t* get_address_of_m_last_requested_14() { return &___m_last_requested_14; }
inline void set_m_last_requested_14(int32_t value)
{
___m_last_requested_14 = value;
}
inline static int32_t get_offset_of_m_filtlatency_15() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_filtlatency_15)); }
inline int32_t get_m_filtlatency_15() const { return ___m_filtlatency_15; }
inline int32_t* get_address_of_m_filtlatency_15() { return &___m_filtlatency_15; }
inline void set_m_filtlatency_15(int32_t value)
{
___m_filtlatency_15 = value;
}
inline static int32_t get_offset_of_m_samples_in_rsinbuf_16() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_samples_in_rsinbuf_16)); }
inline int32_t get_m_samples_in_rsinbuf_16() const { return ___m_samples_in_rsinbuf_16; }
inline int32_t* get_address_of_m_samples_in_rsinbuf_16() { return &___m_samples_in_rsinbuf_16; }
inline void set_m_samples_in_rsinbuf_16(int32_t value)
{
___m_samples_in_rsinbuf_16 = value;
}
inline static int32_t get_offset_of_m_lp_oversize_17() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_lp_oversize_17)); }
inline int32_t get_m_lp_oversize_17() const { return ___m_lp_oversize_17; }
inline int32_t* get_address_of_m_lp_oversize_17() { return &___m_lp_oversize_17; }
inline void set_m_lp_oversize_17(int32_t value)
{
___m_lp_oversize_17 = value;
}
inline static int32_t get_offset_of_m_sincsize_18() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_sincsize_18)); }
inline int32_t get_m_sincsize_18() const { return ___m_sincsize_18; }
inline int32_t* get_address_of_m_sincsize_18() { return &___m_sincsize_18; }
inline void set_m_sincsize_18(int32_t value)
{
___m_sincsize_18 = value;
}
inline static int32_t get_offset_of_m_filtercnt_19() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_filtercnt_19)); }
inline int32_t get_m_filtercnt_19() const { return ___m_filtercnt_19; }
inline int32_t* get_address_of_m_filtercnt_19() { return &___m_filtercnt_19; }
inline void set_m_filtercnt_19(int32_t value)
{
___m_filtercnt_19 = value;
}
inline static int32_t get_offset_of_m_sincoversize_20() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_sincoversize_20)); }
inline int32_t get_m_sincoversize_20() const { return ___m_sincoversize_20; }
inline int32_t* get_address_of_m_sincoversize_20() { return &___m_sincoversize_20; }
inline void set_m_sincoversize_20(int32_t value)
{
___m_sincoversize_20 = value;
}
inline static int32_t get_offset_of_m_interp_21() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_interp_21)); }
inline bool get_m_interp_21() const { return ___m_interp_21; }
inline bool* get_address_of_m_interp_21() { return &___m_interp_21; }
inline void set_m_interp_21(bool value)
{
___m_interp_21 = value;
}
inline static int32_t get_offset_of_m_feedmode_22() { return static_cast<int32_t>(offsetof(WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2, ___m_feedmode_22)); }
inline bool get_m_feedmode_22() const { return ___m_feedmode_22; }
inline bool* get_address_of_m_feedmode_22() { return &___m_feedmode_22; }
inline void set_m_feedmode_22(bool value)
{
___m_feedmode_22 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMREmulation
struct WindowsMREmulation_t9F582D91C345DAE852162B02E267A3C67D923B0B : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMREnvironment
struct WindowsMREnvironment_t5C00ADF14A3C070B2DE414AFCB0D84E3A4CCC32A : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRExtensions
struct WindowsMRExtensions_t03F9C7C197F339DE39B5DCB2D3C60968A0A39EC1 : public RuntimeObject
{
public:
public:
};
struct WindowsMRExtensions_t03F9C7C197F339DE39B5DCB2D3C60968A0A39EC1_StaticFields
{
public:
// UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRPlane[] UnityEngine.XR.WindowsMR.WindowsMRExtensions::wmrp
WMRPlaneU5BU5D_tC28080B40113E442BC0C9D74D326973B2C2E136F* ___wmrp_0;
public:
inline static int32_t get_offset_of_wmrp_0() { return static_cast<int32_t>(offsetof(WindowsMRExtensions_t03F9C7C197F339DE39B5DCB2D3C60968A0A39EC1_StaticFields, ___wmrp_0)); }
inline WMRPlaneU5BU5D_tC28080B40113E442BC0C9D74D326973B2C2E136F* get_wmrp_0() const { return ___wmrp_0; }
inline WMRPlaneU5BU5D_tC28080B40113E442BC0C9D74D326973B2C2E136F** get_address_of_wmrp_0() { return &___wmrp_0; }
inline void set_wmrp_0(WMRPlaneU5BU5D_tC28080B40113E442BC0C9D74D326973B2C2E136F* value)
{
___wmrp_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___wmrp_0), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.WindowsMRInput
struct WindowsMRInput_t5EDB8246AE09F91332639AB2D8D0D962C79734C7 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMRInternals.WindowsMRInternal
struct WindowsMRInternal_t8BB8B69C90AD776FD3E0E9C1F261D6F00CA575A5 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRRemoting
struct WindowsMRRemoting_tEF7A52C53A7EDCD055AC78646B925FD1D3C46A80 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.XInput.XInputSupport
struct XInputSupport_t55FDB3922B4020539F25955378E77ABDAAFC4F3E : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.XRAnchorSubsystemExtensions
struct XRAnchorSubsystemExtensions_tB99DE740B63E6CF68C7646712CD820F631B90FDE : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.XR.XRLayoutBuilder
struct XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745 : public RuntimeObject
{
public:
// System.String UnityEngine.InputSystem.XR.XRLayoutBuilder::parentLayout
String_t* ___parentLayout_0;
// System.String UnityEngine.InputSystem.XR.XRLayoutBuilder::interfaceName
String_t* ___interfaceName_1;
// UnityEngine.InputSystem.XR.XRDeviceDescriptor UnityEngine.InputSystem.XR.XRLayoutBuilder::descriptor
XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D * ___descriptor_2;
public:
inline static int32_t get_offset_of_parentLayout_0() { return static_cast<int32_t>(offsetof(XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745, ___parentLayout_0)); }
inline String_t* get_parentLayout_0() const { return ___parentLayout_0; }
inline String_t** get_address_of_parentLayout_0() { return &___parentLayout_0; }
inline void set_parentLayout_0(String_t* value)
{
___parentLayout_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parentLayout_0), (void*)value);
}
inline static int32_t get_offset_of_interfaceName_1() { return static_cast<int32_t>(offsetof(XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745, ___interfaceName_1)); }
inline String_t* get_interfaceName_1() const { return ___interfaceName_1; }
inline String_t** get_address_of_interfaceName_1() { return &___interfaceName_1; }
inline void set_interfaceName_1(String_t* value)
{
___interfaceName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___interfaceName_1), (void*)value);
}
inline static int32_t get_offset_of_descriptor_2() { return static_cast<int32_t>(offsetof(XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745, ___descriptor_2)); }
inline XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D * get_descriptor_2() const { return ___descriptor_2; }
inline XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D ** get_address_of_descriptor_2() { return &___descriptor_2; }
inline void set_descriptor_2(XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D * value)
{
___descriptor_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___descriptor_2), (void*)value);
}
};
// UnityEngine.InputSystem.XR.XRSupport
struct XRSupport_t8B709FBB2F251158214DA3F103B7226B507E11BB : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.XR.XRUtilities
struct XRUtilities_t6F378E3AECE97CA32702771670D35D71833A579F : public RuntimeObject
{
public:
public:
};
// 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
{
};
// UnityEngine._AndroidJNIHelper
struct _AndroidJNIHelper_t664F535B46589884A627F66F98A451D1CD48F76B : public RuntimeObject
{
public:
public:
};
// 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;
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;
}
};
// 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;
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;
}
};
// Mirror.Authenticators.BasicAuthenticator/<DelayedDisconnect>d__8
struct U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE : public RuntimeObject
{
public:
// System.Int32 Mirror.Authenticators.BasicAuthenticator/<DelayedDisconnect>d__8::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Authenticators.BasicAuthenticator/<DelayedDisconnect>d__8::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Single Mirror.Authenticators.BasicAuthenticator/<DelayedDisconnect>d__8::waitTime
float ___waitTime_2;
// Mirror.Authenticators.BasicAuthenticator Mirror.Authenticators.BasicAuthenticator/<DelayedDisconnect>d__8::<>4__this
BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309 * ___U3CU3E4__this_3;
// Mirror.NetworkConnection Mirror.Authenticators.BasicAuthenticator/<DelayedDisconnect>d__8::conn
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_4;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE, ___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(U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE, ___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_waitTime_2() { return static_cast<int32_t>(offsetof(U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE, ___waitTime_2)); }
inline float get_waitTime_2() const { return ___waitTime_2; }
inline float* get_address_of_waitTime_2() { return &___waitTime_2; }
inline void set_waitTime_2(float value)
{
___waitTime_2 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE, ___U3CU3E4__this_3)); }
inline BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309 * value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_3), (void*)value);
}
inline static int32_t get_offset_of_conn_4() { return static_cast<int32_t>(offsetof(U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE, ___conn_4)); }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_conn_4() const { return ___conn_4; }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_conn_4() { return &___conn_4; }
inline void set_conn_4(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value)
{
___conn_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_4), (void*)value);
}
};
// UnityEditor.XR.LegacyInputHelpers.CameraOffset/<RepeatInitializeCamera>d__29
struct U3CRepeatInitializeCameraU3Ed__29_tC583A8F2976F8826BF90690BE727B808B7DBF078 : public RuntimeObject
{
public:
// System.Int32 UnityEditor.XR.LegacyInputHelpers.CameraOffset/<RepeatInitializeCamera>d__29::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEditor.XR.LegacyInputHelpers.CameraOffset/<RepeatInitializeCamera>d__29::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// UnityEditor.XR.LegacyInputHelpers.CameraOffset UnityEditor.XR.LegacyInputHelpers.CameraOffset/<RepeatInitializeCamera>d__29::<>4__this
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CRepeatInitializeCameraU3Ed__29_tC583A8F2976F8826BF90690BE727B808B7DBF078, ___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(U3CRepeatInitializeCameraU3Ed__29_tC583A8F2976F8826BF90690BE727B808B7DBF078, ___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(U3CRepeatInitializeCameraU3Ed__29_tC583A8F2976F8826BF90690BE727B808B7DBF078, ___U3CU3E4__this_2)); }
inline CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.CanvasController/<>c
struct U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields
{
public:
// Mirror.Examples.MultipleMatch.CanvasController/<>c Mirror.Examples.MultipleMatch.CanvasController/<>c::<>9
U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2 * ___U3CU3E9_0;
// System.Func`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo> Mirror.Examples.MultipleMatch.CanvasController/<>c::<>9__34_0
Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * ___U3CU3E9__34_0_1;
// System.Func`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo> Mirror.Examples.MultipleMatch.CanvasController/<>c::<>9__41_0
Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * ___U3CU3E9__41_0_2;
// System.Func`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo> Mirror.Examples.MultipleMatch.CanvasController/<>c::<>9__42_0
Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * ___U3CU3E9__42_0_3;
// System.Func`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo> Mirror.Examples.MultipleMatch.CanvasController/<>c::<>9__43_0
Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * ___U3CU3E9__43_0_4;
// System.Func`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo> Mirror.Examples.MultipleMatch.CanvasController/<>c::<>9__46_0
Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * ___U3CU3E9__46_0_5;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__34_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields, ___U3CU3E9__34_0_1)); }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * get_U3CU3E9__34_0_1() const { return ___U3CU3E9__34_0_1; }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B ** get_address_of_U3CU3E9__34_0_1() { return &___U3CU3E9__34_0_1; }
inline void set_U3CU3E9__34_0_1(Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * value)
{
___U3CU3E9__34_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__34_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__41_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields, ___U3CU3E9__41_0_2)); }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * get_U3CU3E9__41_0_2() const { return ___U3CU3E9__41_0_2; }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B ** get_address_of_U3CU3E9__41_0_2() { return &___U3CU3E9__41_0_2; }
inline void set_U3CU3E9__41_0_2(Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * value)
{
___U3CU3E9__41_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__41_0_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__42_0_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields, ___U3CU3E9__42_0_3)); }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * get_U3CU3E9__42_0_3() const { return ___U3CU3E9__42_0_3; }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B ** get_address_of_U3CU3E9__42_0_3() { return &___U3CU3E9__42_0_3; }
inline void set_U3CU3E9__42_0_3(Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * value)
{
___U3CU3E9__42_0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__42_0_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__43_0_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields, ___U3CU3E9__43_0_4)); }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * get_U3CU3E9__43_0_4() const { return ___U3CU3E9__43_0_4; }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B ** get_address_of_U3CU3E9__43_0_4() { return &___U3CU3E9__43_0_4; }
inline void set_U3CU3E9__43_0_4(Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * value)
{
___U3CU3E9__43_0_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__43_0_4), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__46_0_5() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields, ___U3CU3E9__46_0_5)); }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * get_U3CU3E9__46_0_5() const { return ___U3CU3E9__46_0_5; }
inline Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B ** get_address_of_U3CU3E9__46_0_5() { return &___U3CU3E9__46_0_5; }
inline void set_U3CU3E9__46_0_5(Func_2_t6F07DA086AA2E049FF8D827BF66C94398CC7F99B * value)
{
___U3CU3E9__46_0_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__46_0_5), (void*)value);
}
};
// Dissonance.Demo.ChatInputController/<>c
struct U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352_StaticFields
{
public:
// Dissonance.Demo.ChatInputController/<>c Dissonance.Demo.ChatInputController/<>c::<>9
U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352 * ___U3CU3E9_0;
// System.Func`2<UnityEngine.UI.InputField,System.Boolean> Dissonance.Demo.ChatInputController/<>c::<>9__7_0
Func_2_t024C0A7C543DB721C2F3FB161CD9AB3EAF246786 * ___U3CU3E9__7_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__7_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352_StaticFields, ___U3CU3E9__7_0_1)); }
inline Func_2_t024C0A7C543DB721C2F3FB161CD9AB3EAF246786 * get_U3CU3E9__7_0_1() const { return ___U3CU3E9__7_0_1; }
inline Func_2_t024C0A7C543DB721C2F3FB161CD9AB3EAF246786 ** get_address_of_U3CU3E9__7_0_1() { return &___U3CU3E9__7_0_1; }
inline void set_U3CU3E9__7_0_1(Func_2_t024C0A7C543DB721C2F3FB161CD9AB3EAF246786 * value)
{
___U3CU3E9__7_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__7_0_1), (void*)value);
}
};
// Dissonance.Demo.ChatLogController/ChatLogEntry
struct ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8 : public RuntimeObject
{
public:
// UnityEngine.UI.Text Dissonance.Demo.ChatLogController/ChatLogEntry::_txt
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ____txt_0;
// UnityEngine.RectTransform Dissonance.Demo.ChatLogController/ChatLogEntry::_transform
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ____transform_1;
// System.Single Dissonance.Demo.ChatLogController/ChatLogEntry::_transitionProgress
float ____transitionProgress_2;
// System.Boolean Dissonance.Demo.ChatLogController/ChatLogEntry::<IsTransitioningOut>k__BackingField
bool ___U3CIsTransitioningOutU3Ek__BackingField_3;
// System.Boolean Dissonance.Demo.ChatLogController/ChatLogEntry::<IsTransitionComplete>k__BackingField
bool ___U3CIsTransitionCompleteU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of__txt_0() { return static_cast<int32_t>(offsetof(ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8, ____txt_0)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get__txt_0() const { return ____txt_0; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of__txt_0() { return &____txt_0; }
inline void set__txt_0(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
____txt_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____txt_0), (void*)value);
}
inline static int32_t get_offset_of__transform_1() { return static_cast<int32_t>(offsetof(ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8, ____transform_1)); }
inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get__transform_1() const { return ____transform_1; }
inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of__transform_1() { return &____transform_1; }
inline void set__transform_1(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value)
{
____transform_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____transform_1), (void*)value);
}
inline static int32_t get_offset_of__transitionProgress_2() { return static_cast<int32_t>(offsetof(ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8, ____transitionProgress_2)); }
inline float get__transitionProgress_2() const { return ____transitionProgress_2; }
inline float* get_address_of__transitionProgress_2() { return &____transitionProgress_2; }
inline void set__transitionProgress_2(float value)
{
____transitionProgress_2 = value;
}
inline static int32_t get_offset_of_U3CIsTransitioningOutU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8, ___U3CIsTransitioningOutU3Ek__BackingField_3)); }
inline bool get_U3CIsTransitioningOutU3Ek__BackingField_3() const { return ___U3CIsTransitioningOutU3Ek__BackingField_3; }
inline bool* get_address_of_U3CIsTransitioningOutU3Ek__BackingField_3() { return &___U3CIsTransitioningOutU3Ek__BackingField_3; }
inline void set_U3CIsTransitioningOutU3Ek__BackingField_3(bool value)
{
___U3CIsTransitioningOutU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CIsTransitionCompleteU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8, ___U3CIsTransitionCompleteU3Ek__BackingField_4)); }
inline bool get_U3CIsTransitionCompleteU3Ek__BackingField_4() const { return ___U3CIsTransitionCompleteU3Ek__BackingField_4; }
inline bool* get_address_of_U3CIsTransitionCompleteU3Ek__BackingField_4() { return &___U3CIsTransitionCompleteU3Ek__BackingField_4; }
inline void set_U3CIsTransitionCompleteU3Ek__BackingField_4(bool value)
{
___U3CIsTransitionCompleteU3Ek__BackingField_4 = value;
}
};
// Mirror.Examples.Chat.ChatWindow/<AppendAndScroll>d__7
struct U3CAppendAndScrollU3Ed__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72 : public RuntimeObject
{
public:
// System.Int32 Mirror.Examples.Chat.ChatWindow/<AppendAndScroll>d__7::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Examples.Chat.ChatWindow/<AppendAndScroll>d__7::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Mirror.Examples.Chat.ChatWindow Mirror.Examples.Chat.ChatWindow/<AppendAndScroll>d__7::<>4__this
ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * ___U3CU3E4__this_2;
// System.String Mirror.Examples.Chat.ChatWindow/<AppendAndScroll>d__7::message
String_t* ___message_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAppendAndScrollU3Ed__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72, ___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__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72, ___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__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72, ___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__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72, ___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);
}
};
// Dissonance.Networking.ClientIdCollection/<>c
struct U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A_StaticFields
{
public:
// Dissonance.Networking.ClientIdCollection/<>c Dissonance.Networking.ClientIdCollection/<>c::<>9
U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A * ___U3CU3E9_0;
// System.Func`3<System.String,System.Int32,System.Collections.Generic.KeyValuePair`2<System.UInt16,System.String>> Dissonance.Networking.ClientIdCollection/<>c::<>9__6_0
Func_3_t4659ECF91981588BB5823DBD033881A20E516CFB * ___U3CU3E9__6_0_1;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.UInt16,System.String>,System.Boolean> Dissonance.Networking.ClientIdCollection/<>c::<>9__6_1
Func_2_t9D8F134C9E54CAE6E15061CDBB5CA955E6F873F4 * ___U3CU3E9__6_1_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__6_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A_StaticFields, ___U3CU3E9__6_0_1)); }
inline Func_3_t4659ECF91981588BB5823DBD033881A20E516CFB * get_U3CU3E9__6_0_1() const { return ___U3CU3E9__6_0_1; }
inline Func_3_t4659ECF91981588BB5823DBD033881A20E516CFB ** get_address_of_U3CU3E9__6_0_1() { return &___U3CU3E9__6_0_1; }
inline void set_U3CU3E9__6_0_1(Func_3_t4659ECF91981588BB5823DBD033881A20E516CFB * value)
{
___U3CU3E9__6_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__6_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__6_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A_StaticFields, ___U3CU3E9__6_1_2)); }
inline Func_2_t9D8F134C9E54CAE6E15061CDBB5CA955E6F873F4 * get_U3CU3E9__6_1_2() const { return ___U3CU3E9__6_1_2; }
inline Func_2_t9D8F134C9E54CAE6E15061CDBB5CA955E6F873F4 ** get_address_of_U3CU3E9__6_1_2() { return &___U3CU3E9__6_1_2; }
inline void set_U3CU3E9__6_1_2(Func_2_t9D8F134C9E54CAE6E15061CDBB5CA955E6F873F4 * value)
{
___U3CU3E9__6_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__6_1_2), (void*)value);
}
};
// Dissonance.Config.DebugSettings/<>c
struct U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2_StaticFields
{
public:
// Dissonance.Config.DebugSettings/<>c Dissonance.Config.DebugSettings/<>c::<>9
U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2 * ___U3CU3E9_0;
// System.Func`2<Dissonance.LogCategory,System.Int32> Dissonance.Config.DebugSettings/<>c::<>9__15_0
Func_2_t68D1CD9CD53C6A7AEBEDC071D3379856F36023DA * ___U3CU3E9__15_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__15_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2_StaticFields, ___U3CU3E9__15_0_1)); }
inline Func_2_t68D1CD9CD53C6A7AEBEDC071D3379856F36023DA * get_U3CU3E9__15_0_1() const { return ___U3CU3E9__15_0_1; }
inline Func_2_t68D1CD9CD53C6A7AEBEDC071D3379856F36023DA ** get_address_of_U3CU3E9__15_0_1() { return &___U3CU3E9__15_0_1; }
inline void set_U3CU3E9__15_0_1(Func_2_t68D1CD9CD53C6A7AEBEDC071D3379856F36023DA * value)
{
___U3CU3E9__15_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__15_0_1), (void*)value);
}
};
// Dissonance.Audio.Playback.DecoderPipeline/<>c
struct U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51_StaticFields
{
public:
// Dissonance.Audio.Playback.DecoderPipeline/<>c Dissonance.Audio.Playback.DecoderPipeline/<>c::<>9
U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51 * ___U3CU3E9_0;
// System.Func`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>> Dissonance.Audio.Playback.DecoderPipeline/<>c::<>9__33_1
Func_1_t11F4F370029637BDB88D9DF51145F59F3E333BA0 * ___U3CU3E9__33_1_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__33_1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51_StaticFields, ___U3CU3E9__33_1_1)); }
inline Func_1_t11F4F370029637BDB88D9DF51145F59F3E333BA0 * get_U3CU3E9__33_1_1() const { return ___U3CU3E9__33_1_1; }
inline Func_1_t11F4F370029637BDB88D9DF51145F59F3E333BA0 ** get_address_of_U3CU3E9__33_1_1() { return &___U3CU3E9__33_1_1; }
inline void set_U3CU3E9__33_1_1(Func_1_t11F4F370029637BDB88D9DF51145F59F3E333BA0 * value)
{
___U3CU3E9__33_1_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__33_1_1), (void*)value);
}
};
// Dissonance.Audio.Playback.DecoderPipeline/<>c__DisplayClass33_0
struct U3CU3Ec__DisplayClass33_0_tBB0BD13D7D7C16F0CFA8195F9D0CD5093920258B : public RuntimeObject
{
public:
// System.UInt32 Dissonance.Audio.Playback.DecoderPipeline/<>c__DisplayClass33_0::inputFrameSize
uint32_t ___inputFrameSize_0;
// Dissonance.Audio.Codecs.IVoiceDecoder Dissonance.Audio.Playback.DecoderPipeline/<>c__DisplayClass33_0::decoder
RuntimeObject* ___decoder_1;
public:
inline static int32_t get_offset_of_inputFrameSize_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass33_0_tBB0BD13D7D7C16F0CFA8195F9D0CD5093920258B, ___inputFrameSize_0)); }
inline uint32_t get_inputFrameSize_0() const { return ___inputFrameSize_0; }
inline uint32_t* get_address_of_inputFrameSize_0() { return &___inputFrameSize_0; }
inline void set_inputFrameSize_0(uint32_t value)
{
___inputFrameSize_0 = value;
}
inline static int32_t get_offset_of_decoder_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass33_0_tBB0BD13D7D7C16F0CFA8195F9D0CD5093920258B, ___decoder_1)); }
inline RuntimeObject* get_decoder_1() const { return ___decoder_1; }
inline RuntimeObject** get_address_of_decoder_1() { return &___decoder_1; }
inline void set_decoder_1(RuntimeObject* value)
{
___decoder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoder_1), (void*)value);
}
};
// Dissonance.DissonanceComms/<CoResumePlayback>d__94
struct U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F : public RuntimeObject
{
public:
// System.Int32 Dissonance.DissonanceComms/<CoResumePlayback>d__94::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Dissonance.DissonanceComms/<CoResumePlayback>d__94::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Dissonance.DissonanceComms Dissonance.DissonanceComms/<CoResumePlayback>d__94::<>4__this
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * ___U3CU3E4__this_2;
// System.Int32 Dissonance.DissonanceComms/<CoResumePlayback>d__94::<i>5__2
int32_t ___U3CiU3E5__2_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F, ___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(U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F, ___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(U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F, ___U3CU3E4__this_2)); }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CiU3E5__2_3() { return static_cast<int32_t>(offsetof(U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F, ___U3CiU3E5__2_3)); }
inline int32_t get_U3CiU3E5__2_3() const { return ___U3CiU3E5__2_3; }
inline int32_t* get_address_of_U3CiU3E5__2_3() { return &___U3CiU3E5__2_3; }
inline void set_U3CiU3E5__2_3(int32_t value)
{
___U3CiU3E5__2_3 = value;
}
};
// Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessageExtensions/<>c
struct U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979_StaticFields
{
public:
// Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessageExtensions/<>c Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessageExtensions/<>c::<>9
U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979 * ___U3CU3E9_0;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
};
// Dissonance.Audio.Playback.EncodedAudioBuffer/VoicePacketComparer
struct VoicePacketComparer_t9B056DBE672905C8209663B9F16D11BC1CF17EEF : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.HID.HID/<>c__DisplayClass12_0
struct U3CU3Ec__DisplayClass12_0_t8EFD7F852209E9D455FB6360BED3E833B11014D9 : public RuntimeObject
{
public:
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder UnityEngine.InputSystem.HID.HID/<>c__DisplayClass12_0::layout
HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB * ___layout_0;
public:
inline static int32_t get_offset_of_layout_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass12_0_t8EFD7F852209E9D455FB6360BED3E833B11014D9, ___layout_0)); }
inline HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB * get_layout_0() const { return ___layout_0; }
inline HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB ** get_address_of_layout_0() { return &___layout_0; }
inline void set_layout_0(HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB * value)
{
___layout_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layout_0), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/<>c
struct U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields
{
public:
// UnityEngine.InputSystem.Layouts.InputControlLayout/<>c UnityEngine.InputSystem.Layouts.InputControlLayout/<>c::<>9
U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7 * ___U3CU3E9_0;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/<>c::<>9__46_0
Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * ___U3CU3E9__46_0_1;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/<>c::<>9__69_0
Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * ___U3CU3E9__69_0_2;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/<>c::<>9__69_1
Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * ___U3CU3E9__69_1_3;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__46_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields, ___U3CU3E9__46_0_1)); }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * get_U3CU3E9__46_0_1() const { return ___U3CU3E9__46_0_1; }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 ** get_address_of_U3CU3E9__46_0_1() { return &___U3CU3E9__46_0_1; }
inline void set_U3CU3E9__46_0_1(Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * value)
{
___U3CU3E9__46_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__46_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__69_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields, ___U3CU3E9__69_0_2)); }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * get_U3CU3E9__69_0_2() const { return ___U3CU3E9__69_0_2; }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 ** get_address_of_U3CU3E9__69_0_2() { return &___U3CU3E9__69_0_2; }
inline void set_U3CU3E9__69_0_2(Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * value)
{
___U3CU3E9__69_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__69_0_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__69_1_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields, ___U3CU3E9__69_1_3)); }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * get_U3CU3E9__69_1_3() const { return ___U3CU3E9__69_1_3; }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 ** get_address_of_U3CU3E9__69_1_3() { return &___U3CU3E9__69_1_3; }
inline void set_U3CU3E9__69_1_3(Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * value)
{
___U3CU3E9__69_1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__69_1_3), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson
struct ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC : public RuntimeObject
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::name
String_t* ___name_0;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::layout
String_t* ___layout_1;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::variants
String_t* ___variants_2;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::usage
String_t* ___usage_3;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::alias
String_t* ___alias_4;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::useStateFrom
String_t* ___useStateFrom_5;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::offset
uint32_t ___offset_6;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::bit
uint32_t ___bit_7;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::sizeInBits
uint32_t ___sizeInBits_8;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::format
String_t* ___format_9;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::arraySize
int32_t ___arraySize_10;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::usages
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___usages_11;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::aliases
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___aliases_12;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::parameters
String_t* ___parameters_13;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::processors
String_t* ___processors_14;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::displayName
String_t* ___displayName_15;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::shortDisplayName
String_t* ___shortDisplayName_16;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::noisy
bool ___noisy_17;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::synthetic
bool ___synthetic_18;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::defaultState
String_t* ___defaultState_19;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::minValue
String_t* ___minValue_20;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson::maxValue
String_t* ___maxValue_21;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___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);
}
inline static int32_t get_offset_of_layout_1() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___layout_1)); }
inline String_t* get_layout_1() const { return ___layout_1; }
inline String_t** get_address_of_layout_1() { return &___layout_1; }
inline void set_layout_1(String_t* value)
{
___layout_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layout_1), (void*)value);
}
inline static int32_t get_offset_of_variants_2() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___variants_2)); }
inline String_t* get_variants_2() const { return ___variants_2; }
inline String_t** get_address_of_variants_2() { return &___variants_2; }
inline void set_variants_2(String_t* value)
{
___variants_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___variants_2), (void*)value);
}
inline static int32_t get_offset_of_usage_3() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___usage_3)); }
inline String_t* get_usage_3() const { return ___usage_3; }
inline String_t** get_address_of_usage_3() { return &___usage_3; }
inline void set_usage_3(String_t* value)
{
___usage_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___usage_3), (void*)value);
}
inline static int32_t get_offset_of_alias_4() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___alias_4)); }
inline String_t* get_alias_4() const { return ___alias_4; }
inline String_t** get_address_of_alias_4() { return &___alias_4; }
inline void set_alias_4(String_t* value)
{
___alias_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___alias_4), (void*)value);
}
inline static int32_t get_offset_of_useStateFrom_5() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___useStateFrom_5)); }
inline String_t* get_useStateFrom_5() const { return ___useStateFrom_5; }
inline String_t** get_address_of_useStateFrom_5() { return &___useStateFrom_5; }
inline void set_useStateFrom_5(String_t* value)
{
___useStateFrom_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___useStateFrom_5), (void*)value);
}
inline static int32_t get_offset_of_offset_6() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___offset_6)); }
inline uint32_t get_offset_6() const { return ___offset_6; }
inline uint32_t* get_address_of_offset_6() { return &___offset_6; }
inline void set_offset_6(uint32_t value)
{
___offset_6 = value;
}
inline static int32_t get_offset_of_bit_7() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___bit_7)); }
inline uint32_t get_bit_7() const { return ___bit_7; }
inline uint32_t* get_address_of_bit_7() { return &___bit_7; }
inline void set_bit_7(uint32_t value)
{
___bit_7 = value;
}
inline static int32_t get_offset_of_sizeInBits_8() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___sizeInBits_8)); }
inline uint32_t get_sizeInBits_8() const { return ___sizeInBits_8; }
inline uint32_t* get_address_of_sizeInBits_8() { return &___sizeInBits_8; }
inline void set_sizeInBits_8(uint32_t value)
{
___sizeInBits_8 = value;
}
inline static int32_t get_offset_of_format_9() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___format_9)); }
inline String_t* get_format_9() const { return ___format_9; }
inline String_t** get_address_of_format_9() { return &___format_9; }
inline void set_format_9(String_t* value)
{
___format_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___format_9), (void*)value);
}
inline static int32_t get_offset_of_arraySize_10() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___arraySize_10)); }
inline int32_t get_arraySize_10() const { return ___arraySize_10; }
inline int32_t* get_address_of_arraySize_10() { return &___arraySize_10; }
inline void set_arraySize_10(int32_t value)
{
___arraySize_10 = value;
}
inline static int32_t get_offset_of_usages_11() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___usages_11)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_usages_11() const { return ___usages_11; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_usages_11() { return &___usages_11; }
inline void set_usages_11(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___usages_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___usages_11), (void*)value);
}
inline static int32_t get_offset_of_aliases_12() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___aliases_12)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_aliases_12() const { return ___aliases_12; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_aliases_12() { return &___aliases_12; }
inline void set_aliases_12(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___aliases_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___aliases_12), (void*)value);
}
inline static int32_t get_offset_of_parameters_13() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___parameters_13)); }
inline String_t* get_parameters_13() const { return ___parameters_13; }
inline String_t** get_address_of_parameters_13() { return &___parameters_13; }
inline void set_parameters_13(String_t* value)
{
___parameters_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parameters_13), (void*)value);
}
inline static int32_t get_offset_of_processors_14() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___processors_14)); }
inline String_t* get_processors_14() const { return ___processors_14; }
inline String_t** get_address_of_processors_14() { return &___processors_14; }
inline void set_processors_14(String_t* value)
{
___processors_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___processors_14), (void*)value);
}
inline static int32_t get_offset_of_displayName_15() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___displayName_15)); }
inline String_t* get_displayName_15() const { return ___displayName_15; }
inline String_t** get_address_of_displayName_15() { return &___displayName_15; }
inline void set_displayName_15(String_t* value)
{
___displayName_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayName_15), (void*)value);
}
inline static int32_t get_offset_of_shortDisplayName_16() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___shortDisplayName_16)); }
inline String_t* get_shortDisplayName_16() const { return ___shortDisplayName_16; }
inline String_t** get_address_of_shortDisplayName_16() { return &___shortDisplayName_16; }
inline void set_shortDisplayName_16(String_t* value)
{
___shortDisplayName_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shortDisplayName_16), (void*)value);
}
inline static int32_t get_offset_of_noisy_17() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___noisy_17)); }
inline bool get_noisy_17() const { return ___noisy_17; }
inline bool* get_address_of_noisy_17() { return &___noisy_17; }
inline void set_noisy_17(bool value)
{
___noisy_17 = value;
}
inline static int32_t get_offset_of_synthetic_18() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___synthetic_18)); }
inline bool get_synthetic_18() const { return ___synthetic_18; }
inline bool* get_address_of_synthetic_18() { return &___synthetic_18; }
inline void set_synthetic_18(bool value)
{
___synthetic_18 = value;
}
inline static int32_t get_offset_of_defaultState_19() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___defaultState_19)); }
inline String_t* get_defaultState_19() const { return ___defaultState_19; }
inline String_t** get_address_of_defaultState_19() { return &___defaultState_19; }
inline void set_defaultState_19(String_t* value)
{
___defaultState_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultState_19), (void*)value);
}
inline static int32_t get_offset_of_minValue_20() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___minValue_20)); }
inline String_t* get_minValue_20() const { return ___minValue_20; }
inline String_t** get_address_of_minValue_20() { return &___minValue_20; }
inline void set_minValue_20(String_t* value)
{
___minValue_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___minValue_20), (void*)value);
}
inline static int32_t get_offset_of_maxValue_21() { return static_cast<int32_t>(offsetof(ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC, ___maxValue_21)); }
inline String_t* get_maxValue_21() const { return ___maxValue_21; }
inline String_t** get_address_of_maxValue_21() { return &___maxValue_21; }
inline void set_maxValue_21(String_t* value)
{
___maxValue_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___maxValue_21), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c
struct U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04_StaticFields
{
public:
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c::<>9
U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04 * ___U3CU3E9_0;
// System.Func`2<System.Char,System.Boolean> UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<>c::<>9__11_0
Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * ___U3CU3E9__11_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__11_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04_StaticFields, ___U3CU3E9__11_0_1)); }
inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * get_U3CU3E9__11_0_1() const { return ___U3CU3E9__11_0_1; }
inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A ** get_address_of_U3CU3E9__11_0_1() { return &___U3CU3E9__11_0_1; }
inline void set_U3CU3E9__11_0_1(Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * value)
{
___U3CU3E9__11_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__11_0_1), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.InputState/StateChangeMonitorDelegate
struct StateChangeMonitorDelegate_t43A6147733167726CA5260FEB32F0A4466A16DE9 : public RuntimeObject
{
public:
// System.Action`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Int64> UnityEngine.InputSystem.LowLevel.InputState/StateChangeMonitorDelegate::valueChangeCallback
Action_4_t1062BB9DCD0740556E48D14D768FB56DBAEDA384 * ___valueChangeCallback_0;
// System.Action`4<UnityEngine.InputSystem.InputControl,System.Double,System.Int64,System.Int32> UnityEngine.InputSystem.LowLevel.InputState/StateChangeMonitorDelegate::timerExpiredCallback
Action_4_tD518FAD83CD3802EC74EBEDF51225FCD8FD7CD10 * ___timerExpiredCallback_1;
public:
inline static int32_t get_offset_of_valueChangeCallback_0() { return static_cast<int32_t>(offsetof(StateChangeMonitorDelegate_t43A6147733167726CA5260FEB32F0A4466A16DE9, ___valueChangeCallback_0)); }
inline Action_4_t1062BB9DCD0740556E48D14D768FB56DBAEDA384 * get_valueChangeCallback_0() const { return ___valueChangeCallback_0; }
inline Action_4_t1062BB9DCD0740556E48D14D768FB56DBAEDA384 ** get_address_of_valueChangeCallback_0() { return &___valueChangeCallback_0; }
inline void set_valueChangeCallback_0(Action_4_t1062BB9DCD0740556E48D14D768FB56DBAEDA384 * value)
{
___valueChangeCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___valueChangeCallback_0), (void*)value);
}
inline static int32_t get_offset_of_timerExpiredCallback_1() { return static_cast<int32_t>(offsetof(StateChangeMonitorDelegate_t43A6147733167726CA5260FEB32F0A4466A16DE9, ___timerExpiredCallback_1)); }
inline Action_4_tD518FAD83CD3802EC74EBEDF51225FCD8FD7CD10 * get_timerExpiredCallback_1() const { return ___timerExpiredCallback_1; }
inline Action_4_tD518FAD83CD3802EC74EBEDF51225FCD8FD7CD10 ** get_address_of_timerExpiredCallback_1() { return &___timerExpiredCallback_1; }
inline void set_timerExpiredCallback_1(Action_4_tD518FAD83CD3802EC74EBEDF51225FCD8FD7CD10 * value)
{
___timerExpiredCallback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___timerExpiredCallback_1), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.MatchController/<AddPlayersToMatchController>d__17
struct U3CAddPlayersToMatchControllerU3Ed__17_t281FEFAD97FD45BCB88DCA3E8BFDC78B6B149692 : public RuntimeObject
{
public:
// System.Int32 Mirror.Examples.MultipleMatch.MatchController/<AddPlayersToMatchController>d__17::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Examples.MultipleMatch.MatchController/<AddPlayersToMatchController>d__17::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Mirror.Examples.MultipleMatch.MatchController Mirror.Examples.MultipleMatch.MatchController/<AddPlayersToMatchController>d__17::<>4__this
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CAddPlayersToMatchControllerU3Ed__17_t281FEFAD97FD45BCB88DCA3E8BFDC78B6B149692, ___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(U3CAddPlayersToMatchControllerU3Ed__17_t281FEFAD97FD45BCB88DCA3E8BFDC78B6B149692, ___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(U3CAddPlayersToMatchControllerU3Ed__17_t281FEFAD97FD45BCB88DCA3E8BFDC78B6B149692, ___U3CU3E4__this_2)); }
inline MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.MatchController/<ServerEndMatch>d__32
struct U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3 : public RuntimeObject
{
public:
// System.Int32 Mirror.Examples.MultipleMatch.MatchController/<ServerEndMatch>d__32::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Examples.MultipleMatch.MatchController/<ServerEndMatch>d__32::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Mirror.Examples.MultipleMatch.MatchController Mirror.Examples.MultipleMatch.MatchController/<ServerEndMatch>d__32::<>4__this
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * ___U3CU3E4__this_2;
// System.Boolean Mirror.Examples.MultipleMatch.MatchController/<ServerEndMatch>d__32::disconnected
bool ___disconnected_3;
// Mirror.NetworkConnection Mirror.Examples.MultipleMatch.MatchController/<ServerEndMatch>d__32::conn
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_4;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3, ___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(U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3, ___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(U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3, ___U3CU3E4__this_2)); }
inline MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_disconnected_3() { return static_cast<int32_t>(offsetof(U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3, ___disconnected_3)); }
inline bool get_disconnected_3() const { return ___disconnected_3; }
inline bool* get_address_of_disconnected_3() { return &___disconnected_3; }
inline void set_disconnected_3(bool value)
{
___disconnected_3 = value;
}
inline static int32_t get_offset_of_conn_4() { return static_cast<int32_t>(offsetof(U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3, ___conn_4)); }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_conn_4() const { return ___conn_4; }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_conn_4() { return &___conn_4; }
inline void set_conn_4(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value)
{
___conn_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_4), (void*)value);
}
};
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork/<>c
struct U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B_StaticFields
{
public:
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork/<>c Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork/<>c::<>9
U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B * ___U3CU3E9_0;
// System.Func`1<System.Byte[]> Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork/<>c::<>9__11_0
Func_1_tD8059ADEA67BC54CB9CB92E8719A3A6BE8473473 * ___U3CU3E9__11_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__11_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B_StaticFields, ___U3CU3E9__11_0_1)); }
inline Func_1_tD8059ADEA67BC54CB9CB92E8719A3A6BE8473473 * get_U3CU3E9__11_0_1() const { return ___U3CU3E9__11_0_1; }
inline Func_1_tD8059ADEA67BC54CB9CB92E8719A3A6BE8473473 ** get_address_of_U3CU3E9__11_0_1() { return &___U3CU3E9__11_0_1; }
inline void set_U3CU3E9__11_0_1(Func_1_tD8059ADEA67BC54CB9CB92E8719A3A6BE8473473 * value)
{
___U3CU3E9__11_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__11_0_1), (void*)value);
}
};
// Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ClientUnloadSubScenes>d__13
struct U3CClientUnloadSubScenesU3Ed__13_t4839F27F0B1F346D5B60412D046EDD409FED4E94 : public RuntimeObject
{
public:
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ClientUnloadSubScenes>d__13::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ClientUnloadSubScenes>d__13::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ClientUnloadSubScenes>d__13::<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(U3CClientUnloadSubScenesU3Ed__13_t4839F27F0B1F346D5B60412D046EDD409FED4E94, ___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(U3CClientUnloadSubScenesU3Ed__13_t4839F27F0B1F346D5B60412D046EDD409FED4E94, ___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(U3CClientUnloadSubScenesU3Ed__13_t4839F27F0B1F346D5B60412D046EDD409FED4E94, ___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/<OnServerAddPlayerDelayed>d__7
struct U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60 : public RuntimeObject
{
public:
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<OnServerAddPlayerDelayed>d__7::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<OnServerAddPlayerDelayed>d__7::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<OnServerAddPlayerDelayed>d__7::<>4__this
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * ___U3CU3E4__this_2;
// Mirror.NetworkConnection Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<OnServerAddPlayerDelayed>d__7::conn
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60, ___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(U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60, ___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(U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60, ___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_conn_3() { return static_cast<int32_t>(offsetof(U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60, ___conn_3)); }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_conn_3() const { return ___conn_3; }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_conn_3() { return &___conn_3; }
inline void set_conn_3(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value)
{
___conn_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_3), (void*)value);
}
};
// Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerLoadSubScenes>d__9
struct U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB : public RuntimeObject
{
public:
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerLoadSubScenes>d__9::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerLoadSubScenes>d__9::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerLoadSubScenes>d__9::<>4__this
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * ___U3CU3E4__this_2;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerLoadSubScenes>d__9::<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(U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB, ___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(U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB, ___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(U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB, ___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(U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB, ___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/<ServerUnloadSubScenes>d__11
struct U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10 : public RuntimeObject
{
public:
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerUnloadSubScenes>d__11::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerUnloadSubScenes>d__11::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerUnloadSubScenes>d__11::<>4__this
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F * ___U3CU3E4__this_2;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager/<ServerUnloadSubScenes>d__11::<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(U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10, ___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(U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10, ___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(U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10, ___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(U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10, ___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;
}
};
// UnityEngine.InputSystem.Utilities.NameAndParameters/<>c
struct U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.NameAndParameters/<>c UnityEngine.InputSystem.Utilities.NameAndParameters/<>c::<>9
U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9 * ___U3CU3E9_0;
// System.Func`2<UnityEngine.InputSystem.Utilities.NamedValue,System.String> UnityEngine.InputSystem.Utilities.NameAndParameters/<>c::<>9__8_0
Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 * ___U3CU3E9__8_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__8_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9_StaticFields, ___U3CU3E9__8_0_1)); }
inline Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 * get_U3CU3E9__8_0_1() const { return ___U3CU3E9__8_0_1; }
inline Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 ** get_address_of_U3CU3E9__8_0_1() { return &___U3CU3E9__8_0_1; }
inline void set_U3CU3E9__8_0_1(Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 * value)
{
___U3CU3E9__8_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__8_0_1), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.NativeInputRuntime/<>c__DisplayClass10_0
struct U3CU3Ec__DisplayClass10_0_t978A9D40EECD3A2F77B67E7EA6320F58545E06A1 : public RuntimeObject
{
public:
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputUpdateType> UnityEngine.InputSystem.LowLevel.NativeInputRuntime/<>c__DisplayClass10_0::value
Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass10_0_t978A9D40EECD3A2F77B67E7EA6320F58545E06A1, ___value_0)); }
inline Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 * get_value_0() const { return ___value_0; }
inline Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Action_1_tCFBB65A2042B85159841EEACD6C8E4D970147AD7 * value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.NativeInputRuntime/<>c__DisplayClass13_0
struct U3CU3Ec__DisplayClass13_0_tE6C51C1CF921CBD9477E5B6062162F1FF38E1702 : public RuntimeObject
{
public:
// System.Func`2<UnityEngine.InputSystem.LowLevel.InputUpdateType,System.Boolean> UnityEngine.InputSystem.LowLevel.NativeInputRuntime/<>c__DisplayClass13_0::value
Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass13_0_tE6C51C1CF921CBD9477E5B6062162F1FF38E1702, ___value_0)); }
inline Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE * get_value_0() const { return ___value_0; }
inline Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Func_2_t27845767692D3C7CA1D755288405FA529E1DA1CE * value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.NativeInputRuntime/<>c__DisplayClass7_0
struct U3CU3Ec__DisplayClass7_0_tE4036860C7709D04E7345194754D2C7A21A68550 : public RuntimeObject
{
public:
// UnityEngine.InputSystem.LowLevel.InputUpdateDelegate UnityEngine.InputSystem.LowLevel.NativeInputRuntime/<>c__DisplayClass7_0::value
InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass7_0_tE4036860C7709D04E7345194754D2C7A21A68550, ___value_0)); }
inline InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA * get_value_0() const { return ___value_0; }
inline InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA * value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)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.NetworkRoomManager/<>c
struct U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8_StaticFields
{
public:
// Mirror.NetworkRoomManager/<>c Mirror.NetworkRoomManager/<>c::<>9
U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8 * ___U3CU3E9_0;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Int32,Mirror.NetworkConnectionToClient>,System.Boolean> Mirror.NetworkRoomManager/<>c::<>9__16_0
Func_2_t1186B7233CEE692AB7374C6620B782BD969E354C * ___U3CU3E9__16_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__16_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8_StaticFields, ___U3CU3E9__16_0_1)); }
inline Func_2_t1186B7233CEE692AB7374C6620B782BD969E354C * get_U3CU3E9__16_0_1() const { return ___U3CU3E9__16_0_1; }
inline Func_2_t1186B7233CEE692AB7374C6620B782BD969E354C ** get_address_of_U3CU3E9__16_0_1() { return &___U3CU3E9__16_0_1; }
inline void set_U3CU3E9__16_0_1(Func_2_t1186B7233CEE692AB7374C6620B782BD969E354C * value)
{
___U3CU3E9__16_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__16_0_1), (void*)value);
}
};
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusDecoder
struct OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE : public RuntimeObject
{
public:
// Dissonance.Threading.LockedValue`1<System.IntPtr> Dissonance.Audio.Codecs.Opus.OpusNative/OpusDecoder::_decoder
LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * ____decoder_1;
// System.Boolean Dissonance.Audio.Codecs.Opus.OpusNative/OpusDecoder::<EnableForwardErrorCorrection>k__BackingField
bool ___U3CEnableForwardErrorCorrectionU3Ek__BackingField_2;
// System.Boolean Dissonance.Audio.Codecs.Opus.OpusNative/OpusDecoder::_disposed
bool ____disposed_3;
public:
inline static int32_t get_offset_of__decoder_1() { return static_cast<int32_t>(offsetof(OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE, ____decoder_1)); }
inline LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * get__decoder_1() const { return ____decoder_1; }
inline LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E ** get_address_of__decoder_1() { return &____decoder_1; }
inline void set__decoder_1(LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * value)
{
____decoder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____decoder_1), (void*)value);
}
inline static int32_t get_offset_of_U3CEnableForwardErrorCorrectionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE, ___U3CEnableForwardErrorCorrectionU3Ek__BackingField_2)); }
inline bool get_U3CEnableForwardErrorCorrectionU3Ek__BackingField_2() const { return ___U3CEnableForwardErrorCorrectionU3Ek__BackingField_2; }
inline bool* get_address_of_U3CEnableForwardErrorCorrectionU3Ek__BackingField_2() { return &___U3CEnableForwardErrorCorrectionU3Ek__BackingField_2; }
inline void set_U3CEnableForwardErrorCorrectionU3Ek__BackingField_2(bool value)
{
___U3CEnableForwardErrorCorrectionU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of__disposed_3() { return static_cast<int32_t>(offsetof(OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE, ____disposed_3)); }
inline bool get__disposed_3() const { return ____disposed_3; }
inline bool* get_address_of__disposed_3() { return &____disposed_3; }
inline void set__disposed_3(bool value)
{
____disposed_3 = value;
}
};
struct OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Codecs.Opus.OpusNative/OpusDecoder::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusEncoder
struct OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335 : public RuntimeObject
{
public:
// Dissonance.Threading.LockedValue`1<System.IntPtr> Dissonance.Audio.Codecs.Opus.OpusNative/OpusEncoder::_encoder
LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * ____encoder_1;
// System.Int32 Dissonance.Audio.Codecs.Opus.OpusNative/OpusEncoder::_packetLoss
int32_t ____packetLoss_2;
// System.Boolean Dissonance.Audio.Codecs.Opus.OpusNative/OpusEncoder::_disposed
bool ____disposed_3;
public:
inline static int32_t get_offset_of__encoder_1() { return static_cast<int32_t>(offsetof(OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335, ____encoder_1)); }
inline LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * get__encoder_1() const { return ____encoder_1; }
inline LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E ** get_address_of__encoder_1() { return &____encoder_1; }
inline void set__encoder_1(LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * value)
{
____encoder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encoder_1), (void*)value);
}
inline static int32_t get_offset_of__packetLoss_2() { return static_cast<int32_t>(offsetof(OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335, ____packetLoss_2)); }
inline int32_t get__packetLoss_2() const { return ____packetLoss_2; }
inline int32_t* get_address_of__packetLoss_2() { return &____packetLoss_2; }
inline void set__packetLoss_2(int32_t value)
{
____packetLoss_2 = value;
}
inline static int32_t get_offset_of__disposed_3() { return static_cast<int32_t>(offsetof(OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335, ____disposed_3)); }
inline bool get__disposed_3() const { return ____disposed_3; }
inline bool* get_address_of__disposed_3() { return &____disposed_3; }
inline void set__disposed_3(bool value)
{
____disposed_3 = value;
}
};
struct OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Codecs.Opus.OpusNative/OpusEncoder::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusNativeMethods
struct OpusNativeMethods_tDE7BF1765E7C80A6590088D8AF5F8F58A74EAA86 : public RuntimeObject
{
public:
public:
};
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusSoftClip
struct OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3 : public RuntimeObject
{
public:
// System.Boolean Dissonance.Audio.Codecs.Opus.OpusNative/OpusSoftClip::_disabled
bool ____disabled_0;
// System.Single[] Dissonance.Audio.Codecs.Opus.OpusNative/OpusSoftClip::_memory
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____memory_1;
public:
inline static int32_t get_offset_of__disabled_0() { return static_cast<int32_t>(offsetof(OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3, ____disabled_0)); }
inline bool get__disabled_0() const { return ____disabled_0; }
inline bool* get_address_of__disabled_0() { return &____disabled_0; }
inline void set__disabled_0(bool value)
{
____disabled_0 = value;
}
inline static int32_t get_offset_of__memory_1() { return static_cast<int32_t>(offsetof(OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3, ____memory_1)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__memory_1() const { return ____memory_1; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__memory_1() { return &____memory_1; }
inline void set__memory_1(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
____memory_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____memory_1), (void*)value);
}
};
// Dissonance.PlayerChannels/<>c
struct U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6_StaticFields
{
public:
// Dissonance.PlayerChannels/<>c Dissonance.PlayerChannels/<>c::<>9
U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6 * ___U3CU3E9_0;
// System.Action`2<System.String,Dissonance.ChannelProperties> Dissonance.PlayerChannels/<>c::<>9__0_0
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___U3CU3E9__0_0_1;
// System.Action`2<System.String,Dissonance.ChannelProperties> Dissonance.PlayerChannels/<>c::<>9__0_1
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___U3CU3E9__0_1_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__0_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6_StaticFields, ___U3CU3E9__0_0_1)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_U3CU3E9__0_0_1() const { return ___U3CU3E9__0_0_1; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_U3CU3E9__0_0_1() { return &___U3CU3E9__0_0_1; }
inline void set_U3CU3E9__0_0_1(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___U3CU3E9__0_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__0_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__0_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6_StaticFields, ___U3CU3E9__0_1_2)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_U3CU3E9__0_1_2() const { return ___U3CU3E9__0_1_2; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_U3CU3E9__0_1_2() { return &___U3CU3E9__0_1_2; }
inline void set_U3CU3E9__0_1_2(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___U3CU3E9__0_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__0_1_2), (void*)value);
}
};
// Mirror.SimpleWeb.ReadHelper/<>c
struct U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40_StaticFields
{
public:
// Mirror.SimpleWeb.ReadHelper/<>c Mirror.SimpleWeb.ReadHelper/<>c::<>9
U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40 * ___U3CU3E9_0;
// System.Func`2<System.Exception,System.Boolean> Mirror.SimpleWeb.ReadHelper/<>c::<>9__0_0
Func_2_t6283F9D1F2A6C8BB45F72CDAD5856BC3FDF29C3F * ___U3CU3E9__0_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__0_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40_StaticFields, ___U3CU3E9__0_0_1)); }
inline Func_2_t6283F9D1F2A6C8BB45F72CDAD5856BC3FDF29C3F * get_U3CU3E9__0_0_1() const { return ___U3CU3E9__0_0_1; }
inline Func_2_t6283F9D1F2A6C8BB45F72CDAD5856BC3FDF29C3F ** get_address_of_U3CU3E9__0_0_1() { return &___U3CU3E9__0_0_1; }
inline void set_U3CU3E9__0_0_1(Func_2_t6283F9D1F2A6C8BB45F72CDAD5856BC3FDF29C3F * value)
{
___U3CU3E9__0_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__0_0_1), (void*)value);
}
};
// Dissonance.RoomChannels/<>c
struct U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185_StaticFields
{
public:
// Dissonance.RoomChannels/<>c Dissonance.RoomChannels/<>c::<>9
U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185 * ___U3CU3E9_0;
// System.Action`2<System.String,Dissonance.ChannelProperties> Dissonance.RoomChannels/<>c::<>9__0_0
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___U3CU3E9__0_0_1;
// System.Action`2<System.String,Dissonance.ChannelProperties> Dissonance.RoomChannels/<>c::<>9__0_1
Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * ___U3CU3E9__0_1_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__0_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185_StaticFields, ___U3CU3E9__0_0_1)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_U3CU3E9__0_0_1() const { return ___U3CU3E9__0_0_1; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_U3CU3E9__0_0_1() { return &___U3CU3E9__0_0_1; }
inline void set_U3CU3E9__0_0_1(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___U3CU3E9__0_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__0_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__0_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185_StaticFields, ___U3CU3E9__0_1_2)); }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * get_U3CU3E9__0_1_2() const { return ___U3CU3E9__0_1_2; }
inline Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 ** get_address_of_U3CU3E9__0_1_2() { return &___U3CU3E9__0_1_2; }
inline void set_U3CU3E9__0_1_2(Action_2_t36E1AB46F69E2A51D88989FA245ADAE3DAB29456 * value)
{
___U3CU3E9__0_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__0_1_2), (void*)value);
}
};
// Mirror.SimpleWeb.SendLoop/MaskHelper
struct MaskHelper_tA89B5BF4D7F4F334DF774BF0EAE166CF504AE011 : public RuntimeObject
{
public:
// System.Byte[] Mirror.SimpleWeb.SendLoop/MaskHelper::maskBuffer
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___maskBuffer_0;
// System.Security.Cryptography.RNGCryptoServiceProvider Mirror.SimpleWeb.SendLoop/MaskHelper::random
RNGCryptoServiceProvider_t696D1B0DFED446BE4718F7E18ABFFBB6E5A8A5A1 * ___random_1;
public:
inline static int32_t get_offset_of_maskBuffer_0() { return static_cast<int32_t>(offsetof(MaskHelper_tA89B5BF4D7F4F334DF774BF0EAE166CF504AE011, ___maskBuffer_0)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_maskBuffer_0() const { return ___maskBuffer_0; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_maskBuffer_0() { return &___maskBuffer_0; }
inline void set_maskBuffer_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___maskBuffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___maskBuffer_0), (void*)value);
}
inline static int32_t get_offset_of_random_1() { return static_cast<int32_t>(offsetof(MaskHelper_tA89B5BF4D7F4F334DF774BF0EAE166CF504AE011, ___random_1)); }
inline RNGCryptoServiceProvider_t696D1B0DFED446BE4718F7E18ABFFBB6E5A8A5A1 * get_random_1() const { return ___random_1; }
inline RNGCryptoServiceProvider_t696D1B0DFED446BE4718F7E18ABFFBB6E5A8A5A1 ** get_address_of_random_1() { return &___random_1; }
inline void set_random_1(RNGCryptoServiceProvider_t696D1B0DFED446BE4718F7E18ABFFBB6E5A8A5A1 * value)
{
___random_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___random_1), (void*)value);
}
};
// Dissonance.Demo.SpeakerIndicator/<FindPlayerState>d__10
struct U3CFindPlayerStateU3Ed__10_t67C50ACF6050D6B1937F279CAF27D7F1466540E6 : public RuntimeObject
{
public:
// System.Int32 Dissonance.Demo.SpeakerIndicator/<FindPlayerState>d__10::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Dissonance.Demo.SpeakerIndicator/<FindPlayerState>d__10::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Dissonance.Demo.SpeakerIndicator Dissonance.Demo.SpeakerIndicator/<FindPlayerState>d__10::<>4__this
SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC * ___U3CU3E4__this_2;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CFindPlayerStateU3Ed__10_t67C50ACF6050D6B1937F279CAF27D7F1466540E6, ___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(U3CFindPlayerStateU3Ed__10_t67C50ACF6050D6B1937F279CAF27D7F1466540E6, ___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(U3CFindPlayerStateU3Ed__10_t67C50ACF6050D6B1937F279CAF27D7F1466540E6, ___U3CU3E4__this_2)); }
inline SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9
struct U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::<>1__state
int32_t ___U3CU3E1__state_0;
// System.String UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::<>2__current
String_t* ___U3CU3E2__current_1;
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.String UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::str
String_t* ___str_3;
// System.String UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::<>3__str
String_t* ___U3CU3E3__str_4;
// System.Func`2<System.Char,System.Boolean> UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::predicate
Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * ___predicate_5;
// System.Func`2<System.Char,System.Boolean> UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::<>3__predicate
Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * ___U3CU3E3__predicate_6;
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::<length>5__2
int32_t ___U3ClengthU3E5__2_7;
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Split>d__9::<position>5__3
int32_t ___U3CpositionU3E5__3_8;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___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(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___U3CU3E2__current_1)); }
inline String_t* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline String_t** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(String_t* value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_str_3() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___str_3)); }
inline String_t* get_str_3() const { return ___str_3; }
inline String_t** get_address_of_str_3() { return &___str_3; }
inline void set_str_3(String_t* value)
{
___str_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___str_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E3__str_4() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___U3CU3E3__str_4)); }
inline String_t* get_U3CU3E3__str_4() const { return ___U3CU3E3__str_4; }
inline String_t** get_address_of_U3CU3E3__str_4() { return &___U3CU3E3__str_4; }
inline void set_U3CU3E3__str_4(String_t* value)
{
___U3CU3E3__str_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__str_4), (void*)value);
}
inline static int32_t get_offset_of_predicate_5() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___predicate_5)); }
inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * get_predicate_5() const { return ___predicate_5; }
inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A ** get_address_of_predicate_5() { return &___predicate_5; }
inline void set_predicate_5(Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * value)
{
___predicate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___predicate_5), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E3__predicate_6() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___U3CU3E3__predicate_6)); }
inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * get_U3CU3E3__predicate_6() const { return ___U3CU3E3__predicate_6; }
inline Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A ** get_address_of_U3CU3E3__predicate_6() { return &___U3CU3E3__predicate_6; }
inline void set_U3CU3E3__predicate_6(Func_2_t12237805D7B3E966E36DB4327BA1F80B724C4B9A * value)
{
___U3CU3E3__predicate_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__predicate_6), (void*)value);
}
inline static int32_t get_offset_of_U3ClengthU3E5__2_7() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___U3ClengthU3E5__2_7)); }
inline int32_t get_U3ClengthU3E5__2_7() const { return ___U3ClengthU3E5__2_7; }
inline int32_t* get_address_of_U3ClengthU3E5__2_7() { return &___U3ClengthU3E5__2_7; }
inline void set_U3ClengthU3E5__2_7(int32_t value)
{
___U3ClengthU3E5__2_7 = value;
}
inline static int32_t get_offset_of_U3CpositionU3E5__3_8() { return static_cast<int32_t>(offsetof(U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056, ___U3CpositionU3E5__3_8)); }
inline int32_t get_U3CpositionU3E5__3_8() const { return ___U3CpositionU3E5__3_8; }
inline int32_t* get_address_of_U3CpositionU3E5__3_8() { return &___U3CpositionU3E5__3_8; }
inline void set_U3CpositionU3E5__3_8(int32_t value)
{
___U3CpositionU3E5__3_8 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/<>c__DisplayClass4_0
struct U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.Experimental.TerrainAPI.TerrainUtility/<>c__DisplayClass4_0::onlyAutoConnectedTerrains
bool ___onlyAutoConnectedTerrains_0;
public:
inline static int32_t get_offset_of_onlyAutoConnectedTerrains_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8, ___onlyAutoConnectedTerrains_0)); }
inline bool get_onlyAutoConnectedTerrains_0() const { return ___onlyAutoConnectedTerrains_0; }
inline bool* get_address_of_onlyAutoConnectedTerrains_0() { return &___onlyAutoConnectedTerrains_0; }
inline void set_onlyAutoConnectedTerrains_0(bool value)
{
___onlyAutoConnectedTerrains_0 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/<>c__DisplayClass4_1
struct U3CU3Ec__DisplayClass4_1_t4628C2311DC3CEECE17200D3AD3113D667B36696 : public RuntimeObject
{
public:
// UnityEngine.Terrain UnityEngine.Experimental.TerrainAPI.TerrainUtility/<>c__DisplayClass4_1::t
Terrain_t2C0E3B3A2895E81446EFF4F5AFD601CF977D1836 * ___t_0;
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/<>c__DisplayClass4_0 UnityEngine.Experimental.TerrainAPI.TerrainUtility/<>c__DisplayClass4_1::CS$<>8__locals1
U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8 * ___CSU24U3CU3E8__locals1_1;
public:
inline static int32_t get_offset_of_t_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass4_1_t4628C2311DC3CEECE17200D3AD3113D667B36696, ___t_0)); }
inline Terrain_t2C0E3B3A2895E81446EFF4F5AFD601CF977D1836 * get_t_0() const { return ___t_0; }
inline Terrain_t2C0E3B3A2895E81446EFF4F5AFD601CF977D1836 ** get_address_of_t_0() { return &___t_0; }
inline void set_t_0(Terrain_t2C0E3B3A2895E81446EFF4F5AFD601CF977D1836 * value)
{
___t_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_0), (void*)value);
}
inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass4_1_t4628C2311DC3CEECE17200D3AD3113D667B36696, ___CSU24U3CU3E8__locals1_1)); }
inline U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8 * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; }
inline U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8 ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; }
inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8 * value)
{
___CSU24U3CU3E8__locals1_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_1), (void*)value);
}
};
// Mirror.Authenticators.TimeoutAuthenticator/<BeginAuthentication>d__9
struct U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB : public RuntimeObject
{
public:
// System.Int32 Mirror.Authenticators.TimeoutAuthenticator/<BeginAuthentication>d__9::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object Mirror.Authenticators.TimeoutAuthenticator/<BeginAuthentication>d__9::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// Mirror.Authenticators.TimeoutAuthenticator Mirror.Authenticators.TimeoutAuthenticator/<BeginAuthentication>d__9::<>4__this
TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01 * ___U3CU3E4__this_2;
// Mirror.NetworkConnection Mirror.Authenticators.TimeoutAuthenticator/<BeginAuthentication>d__9::conn
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB, ___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(U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB, ___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(U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB, ___U3CU3E4__this_2)); }
inline TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_conn_3() { return static_cast<int32_t>(offsetof(U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB, ___conn_3)); }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_conn_3() const { return ___conn_3; }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_conn_3() { return &___conn_3; }
inline void set_conn_3(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value)
{
___conn_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_3), (void*)value);
}
};
// UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/<>c
struct U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465_StaticFields
{
public:
// UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/<>c UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/<>c::<>9
U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465 * ___U3CU3E9_0;
// System.Comparison`1<UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData> UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/<>c::<>9__25_0
Comparison_1_t5534DE0683D138C32ECDC27ADFC7CDD9415A232A * ___U3CU3E9__25_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__25_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465_StaticFields, ___U3CU3E9__25_0_1)); }
inline Comparison_1_t5534DE0683D138C32ECDC27ADFC7CDD9415A232A * get_U3CU3E9__25_0_1() const { return ___U3CU3E9__25_0_1; }
inline Comparison_1_t5534DE0683D138C32ECDC27ADFC7CDD9415A232A ** get_address_of_U3CU3E9__25_0_1() { return &___U3CU3E9__25_0_1; }
inline void set_U3CU3E9__25_0_1(Comparison_1_t5534DE0683D138C32ECDC27ADFC7CDD9415A232A * value)
{
___U3CU3E9__25_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__25_0_1), (void*)value);
}
};
// Dissonance.Demo.TriggerVisualizer/<>c
struct U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37_StaticFields
{
public:
// Dissonance.Demo.TriggerVisualizer/<>c Dissonance.Demo.TriggerVisualizer/<>c::<>9
U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37 * ___U3CU3E9_0;
// System.Func`2<Dissonance.BaseCommsTrigger,System.Boolean> Dissonance.Demo.TriggerVisualizer/<>c::<>9__7_0
Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 * ___U3CU3E9__7_0_1;
// System.Func`2<Dissonance.BaseCommsTrigger,System.Boolean> Dissonance.Demo.TriggerVisualizer/<>c::<>9__7_1
Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 * ___U3CU3E9__7_1_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__7_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37_StaticFields, ___U3CU3E9__7_0_1)); }
inline Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 * get_U3CU3E9__7_0_1() const { return ___U3CU3E9__7_0_1; }
inline Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 ** get_address_of_U3CU3E9__7_0_1() { return &___U3CU3E9__7_0_1; }
inline void set_U3CU3E9__7_0_1(Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 * value)
{
___U3CU3E9__7_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__7_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__7_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37_StaticFields, ___U3CU3E9__7_1_2)); }
inline Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 * get_U3CU3E9__7_1_2() const { return ___U3CU3E9__7_1_2; }
inline Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 ** get_address_of_U3CU3E9__7_1_2() { return &___U3CU3E9__7_1_2; }
inline void set_U3CU3E9__7_1_2(Func_2_tB0E5C94EA0D9921CBFEA2C14B22A4C72AE3CE508 * value)
{
___U3CU3E9__7_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__7_1_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.TypeTable/<>c
struct U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.TypeTable/<>c UnityEngine.InputSystem.Utilities.TypeTable/<>c::<>9
U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089 * ___U3CU3E9_0;
// System.Func`2<UnityEngine.InputSystem.Utilities.InternedString,System.String> UnityEngine.InputSystem.Utilities.TypeTable/<>c::<>9__2_0
Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * ___U3CU3E9__2_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__2_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089_StaticFields, ___U3CU3E9__2_0_1)); }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * get_U3CU3E9__2_0_1() const { return ___U3CU3E9__2_0_1; }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A ** get_address_of_U3CU3E9__2_0_1() { return &___U3CU3E9__2_0_1; }
inline void set_U3CU3E9__2_0_1(Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * value)
{
___U3CU3E9__2_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_0_1), (void*)value);
}
};
// Dissonance.Audio.Playback.VoicePlayback/<>c
struct U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA_StaticFields
{
public:
// Dissonance.Audio.Playback.VoicePlayback/<>c Dissonance.Audio.Playback.VoicePlayback/<>c::<>9
U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA * ___U3CU3E9_0;
// UnityEngine.AudioClip/PCMReaderCallback Dissonance.Audio.Playback.VoicePlayback/<>c::<>9__57_0
PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * ___U3CU3E9__57_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__57_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA_StaticFields, ___U3CU3E9__57_0_1)); }
inline PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * get_U3CU3E9__57_0_1() const { return ___U3CU3E9__57_0_1; }
inline PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B ** get_address_of_U3CU3E9__57_0_1() { return &___U3CU3E9__57_0_1; }
inline void set_U3CU3E9__57_0_1(PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * value)
{
___U3CU3E9__57_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__57_0_1), (void*)value);
}
};
// Dissonance.Config.VoiceSettings/<>c
struct U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields
{
public:
// Dissonance.Config.VoiceSettings/<>c Dissonance.Config.VoiceSettings/<>c::<>9
U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204 * ___U3CU3E9_0;
// System.Action`2<System.String,Dissonance.AudioQuality> Dissonance.Config.VoiceSettings/<>c::<>9__18_0
Action_2_t473E38F5219024BDD077E6C7B7A5FCCD96097A30 * ___U3CU3E9__18_0_1;
// System.Action`2<System.String,Dissonance.FrameSize> Dissonance.Config.VoiceSettings/<>c::<>9__22_0
Action_2_tF343FAC67EDCECD56758B1365596AEB10A8B627A * ___U3CU3E9__22_0_2;
// System.Func`3<System.String,Dissonance.AudioQuality,Dissonance.AudioQuality> Dissonance.Config.VoiceSettings/<>c::<>9__74_0
Func_3_tB0205164890D22AA643059B40E1963E0EECD10F5 * ___U3CU3E9__74_0_3;
// System.Func`3<System.String,Dissonance.FrameSize,Dissonance.FrameSize> Dissonance.Config.VoiceSettings/<>c::<>9__74_1
Func_3_t1C022D4F055858AB2BB00F4FEFC88961768C4302 * ___U3CU3E9__74_1_4;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__18_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields, ___U3CU3E9__18_0_1)); }
inline Action_2_t473E38F5219024BDD077E6C7B7A5FCCD96097A30 * get_U3CU3E9__18_0_1() const { return ___U3CU3E9__18_0_1; }
inline Action_2_t473E38F5219024BDD077E6C7B7A5FCCD96097A30 ** get_address_of_U3CU3E9__18_0_1() { return &___U3CU3E9__18_0_1; }
inline void set_U3CU3E9__18_0_1(Action_2_t473E38F5219024BDD077E6C7B7A5FCCD96097A30 * value)
{
___U3CU3E9__18_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__18_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__22_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields, ___U3CU3E9__22_0_2)); }
inline Action_2_tF343FAC67EDCECD56758B1365596AEB10A8B627A * get_U3CU3E9__22_0_2() const { return ___U3CU3E9__22_0_2; }
inline Action_2_tF343FAC67EDCECD56758B1365596AEB10A8B627A ** get_address_of_U3CU3E9__22_0_2() { return &___U3CU3E9__22_0_2; }
inline void set_U3CU3E9__22_0_2(Action_2_tF343FAC67EDCECD56758B1365596AEB10A8B627A * value)
{
___U3CU3E9__22_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__22_0_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__74_0_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields, ___U3CU3E9__74_0_3)); }
inline Func_3_tB0205164890D22AA643059B40E1963E0EECD10F5 * get_U3CU3E9__74_0_3() const { return ___U3CU3E9__74_0_3; }
inline Func_3_tB0205164890D22AA643059B40E1963E0EECD10F5 ** get_address_of_U3CU3E9__74_0_3() { return &___U3CU3E9__74_0_3; }
inline void set_U3CU3E9__74_0_3(Func_3_tB0205164890D22AA643059B40E1963E0EECD10F5 * value)
{
___U3CU3E9__74_0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__74_0_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__74_1_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields, ___U3CU3E9__74_1_4)); }
inline Func_3_t1C022D4F055858AB2BB00F4FEFC88961768C4302 * get_U3CU3E9__74_1_4() const { return ___U3CU3E9__74_1_4; }
inline Func_3_t1C022D4F055858AB2BB00F4FEFC88961768C4302 ** get_address_of_U3CU3E9__74_1_4() { return &___U3CU3E9__74_1_4; }
inline void set_U3CU3E9__74_1_4(Func_3_t1C022D4F055858AB2BB00F4FEFC88961768C4302 * value)
{
___U3CU3E9__74_1_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__74_1_4), (void*)value);
}
};
// NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter
struct WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4 : public RuntimeObject
{
public:
// System.Double NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter::m_fpos
double ___m_fpos_0;
// System.Double NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter::m_a1
double ___m_a1_1;
// System.Double NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter::m_a2
double ___m_a2_2;
// System.Double NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter::m_b0
double ___m_b0_3;
// System.Double NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter::m_b1
double ___m_b1_4;
// System.Double NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter::m_b2
double ___m_b2_5;
// System.Double[0...,0...] NAudio.Dsp.WdlResampler/WDL_Resampler_IIRFilter::m_hist
DoubleU5BU2CU5D_t469708E84B24DAB3E509BDEC941060C69370193E* ___m_hist_6;
public:
inline static int32_t get_offset_of_m_fpos_0() { return static_cast<int32_t>(offsetof(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4, ___m_fpos_0)); }
inline double get_m_fpos_0() const { return ___m_fpos_0; }
inline double* get_address_of_m_fpos_0() { return &___m_fpos_0; }
inline void set_m_fpos_0(double value)
{
___m_fpos_0 = value;
}
inline static int32_t get_offset_of_m_a1_1() { return static_cast<int32_t>(offsetof(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4, ___m_a1_1)); }
inline double get_m_a1_1() const { return ___m_a1_1; }
inline double* get_address_of_m_a1_1() { return &___m_a1_1; }
inline void set_m_a1_1(double value)
{
___m_a1_1 = value;
}
inline static int32_t get_offset_of_m_a2_2() { return static_cast<int32_t>(offsetof(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4, ___m_a2_2)); }
inline double get_m_a2_2() const { return ___m_a2_2; }
inline double* get_address_of_m_a2_2() { return &___m_a2_2; }
inline void set_m_a2_2(double value)
{
___m_a2_2 = value;
}
inline static int32_t get_offset_of_m_b0_3() { return static_cast<int32_t>(offsetof(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4, ___m_b0_3)); }
inline double get_m_b0_3() const { return ___m_b0_3; }
inline double* get_address_of_m_b0_3() { return &___m_b0_3; }
inline void set_m_b0_3(double value)
{
___m_b0_3 = value;
}
inline static int32_t get_offset_of_m_b1_4() { return static_cast<int32_t>(offsetof(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4, ___m_b1_4)); }
inline double get_m_b1_4() const { return ___m_b1_4; }
inline double* get_address_of_m_b1_4() { return &___m_b1_4; }
inline void set_m_b1_4(double value)
{
___m_b1_4 = value;
}
inline static int32_t get_offset_of_m_b2_5() { return static_cast<int32_t>(offsetof(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4, ___m_b2_5)); }
inline double get_m_b2_5() const { return ___m_b2_5; }
inline double* get_address_of_m_b2_5() { return &___m_b2_5; }
inline void set_m_b2_5(double value)
{
___m_b2_5 = value;
}
inline static int32_t get_offset_of_m_hist_6() { return static_cast<int32_t>(offsetof(WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4, ___m_hist_6)); }
inline DoubleU5BU2CU5D_t469708E84B24DAB3E509BDEC941060C69370193E* get_m_hist_6() const { return ___m_hist_6; }
inline DoubleU5BU2CU5D_t469708E84B24DAB3E509BDEC941060C69370193E** get_address_of_m_hist_6() { return &___m_hist_6; }
inline void set_m_hist_6(DoubleU5BU2CU5D_t469708E84B24DAB3E509BDEC941060C69370193E* value)
{
___m_hist_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_hist_6), (void*)value);
}
};
// Mirror.SimpleWeb.WebSocketClientStandAlone/<>c__DisplayClass5_0
struct U3CU3Ec__DisplayClass5_0_t10E436935CCEA13610FFA0F5B5B1D4F46D976B75 : public RuntimeObject
{
public:
// Mirror.SimpleWeb.WebSocketClientStandAlone Mirror.SimpleWeb.WebSocketClientStandAlone/<>c__DisplayClass5_0::<>4__this
WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3 * ___U3CU3E4__this_0;
// System.Uri Mirror.SimpleWeb.WebSocketClientStandAlone/<>c__DisplayClass5_0::serverAddress
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___serverAddress_1;
public:
inline static int32_t get_offset_of_U3CU3E4__this_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass5_0_t10E436935CCEA13610FFA0F5B5B1D4F46D976B75, ___U3CU3E4__this_0)); }
inline WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3 * get_U3CU3E4__this_0() const { return ___U3CU3E4__this_0; }
inline WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3 ** get_address_of_U3CU3E4__this_0() { return &___U3CU3E4__this_0; }
inline void set_U3CU3E4__this_0(WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3 * value)
{
___U3CU3E4__this_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_0), (void*)value);
}
inline static int32_t get_offset_of_serverAddress_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass5_0_t10E436935CCEA13610FFA0F5B5B1D4F46D976B75, ___serverAddress_1)); }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_serverAddress_1() const { return ___serverAddress_1; }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_serverAddress_1() { return &___serverAddress_1; }
inline void set_serverAddress_1(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value)
{
___serverAddress_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverAddress_1), (void*)value);
}
};
// Mirror.SimpleWeb.WebSocketServer/<>c__DisplayClass14_0
struct U3CU3Ec__DisplayClass14_0_t8709EB7A8AB8314AD8E570814E30F4854D5ADDB0 : public RuntimeObject
{
public:
// Mirror.SimpleWeb.Connection Mirror.SimpleWeb.WebSocketServer/<>c__DisplayClass14_0::conn
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
// Mirror.SimpleWeb.WebSocketServer Mirror.SimpleWeb.WebSocketServer/<>c__DisplayClass14_0::<>4__this
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * ___U3CU3E4__this_1;
public:
inline static int32_t get_offset_of_conn_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass14_0_t8709EB7A8AB8314AD8E570814E30F4854D5ADDB0, ___conn_0)); }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * get_conn_0() const { return ___conn_0; }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 ** get_address_of_conn_0() { return &___conn_0; }
inline void set_conn_0(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * value)
{
___conn_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E4__this_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass14_0_t8709EB7A8AB8314AD8E570814E30F4854D5ADDB0, ___U3CU3E4__this_1)); }
inline WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * get_U3CU3E4__this_1() const { return ___U3CU3E4__this_1; }
inline WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 ** get_address_of_U3CU3E4__this_1() { return &___U3CU3E4__this_1; }
inline void set_U3CU3E4__this_1(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * value)
{
___U3CU3E4__this_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_1), (void*)value);
}
};
// Mirror.SimpleWeb.WebSocketServer/<>c__DisplayClass15_0
struct U3CU3Ec__DisplayClass15_0_t9DE32FA98D2F40AA74EB5C1EBBAAF1B6ED563018 : public RuntimeObject
{
public:
// Mirror.SimpleWeb.Connection Mirror.SimpleWeb.WebSocketServer/<>c__DisplayClass15_0::conn
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
// Mirror.SimpleWeb.WebSocketServer Mirror.SimpleWeb.WebSocketServer/<>c__DisplayClass15_0::<>4__this
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * ___U3CU3E4__this_1;
public:
inline static int32_t get_offset_of_conn_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t9DE32FA98D2F40AA74EB5C1EBBAAF1B6ED563018, ___conn_0)); }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * get_conn_0() const { return ___conn_0; }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 ** get_address_of_conn_0() { return &___conn_0; }
inline void set_conn_0(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * value)
{
___conn_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E4__this_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass15_0_t9DE32FA98D2F40AA74EB5C1EBBAAF1B6ED563018, ___U3CU3E4__this_1)); }
inline WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * get_U3CU3E4__this_1() const { return ___U3CU3E4__this_1; }
inline WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 ** get_address_of_U3CU3E4__this_1() { return &___U3CU3E4__this_1; }
inline void set_U3CU3E4__this_1(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 * value)
{
___U3CU3E4__this_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_1), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.WindowsMRExtensions/NativeApi
struct NativeApi_t8FD1DE10BA51F3BEFE275F05940B1BEA29A71621 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/NativeApi
struct NativeApi_tC4AE1A31B9B5FD81CCADF8AFEDB89F93B35872AF : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRInput/NativeApi
struct NativeApi_t5F77BA8AF1BBDB28AE8B5329CDDBCB21D6574EF2 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRSessionSubsystem/NativeApi
struct NativeApi_t6FF278009F52EC03C540F965E53F82D8698D6DE5 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.XRAnchorStore/NativeApi
struct NativeApi_tA99784EA992E41418CE10CB598EA56A0EC84E3B1 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.WindowsMR.XRAnchorSubsystemExtensions/<>c
struct U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F_StaticFields
{
public:
// UnityEngine.XR.WindowsMR.XRAnchorSubsystemExtensions/<>c UnityEngine.XR.WindowsMR.XRAnchorSubsystemExtensions/<>c::<>9
U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F * ___U3CU3E9_0;
// System.Func`1<UnityEngine.XR.WindowsMR.XRAnchorStore> UnityEngine.XR.WindowsMR.XRAnchorSubsystemExtensions/<>c::<>9__1_0
Func_1_t9B5FAF7ADCD1E8916816029C3644CDB5AB837E93 * ___U3CU3E9__1_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__1_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F_StaticFields, ___U3CU3E9__1_0_1)); }
inline Func_1_t9B5FAF7ADCD1E8916816029C3644CDB5AB837E93 * get_U3CU3E9__1_0_1() const { return ___U3CU3E9__1_0_1; }
inline Func_1_t9B5FAF7ADCD1E8916816029C3644CDB5AB837E93 ** get_address_of_U3CU3E9__1_0_1() { return &___U3CU3E9__1_0_1; }
inline void set_U3CU3E9__1_0_1(Func_1_t9B5FAF7ADCD1E8916816029C3644CDB5AB837E93 * value)
{
___U3CU3E9__1_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__1_0_1), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.XRAnchorSubsystemExtensions/NativeApi
struct NativeApi_t10CFD397751C39B9E35E108300600873C7D17BE8 : public RuntimeObject
{
public:
public:
};
// UnityEngine.InputSystem.XR.XRLayoutBuilder/<>c__DisplayClass5_0
struct U3CU3Ec__DisplayClass5_0_t1A1FF12D477102EDA83D13C0BF4CA4DA88F1C0CC : public RuntimeObject
{
public:
// UnityEngine.InputSystem.XR.XRLayoutBuilder UnityEngine.InputSystem.XR.XRLayoutBuilder/<>c__DisplayClass5_0::layout
XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745 * ___layout_0;
public:
inline static int32_t get_offset_of_layout_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass5_0_t1A1FF12D477102EDA83D13C0BF4CA4DA88F1C0CC, ___layout_0)); }
inline XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745 * get_layout_0() const { return ___layout_0; }
inline XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745 ** get_address_of_layout_0() { return &___layout_0; }
inline void set_layout_0(XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745 * value)
{
___layout_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layout_0), (void*)value);
}
};
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder/<>c
struct U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields
{
public:
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder/<>c UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder/<>c::<>9
U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E * ___U3CU3E9_0;
// System.Predicate`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor> UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder/<>c::<>9__4_0
Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 * ___U3CU3E9__4_0_1;
// System.Predicate`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor> UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder/<>c::<>9__4_1
Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 * ___U3CU3E9__4_1_2;
// System.Func`2<UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem,System.String> UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder/<>c::<>9__4_2
Func_2_t3D1E1E8061D4CF9019FF4A0140DB88184189A04B * ___U3CU3E9__4_2_3;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__4_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields, ___U3CU3E9__4_0_1)); }
inline Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 * get_U3CU3E9__4_0_1() const { return ___U3CU3E9__4_0_1; }
inline Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 ** get_address_of_U3CU3E9__4_0_1() { return &___U3CU3E9__4_0_1; }
inline void set_U3CU3E9__4_0_1(Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 * value)
{
___U3CU3E9__4_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__4_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields, ___U3CU3E9__4_1_2)); }
inline Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 * get_U3CU3E9__4_1_2() const { return ___U3CU3E9__4_1_2; }
inline Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 ** get_address_of_U3CU3E9__4_1_2() { return &___U3CU3E9__4_1_2; }
inline void set_U3CU3E9__4_1_2(Predicate_1_t22EB59964192B8F5D639D343674C4F42F9317ED3 * value)
{
___U3CU3E9__4_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_1_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__4_2_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields, ___U3CU3E9__4_2_3)); }
inline Func_2_t3D1E1E8061D4CF9019FF4A0140DB88184189A04B * get_U3CU3E9__4_2_3() const { return ___U3CU3E9__4_2_3; }
inline Func_2_t3D1E1E8061D4CF9019FF4A0140DB88184189A04B ** get_address_of_U3CU3E9__4_2_3() { return &___U3CU3E9__4_2_3; }
inline void set_U3CU3E9__4_2_3(Func_2_t3D1E1E8061D4CF9019FF4A0140DB88184189A04B * value)
{
___U3CU3E9__4_2_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_2_3), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c
struct U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields
{
public:
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c::<>9
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224 * ___U3CU3E9_0;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c::<>9__23_0
Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * ___U3CU3E9__23_0_1;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c::<>9__23_1
Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * ___U3CU3E9__23_1_2;
// System.Func`2<UnityEngine.InputSystem.Utilities.NamedValue,System.String> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c::<>9__24_0
Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 * ___U3CU3E9__24_0_3;
// System.Func`2<UnityEngine.InputSystem.Utilities.NameAndParameters,System.String> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c::<>9__24_1
Func_2_t5E3D63532BD1661CDCB3BB8B3A400B52910EAC69 * ___U3CU3E9__24_1_4;
// System.Func`2<UnityEngine.InputSystem.Utilities.InternedString,System.String> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c::<>9__24_2
Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * ___U3CU3E9__24_2_5;
// System.Func`2<UnityEngine.InputSystem.Utilities.InternedString,System.String> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson/<>c::<>9__24_3
Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * ___U3CU3E9__24_3_6;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__23_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields, ___U3CU3E9__23_0_1)); }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * get_U3CU3E9__23_0_1() const { return ___U3CU3E9__23_0_1; }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 ** get_address_of_U3CU3E9__23_0_1() { return &___U3CU3E9__23_0_1; }
inline void set_U3CU3E9__23_0_1(Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * value)
{
___U3CU3E9__23_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__23_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__23_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields, ___U3CU3E9__23_1_2)); }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * get_U3CU3E9__23_1_2() const { return ___U3CU3E9__23_1_2; }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 ** get_address_of_U3CU3E9__23_1_2() { return &___U3CU3E9__23_1_2; }
inline void set_U3CU3E9__23_1_2(Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * value)
{
___U3CU3E9__23_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__23_1_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__24_0_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields, ___U3CU3E9__24_0_3)); }
inline Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 * get_U3CU3E9__24_0_3() const { return ___U3CU3E9__24_0_3; }
inline Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 ** get_address_of_U3CU3E9__24_0_3() { return &___U3CU3E9__24_0_3; }
inline void set_U3CU3E9__24_0_3(Func_2_t7E11A639147940984FD80351A23D1786F0A2CB57 * value)
{
___U3CU3E9__24_0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__24_0_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__24_1_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields, ___U3CU3E9__24_1_4)); }
inline Func_2_t5E3D63532BD1661CDCB3BB8B3A400B52910EAC69 * get_U3CU3E9__24_1_4() const { return ___U3CU3E9__24_1_4; }
inline Func_2_t5E3D63532BD1661CDCB3BB8B3A400B52910EAC69 ** get_address_of_U3CU3E9__24_1_4() { return &___U3CU3E9__24_1_4; }
inline void set_U3CU3E9__24_1_4(Func_2_t5E3D63532BD1661CDCB3BB8B3A400B52910EAC69 * value)
{
___U3CU3E9__24_1_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__24_1_4), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__24_2_5() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields, ___U3CU3E9__24_2_5)); }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * get_U3CU3E9__24_2_5() const { return ___U3CU3E9__24_2_5; }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A ** get_address_of_U3CU3E9__24_2_5() { return &___U3CU3E9__24_2_5; }
inline void set_U3CU3E9__24_2_5(Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * value)
{
___U3CU3E9__24_2_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__24_2_5), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__24_3_6() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields, ___U3CU3E9__24_3_6)); }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * get_U3CU3E9__24_3_6() const { return ___U3CU3E9__24_3_6; }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A ** get_address_of_U3CU3E9__24_3_6() { return &___U3CU3E9__24_3_6; }
inline void set_U3CU3E9__24_3_6(Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * value)
{
___U3CU3E9__24_3_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__24_3_6), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson/<>c
struct U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043_StaticFields
{
public:
// UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson/<>c UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson/<>c::<>9
U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043 * ___U3CU3E9_0;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson/<>c::<>9__13_0
Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * ___U3CU3E9__13_0_1;
// System.Func`2<UnityEngine.InputSystem.Utilities.InternedString,System.String> UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson/<>c::<>9__14_0
Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * ___U3CU3E9__14_0_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__13_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043_StaticFields, ___U3CU3E9__13_0_1)); }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * get_U3CU3E9__13_0_1() const { return ___U3CU3E9__13_0_1; }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 ** get_address_of_U3CU3E9__13_0_1() { return &___U3CU3E9__13_0_1; }
inline void set_U3CU3E9__13_0_1(Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * value)
{
___U3CU3E9__13_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__13_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__14_0_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043_StaticFields, ___U3CU3E9__14_0_2)); }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * get_U3CU3E9__14_0_2() const { return ___U3CU3E9__14_0_2; }
inline Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A ** get_address_of_U3CU3E9__14_0_2() { return &___U3CU3E9__14_0_2; }
inline void set_U3CU3E9__14_0_2(Func_2_t6CF6BD0EE255743D0B87856A60299E8AC741CE6A * value)
{
___U3CU3E9__14_0_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__14_0_2), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController/<>c
struct U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E_StaticFields
{
public:
// UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController/<>c UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController/<>c::<>9
U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E * ___U3CU3E9_0;
// System.Comparison`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController/<>c::<>9__38_0
Comparison_1_t560EBE718EAC033C417610C7D1F9640526205BA0 * ___U3CU3E9__38_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__38_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E_StaticFields, ___U3CU3E9__38_0_1)); }
inline Comparison_1_t560EBE718EAC033C417610C7D1F9640526205BA0 * get_U3CU3E9__38_0_1() const { return ___U3CU3E9__38_0_1; }
inline Comparison_1_t560EBE718EAC033C417610C7D1F9640526205BA0 ** get_address_of_U3CU3E9__38_0_1() { return &___U3CU3E9__38_0_1; }
inline void set_U3CU3E9__38_0_1(Comparison_1_t560EBE718EAC033C417610C7D1F9640526205BA0 * value)
{
___U3CU3E9__38_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__38_0_1), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController/<>c__DisplayClass43_0
struct U3CU3Ec__DisplayClass43_0_t44586241FA877F1B10AE5C9329962BBAB9CF9FC1 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController/<>c__DisplayClass43_0::originalDeviceId
int32_t ___originalDeviceId_0;
public:
inline static int32_t get_offset_of_originalDeviceId_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass43_0_t44586241FA877F1B10AE5C9329962BBAB9CF9FC1, ___originalDeviceId_0)); }
inline int32_t get_originalDeviceId_0() const { return ___originalDeviceId_0; }
inline int32_t* get_address_of_originalDeviceId_0() { return &___originalDeviceId_0; }
inline void set_originalDeviceId_0(int32_t value)
{
___originalDeviceId_0 = value;
}
};
// UnityEngine.InputSystem.Utilities.JsonParser/JsonValue/<>c
struct U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.JsonParser/JsonValue/<>c UnityEngine.InputSystem.Utilities.JsonParser/JsonValue/<>c::<>9
U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A * ___U3CU3E9_0;
// System.Func`2<UnityEngine.InputSystem.Utilities.JsonParser/JsonValue,System.String> UnityEngine.InputSystem.Utilities.JsonParser/JsonValue/<>c::<>9__11_0
Func_2_t5FBAA27D01DE58A7A7E8FD3AEB979E13498F15A3 * ___U3CU3E9__11_0_1;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,UnityEngine.InputSystem.Utilities.JsonParser/JsonValue>,System.String> UnityEngine.InputSystem.Utilities.JsonParser/JsonValue/<>c::<>9__11_1
Func_2_t79BE3FA148FF3C6F18A760446293B53CB6EDF284 * ___U3CU3E9__11_1_2;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__11_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A_StaticFields, ___U3CU3E9__11_0_1)); }
inline Func_2_t5FBAA27D01DE58A7A7E8FD3AEB979E13498F15A3 * get_U3CU3E9__11_0_1() const { return ___U3CU3E9__11_0_1; }
inline Func_2_t5FBAA27D01DE58A7A7E8FD3AEB979E13498F15A3 ** get_address_of_U3CU3E9__11_0_1() { return &___U3CU3E9__11_0_1; }
inline void set_U3CU3E9__11_0_1(Func_2_t5FBAA27D01DE58A7A7E8FD3AEB979E13498F15A3 * value)
{
___U3CU3E9__11_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__11_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__11_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A_StaticFields, ___U3CU3E9__11_1_2)); }
inline Func_2_t79BE3FA148FF3C6F18A760446293B53CB6EDF284 * get_U3CU3E9__11_1_2() const { return ___U3CU3E9__11_1_2; }
inline Func_2_t79BE3FA148FF3C6F18A760446293B53CB6EDF284 ** get_address_of_U3CU3E9__11_1_2() { return &___U3CU3E9__11_1_2; }
inline void set_U3CU3E9__11_1_2(Func_2_t79BE3FA148FF3C6F18A760446293B53CB6EDF284 * value)
{
___U3CU3E9__11_1_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__11_1_2), (void*)value);
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/<>c__DisplayClass4_0
struct U3CU3Ec__DisplayClass4_0_tBEB3CC092598F0D16C66B724FF1AE52EF06C0A8F : public RuntimeObject
{
public:
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/<>c__DisplayClass4_0::groupID
int32_t ___groupID_0;
public:
inline static int32_t get_offset_of_groupID_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass4_0_tBEB3CC092598F0D16C66B724FF1AE52EF06C0A8F, ___groupID_0)); }
inline int32_t get_groupID_0() const { return ___groupID_0; }
inline int32_t* get_address_of_groupID_0() { return &___groupID_0; }
inline void set_groupID_0(int32_t value)
{
___groupID_0 = value;
}
};
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/<>c
struct U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields
{
public:
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/<>c Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/<>c::<>9
U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7 * ___U3CU3E9_0;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.NoiseSuppressionLevels> Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/<>c::<>9__39_0
Func_2_tE5326E03A425FADD1D84C2B2EF14083E7214F452 * ___U3CU3E9__39_0_1;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.AecSuppressionLevels> Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/<>c::<>9__39_2
Func_2_tA9BDCBBEB71CE336A58F177827521DC1044A47ED * ___U3CU3E9__39_2_2;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.AecmRoutingMode> Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/<>c::<>9__39_4
Func_2_t0C5792E29EB9CC3B19190C3495C4FEED52A2D42C * ___U3CU3E9__39_4_3;
// System.Func`2<Dissonance.Config.VoiceSettings,Dissonance.Audio.Capture.VadSensitivityLevels> Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/<>c::<>9__39_6
Func_2_tF2895A2A5370D7EA225167E0401B6007581CFA02 * ___U3CU3E9__39_6_4;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__39_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields, ___U3CU3E9__39_0_1)); }
inline Func_2_tE5326E03A425FADD1D84C2B2EF14083E7214F452 * get_U3CU3E9__39_0_1() const { return ___U3CU3E9__39_0_1; }
inline Func_2_tE5326E03A425FADD1D84C2B2EF14083E7214F452 ** get_address_of_U3CU3E9__39_0_1() { return &___U3CU3E9__39_0_1; }
inline void set_U3CU3E9__39_0_1(Func_2_tE5326E03A425FADD1D84C2B2EF14083E7214F452 * value)
{
___U3CU3E9__39_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__39_0_1), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__39_2_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields, ___U3CU3E9__39_2_2)); }
inline Func_2_tA9BDCBBEB71CE336A58F177827521DC1044A47ED * get_U3CU3E9__39_2_2() const { return ___U3CU3E9__39_2_2; }
inline Func_2_tA9BDCBBEB71CE336A58F177827521DC1044A47ED ** get_address_of_U3CU3E9__39_2_2() { return &___U3CU3E9__39_2_2; }
inline void set_U3CU3E9__39_2_2(Func_2_tA9BDCBBEB71CE336A58F177827521DC1044A47ED * value)
{
___U3CU3E9__39_2_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__39_2_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__39_4_3() { return static_cast<int32_t>(offsetof(U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields, ___U3CU3E9__39_4_3)); }
inline Func_2_t0C5792E29EB9CC3B19190C3495C4FEED52A2D42C * get_U3CU3E9__39_4_3() const { return ___U3CU3E9__39_4_3; }
inline Func_2_t0C5792E29EB9CC3B19190C3495C4FEED52A2D42C ** get_address_of_U3CU3E9__39_4_3() { return &___U3CU3E9__39_4_3; }
inline void set_U3CU3E9__39_4_3(Func_2_t0C5792E29EB9CC3B19190C3495C4FEED52A2D42C * value)
{
___U3CU3E9__39_4_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__39_4_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__39_6_4() { return static_cast<int32_t>(offsetof(U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields, ___U3CU3E9__39_6_4)); }
inline Func_2_tF2895A2A5370D7EA225167E0401B6007581CFA02 * get_U3CU3E9__39_6_4() const { return ___U3CU3E9__39_6_4; }
inline Func_2_tF2895A2A5370D7EA225167E0401B6007581CFA02 ** get_address_of_U3CU3E9__39_6_4() { return &___U3CU3E9__39_6_4; }
inline void set_U3CU3E9__39_6_4(Func_2_tF2895A2A5370D7EA225167E0401B6007581CFA02 * value)
{
___U3CU3E9__39_6_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__39_6_4), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder/<>c
struct U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2 : public RuntimeObject
{
public:
public:
};
struct U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2_StaticFields
{
public:
// UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder/<>c UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder/<>c::<>9
U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2 * ___U3CU3E9_0;
// System.Func`2<System.String,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder/<>c::<>9__12_0
Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * ___U3CU3E9__12_0_1;
public:
inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2_StaticFields, ___U3CU3E9_0)); }
inline U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
inline U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
inline void set_U3CU3E9_0(U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2 * value)
{
___U3CU3E9_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E9__12_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2_StaticFields, ___U3CU3E9__12_0_1)); }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * get_U3CU3E9__12_0_1() const { return ___U3CU3E9__12_0_1; }
inline Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 ** get_address_of_U3CU3E9__12_0_1() { return &___U3CU3E9__12_0_1; }
inline void set_U3CU3E9__12_0_1(Func_2_t7B15A8817AA240D7D7E3343AF182B6A95FD9BA08 * value)
{
___U3CU3E9__12_0_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__12_0_1), (void*)value);
}
};
// 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.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Management.XRLoader>
struct Enumerator_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * ___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
XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF, ___list_0)); }
inline List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * get_list_0() const { return ___list_0; }
inline List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * 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_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF, ___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_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF, ___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_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF, ___current_3)); }
inline XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * get_current_3() const { return ___current_3; }
inline XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>>
struct InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_t392757B0DD9A2AF4C9115C61CB8035D3604D3194 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_tDDE2156C908F39DC45E0C5BF07A78027BD505244* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8, ___firstValue_1)); }
inline Action_1_t392757B0DD9A2AF4C9115C61CB8035D3604D3194 * get_firstValue_1() const { return ___firstValue_1; }
inline Action_1_t392757B0DD9A2AF4C9115C61CB8035D3604D3194 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(Action_1_t392757B0DD9A2AF4C9115C61CB8035D3604D3194 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8, ___additionalValues_2)); }
inline Action_1U5BU5D_tDDE2156C908F39DC45E0C5BF07A78027BD505244* get_additionalValues_2() const { return ___additionalValues_2; }
inline Action_1U5BU5D_tDDE2156C908F39DC45E0C5BF07A78027BD505244** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(Action_1U5BU5D_tDDE2156C908F39DC45E0C5BF07A78027BD505244* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>>
struct InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_t3C1BD0EC95480F22CA692861B72AB4FF8BFA6C4B* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349, ___firstValue_1)); }
inline Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A * get_firstValue_1() const { return ___firstValue_1; }
inline Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349, ___additionalValues_2)); }
inline Action_1U5BU5D_t3C1BD0EC95480F22CA692861B72AB4FF8BFA6C4B* get_additionalValues_2() const { return ___additionalValues_2; }
inline Action_1U5BU5D_t3C1BD0EC95480F22CA692861B72AB4FF8BFA6C4B** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(Action_1U5BU5D_t3C1BD0EC95480F22CA692861B72AB4FF8BFA6C4B* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.PlayerInput>>
struct InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_t0C6E460D99DF87F7BAF9F9E577137631EC948E42 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_tBDD576064FED02690E78A91E67198C3FA991D48D* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604, ___firstValue_1)); }
inline Action_1_t0C6E460D99DF87F7BAF9F9E577137631EC948E42 * get_firstValue_1() const { return ___firstValue_1; }
inline Action_1_t0C6E460D99DF87F7BAF9F9E577137631EC948E42 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(Action_1_t0C6E460D99DF87F7BAF9F9E577137631EC948E42 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604, ___additionalValues_2)); }
inline Action_1U5BU5D_tBDD576064FED02690E78A91E67198C3FA991D48D* get_additionalValues_2() const { return ___additionalValues_2; }
inline Action_1U5BU5D_tBDD576064FED02690E78A91E67198C3FA991D48D** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(Action_1U5BU5D_tBDD576064FED02690E78A91E67198C3FA991D48D* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>>
struct InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_1U5BU5D_tD756925E5F23D9B8CE84B56AB4058C1794A78041* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418, ___firstValue_1)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_firstValue_1() const { return ___firstValue_1; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418, ___additionalValues_2)); }
inline Action_1U5BU5D_tD756925E5F23D9B8CE84B56AB4058C1794A78041* get_additionalValues_2() const { return ___additionalValues_2; }
inline Action_1U5BU5D_tD756925E5F23D9B8CE84B56AB4058C1794A78041** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(Action_1U5BU5D_tD756925E5F23D9B8CE84B56AB4058C1794A78041* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`2<UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr>>
struct InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_2U5BU5D_t625E6B7C7EBD503714FD631C4057076CAADDBC8F* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7, ___firstValue_1)); }
inline Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * get_firstValue_1() const { return ___firstValue_1; }
inline Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7, ___additionalValues_2)); }
inline Action_2U5BU5D_t625E6B7C7EBD503714FD631C4057076CAADDBC8F* get_additionalValues_2() const { return ___additionalValues_2; }
inline Action_2U5BU5D_t625E6B7C7EBD503714FD631C4057076CAADDBC8F** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(Action_2U5BU5D_t625E6B7C7EBD503714FD631C4057076CAADDBC8F* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`3<UnityEngine.InputSystem.Users.InputUser,UnityEngine.InputSystem.Users.InputUserChange,UnityEngine.InputSystem.InputDevice>>
struct InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Action_3U5BU5D_tA3B6EBDDE3F5F9C8906A47EF0508ADBA3E13CCFC* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600, ___firstValue_1)); }
inline Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 * get_firstValue_1() const { return ___firstValue_1; }
inline Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600, ___additionalValues_2)); }
inline Action_3U5BU5D_tA3B6EBDDE3F5F9C8906A47EF0508ADBA3E13CCFC* get_additionalValues_2() const { return ___additionalValues_2; }
inline Action_3U5BU5D_tA3B6EBDDE3F5F9C8906A47EF0508ADBA3E13CCFC** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(Action_3U5BU5D_tA3B6EBDDE3F5F9C8906A47EF0508ADBA3E13CCFC* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.XR.Bone>>
struct InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tCA8506517B37A8D2A1A50F012BBB333526DBD074 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t6D636A5E2986861F9AC1E4271A2B8D8CB0D6A238* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA, ___firstValue_1)); }
inline InputProcessor_1_tCA8506517B37A8D2A1A50F012BBB333526DBD074 * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_tCA8506517B37A8D2A1A50F012BBB333526DBD074 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_tCA8506517B37A8D2A1A50F012BBB333526DBD074 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_t6D636A5E2986861F9AC1E4271A2B8D8CB0D6A238* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_t6D636A5E2986861F9AC1E4271A2B8D8CB0D6A238** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_t6D636A5E2986861F9AC1E4271A2B8D8CB0D6A238* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<System.Double>>
struct InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_t9DA531BFC4BF6C3C20E3702BA15C74B7848D4B32 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t1ACC7E4B50EA467C0CAE902DAF3537AF72C68B93* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C, ___firstValue_1)); }
inline InputProcessor_1_t9DA531BFC4BF6C3C20E3702BA15C74B7848D4B32 * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_t9DA531BFC4BF6C3C20E3702BA15C74B7848D4B32 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_t9DA531BFC4BF6C3C20E3702BA15C74B7848D4B32 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_t1ACC7E4B50EA467C0CAE902DAF3537AF72C68B93* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_t1ACC7E4B50EA467C0CAE902DAF3537AF72C68B93** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_t1ACC7E4B50EA467C0CAE902DAF3537AF72C68B93* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.XR.Eyes>>
struct InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_t37521CB73AF2FA9C09F06598ED0F38D4B964EF0F * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_tC4DBBA2C3CEC072F573298582CA4264D7743E9B2* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B, ___firstValue_1)); }
inline InputProcessor_1_t37521CB73AF2FA9C09F06598ED0F38D4B964EF0F * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_t37521CB73AF2FA9C09F06598ED0F38D4B964EF0F ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_t37521CB73AF2FA9C09F06598ED0F38D4B964EF0F * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_tC4DBBA2C3CEC072F573298582CA4264D7743E9B2* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_tC4DBBA2C3CEC072F573298582CA4264D7743E9B2** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_tC4DBBA2C3CEC072F573298582CA4264D7743E9B2* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<System.Int32>>
struct InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_t21D82C0318D0E3A650343B394D0065575B5012ED * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t8382BF9F3A5BE46D9F9573BD40879B291E8DDBF9* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37, ___firstValue_1)); }
inline InputProcessor_1_t21D82C0318D0E3A650343B394D0065575B5012ED * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_t21D82C0318D0E3A650343B394D0065575B5012ED ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_t21D82C0318D0E3A650343B394D0065575B5012ED * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_t8382BF9F3A5BE46D9F9573BD40879B291E8DDBF9* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_t8382BF9F3A5BE46D9F9573BD40879B291E8DDBF9** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_t8382BF9F3A5BE46D9F9573BD40879B291E8DDBF9* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Quaternion>>
struct InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tAD36CCFAB97386AE002785AC2C2FD827D243874B * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t2CA73D6AD9E9E555C3DD084C5C92E389FAE74684* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3, ___firstValue_1)); }
inline InputProcessor_1_tAD36CCFAB97386AE002785AC2C2FD827D243874B * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_tAD36CCFAB97386AE002785AC2C2FD827D243874B ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_tAD36CCFAB97386AE002785AC2C2FD827D243874B * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_t2CA73D6AD9E9E555C3DD084C5C92E389FAE74684* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_t2CA73D6AD9E9E555C3DD084C5C92E389FAE74684** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_t2CA73D6AD9E9E555C3DD084C5C92E389FAE74684* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<System.Single>>
struct InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_tEECE90C638097487F8CB8CBFDF48F647326251F7* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4, ___firstValue_1)); }
inline InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224 * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_tEECE90C638097487F8CB8CBFDF48F647326251F7* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_tEECE90C638097487F8CB8CBFDF48F647326251F7** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_tEECE90C638097487F8CB8CBFDF48F647326251F7* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.TouchPhase>>
struct InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_t8A948F94E00456CCC7891205ABDA93F8B972545A * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_t36B6A48E77993EB94FECB02040333AA3826D6F40* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53, ___firstValue_1)); }
inline InputProcessor_1_t8A948F94E00456CCC7891205ABDA93F8B972545A * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_t8A948F94E00456CCC7891205ABDA93F8B972545A ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_t8A948F94E00456CCC7891205ABDA93F8B972545A * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_t36B6A48E77993EB94FECB02040333AA3826D6F40* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_t36B6A48E77993EB94FECB02040333AA3826D6F40** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_t36B6A48E77993EB94FECB02040333AA3826D6F40* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.InputSystem.LowLevel.TouchState>>
struct InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_t92BEBDA259FFB7276E98E415C3B3D3DCFF5A1367 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_tD347EDB2271CD8F66750A4168568087A4B79376D* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707, ___firstValue_1)); }
inline InputProcessor_1_t92BEBDA259FFB7276E98E415C3B3D3DCFF5A1367 * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_t92BEBDA259FFB7276E98E415C3B3D3DCFF5A1367 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_t92BEBDA259FFB7276E98E415C3B3D3DCFF5A1367 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_tD347EDB2271CD8F66750A4168568087A4B79376D* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_tD347EDB2271CD8F66750A4168568087A4B79376D** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_tD347EDB2271CD8F66750A4168568087A4B79376D* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>>
struct InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_tE96161B725565BF82932B2577AED3ACDD86B394C* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028, ___firstValue_1)); }
inline InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257 * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_tE96161B725565BF82932B2577AED3ACDD86B394C* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_tE96161B725565BF82932B2577AED3ACDD86B394C** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_tE96161B725565BF82932B2577AED3ACDD86B394C* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector3>>
struct InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputProcessor_1U5BU5D_tC29D5C6F972DA562431D70C8A279F06F23A975A9* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9, ___firstValue_1)); }
inline InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5 * get_firstValue_1() const { return ___firstValue_1; }
inline InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9, ___additionalValues_2)); }
inline InputProcessor_1U5BU5D_tC29D5C6F972DA562431D70C8A279F06F23A975A9* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputProcessor_1U5BU5D_tC29D5C6F972DA562431D70C8A279F06F23A975A9** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputProcessor_1U5BU5D_tC29D5C6F972DA562431D70C8A279F06F23A975A9* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputAction>
struct InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputActionU5BU5D_tFB9A0AC479A696221583FE41D91E1999E5C4BDC4* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6, ___firstValue_1)); }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * get_firstValue_1() const { return ___firstValue_1; }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6, ___additionalValues_2)); }
inline InputActionU5BU5D_tFB9A0AC479A696221583FE41D91E1999E5C4BDC4* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputActionU5BU5D_tFB9A0AC479A696221583FE41D91E1999E5C4BDC4** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputActionU5BU5D_tFB9A0AC479A696221583FE41D91E1999E5C4BDC4* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputActionMap>
struct InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputActionMapU5BU5D_t8CFF380A45911DF7C74E5A80E22F99918AA012E0* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372, ___firstValue_1)); }
inline InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB * get_firstValue_1() const { return ___firstValue_1; }
inline InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372, ___additionalValues_2)); }
inline InputActionMapU5BU5D_t8CFF380A45911DF7C74E5A80E22F99918AA012E0* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputActionMapU5BU5D_t8CFF380A45911DF7C74E5A80E22F99918AA012E0** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputActionMapU5BU5D_t8CFF380A45911DF7C74E5A80E22F99918AA012E0* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputActionState>
struct InlinedArray_1_t2B78109B390429115574B6D1969897411490C853
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputActionStateU5BU5D_tB047A6015D8DCFE82B9CBC278A8F4B44BC4944C1* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t2B78109B390429115574B6D1969897411490C853, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t2B78109B390429115574B6D1969897411490C853, ___firstValue_1)); }
inline InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * get_firstValue_1() const { return ___firstValue_1; }
inline InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t2B78109B390429115574B6D1969897411490C853, ___additionalValues_2)); }
inline InputActionStateU5BU5D_tB047A6015D8DCFE82B9CBC278A8F4B44BC4944C1* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputActionStateU5BU5D_tB047A6015D8DCFE82B9CBC278A8F4B44BC4944C1** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputActionStateU5BU5D_tB047A6015D8DCFE82B9CBC278A8F4B44BC4944C1* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputDevice>
struct InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723, ___firstValue_1)); }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * get_firstValue_1() const { return ___firstValue_1; }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723, ___additionalValues_2)); }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* get_additionalValues_2() const { return ___additionalValues_2; }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Int32>
struct InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
int32_t ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD, ___firstValue_1)); }
inline int32_t get_firstValue_1() const { return ___firstValue_1; }
inline int32_t* get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(int32_t value)
{
___firstValue_1 = value;
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD, ___additionalValues_2)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_additionalValues_2() const { return ___additionalValues_2; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Touchscreen>
struct InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
TouchscreenU5BU5D_t69A59345DAE1F55AAF31E95EEF09C34F92CBC541* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E, ___firstValue_1)); }
inline Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * get_firstValue_1() const { return ___firstValue_1; }
inline Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E, ___additionalValues_2)); }
inline TouchscreenU5BU5D_t69A59345DAE1F55AAF31E95EEF09C34F92CBC541* get_additionalValues_2() const { return ___additionalValues_2; }
inline TouchscreenU5BU5D_t69A59345DAE1F55AAF31E95EEF09C34F92CBC541** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(TouchscreenU5BU5D_t69A59345DAE1F55AAF31E95EEF09C34F92CBC541* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.UI.TrackedDeviceRaycaster>
struct InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C * ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
TrackedDeviceRaycasterU5BU5D_t5C5883E9BE95892047C0B1C3114238E5CB9748AB* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079, ___firstValue_1)); }
inline TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C * get_firstValue_1() const { return ___firstValue_1; }
inline TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C ** get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C * value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstValue_1), (void*)value);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079, ___additionalValues_2)); }
inline TrackedDeviceRaycasterU5BU5D_t5C5883E9BE95892047C0B1C3114238E5CB9748AB* get_additionalValues_2() const { return ___additionalValues_2; }
inline TrackedDeviceRaycasterU5BU5D_t5C5883E9BE95892047C0B1C3114238E5CB9748AB** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(TrackedDeviceRaycasterU5BU5D_t5C5883E9BE95892047C0B1C3114238E5CB9748AB* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.UInt64>
struct InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
uint64_t ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD, ___firstValue_1)); }
inline uint64_t get_firstValue_1() const { return ___firstValue_1; }
inline uint64_t* get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(uint64_t value)
{
___firstValue_1 = value;
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD, ___additionalValues_2)); }
inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* get_additionalValues_2() const { return ___additionalValues_2; }
inline UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean>
struct InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40
{
public:
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40, ___U3CnameU3Ek__BackingField_0)); }
inline String_t* get_U3CnameU3Ek__BackingField_0() const { return ___U3CnameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_0() { return &___U3CnameU3Ek__BackingField_0; }
inline void set_U3CnameU3Ek__BackingField_0(String_t* value)
{
___U3CnameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion>
struct InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49
{
public:
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49, ___U3CnameU3Ek__BackingField_0)); }
inline String_t* get_U3CnameU3Ek__BackingField_0() const { return ___U3CnameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_0() { return &___U3CnameU3Ek__BackingField_0; }
inline void set_U3CnameU3Ek__BackingField_0(String_t* value)
{
___U3CnameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<System.Single>
struct InputFeatureUsage_1_t9525982C3C73085CB36503407750B9DE0E598BE1
{
public:
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputFeatureUsage_1_t9525982C3C73085CB36503407750B9DE0E598BE1, ___U3CnameU3Ek__BackingField_0)); }
inline String_t* get_U3CnameU3Ek__BackingField_0() const { return ___U3CnameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_0() { return &___U3CnameU3Ek__BackingField_0; }
inline void set_U3CnameU3Ek__BackingField_0(String_t* value)
{
___U3CnameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3>
struct InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709
{
public:
// System.String UnityEngine.XR.InputFeatureUsage`1::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709, ___U3CnameU3Ek__BackingField_0)); }
inline String_t* get_U3CnameU3Ek__BackingField_0() const { return ___U3CnameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_0() { return &___U3CnameU3Ek__BackingField_0; }
inline void set_U3CnameU3Ek__BackingField_0(String_t* value)
{
___U3CnameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
};
#endif
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage`1
#ifndef InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
#define InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com_define
struct InputFeatureUsage_1_t0883EAB3AD99A1D218140E4C4D1FD0A2AC401FA1_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
};
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>
struct KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.String,System.Object>
struct KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
String_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_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE, ___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.Nullable`1<System.Boolean>
struct Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3
{
public:
// T System.Nullable`1::value
bool ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___value_0)); }
inline bool get_value_0() const { return ___value_0; }
inline bool* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(bool value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Int32>
struct Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Int64>
struct Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F
{
public:
// T System.Nullable`1::value
int64_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F, ___value_0)); }
inline int64_t get_value_0() const { return ___value_0; }
inline int64_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int64_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t340361C8134256120F5769AC5A3F743DB6C11D1F, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Single>
struct Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A
{
public:
// T System.Nullable`1::value
float ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A, ___value_0)); }
inline float get_value_0() const { return ___value_0; }
inline float* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(float value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.InternedString>
struct ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786
{
public:
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786, ___m_Array_0)); }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* get_m_Array_0() const { return ___m_Array_0; }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95** get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* value)
{
___m_Array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786, ___m_StartIndex_1)); }
inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; }
inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; }
inline void set_m_StartIndex_1(int32_t value)
{
___m_StartIndex_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.NameAndParameters>
struct ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518
{
public:
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
NameAndParametersU5BU5D_t2466D89C902D694BABA1EC06710098003006C805* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518, ___m_Array_0)); }
inline NameAndParametersU5BU5D_t2466D89C902D694BABA1EC06710098003006C805* get_m_Array_0() const { return ___m_Array_0; }
inline NameAndParametersU5BU5D_t2466D89C902D694BABA1EC06710098003006C805** get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NameAndParametersU5BU5D_t2466D89C902D694BABA1EC06710098003006C805* value)
{
___m_Array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518, ___m_StartIndex_1)); }
inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; }
inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; }
inline void set_m_StartIndex_1(int32_t value)
{
___m_StartIndex_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.NamedValue>
struct ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6
{
public:
// TValue[] UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Array
NamedValueU5BU5D_t068C676C52C41C54DF8C431D510051E712E4FBDC* ___m_Array_0;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_StartIndex
int32_t ___m_StartIndex_1;
// System.Int32 UnityEngine.InputSystem.Utilities.ReadOnlyArray`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6, ___m_Array_0)); }
inline NamedValueU5BU5D_t068C676C52C41C54DF8C431D510051E712E4FBDC* get_m_Array_0() const { return ___m_Array_0; }
inline NamedValueU5BU5D_t068C676C52C41C54DF8C431D510051E712E4FBDC** get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NamedValueU5BU5D_t068C676C52C41C54DF8C431D510051E712E4FBDC* value)
{
___m_Array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Array_0), (void*)value);
}
inline static int32_t get_offset_of_m_StartIndex_1() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6, ___m_StartIndex_1)); }
inline int32_t get_m_StartIndex_1() const { return ___m_StartIndex_1; }
inline int32_t* get_address_of_m_StartIndex_1() { return &___m_StartIndex_1; }
inline void set_m_StartIndex_1(int32_t value)
{
___m_StartIndex_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState>
struct Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3
{
public:
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<TValue> UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_Owner
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___m_Owner_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_IndexPlusOne
int32_t ___m_IndexPlusOne_1;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record::m_Version
uint32_t ___m_Version_2;
public:
inline static int32_t get_offset_of_m_Owner_0() { return static_cast<int32_t>(offsetof(Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3, ___m_Owner_0)); }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * get_m_Owner_0() const { return ___m_Owner_0; }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 ** get_address_of_m_Owner_0() { return &___m_Owner_0; }
inline void set_m_Owner_0(InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * value)
{
___m_Owner_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Owner_0), (void*)value);
}
inline static int32_t get_offset_of_m_IndexPlusOne_1() { return static_cast<int32_t>(offsetof(Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3, ___m_IndexPlusOne_1)); }
inline int32_t get_m_IndexPlusOne_1() const { return ___m_IndexPlusOne_1; }
inline int32_t* get_address_of_m_IndexPlusOne_1() { return &___m_IndexPlusOne_1; }
inline void set_m_IndexPlusOne_1(int32_t value)
{
___m_IndexPlusOne_1 = value;
}
inline static int32_t get_offset_of_m_Version_2() { return static_cast<int32_t>(offsetof(Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3, ___m_Version_2)); }
inline uint32_t get_m_Version_2() const { return ___m_Version_2; }
inline uint32_t* get_address_of_m_Version_2() { return &___m_Version_2; }
inline void set_m_Version_2(uint32_t value)
{
___m_Version_2 = value;
}
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t0A7F13BEDD4EC8DFDD5AEC7D5171B22F3D852CE5 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tE9888364F17DF110619D7238068EB1EC98053AE5 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemDescriptor`1<UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem>
struct SubsystemDescriptor_1_tB41B6146FDE975239B7C10EFDB3DFA321FB6D7B8 : public SubsystemDescriptor_tF663011CB44AB1D342821BBEF7B6811E799A7245
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem>
struct SubsystemProvider_1_t302358330269847780327C2298A4FFA7D79AF2BF : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystem>
struct SubsystemProvider_1_tFA56F133FD9BCE90A1C4C7D15FFE2571963D8DE4 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>
struct SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.Subsystem`1<UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor>
struct Subsystem_1_t56D88B317016EC2FF380261B659BB963F1D9EDE6 : public Subsystem_t2D97454A946149D608974CB6B674F5F5C613A6A4
{
public:
public:
};
// UnityEngine.Events.UnityEvent`1<UnityEngine.InputSystem.PlayerInput>
struct UnityEvent_1_t5256CDE7A58AD7D6F156F53EB8E692F61A9FB2B0 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t5256CDE7A58AD7D6F156F53EB8E692F61A9FB2B0, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.Events.UnityEvent`1<Mirror.Discovery.ServerResponse>
struct UnityEvent_1_t079F4478C0889C5CBE14FD6E79020F208D7D95B0 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3;
public:
inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast<int32_t>(offsetof(UnityEvent_1_t079F4478C0889C5CBE14FD6E79020F208D7D95B0, ___m_InvokeArray_3)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; }
inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_InvokeArray_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value);
}
};
// UnityEngine.AndroidJavaClass
struct AndroidJavaClass_t52E934B16476D72AA6E4B248F989F2F825EB62D4 : public AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E
{
public:
public:
};
// Dissonance.Audio.ArvCalculator
struct ArvCalculator_t37426E5C165B02C59593A05AEB4A7AC83811455D
{
public:
// System.Single Dissonance.Audio.ArvCalculator::<ARV>k__BackingField
float ___U3CARVU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CARVU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ArvCalculator_t37426E5C165B02C59593A05AEB4A7AC83811455D, ___U3CARVU3Ek__BackingField_0)); }
inline float get_U3CARVU3Ek__BackingField_0() const { return ___U3CARVU3Ek__BackingField_0; }
inline float* get_address_of_U3CARVU3Ek__BackingField_0() { return &___U3CARVU3Ek__BackingField_0; }
inline void set_U3CARVU3Ek__BackingField_0(float value)
{
___U3CARVU3Ek__BackingField_0 = value;
}
};
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E : public AbstractEventData_tA0B5065DE3430C0031ADE061668E1C7073D718DF
{
public:
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem
EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * ___m_EventSystem_1;
public:
inline static int32_t get_offset_of_m_EventSystem_1() { return static_cast<int32_t>(offsetof(BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E, ___m_EventSystem_1)); }
inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * get_m_EventSystem_1() const { return ___m_EventSystem_1; }
inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C ** get_address_of_m_EventSystem_1() { return &___m_EventSystem_1; }
inline void set_m_EventSystem_1(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * value)
{
___m_EventSystem_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_1), (void*)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);
}
};
// Dissonance.Networking.ChannelBitField
struct ChannelBitField_t3FB09D5AE7EC4E0103D6F76794D27F7377CA8996
{
public:
// System.UInt16 Dissonance.Networking.ChannelBitField::_bitfield
uint16_t ____bitfield_9;
public:
inline static int32_t get_offset_of__bitfield_9() { return static_cast<int32_t>(offsetof(ChannelBitField_t3FB09D5AE7EC4E0103D6F76794D27F7377CA8996, ____bitfield_9)); }
inline uint16_t get__bitfield_9() const { return ____bitfield_9; }
inline uint16_t* get_address_of__bitfield_9() { return &____bitfield_9; }
inline void set__bitfield_9(uint16_t value)
{
____bitfield_9 = value;
}
};
// 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;
}
};
// System.DateTime
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MaxValue_32 = value;
}
};
// UnityEngine.XR.ARSubsystems.DefaultConfigurationChooser
struct DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F : public ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4
{
public:
public:
};
// Dissonance.Audio.Playback.DesyncCalculator
struct DesyncCalculator_t7E3967F1C184C0B336D03D29617725A51F053CF1
{
public:
// System.Int32 Dissonance.Audio.Playback.DesyncCalculator::<DesyncMilliseconds>k__BackingField
int32_t ___U3CDesyncMillisecondsU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CDesyncMillisecondsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(DesyncCalculator_t7E3967F1C184C0B336D03D29617725A51F053CF1, ___U3CDesyncMillisecondsU3Ek__BackingField_2)); }
inline int32_t get_U3CDesyncMillisecondsU3Ek__BackingField_2() const { return ___U3CDesyncMillisecondsU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CDesyncMillisecondsU3Ek__BackingField_2() { return &___U3CDesyncMillisecondsU3Ek__BackingField_2; }
inline void set_U3CDesyncMillisecondsU3Ek__BackingField_2(int32_t value)
{
___U3CDesyncMillisecondsU3Ek__BackingField_2 = value;
}
};
// UnityEngine.InputSystem.Utilities.DisplayStringFormatAttribute
struct DisplayStringFormatAttribute_t12861667E37FA6F83C7D9D78EDD83B5A2FF28CB9 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String UnityEngine.InputSystem.Utilities.DisplayStringFormatAttribute::<formatString>k__BackingField
String_t* ___U3CformatStringU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CformatStringU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(DisplayStringFormatAttribute_t12861667E37FA6F83C7D9D78EDD83B5A2FF28CB9, ___U3CformatStringU3Ek__BackingField_0)); }
inline String_t* get_U3CformatStringU3Ek__BackingField_0() const { return ___U3CformatStringU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CformatStringU3Ek__BackingField_0() { return &___U3CformatStringU3Ek__BackingField_0; }
inline void set_U3CformatStringU3Ek__BackingField_0(String_t* value)
{
___U3CformatStringU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CformatStringU3Ek__BackingField_0), (void*)value);
}
};
// System.Double
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// UnityEngine.InputSystem.Haptics.DualMotorRumble
struct DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84
{
public:
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::<lowFrequencyMotorSpeed>k__BackingField
float ___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0;
// System.Single UnityEngine.InputSystem.Haptics.DualMotorRumble::<highFrequencyMotorSpeed>k__BackingField
float ___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3ClowFrequencyMotorSpeedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84, ___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0)); }
inline float get_U3ClowFrequencyMotorSpeedU3Ek__BackingField_0() const { return ___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0; }
inline float* get_address_of_U3ClowFrequencyMotorSpeedU3Ek__BackingField_0() { return &___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0; }
inline void set_U3ClowFrequencyMotorSpeedU3Ek__BackingField_0(float value)
{
___U3ClowFrequencyMotorSpeedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3ChighFrequencyMotorSpeedU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84, ___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1)); }
inline float get_U3ChighFrequencyMotorSpeedU3Ek__BackingField_1() const { return ___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1; }
inline float* get_address_of_U3ChighFrequencyMotorSpeedU3Ek__BackingField_1() { return &___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1; }
inline void set_U3ChighFrequencyMotorSpeedU3Ek__BackingField_1(float value)
{
___U3ChighFrequencyMotorSpeedU3Ek__BackingField_1 = value;
}
};
// UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport
struct DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::reportId
uint8_t ___reportId_0;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___reportId_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickX_1_OffsetPadding[1];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::leftStickX
uint8_t ___leftStickX_1;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickX_1_OffsetPadding_forAlignmentOnly[1];
uint8_t ___leftStickX_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickY_2_OffsetPadding[2];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::leftStickY
uint8_t ___leftStickY_2;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickY_2_OffsetPadding_forAlignmentOnly[2];
uint8_t ___leftStickY_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickX_3_OffsetPadding[3];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::rightStickX
uint8_t ___rightStickX_3;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickX_3_OffsetPadding_forAlignmentOnly[3];
uint8_t ___rightStickX_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickY_4_OffsetPadding[4];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::rightStickY
uint8_t ___rightStickY_4;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickY_4_OffsetPadding_forAlignmentOnly[4];
uint8_t ___rightStickY_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons1_5_OffsetPadding[5];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::buttons1
uint8_t ___buttons1_5;
};
#pragma pack(pop, tp)
struct
{
char ___buttons1_5_OffsetPadding_forAlignmentOnly[5];
uint8_t ___buttons1_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons2_6_OffsetPadding[6];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::buttons2
uint8_t ___buttons2_6;
};
#pragma pack(pop, tp)
struct
{
char ___buttons2_6_OffsetPadding_forAlignmentOnly[6];
uint8_t ___buttons2_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons3_7_OffsetPadding[7];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::buttons3
uint8_t ___buttons3_7;
};
#pragma pack(pop, tp)
struct
{
char ___buttons3_7_OffsetPadding_forAlignmentOnly[7];
uint8_t ___buttons3_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftTrigger_8_OffsetPadding[8];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::leftTrigger
uint8_t ___leftTrigger_8;
};
#pragma pack(pop, tp)
struct
{
char ___leftTrigger_8_OffsetPadding_forAlignmentOnly[8];
uint8_t ___leftTrigger_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightTrigger_9_OffsetPadding[9];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::rightTrigger
uint8_t ___rightTrigger_9;
};
#pragma pack(pop, tp)
struct
{
char ___rightTrigger_9_OffsetPadding_forAlignmentOnly[9];
uint8_t ___rightTrigger_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___batteryLevel_10_OffsetPadding[30];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock4HIDInputReport::batteryLevel
uint8_t ___batteryLevel_10;
};
#pragma pack(pop, tp)
struct
{
char ___batteryLevel_10_OffsetPadding_forAlignmentOnly[30];
uint8_t ___batteryLevel_10_forAlignmentOnly;
};
};
};
uint8_t DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F__padding[32];
};
public:
inline static int32_t get_offset_of_reportId_0() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___reportId_0)); }
inline uint8_t get_reportId_0() const { return ___reportId_0; }
inline uint8_t* get_address_of_reportId_0() { return &___reportId_0; }
inline void set_reportId_0(uint8_t value)
{
___reportId_0 = value;
}
inline static int32_t get_offset_of_leftStickX_1() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___leftStickX_1)); }
inline uint8_t get_leftStickX_1() const { return ___leftStickX_1; }
inline uint8_t* get_address_of_leftStickX_1() { return &___leftStickX_1; }
inline void set_leftStickX_1(uint8_t value)
{
___leftStickX_1 = value;
}
inline static int32_t get_offset_of_leftStickY_2() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___leftStickY_2)); }
inline uint8_t get_leftStickY_2() const { return ___leftStickY_2; }
inline uint8_t* get_address_of_leftStickY_2() { return &___leftStickY_2; }
inline void set_leftStickY_2(uint8_t value)
{
___leftStickY_2 = value;
}
inline static int32_t get_offset_of_rightStickX_3() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___rightStickX_3)); }
inline uint8_t get_rightStickX_3() const { return ___rightStickX_3; }
inline uint8_t* get_address_of_rightStickX_3() { return &___rightStickX_3; }
inline void set_rightStickX_3(uint8_t value)
{
___rightStickX_3 = value;
}
inline static int32_t get_offset_of_rightStickY_4() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___rightStickY_4)); }
inline uint8_t get_rightStickY_4() const { return ___rightStickY_4; }
inline uint8_t* get_address_of_rightStickY_4() { return &___rightStickY_4; }
inline void set_rightStickY_4(uint8_t value)
{
___rightStickY_4 = value;
}
inline static int32_t get_offset_of_buttons1_5() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___buttons1_5)); }
inline uint8_t get_buttons1_5() const { return ___buttons1_5; }
inline uint8_t* get_address_of_buttons1_5() { return &___buttons1_5; }
inline void set_buttons1_5(uint8_t value)
{
___buttons1_5 = value;
}
inline static int32_t get_offset_of_buttons2_6() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___buttons2_6)); }
inline uint8_t get_buttons2_6() const { return ___buttons2_6; }
inline uint8_t* get_address_of_buttons2_6() { return &___buttons2_6; }
inline void set_buttons2_6(uint8_t value)
{
___buttons2_6 = value;
}
inline static int32_t get_offset_of_buttons3_7() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___buttons3_7)); }
inline uint8_t get_buttons3_7() const { return ___buttons3_7; }
inline uint8_t* get_address_of_buttons3_7() { return &___buttons3_7; }
inline void set_buttons3_7(uint8_t value)
{
___buttons3_7 = value;
}
inline static int32_t get_offset_of_leftTrigger_8() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___leftTrigger_8)); }
inline uint8_t get_leftTrigger_8() const { return ___leftTrigger_8; }
inline uint8_t* get_address_of_leftTrigger_8() { return &___leftTrigger_8; }
inline void set_leftTrigger_8(uint8_t value)
{
___leftTrigger_8 = value;
}
inline static int32_t get_offset_of_rightTrigger_9() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___rightTrigger_9)); }
inline uint8_t get_rightTrigger_9() const { return ___rightTrigger_9; }
inline uint8_t* get_address_of_rightTrigger_9() { return &___rightTrigger_9; }
inline void set_rightTrigger_9(uint8_t value)
{
___rightTrigger_9 = value;
}
inline static int32_t get_offset_of_batteryLevel_10() { return static_cast<int32_t>(offsetof(DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F, ___batteryLevel_10)); }
inline uint8_t get_batteryLevel_10() const { return ___batteryLevel_10; }
inline uint8_t* get_address_of_batteryLevel_10() { return &___batteryLevel_10; }
inline void set_batteryLevel_10(uint8_t value)
{
___batteryLevel_10 = value;
}
};
// Microsoft.CodeAnalysis.EmbeddedAttribute
struct EmbeddedAttribute_tBD9480A261A0C82BD49846C2DDD1A79AB1DDCF09 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// Microsoft.CodeAnalysis.EmbeddedAttribute
struct EmbeddedAttribute_t31A0B5149ACBAB54DA1A3DBB0E7A1B91885A5509 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// Microsoft.CodeAnalysis.EmbeddedAttribute
struct EmbeddedAttribute_t90946B46F8A884CD575D2A26804B242737A86DDA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// Microsoft.CodeAnalysis.EmbeddedAttribute
struct EmbeddedAttribute_t78A6F3267B0A3BC441BAE14DC41CD3E33B39C209 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// 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
{
};
// Dissonance.Audio.Fader
struct Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818
{
public:
// System.Single Dissonance.Audio.Fader::<Volume>k__BackingField
float ___U3CVolumeU3Ek__BackingField_0;
// System.Single Dissonance.Audio.Fader::_fadeTime
float ____fadeTime_1;
// System.Single Dissonance.Audio.Fader::<EndVolume>k__BackingField
float ___U3CEndVolumeU3Ek__BackingField_2;
// System.Single Dissonance.Audio.Fader::<StartVolume>k__BackingField
float ___U3CStartVolumeU3Ek__BackingField_3;
// System.Single Dissonance.Audio.Fader::_elapsedTime
float ____elapsedTime_4;
public:
inline static int32_t get_offset_of_U3CVolumeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818, ___U3CVolumeU3Ek__BackingField_0)); }
inline float get_U3CVolumeU3Ek__BackingField_0() const { return ___U3CVolumeU3Ek__BackingField_0; }
inline float* get_address_of_U3CVolumeU3Ek__BackingField_0() { return &___U3CVolumeU3Ek__BackingField_0; }
inline void set_U3CVolumeU3Ek__BackingField_0(float value)
{
___U3CVolumeU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of__fadeTime_1() { return static_cast<int32_t>(offsetof(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818, ____fadeTime_1)); }
inline float get__fadeTime_1() const { return ____fadeTime_1; }
inline float* get_address_of__fadeTime_1() { return &____fadeTime_1; }
inline void set__fadeTime_1(float value)
{
____fadeTime_1 = value;
}
inline static int32_t get_offset_of_U3CEndVolumeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818, ___U3CEndVolumeU3Ek__BackingField_2)); }
inline float get_U3CEndVolumeU3Ek__BackingField_2() const { return ___U3CEndVolumeU3Ek__BackingField_2; }
inline float* get_address_of_U3CEndVolumeU3Ek__BackingField_2() { return &___U3CEndVolumeU3Ek__BackingField_2; }
inline void set_U3CEndVolumeU3Ek__BackingField_2(float value)
{
___U3CEndVolumeU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CStartVolumeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818, ___U3CStartVolumeU3Ek__BackingField_3)); }
inline float get_U3CStartVolumeU3Ek__BackingField_3() const { return ___U3CStartVolumeU3Ek__BackingField_3; }
inline float* get_address_of_U3CStartVolumeU3Ek__BackingField_3() { return &___U3CStartVolumeU3Ek__BackingField_3; }
inline void set_U3CStartVolumeU3Ek__BackingField_3(float value)
{
___U3CStartVolumeU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of__elapsedTime_4() { return static_cast<int32_t>(offsetof(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818, ____elapsedTime_4)); }
inline float get__elapsedTime_4() const { return ____elapsedTime_4; }
inline float* get_address_of__elapsedTime_4() { return &____elapsedTime_4; }
inline void set__elapsedTime_4(float value)
{
____elapsedTime_4 = value;
}
};
// UnityEngine.InputSystem.Utilities.FourCC
struct FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.FourCC::m_Code
int32_t ___m_Code_0;
public:
inline static int32_t get_offset_of_m_Code_0() { return static_cast<int32_t>(offsetof(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1, ___m_Code_0)); }
inline int32_t get_m_Code_0() const { return ___m_Code_0; }
inline int32_t* get_address_of_m_Code_0() { return &___m_Code_0; }
inline void set_m_Code_0(int32_t value)
{
___m_Code_0 = value;
}
};
// Dissonance.FrameSkipDetector
struct FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5
{
public:
// System.Single Dissonance.FrameSkipDetector::_maxFrameTime
float ____maxFrameTime_1;
// System.Single Dissonance.FrameSkipDetector::_minimumBreakerDuration
float ____minimumBreakerDuration_2;
// System.Single Dissonance.FrameSkipDetector::_maxBreakerDuration
float ____maxBreakerDuration_3;
// System.Single Dissonance.FrameSkipDetector::_breakerResetPerSecond
float ____breakerResetPerSecond_4;
// System.Single Dissonance.FrameSkipDetector::_breakerCloseTimer
float ____breakerCloseTimer_5;
// System.Single Dissonance.FrameSkipDetector::_currentBreakerDuration
float ____currentBreakerDuration_6;
// System.Boolean Dissonance.FrameSkipDetector::_breakerClosed
bool ____breakerClosed_7;
public:
inline static int32_t get_offset_of__maxFrameTime_1() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5, ____maxFrameTime_1)); }
inline float get__maxFrameTime_1() const { return ____maxFrameTime_1; }
inline float* get_address_of__maxFrameTime_1() { return &____maxFrameTime_1; }
inline void set__maxFrameTime_1(float value)
{
____maxFrameTime_1 = value;
}
inline static int32_t get_offset_of__minimumBreakerDuration_2() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5, ____minimumBreakerDuration_2)); }
inline float get__minimumBreakerDuration_2() const { return ____minimumBreakerDuration_2; }
inline float* get_address_of__minimumBreakerDuration_2() { return &____minimumBreakerDuration_2; }
inline void set__minimumBreakerDuration_2(float value)
{
____minimumBreakerDuration_2 = value;
}
inline static int32_t get_offset_of__maxBreakerDuration_3() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5, ____maxBreakerDuration_3)); }
inline float get__maxBreakerDuration_3() const { return ____maxBreakerDuration_3; }
inline float* get_address_of__maxBreakerDuration_3() { return &____maxBreakerDuration_3; }
inline void set__maxBreakerDuration_3(float value)
{
____maxBreakerDuration_3 = value;
}
inline static int32_t get_offset_of__breakerResetPerSecond_4() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5, ____breakerResetPerSecond_4)); }
inline float get__breakerResetPerSecond_4() const { return ____breakerResetPerSecond_4; }
inline float* get_address_of__breakerResetPerSecond_4() { return &____breakerResetPerSecond_4; }
inline void set__breakerResetPerSecond_4(float value)
{
____breakerResetPerSecond_4 = value;
}
inline static int32_t get_offset_of__breakerCloseTimer_5() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5, ____breakerCloseTimer_5)); }
inline float get__breakerCloseTimer_5() const { return ____breakerCloseTimer_5; }
inline float* get_address_of__breakerCloseTimer_5() { return &____breakerCloseTimer_5; }
inline void set__breakerCloseTimer_5(float value)
{
____breakerCloseTimer_5 = value;
}
inline static int32_t get_offset_of__currentBreakerDuration_6() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5, ____currentBreakerDuration_6)); }
inline float get__currentBreakerDuration_6() const { return ____currentBreakerDuration_6; }
inline float* get_address_of__currentBreakerDuration_6() { return &____currentBreakerDuration_6; }
inline void set__currentBreakerDuration_6(float value)
{
____currentBreakerDuration_6 = value;
}
inline static int32_t get_offset_of__breakerClosed_7() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5, ____breakerClosed_7)); }
inline bool get__breakerClosed_7() const { return ____breakerClosed_7; }
inline bool* get_address_of__breakerClosed_7() { return &____breakerClosed_7; }
inline void set__breakerClosed_7(bool value)
{
____breakerClosed_7 = value;
}
};
struct FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5_StaticFields
{
public:
// System.String Dissonance.FrameSkipDetector::MetricFrameTime
String_t* ___MetricFrameTime_0;
public:
inline static int32_t get_offset_of_MetricFrameTime_0() { return static_cast<int32_t>(offsetof(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5_StaticFields, ___MetricFrameTime_0)); }
inline String_t* get_MetricFrameTime_0() const { return ___MetricFrameTime_0; }
inline String_t** get_address_of_MetricFrameTime_0() { return &___MetricFrameTime_0; }
inline void set_MetricFrameTime_0(String_t* value)
{
___MetricFrameTime_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MetricFrameTime_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.FrameSkipDetector
struct FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5_marshaled_pinvoke
{
float ____maxFrameTime_1;
float ____minimumBreakerDuration_2;
float ____maxBreakerDuration_3;
float ____breakerResetPerSecond_4;
float ____breakerCloseTimer_5;
float ____currentBreakerDuration_6;
int32_t ____breakerClosed_7;
};
// Native definition for COM marshalling of Dissonance.FrameSkipDetector
struct FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5_marshaled_com
{
float ____maxFrameTime_1;
float ____minimumBreakerDuration_2;
float ____maxBreakerDuration_3;
float ____breakerResetPerSecond_4;
float ____breakerCloseTimer_5;
float ____currentBreakerDuration_6;
int32_t ____breakerClosed_7;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// UnityEngine.XR.InteractionSubsystems.GestureId
struct GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7
{
public:
// System.UInt64 UnityEngine.XR.InteractionSubsystems.GestureId::m_SubId1
uint64_t ___m_SubId1_1;
// System.UInt64 UnityEngine.XR.InteractionSubsystems.GestureId::m_SubId2
uint64_t ___m_SubId2_2;
public:
inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7, ___m_SubId1_1)); }
inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; }
inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; }
inline void set_m_SubId1_1(uint64_t value)
{
___m_SubId1_1 = value;
}
inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7, ___m_SubId2_2)); }
inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; }
inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; }
inline void set_m_SubId2_2(uint64_t value)
{
___m_SubId2_2 = value;
}
};
struct GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7_StaticFields
{
public:
// UnityEngine.XR.InteractionSubsystems.GestureId UnityEngine.XR.InteractionSubsystems.GestureId::s_InvalidId
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 ___s_InvalidId_0;
public:
inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7_StaticFields, ___s_InvalidId_0)); }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 get_s_InvalidId_0() const { return ___s_InvalidId_0; }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; }
inline void set_s_InvalidId_0(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 value)
{
___s_InvalidId_0 = value;
}
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
}
};
// UnityEngine.InputSystem.XR.Haptics.HapticCapabilities
struct HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB
{
public:
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.HapticCapabilities::<numChannels>k__BackingField
uint32_t ___U3CnumChannelsU3Ek__BackingField_0;
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.HapticCapabilities::<frequencyHz>k__BackingField
uint32_t ___U3CfrequencyHzU3Ek__BackingField_1;
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.HapticCapabilities::<maxBufferSize>k__BackingField
uint32_t ___U3CmaxBufferSizeU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CnumChannelsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB, ___U3CnumChannelsU3Ek__BackingField_0)); }
inline uint32_t get_U3CnumChannelsU3Ek__BackingField_0() const { return ___U3CnumChannelsU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CnumChannelsU3Ek__BackingField_0() { return &___U3CnumChannelsU3Ek__BackingField_0; }
inline void set_U3CnumChannelsU3Ek__BackingField_0(uint32_t value)
{
___U3CnumChannelsU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CfrequencyHzU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB, ___U3CfrequencyHzU3Ek__BackingField_1)); }
inline uint32_t get_U3CfrequencyHzU3Ek__BackingField_1() const { return ___U3CfrequencyHzU3Ek__BackingField_1; }
inline uint32_t* get_address_of_U3CfrequencyHzU3Ek__BackingField_1() { return &___U3CfrequencyHzU3Ek__BackingField_1; }
inline void set_U3CfrequencyHzU3Ek__BackingField_1(uint32_t value)
{
___U3CfrequencyHzU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CmaxBufferSizeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB, ___U3CmaxBufferSizeU3Ek__BackingField_2)); }
inline uint32_t get_U3CmaxBufferSizeU3Ek__BackingField_2() const { return ___U3CmaxBufferSizeU3Ek__BackingField_2; }
inline uint32_t* get_address_of_U3CmaxBufferSizeU3Ek__BackingField_2() { return &___U3CmaxBufferSizeU3Ek__BackingField_2; }
inline void set_U3CmaxBufferSizeU3Ek__BackingField_2(uint32_t value)
{
___U3CmaxBufferSizeU3Ek__BackingField_2 = value;
}
};
// UnityEngine.InputSystem.XR.Haptics.HapticState
struct HapticState_tA9578F993FC3B87EF20D1C93637807BF84FF2360
{
public:
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.HapticState::<samplesQueued>k__BackingField
uint32_t ___U3CsamplesQueuedU3Ek__BackingField_0;
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.HapticState::<samplesAvailable>k__BackingField
uint32_t ___U3CsamplesAvailableU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CsamplesQueuedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(HapticState_tA9578F993FC3B87EF20D1C93637807BF84FF2360, ___U3CsamplesQueuedU3Ek__BackingField_0)); }
inline uint32_t get_U3CsamplesQueuedU3Ek__BackingField_0() const { return ___U3CsamplesQueuedU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CsamplesQueuedU3Ek__BackingField_0() { return &___U3CsamplesQueuedU3Ek__BackingField_0; }
inline void set_U3CsamplesQueuedU3Ek__BackingField_0(uint32_t value)
{
___U3CsamplesQueuedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CsamplesAvailableU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(HapticState_tA9578F993FC3B87EF20D1C93637807BF84FF2360, ___U3CsamplesAvailableU3Ek__BackingField_1)); }
inline uint32_t get_U3CsamplesAvailableU3Ek__BackingField_1() const { return ___U3CsamplesAvailableU3Ek__BackingField_1; }
inline uint32_t* get_address_of_U3CsamplesAvailableU3Ek__BackingField_1() { return &___U3CsamplesAvailableU3Ek__BackingField_1; }
inline void set_U3CsamplesAvailableU3Ek__BackingField_1(uint32_t value)
{
___U3CsamplesAvailableU3Ek__BackingField_1 = value;
}
};
// UnityEngine.InputSystem.InputActionProperty
struct InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3
{
public:
// System.Boolean UnityEngine.InputSystem.InputActionProperty::m_UseReference
bool ___m_UseReference_0;
// UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.InputActionProperty::m_Action
InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * ___m_Action_1;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.InputActionProperty::m_Reference
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_Reference_2;
public:
inline static int32_t get_offset_of_m_UseReference_0() { return static_cast<int32_t>(offsetof(InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3, ___m_UseReference_0)); }
inline bool get_m_UseReference_0() const { return ___m_UseReference_0; }
inline bool* get_address_of_m_UseReference_0() { return &___m_UseReference_0; }
inline void set_m_UseReference_0(bool value)
{
___m_UseReference_0 = value;
}
inline static int32_t get_offset_of_m_Action_1() { return static_cast<int32_t>(offsetof(InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3, ___m_Action_1)); }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * get_m_Action_1() const { return ___m_Action_1; }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 ** get_address_of_m_Action_1() { return &___m_Action_1; }
inline void set_m_Action_1(InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * value)
{
___m_Action_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Action_1), (void*)value);
}
inline static int32_t get_offset_of_m_Reference_2() { return static_cast<int32_t>(offsetof(InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3, ___m_Reference_2)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_Reference_2() const { return ___m_Reference_2; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_Reference_2() { return &___m_Reference_2; }
inline void set_m_Reference_2(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_Reference_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Reference_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputActionProperty
struct InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3_marshaled_pinvoke
{
int32_t ___m_UseReference_0;
InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * ___m_Action_1;
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_Reference_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputActionProperty
struct InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3_marshaled_com
{
int32_t ___m_UseReference_0;
InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * ___m_Action_1;
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_Reference_2;
};
// UnityEngine.InputSystem.InputControlScheme
struct InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190
{
public:
// System.String UnityEngine.InputSystem.InputControlScheme::m_Name
String_t* ___m_Name_0;
// System.String UnityEngine.InputSystem.InputControlScheme::m_BindingGroup
String_t* ___m_BindingGroup_1;
// UnityEngine.InputSystem.InputControlScheme/DeviceRequirement[] UnityEngine.InputSystem.InputControlScheme::m_DeviceRequirements
DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E* ___m_DeviceRequirements_2;
public:
inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190, ___m_Name_0)); }
inline String_t* get_m_Name_0() const { return ___m_Name_0; }
inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; }
inline void set_m_Name_0(String_t* value)
{
___m_Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_0), (void*)value);
}
inline static int32_t get_offset_of_m_BindingGroup_1() { return static_cast<int32_t>(offsetof(InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190, ___m_BindingGroup_1)); }
inline String_t* get_m_BindingGroup_1() const { return ___m_BindingGroup_1; }
inline String_t** get_address_of_m_BindingGroup_1() { return &___m_BindingGroup_1; }
inline void set_m_BindingGroup_1(String_t* value)
{
___m_BindingGroup_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_BindingGroup_1), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceRequirements_2() { return static_cast<int32_t>(offsetof(InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190, ___m_DeviceRequirements_2)); }
inline DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E* get_m_DeviceRequirements_2() const { return ___m_DeviceRequirements_2; }
inline DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E** get_address_of_m_DeviceRequirements_2() { return &___m_DeviceRequirements_2; }
inline void set_m_DeviceRequirements_2(DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E* value)
{
___m_DeviceRequirements_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceRequirements_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputControlScheme
struct InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190_marshaled_pinvoke
{
char* ___m_Name_0;
char* ___m_BindingGroup_1;
DeviceRequirement_tDA5868427F9D3EC59A2293DE9F18C699FF64F955_marshaled_pinvoke* ___m_DeviceRequirements_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputControlScheme
struct InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190_marshaled_com
{
Il2CppChar* ___m_Name_0;
Il2CppChar* ___m_BindingGroup_1;
DeviceRequirement_tDA5868427F9D3EC59A2293DE9F18C699FF64F955_marshaled_com* ___m_DeviceRequirements_2;
};
// UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_InterfaceName
String_t* ___m_InterfaceName_0;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_DeviceClass
String_t* ___m_DeviceClass_1;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Manufacturer
String_t* ___m_Manufacturer_2;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Product
String_t* ___m_Product_3;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Serial
String_t* ___m_Serial_4;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Version
String_t* ___m_Version_5;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription::m_Capabilities
String_t* ___m_Capabilities_6;
public:
inline static int32_t get_offset_of_m_InterfaceName_0() { return static_cast<int32_t>(offsetof(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD, ___m_InterfaceName_0)); }
inline String_t* get_m_InterfaceName_0() const { return ___m_InterfaceName_0; }
inline String_t** get_address_of_m_InterfaceName_0() { return &___m_InterfaceName_0; }
inline void set_m_InterfaceName_0(String_t* value)
{
___m_InterfaceName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InterfaceName_0), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceClass_1() { return static_cast<int32_t>(offsetof(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD, ___m_DeviceClass_1)); }
inline String_t* get_m_DeviceClass_1() const { return ___m_DeviceClass_1; }
inline String_t** get_address_of_m_DeviceClass_1() { return &___m_DeviceClass_1; }
inline void set_m_DeviceClass_1(String_t* value)
{
___m_DeviceClass_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceClass_1), (void*)value);
}
inline static int32_t get_offset_of_m_Manufacturer_2() { return static_cast<int32_t>(offsetof(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD, ___m_Manufacturer_2)); }
inline String_t* get_m_Manufacturer_2() const { return ___m_Manufacturer_2; }
inline String_t** get_address_of_m_Manufacturer_2() { return &___m_Manufacturer_2; }
inline void set_m_Manufacturer_2(String_t* value)
{
___m_Manufacturer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Manufacturer_2), (void*)value);
}
inline static int32_t get_offset_of_m_Product_3() { return static_cast<int32_t>(offsetof(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD, ___m_Product_3)); }
inline String_t* get_m_Product_3() const { return ___m_Product_3; }
inline String_t** get_address_of_m_Product_3() { return &___m_Product_3; }
inline void set_m_Product_3(String_t* value)
{
___m_Product_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Product_3), (void*)value);
}
inline static int32_t get_offset_of_m_Serial_4() { return static_cast<int32_t>(offsetof(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD, ___m_Serial_4)); }
inline String_t* get_m_Serial_4() const { return ___m_Serial_4; }
inline String_t** get_address_of_m_Serial_4() { return &___m_Serial_4; }
inline void set_m_Serial_4(String_t* value)
{
___m_Serial_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Serial_4), (void*)value);
}
inline static int32_t get_offset_of_m_Version_5() { return static_cast<int32_t>(offsetof(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD, ___m_Version_5)); }
inline String_t* get_m_Version_5() const { return ___m_Version_5; }
inline String_t** get_address_of_m_Version_5() { return &___m_Version_5; }
inline void set_m_Version_5(String_t* value)
{
___m_Version_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Version_5), (void*)value);
}
inline static int32_t get_offset_of_m_Capabilities_6() { return static_cast<int32_t>(offsetof(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD, ___m_Capabilities_6)); }
inline String_t* get_m_Capabilities_6() const { return ___m_Capabilities_6; }
inline String_t** get_address_of_m_Capabilities_6() { return &___m_Capabilities_6; }
inline void set_m_Capabilities_6(String_t* value)
{
___m_Capabilities_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Capabilities_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD_marshaled_pinvoke
{
char* ___m_InterfaceName_0;
char* ___m_DeviceClass_1;
char* ___m_Manufacturer_2;
char* ___m_Product_3;
char* ___m_Serial_4;
char* ___m_Version_5;
char* ___m_Capabilities_6;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription
struct InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD_marshaled_com
{
Il2CppChar* ___m_InterfaceName_0;
Il2CppChar* ___m_DeviceClass_1;
Il2CppChar* ___m_Manufacturer_2;
Il2CppChar* ___m_Product_3;
Il2CppChar* ___m_Serial_4;
Il2CppChar* ___m_Version_5;
Il2CppChar* ___m_Capabilities_6;
};
// UnityEngine.InputSystem.LowLevel.InputEventPtr
struct InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190
{
public:
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventPtr::m_EventPtr
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * ___m_EventPtr_0;
public:
inline static int32_t get_offset_of_m_EventPtr_0() { return static_cast<int32_t>(offsetof(InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190, ___m_EventPtr_0)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_m_EventPtr_0() const { return ___m_EventPtr_0; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ** get_address_of_m_EventPtr_0() { return &___m_EventPtr_0; }
inline void set_m_EventPtr_0(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * value)
{
___m_EventPtr_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputMetrics
struct InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<maxNumDevices>k__BackingField
int32_t ___U3CmaxNumDevicesU3Ek__BackingField_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentNumDevices>k__BackingField
int32_t ___U3CcurrentNumDevicesU3Ek__BackingField_1;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<maxStateSizeInBytes>k__BackingField
int32_t ___U3CmaxStateSizeInBytesU3Ek__BackingField_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentStateSizeInBytes>k__BackingField
int32_t ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentControlCount>k__BackingField
int32_t ___U3CcurrentControlCountU3Ek__BackingField_4;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<currentLayoutCount>k__BackingField
int32_t ___U3CcurrentLayoutCountU3Ek__BackingField_5;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventBytes>k__BackingField
int32_t ___U3CtotalEventBytesU3Ek__BackingField_6;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventCount>k__BackingField
int32_t ___U3CtotalEventCountU3Ek__BackingField_7;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputMetrics::<totalUpdateCount>k__BackingField
int32_t ___U3CtotalUpdateCountU3Ek__BackingField_8;
// System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventProcessingTime>k__BackingField
double ___U3CtotalEventProcessingTimeU3Ek__BackingField_9;
// System.Double UnityEngine.InputSystem.LowLevel.InputMetrics::<totalEventLagTime>k__BackingField
double ___U3CtotalEventLagTimeU3Ek__BackingField_10;
public:
inline static int32_t get_offset_of_U3CmaxNumDevicesU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CmaxNumDevicesU3Ek__BackingField_0)); }
inline int32_t get_U3CmaxNumDevicesU3Ek__BackingField_0() const { return ___U3CmaxNumDevicesU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CmaxNumDevicesU3Ek__BackingField_0() { return &___U3CmaxNumDevicesU3Ek__BackingField_0; }
inline void set_U3CmaxNumDevicesU3Ek__BackingField_0(int32_t value)
{
___U3CmaxNumDevicesU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CcurrentNumDevicesU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CcurrentNumDevicesU3Ek__BackingField_1)); }
inline int32_t get_U3CcurrentNumDevicesU3Ek__BackingField_1() const { return ___U3CcurrentNumDevicesU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CcurrentNumDevicesU3Ek__BackingField_1() { return &___U3CcurrentNumDevicesU3Ek__BackingField_1; }
inline void set_U3CcurrentNumDevicesU3Ek__BackingField_1(int32_t value)
{
___U3CcurrentNumDevicesU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CmaxStateSizeInBytesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CmaxStateSizeInBytesU3Ek__BackingField_2)); }
inline int32_t get_U3CmaxStateSizeInBytesU3Ek__BackingField_2() const { return ___U3CmaxStateSizeInBytesU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CmaxStateSizeInBytesU3Ek__BackingField_2() { return &___U3CmaxStateSizeInBytesU3Ek__BackingField_2; }
inline void set_U3CmaxStateSizeInBytesU3Ek__BackingField_2(int32_t value)
{
___U3CmaxStateSizeInBytesU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CcurrentStateSizeInBytesU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3)); }
inline int32_t get_U3CcurrentStateSizeInBytesU3Ek__BackingField_3() const { return ___U3CcurrentStateSizeInBytesU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CcurrentStateSizeInBytesU3Ek__BackingField_3() { return &___U3CcurrentStateSizeInBytesU3Ek__BackingField_3; }
inline void set_U3CcurrentStateSizeInBytesU3Ek__BackingField_3(int32_t value)
{
___U3CcurrentStateSizeInBytesU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CcurrentControlCountU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CcurrentControlCountU3Ek__BackingField_4)); }
inline int32_t get_U3CcurrentControlCountU3Ek__BackingField_4() const { return ___U3CcurrentControlCountU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CcurrentControlCountU3Ek__BackingField_4() { return &___U3CcurrentControlCountU3Ek__BackingField_4; }
inline void set_U3CcurrentControlCountU3Ek__BackingField_4(int32_t value)
{
___U3CcurrentControlCountU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CcurrentLayoutCountU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CcurrentLayoutCountU3Ek__BackingField_5)); }
inline int32_t get_U3CcurrentLayoutCountU3Ek__BackingField_5() const { return ___U3CcurrentLayoutCountU3Ek__BackingField_5; }
inline int32_t* get_address_of_U3CcurrentLayoutCountU3Ek__BackingField_5() { return &___U3CcurrentLayoutCountU3Ek__BackingField_5; }
inline void set_U3CcurrentLayoutCountU3Ek__BackingField_5(int32_t value)
{
___U3CcurrentLayoutCountU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CtotalEventBytesU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CtotalEventBytesU3Ek__BackingField_6)); }
inline int32_t get_U3CtotalEventBytesU3Ek__BackingField_6() const { return ___U3CtotalEventBytesU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CtotalEventBytesU3Ek__BackingField_6() { return &___U3CtotalEventBytesU3Ek__BackingField_6; }
inline void set_U3CtotalEventBytesU3Ek__BackingField_6(int32_t value)
{
___U3CtotalEventBytesU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CtotalEventCountU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CtotalEventCountU3Ek__BackingField_7)); }
inline int32_t get_U3CtotalEventCountU3Ek__BackingField_7() const { return ___U3CtotalEventCountU3Ek__BackingField_7; }
inline int32_t* get_address_of_U3CtotalEventCountU3Ek__BackingField_7() { return &___U3CtotalEventCountU3Ek__BackingField_7; }
inline void set_U3CtotalEventCountU3Ek__BackingField_7(int32_t value)
{
___U3CtotalEventCountU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CtotalUpdateCountU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CtotalUpdateCountU3Ek__BackingField_8)); }
inline int32_t get_U3CtotalUpdateCountU3Ek__BackingField_8() const { return ___U3CtotalUpdateCountU3Ek__BackingField_8; }
inline int32_t* get_address_of_U3CtotalUpdateCountU3Ek__BackingField_8() { return &___U3CtotalUpdateCountU3Ek__BackingField_8; }
inline void set_U3CtotalUpdateCountU3Ek__BackingField_8(int32_t value)
{
___U3CtotalUpdateCountU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CtotalEventProcessingTimeU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CtotalEventProcessingTimeU3Ek__BackingField_9)); }
inline double get_U3CtotalEventProcessingTimeU3Ek__BackingField_9() const { return ___U3CtotalEventProcessingTimeU3Ek__BackingField_9; }
inline double* get_address_of_U3CtotalEventProcessingTimeU3Ek__BackingField_9() { return &___U3CtotalEventProcessingTimeU3Ek__BackingField_9; }
inline void set_U3CtotalEventProcessingTimeU3Ek__BackingField_9(double value)
{
___U3CtotalEventProcessingTimeU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CtotalEventLagTimeU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354, ___U3CtotalEventLagTimeU3Ek__BackingField_10)); }
inline double get_U3CtotalEventLagTimeU3Ek__BackingField_10() const { return ___U3CtotalEventLagTimeU3Ek__BackingField_10; }
inline double* get_address_of_U3CtotalEventLagTimeU3Ek__BackingField_10() { return &___U3CtotalEventLagTimeU3Ek__BackingField_10; }
inline void set_U3CtotalEventLagTimeU3Ek__BackingField_10(double value)
{
___U3CtotalEventLagTimeU3Ek__BackingField_10 = value;
}
};
// UnityEngine.InputSystem.Users.InputUserAccountHandle
struct InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9
{
public:
// System.String UnityEngine.InputSystem.Users.InputUserAccountHandle::m_ApiName
String_t* ___m_ApiName_0;
// System.UInt64 UnityEngine.InputSystem.Users.InputUserAccountHandle::m_Handle
uint64_t ___m_Handle_1;
public:
inline static int32_t get_offset_of_m_ApiName_0() { return static_cast<int32_t>(offsetof(InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9, ___m_ApiName_0)); }
inline String_t* get_m_ApiName_0() const { return ___m_ApiName_0; }
inline String_t** get_address_of_m_ApiName_0() { return &___m_ApiName_0; }
inline void set_m_ApiName_0(String_t* value)
{
___m_ApiName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ApiName_0), (void*)value);
}
inline static int32_t get_offset_of_m_Handle_1() { return static_cast<int32_t>(offsetof(InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9, ___m_Handle_1)); }
inline uint64_t get_m_Handle_1() const { return ___m_Handle_1; }
inline uint64_t* get_address_of_m_Handle_1() { return &___m_Handle_1; }
inline void set_m_Handle_1(uint64_t value)
{
___m_Handle_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Users.InputUserAccountHandle
struct InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9_marshaled_pinvoke
{
char* ___m_ApiName_0;
uint64_t ___m_Handle_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Users.InputUserAccountHandle
struct InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9_marshaled_com
{
Il2CppChar* ___m_ApiName_0;
uint64_t ___m_Handle_1;
};
// 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;
}
};
// UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1
{
public:
// System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringOriginalCase
String_t* ___m_StringOriginalCase_0;
// System.String UnityEngine.InputSystem.Utilities.InternedString::m_StringLowerCase
String_t* ___m_StringLowerCase_1;
public:
inline static int32_t get_offset_of_m_StringOriginalCase_0() { return static_cast<int32_t>(offsetof(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1, ___m_StringOriginalCase_0)); }
inline String_t* get_m_StringOriginalCase_0() const { return ___m_StringOriginalCase_0; }
inline String_t** get_address_of_m_StringOriginalCase_0() { return &___m_StringOriginalCase_0; }
inline void set_m_StringOriginalCase_0(String_t* value)
{
___m_StringOriginalCase_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StringOriginalCase_0), (void*)value);
}
inline static int32_t get_offset_of_m_StringLowerCase_1() { return static_cast<int32_t>(offsetof(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1, ___m_StringLowerCase_1)); }
inline String_t* get_m_StringLowerCase_1() const { return ___m_StringLowerCase_1; }
inline String_t** get_address_of_m_StringLowerCase_1() { return &___m_StringLowerCase_1; }
inline void set_m_StringLowerCase_1(String_t* value)
{
___m_StringLowerCase_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StringLowerCase_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_pinvoke
{
char* ___m_StringOriginalCase_0;
char* ___m_StringLowerCase_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.InternedString
struct InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_com
{
Il2CppChar* ___m_StringOriginalCase_0;
Il2CppChar* ___m_StringLowerCase_1;
};
// System.Runtime.CompilerServices.IsReadOnlyAttribute
struct IsReadOnlyAttribute_tCA3D5EB6581E65CBC0EA18A6D6A7FD5D652CEF88 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Runtime.CompilerServices.IsReadOnlyAttribute
struct IsReadOnlyAttribute_t0AAE3B90EB6856595926CB36ADA6DAF93E6E7A40 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Runtime.CompilerServices.IsReadOnlyAttribute
struct IsReadOnlyAttribute_t6C6EC35F1D85F983E1108A473F3FEBDD3CCBA525 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Runtime.CompilerServices.IsReadOnlyAttribute
struct IsReadOnlyAttribute_tD353347B91AB59F6727D245191616490B0648147 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// UnityEngine.InputSystem.Utilities.JsonParser
struct JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24
{
public:
// System.String UnityEngine.InputSystem.Utilities.JsonParser::m_Text
String_t* ___m_Text_0;
// System.Int32 UnityEngine.InputSystem.Utilities.JsonParser::m_Length
int32_t ___m_Length_1;
// System.Int32 UnityEngine.InputSystem.Utilities.JsonParser::m_Position
int32_t ___m_Position_2;
// System.Boolean UnityEngine.InputSystem.Utilities.JsonParser::m_MatchAnyElementInArray
bool ___m_MatchAnyElementInArray_3;
// System.Boolean UnityEngine.InputSystem.Utilities.JsonParser::m_DryRun
bool ___m_DryRun_4;
public:
inline static int32_t get_offset_of_m_Text_0() { return static_cast<int32_t>(offsetof(JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24, ___m_Text_0)); }
inline String_t* get_m_Text_0() const { return ___m_Text_0; }
inline String_t** get_address_of_m_Text_0() { return &___m_Text_0; }
inline void set_m_Text_0(String_t* value)
{
___m_Text_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_0), (void*)value);
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24, ___m_Position_2)); }
inline int32_t get_m_Position_2() const { return ___m_Position_2; }
inline int32_t* get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(int32_t value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_MatchAnyElementInArray_3() { return static_cast<int32_t>(offsetof(JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24, ___m_MatchAnyElementInArray_3)); }
inline bool get_m_MatchAnyElementInArray_3() const { return ___m_MatchAnyElementInArray_3; }
inline bool* get_address_of_m_MatchAnyElementInArray_3() { return &___m_MatchAnyElementInArray_3; }
inline void set_m_MatchAnyElementInArray_3(bool value)
{
___m_MatchAnyElementInArray_3 = value;
}
inline static int32_t get_offset_of_m_DryRun_4() { return static_cast<int32_t>(offsetof(JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24, ___m_DryRun_4)); }
inline bool get_m_DryRun_4() const { return ___m_DryRun_4; }
inline bool* get_address_of_m_DryRun_4() { return &___m_DryRun_4; }
inline void set_m_DryRun_4(bool value)
{
___m_DryRun_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.JsonParser
struct JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24_marshaled_pinvoke
{
char* ___m_Text_0;
int32_t ___m_Length_1;
int32_t ___m_Position_2;
int32_t ___m_MatchAnyElementInArray_3;
int32_t ___m_DryRun_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.JsonParser
struct JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24_marshaled_com
{
Il2CppChar* ___m_Text_0;
int32_t ___m_Length_1;
int32_t ___m_Position_2;
int32_t ___m_MatchAnyElementInArray_3;
int32_t ___m_DryRun_4;
};
// UnityEngine.LayerMask
struct LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8
{
public:
// System.Int32 UnityEngine.LayerMask::m_Mask
int32_t ___m_Mask_0;
public:
inline static int32_t get_offset_of_m_Mask_0() { return static_cast<int32_t>(offsetof(LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8, ___m_Mask_0)); }
inline int32_t get_m_Mask_0() const { return ___m_Mask_0; }
inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; }
inline void set_m_Mask_0(int32_t value)
{
___m_Mask_0 = value;
}
};
// Dissonance.LocalVoicePlayerState
struct LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1 : public VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3
{
public:
// Dissonance.Audio.Capture.IAmplitudeProvider Dissonance.LocalVoicePlayerState::_micAmplitude
RuntimeObject* ____micAmplitude_8;
// Dissonance.Rooms Dissonance.LocalVoicePlayerState::_rooms
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * ____rooms_9;
// Dissonance.RoomChannels Dissonance.LocalVoicePlayerState::_roomChannels
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ____roomChannels_10;
// Dissonance.PlayerChannels Dissonance.LocalVoicePlayerState::_playerChannels
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ____playerChannels_11;
// Dissonance.ILossEstimator Dissonance.LocalVoicePlayerState::_loss
RuntimeObject* ____loss_12;
// Dissonance.Networking.ICommsNetwork Dissonance.LocalVoicePlayerState::_network
RuntimeObject* ____network_13;
// Dissonance.IDissonancePlayer Dissonance.LocalVoicePlayerState::<Tracker>k__BackingField
RuntimeObject* ___U3CTrackerU3Ek__BackingField_14;
public:
inline static int32_t get_offset_of__micAmplitude_8() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1, ____micAmplitude_8)); }
inline RuntimeObject* get__micAmplitude_8() const { return ____micAmplitude_8; }
inline RuntimeObject** get_address_of__micAmplitude_8() { return &____micAmplitude_8; }
inline void set__micAmplitude_8(RuntimeObject* value)
{
____micAmplitude_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____micAmplitude_8), (void*)value);
}
inline static int32_t get_offset_of__rooms_9() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1, ____rooms_9)); }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * get__rooms_9() const { return ____rooms_9; }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 ** get_address_of__rooms_9() { return &____rooms_9; }
inline void set__rooms_9(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * value)
{
____rooms_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rooms_9), (void*)value);
}
inline static int32_t get_offset_of__roomChannels_10() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1, ____roomChannels_10)); }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * get__roomChannels_10() const { return ____roomChannels_10; }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 ** get_address_of__roomChannels_10() { return &____roomChannels_10; }
inline void set__roomChannels_10(RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * value)
{
____roomChannels_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomChannels_10), (void*)value);
}
inline static int32_t get_offset_of__playerChannels_11() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1, ____playerChannels_11)); }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * get__playerChannels_11() const { return ____playerChannels_11; }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC ** get_address_of__playerChannels_11() { return &____playerChannels_11; }
inline void set__playerChannels_11(PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * value)
{
____playerChannels_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerChannels_11), (void*)value);
}
inline static int32_t get_offset_of__loss_12() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1, ____loss_12)); }
inline RuntimeObject* get__loss_12() const { return ____loss_12; }
inline RuntimeObject** get_address_of__loss_12() { return &____loss_12; }
inline void set__loss_12(RuntimeObject* value)
{
____loss_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____loss_12), (void*)value);
}
inline static int32_t get_offset_of__network_13() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1, ____network_13)); }
inline RuntimeObject* get__network_13() const { return ____network_13; }
inline RuntimeObject** get_address_of__network_13() { return &____network_13; }
inline void set__network_13(RuntimeObject* value)
{
____network_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____network_13), (void*)value);
}
inline static int32_t get_offset_of_U3CTrackerU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1, ___U3CTrackerU3Ek__BackingField_14)); }
inline RuntimeObject* get_U3CTrackerU3Ek__BackingField_14() const { return ___U3CTrackerU3Ek__BackingField_14; }
inline RuntimeObject** get_address_of_U3CTrackerU3Ek__BackingField_14() { return &___U3CTrackerU3Ek__BackingField_14; }
inline void set_U3CTrackerU3Ek__BackingField_14(RuntimeObject* value)
{
___U3CTrackerU3Ek__BackingField_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTrackerU3Ek__BackingField_14), (void*)value);
}
};
struct LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1_StaticFields
{
public:
// Dissonance.Log Dissonance.LocalVoicePlayerState::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_7;
public:
inline static int32_t get_offset_of_Log_7() { return static_cast<int32_t>(offsetof(LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1_StaticFields, ___Log_7)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_7() const { return ___Log_7; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_7() { return &___Log_7; }
inline void set_Log_7(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_7), (void*)value);
}
};
// Dissonance.Integrations.MirrorIgnorance.MirrorConn
struct MirrorConn_t8A2EDC411EB4BDB60EC13A8137A908DB23CD4DBD
{
public:
// Mirror.NetworkConnection Dissonance.Integrations.MirrorIgnorance.MirrorConn::Connection
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___Connection_0;
public:
inline static int32_t get_offset_of_Connection_0() { return static_cast<int32_t>(offsetof(MirrorConn_t8A2EDC411EB4BDB60EC13A8137A908DB23CD4DBD, ___Connection_0)); }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_Connection_0() const { return ___Connection_0; }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_Connection_0() { return &___Connection_0; }
inline void set_Connection_0(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value)
{
___Connection_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Connection_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Integrations.MirrorIgnorance.MirrorConn
struct MirrorConn_t8A2EDC411EB4BDB60EC13A8137A908DB23CD4DBD_marshaled_pinvoke
{
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___Connection_0;
};
// Native definition for COM marshalling of Dissonance.Integrations.MirrorIgnorance.MirrorConn
struct MirrorConn_t8A2EDC411EB4BDB60EC13A8137A908DB23CD4DBD_marshaled_com
{
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___Connection_0;
};
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient
struct MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD : public BaseClient_3_t6776EEB577020D958A7595B3583C6B8DC762DAA2
{
public:
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient::_network
MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 * ____network_20;
public:
inline static int32_t get_offset_of__network_20() { return static_cast<int32_t>(offsetof(MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD, ____network_20)); }
inline MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 * get__network_20() const { return ____network_20; }
inline MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 ** get_address_of__network_20() { return &____network_20; }
inline void set__network_20(MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 * value)
{
____network_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&____network_20), (void*)value);
}
};
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer
struct MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7 : public BaseServer_3_t5FEAF5C1CEB1DCA4660792EB9DA51081CB24288E
{
public:
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer::_network
MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 * ____network_11;
// System.Collections.Generic.List`1<Mirror.NetworkConnection> Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer::_addedConnections
List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB * ____addedConnections_12;
public:
inline static int32_t get_offset_of__network_11() { return static_cast<int32_t>(offsetof(MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7, ____network_11)); }
inline MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 * get__network_11() const { return ____network_11; }
inline MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 ** get_address_of__network_11() { return &____network_11; }
inline void set__network_11(MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 * value)
{
____network_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____network_11), (void*)value);
}
inline static int32_t get_offset_of__addedConnections_12() { return static_cast<int32_t>(offsetof(MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7, ____addedConnections_12)); }
inline List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB * get__addedConnections_12() const { return ____addedConnections_12; }
inline List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB ** get_address_of__addedConnections_12() { return &____addedConnections_12; }
inline void set__addedConnections_12(List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB * value)
{
____addedConnections_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____addedConnections_12), (void*)value);
}
};
// Dissonance.Datastructures.PacketLossCalculator
struct PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE : public BaseWindowCalculator_1_t6C370E28D3564A3A4B61B2C3E1C42A7A019753EC
{
public:
// System.UInt32 Dissonance.Datastructures.PacketLossCalculator::_lost
uint32_t ____lost_1;
public:
inline static int32_t get_offset_of__lost_1() { return static_cast<int32_t>(offsetof(PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE, ____lost_1)); }
inline uint32_t get__lost_1() const { return ____lost_1; }
inline uint32_t* get_address_of__lost_1() { return &____lost_1; }
inline void set__lost_1(uint32_t value)
{
____lost_1 = value;
}
};
// 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;
}
};
// Dissonance.PlayerChannel
struct PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5
{
public:
// System.UInt16 Dissonance.PlayerChannel::_subscriptionId
uint16_t ____subscriptionId_0;
// System.String Dissonance.PlayerChannel::_playerId
String_t* ____playerId_1;
// Dissonance.ChannelProperties Dissonance.PlayerChannel::_properties
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____properties_2;
// Dissonance.PlayerChannels Dissonance.PlayerChannel::_channels
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ____channels_3;
public:
inline static int32_t get_offset_of__subscriptionId_0() { return static_cast<int32_t>(offsetof(PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5, ____subscriptionId_0)); }
inline uint16_t get__subscriptionId_0() const { return ____subscriptionId_0; }
inline uint16_t* get_address_of__subscriptionId_0() { return &____subscriptionId_0; }
inline void set__subscriptionId_0(uint16_t value)
{
____subscriptionId_0 = value;
}
inline static int32_t get_offset_of__playerId_1() { return static_cast<int32_t>(offsetof(PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5, ____playerId_1)); }
inline String_t* get__playerId_1() const { return ____playerId_1; }
inline String_t** get_address_of__playerId_1() { return &____playerId_1; }
inline void set__playerId_1(String_t* value)
{
____playerId_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerId_1), (void*)value);
}
inline static int32_t get_offset_of__properties_2() { return static_cast<int32_t>(offsetof(PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5, ____properties_2)); }
inline ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * get__properties_2() const { return ____properties_2; }
inline ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 ** get_address_of__properties_2() { return &____properties_2; }
inline void set__properties_2(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * value)
{
____properties_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_2), (void*)value);
}
inline static int32_t get_offset_of__channels_3() { return static_cast<int32_t>(offsetof(PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5, ____channels_3)); }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * get__channels_3() const { return ____channels_3; }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC ** get_address_of__channels_3() { return &____channels_3; }
inline void set__channels_3(PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * value)
{
____channels_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channels_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.PlayerChannel
struct PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5_marshaled_pinvoke
{
uint16_t ____subscriptionId_0;
char* ____playerId_1;
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____properties_2;
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ____channels_3;
};
// Native definition for COM marshalling of Dissonance.PlayerChannel
struct PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5_marshaled_com
{
uint16_t ____subscriptionId_0;
Il2CppChar* ____playerId_1;
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____properties_2;
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ____channels_3;
};
// Dissonance.PlayerChannels
struct PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC : public Channels_2_t50EAF7C0DE9C90359F164770A1504FFBE3540CCC
{
public:
public:
};
// UnityEngine.PropertyAttribute
struct PropertyAttribute_t4A352471DF625C56C811E27AC86B7E1CE6444052 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// 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.RectInt
struct RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49
{
public:
// System.Int32 UnityEngine.RectInt::m_XMin
int32_t ___m_XMin_0;
// System.Int32 UnityEngine.RectInt::m_YMin
int32_t ___m_YMin_1;
// System.Int32 UnityEngine.RectInt::m_Width
int32_t ___m_Width_2;
// System.Int32 UnityEngine.RectInt::m_Height
int32_t ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_XMin_0)); }
inline int32_t get_m_XMin_0() const { return ___m_XMin_0; }
inline int32_t* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(int32_t value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_YMin_1)); }
inline int32_t get_m_YMin_1() const { return ___m_YMin_1; }
inline int32_t* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(int32_t value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_Width_2)); }
inline int32_t get_m_Width_2() const { return ___m_Width_2; }
inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(int32_t value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_Height_3)); }
inline int32_t get_m_Height_3() const { return ___m_Height_3; }
inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(int32_t value)
{
___m_Height_3 = value;
}
};
// Dissonance.RemoteVoicePlayerState
struct RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1 : public VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3
{
public:
// Dissonance.Audio.Playback.IVoicePlaybackInternal Dissonance.RemoteVoicePlayerState::_playback
RuntimeObject* ____playback_8;
// Dissonance.IDissonancePlayer Dissonance.RemoteVoicePlayerState::_player
RuntimeObject* ____player_9;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> Dissonance.RemoteVoicePlayerState::_rooms
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ____rooms_11;
public:
inline static int32_t get_offset_of__playback_8() { return static_cast<int32_t>(offsetof(RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1, ____playback_8)); }
inline RuntimeObject* get__playback_8() const { return ____playback_8; }
inline RuntimeObject** get_address_of__playback_8() { return &____playback_8; }
inline void set__playback_8(RuntimeObject* value)
{
____playback_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playback_8), (void*)value);
}
inline static int32_t get_offset_of__player_9() { return static_cast<int32_t>(offsetof(RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1, ____player_9)); }
inline RuntimeObject* get__player_9() const { return ____player_9; }
inline RuntimeObject** get_address_of__player_9() { return &____player_9; }
inline void set__player_9(RuntimeObject* value)
{
____player_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____player_9), (void*)value);
}
inline static int32_t get_offset_of__rooms_11() { return static_cast<int32_t>(offsetof(RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1, ____rooms_11)); }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * get__rooms_11() const { return ____rooms_11; }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 ** get_address_of__rooms_11() { return &____rooms_11; }
inline void set__rooms_11(ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * value)
{
____rooms_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rooms_11), (void*)value);
}
};
struct RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1_StaticFields
{
public:
// Dissonance.Log Dissonance.RemoteVoicePlayerState::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_7;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> Dissonance.RemoteVoicePlayerState::EmptyRoomsList
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ___EmptyRoomsList_10;
public:
inline static int32_t get_offset_of_Log_7() { return static_cast<int32_t>(offsetof(RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1_StaticFields, ___Log_7)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_7() const { return ___Log_7; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_7() { return &___Log_7; }
inline void set_Log_7(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_7), (void*)value);
}
inline static int32_t get_offset_of_EmptyRoomsList_10() { return static_cast<int32_t>(offsetof(RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1_StaticFields, ___EmptyRoomsList_10)); }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * get_EmptyRoomsList_10() const { return ___EmptyRoomsList_10; }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 ** get_address_of_EmptyRoomsList_10() { return &___EmptyRoomsList_10; }
inline void set_EmptyRoomsList_10(ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * value)
{
___EmptyRoomsList_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyRoomsList_10), (void*)value);
}
};
// Dissonance.RoomChannel
struct RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74
{
public:
// System.UInt16 Dissonance.RoomChannel::_subscriptionId
uint16_t ____subscriptionId_1;
// System.String Dissonance.RoomChannel::_roomId
String_t* ____roomId_2;
// Dissonance.ChannelProperties Dissonance.RoomChannel::_properties
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____properties_3;
// Dissonance.RoomChannels Dissonance.RoomChannel::_channels
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ____channels_4;
public:
inline static int32_t get_offset_of__subscriptionId_1() { return static_cast<int32_t>(offsetof(RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74, ____subscriptionId_1)); }
inline uint16_t get__subscriptionId_1() const { return ____subscriptionId_1; }
inline uint16_t* get_address_of__subscriptionId_1() { return &____subscriptionId_1; }
inline void set__subscriptionId_1(uint16_t value)
{
____subscriptionId_1 = value;
}
inline static int32_t get_offset_of__roomId_2() { return static_cast<int32_t>(offsetof(RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74, ____roomId_2)); }
inline String_t* get__roomId_2() const { return ____roomId_2; }
inline String_t** get_address_of__roomId_2() { return &____roomId_2; }
inline void set__roomId_2(String_t* value)
{
____roomId_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomId_2), (void*)value);
}
inline static int32_t get_offset_of__properties_3() { return static_cast<int32_t>(offsetof(RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74, ____properties_3)); }
inline ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * get__properties_3() const { return ____properties_3; }
inline ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 ** get_address_of__properties_3() { return &____properties_3; }
inline void set__properties_3(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * value)
{
____properties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_3), (void*)value);
}
inline static int32_t get_offset_of__channels_4() { return static_cast<int32_t>(offsetof(RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74, ____channels_4)); }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * get__channels_4() const { return ____channels_4; }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 ** get_address_of__channels_4() { return &____channels_4; }
inline void set__channels_4(RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * value)
{
____channels_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channels_4), (void*)value);
}
};
struct RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74_StaticFields
{
public:
// Dissonance.Log Dissonance.RoomChannel::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.RoomChannel
struct RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74_marshaled_pinvoke
{
uint16_t ____subscriptionId_1;
char* ____roomId_2;
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____properties_3;
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ____channels_4;
};
// Native definition for COM marshalling of Dissonance.RoomChannel
struct RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74_marshaled_com
{
uint16_t ____subscriptionId_1;
Il2CppChar* ____roomId_2;
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____properties_3;
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ____channels_4;
};
// Dissonance.RoomChannels
struct RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 : public Channels_2_t402DEB81E7070923D4DE963BB2DDA2E99F9D9693
{
public:
public:
};
// Dissonance.Networking.RoomEvent
struct RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1
{
public:
// System.String Dissonance.Networking.RoomEvent::PlayerName
String_t* ___PlayerName_0;
// System.String Dissonance.Networking.RoomEvent::Room
String_t* ___Room_1;
// System.Boolean Dissonance.Networking.RoomEvent::Joined
bool ___Joined_2;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> Dissonance.Networking.RoomEvent::Rooms
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ___Rooms_3;
public:
inline static int32_t get_offset_of_PlayerName_0() { return static_cast<int32_t>(offsetof(RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1, ___PlayerName_0)); }
inline String_t* get_PlayerName_0() const { return ___PlayerName_0; }
inline String_t** get_address_of_PlayerName_0() { return &___PlayerName_0; }
inline void set_PlayerName_0(String_t* value)
{
___PlayerName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerName_0), (void*)value);
}
inline static int32_t get_offset_of_Room_1() { return static_cast<int32_t>(offsetof(RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1, ___Room_1)); }
inline String_t* get_Room_1() const { return ___Room_1; }
inline String_t** get_address_of_Room_1() { return &___Room_1; }
inline void set_Room_1(String_t* value)
{
___Room_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Room_1), (void*)value);
}
inline static int32_t get_offset_of_Joined_2() { return static_cast<int32_t>(offsetof(RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1, ___Joined_2)); }
inline bool get_Joined_2() const { return ___Joined_2; }
inline bool* get_address_of_Joined_2() { return &___Joined_2; }
inline void set_Joined_2(bool value)
{
___Joined_2 = value;
}
inline static int32_t get_offset_of_Rooms_3() { return static_cast<int32_t>(offsetof(RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1, ___Rooms_3)); }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * get_Rooms_3() const { return ___Rooms_3; }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 ** get_address_of_Rooms_3() { return &___Rooms_3; }
inline void set_Rooms_3(ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * value)
{
___Rooms_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Rooms_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.RoomEvent
struct RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1_marshaled_pinvoke
{
char* ___PlayerName_0;
char* ___Room_1;
int32_t ___Joined_2;
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ___Rooms_3;
};
// Native definition for COM marshalling of Dissonance.Networking.RoomEvent
struct RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1_marshaled_com
{
Il2CppChar* ___PlayerName_0;
Il2CppChar* ___Room_1;
int32_t ___Joined_2;
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ___Rooms_3;
};
// Dissonance.RoomMembership
struct RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF
{
public:
// System.String Dissonance.RoomMembership::_name
String_t* ____name_0;
// System.UInt16 Dissonance.RoomMembership::_roomId
uint16_t ____roomId_1;
// System.Int32 Dissonance.RoomMembership::Count
int32_t ___Count_2;
public:
inline static int32_t get_offset_of__name_0() { return static_cast<int32_t>(offsetof(RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF, ____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);
}
inline static int32_t get_offset_of__roomId_1() { return static_cast<int32_t>(offsetof(RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF, ____roomId_1)); }
inline uint16_t get__roomId_1() const { return ____roomId_1; }
inline uint16_t* get_address_of__roomId_1() { return &____roomId_1; }
inline void set__roomId_1(uint16_t value)
{
____roomId_1 = value;
}
inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF, ___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;
}
};
// Native definition for P/Invoke marshalling of Dissonance.RoomMembership
struct RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF_marshaled_pinvoke
{
char* ____name_0;
uint16_t ____roomId_1;
int32_t ___Count_2;
};
// Native definition for COM marshalling of Dissonance.RoomMembership
struct RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF_marshaled_com
{
Il2CppChar* ____name_0;
uint16_t ____roomId_1;
int32_t ___Count_2;
};
// 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;
}
};
// Mirror.Cloud.ListServerService.ServerCollectionJson
struct ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55
{
public:
// Mirror.Cloud.ListServerService.ServerJson[] Mirror.Cloud.ListServerService.ServerCollectionJson::servers
ServerJsonU5BU5D_t5869F80E502452D21643CC0B75C3E7B019911641* ___servers_0;
public:
inline static int32_t get_offset_of_servers_0() { return static_cast<int32_t>(offsetof(ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55, ___servers_0)); }
inline ServerJsonU5BU5D_t5869F80E502452D21643CC0B75C3E7B019911641* get_servers_0() const { return ___servers_0; }
inline ServerJsonU5BU5D_t5869F80E502452D21643CC0B75C3E7B019911641** get_address_of_servers_0() { return &___servers_0; }
inline void set_servers_0(ServerJsonU5BU5D_t5869F80E502452D21643CC0B75C3E7B019911641* value)
{
___servers_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___servers_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.Cloud.ListServerService.ServerCollectionJson
struct ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55_marshaled_pinvoke
{
ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22_marshaled_pinvoke* ___servers_0;
};
// Native definition for COM marshalling of Mirror.Cloud.ListServerService.ServerCollectionJson
struct ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55_marshaled_com
{
ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22_marshaled_com* ___servers_0;
};
// Mirror.Cloud.ListServerService.ServerJson
struct ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22
{
public:
// System.String Mirror.Cloud.ListServerService.ServerJson::protocol
String_t* ___protocol_0;
// System.Int32 Mirror.Cloud.ListServerService.ServerJson::port
int32_t ___port_1;
// System.Int32 Mirror.Cloud.ListServerService.ServerJson::playerCount
int32_t ___playerCount_2;
// System.Int32 Mirror.Cloud.ListServerService.ServerJson::maxPlayerCount
int32_t ___maxPlayerCount_3;
// System.String Mirror.Cloud.ListServerService.ServerJson::displayName
String_t* ___displayName_4;
// System.String Mirror.Cloud.ListServerService.ServerJson::address
String_t* ___address_5;
// System.String Mirror.Cloud.ListServerService.ServerJson::customAddress
String_t* ___customAddress_6;
// Mirror.Cloud.ListServerService.KeyValue[] Mirror.Cloud.ListServerService.ServerJson::customData
KeyValueU5BU5D_t2A2C9FE161E3BDAEE4DB89FD0BC9BC94712358D9* ___customData_7;
public:
inline static int32_t get_offset_of_protocol_0() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___protocol_0)); }
inline String_t* get_protocol_0() const { return ___protocol_0; }
inline String_t** get_address_of_protocol_0() { return &___protocol_0; }
inline void set_protocol_0(String_t* value)
{
___protocol_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___protocol_0), (void*)value);
}
inline static int32_t get_offset_of_port_1() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___port_1)); }
inline int32_t get_port_1() const { return ___port_1; }
inline int32_t* get_address_of_port_1() { return &___port_1; }
inline void set_port_1(int32_t value)
{
___port_1 = value;
}
inline static int32_t get_offset_of_playerCount_2() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___playerCount_2)); }
inline int32_t get_playerCount_2() const { return ___playerCount_2; }
inline int32_t* get_address_of_playerCount_2() { return &___playerCount_2; }
inline void set_playerCount_2(int32_t value)
{
___playerCount_2 = value;
}
inline static int32_t get_offset_of_maxPlayerCount_3() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___maxPlayerCount_3)); }
inline int32_t get_maxPlayerCount_3() const { return ___maxPlayerCount_3; }
inline int32_t* get_address_of_maxPlayerCount_3() { return &___maxPlayerCount_3; }
inline void set_maxPlayerCount_3(int32_t value)
{
___maxPlayerCount_3 = value;
}
inline static int32_t get_offset_of_displayName_4() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___displayName_4)); }
inline String_t* get_displayName_4() const { return ___displayName_4; }
inline String_t** get_address_of_displayName_4() { return &___displayName_4; }
inline void set_displayName_4(String_t* value)
{
___displayName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayName_4), (void*)value);
}
inline static int32_t get_offset_of_address_5() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___address_5)); }
inline String_t* get_address_5() const { return ___address_5; }
inline String_t** get_address_of_address_5() { return &___address_5; }
inline void set_address_5(String_t* value)
{
___address_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___address_5), (void*)value);
}
inline static int32_t get_offset_of_customAddress_6() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___customAddress_6)); }
inline String_t* get_customAddress_6() const { return ___customAddress_6; }
inline String_t** get_address_of_customAddress_6() { return &___customAddress_6; }
inline void set_customAddress_6(String_t* value)
{
___customAddress_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___customAddress_6), (void*)value);
}
inline static int32_t get_offset_of_customData_7() { return static_cast<int32_t>(offsetof(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22, ___customData_7)); }
inline KeyValueU5BU5D_t2A2C9FE161E3BDAEE4DB89FD0BC9BC94712358D9* get_customData_7() const { return ___customData_7; }
inline KeyValueU5BU5D_t2A2C9FE161E3BDAEE4DB89FD0BC9BC94712358D9** get_address_of_customData_7() { return &___customData_7; }
inline void set_customData_7(KeyValueU5BU5D_t2A2C9FE161E3BDAEE4DB89FD0BC9BC94712358D9* value)
{
___customData_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___customData_7), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.Cloud.ListServerService.ServerJson
struct ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22_marshaled_pinvoke
{
char* ___protocol_0;
int32_t ___port_1;
int32_t ___playerCount_2;
int32_t ___maxPlayerCount_3;
char* ___displayName_4;
char* ___address_5;
char* ___customAddress_6;
KeyValue_t0F3C5C28E58D4980486F31F2C33C3980AF3CBFD4_marshaled_pinvoke* ___customData_7;
};
// Native definition for COM marshalling of Mirror.Cloud.ListServerService.ServerJson
struct ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22_marshaled_com
{
Il2CppChar* ___protocol_0;
int32_t ___port_1;
int32_t ___playerCount_2;
int32_t ___maxPlayerCount_3;
Il2CppChar* ___displayName_4;
Il2CppChar* ___address_5;
Il2CppChar* ___customAddress_6;
KeyValue_t0F3C5C28E58D4980486F31F2C33C3980AF3CBFD4_marshaled_com* ___customData_7;
};
// Mirror.Discovery.ServerRequest
struct ServerRequest_t2FC933E4D7186FEDDA3DCBE5F1845BD8231B9E3F
{
public:
union
{
struct
{
};
uint8_t ServerRequest_t2FC933E4D7186FEDDA3DCBE5F1845BD8231B9E3F__padding[1];
};
public:
};
// Mirror.Discovery.ServerResponse
struct ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1
{
public:
// System.Net.IPEndPoint Mirror.Discovery.ServerResponse::<EndPoint>k__BackingField
IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___U3CEndPointU3Ek__BackingField_0;
// System.Uri Mirror.Discovery.ServerResponse::uri
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_1;
// System.Int64 Mirror.Discovery.ServerResponse::serverId
int64_t ___serverId_2;
public:
inline static int32_t get_offset_of_U3CEndPointU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1, ___U3CEndPointU3Ek__BackingField_0)); }
inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * get_U3CEndPointU3Ek__BackingField_0() const { return ___U3CEndPointU3Ek__BackingField_0; }
inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E ** get_address_of_U3CEndPointU3Ek__BackingField_0() { return &___U3CEndPointU3Ek__BackingField_0; }
inline void set_U3CEndPointU3Ek__BackingField_0(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * value)
{
___U3CEndPointU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CEndPointU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1, ___uri_1)); }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_1() const { return ___uri_1; }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_1() { return &___uri_1; }
inline void set_uri_1(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value)
{
___uri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_1), (void*)value);
}
inline static int32_t get_offset_of_serverId_2() { return static_cast<int32_t>(offsetof(ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1, ___serverId_2)); }
inline int64_t get_serverId_2() const { return ___serverId_2; }
inline int64_t* get_address_of_serverId_2() { return &___serverId_2; }
inline void set_serverId_2(int64_t value)
{
___serverId_2 = value;
}
};
// Native definition for P/Invoke marshalling of Mirror.Discovery.ServerResponse
struct ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1_marshaled_pinvoke
{
IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___U3CEndPointU3Ek__BackingField_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_1;
int64_t ___serverId_2;
};
// Native definition for COM marshalling of Mirror.Discovery.ServerResponse
struct ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1_marshaled_com
{
IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___U3CEndPointU3Ek__BackingField_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_1;
int64_t ___serverId_2;
};
// Dissonance.Audio.Playback.SessionContext
struct SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B
{
public:
// System.String Dissonance.Audio.Playback.SessionContext::PlayerName
String_t* ___PlayerName_0;
// System.UInt32 Dissonance.Audio.Playback.SessionContext::Id
uint32_t ___Id_1;
public:
inline static int32_t get_offset_of_PlayerName_0() { return static_cast<int32_t>(offsetof(SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B, ___PlayerName_0)); }
inline String_t* get_PlayerName_0() const { return ___PlayerName_0; }
inline String_t** get_address_of_PlayerName_0() { return &___PlayerName_0; }
inline void set_PlayerName_0(String_t* value)
{
___PlayerName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerName_0), (void*)value);
}
inline static int32_t get_offset_of_Id_1() { return static_cast<int32_t>(offsetof(SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B, ___Id_1)); }
inline uint32_t get_Id_1() const { return ___Id_1; }
inline uint32_t* get_address_of_Id_1() { return &___Id_1; }
inline void set_Id_1(uint32_t value)
{
___Id_1 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Audio.Playback.SessionContext
struct SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B_marshaled_pinvoke
{
char* ___PlayerName_0;
uint32_t ___Id_1;
};
// Native definition for COM marshalling of Dissonance.Audio.Playback.SessionContext
struct SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B_marshaled_com
{
Il2CppChar* ___PlayerName_0;
uint32_t ___Id_1;
};
// 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.IO.Stream
struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
// System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4;
public:
inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); }
inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; }
inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; }
inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value)
{
____activeReadWriteTask_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value);
}
inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); }
inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; }
inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; }
inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value)
{
____asyncActiveSemaphore_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value);
}
};
struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.Substring
struct Substring_t67485753F4F24B456382D330F071E9A152C4E473
{
public:
// System.String UnityEngine.InputSystem.Utilities.Substring::m_String
String_t* ___m_String_0;
// System.Int32 UnityEngine.InputSystem.Utilities.Substring::m_Index
int32_t ___m_Index_1;
// System.Int32 UnityEngine.InputSystem.Utilities.Substring::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_String_0() { return static_cast<int32_t>(offsetof(Substring_t67485753F4F24B456382D330F071E9A152C4E473, ___m_String_0)); }
inline String_t* get_m_String_0() const { return ___m_String_0; }
inline String_t** get_address_of_m_String_0() { return &___m_String_0; }
inline void set_m_String_0(String_t* value)
{
___m_String_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_String_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Substring_t67485753F4F24B456382D330F071E9A152C4E473, ___m_Index_1)); }
inline int32_t get_m_Index_1() const { return ___m_Index_1; }
inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; }
inline void set_m_Index_1(int32_t value)
{
___m_Index_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(Substring_t67485753F4F24B456382D330F071E9A152C4E473, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.Substring
struct Substring_t67485753F4F24B456382D330F071E9A152C4E473_marshaled_pinvoke
{
char* ___m_String_0;
int32_t ___m_Index_1;
int32_t ___m_Length_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.Substring
struct Substring_t67485753F4F24B456382D330F071E9A152C4E473_marshaled_com
{
Il2CppChar* ___m_String_0;
int32_t ___m_Index_1;
int32_t ___m_Length_2;
};
// UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState
struct SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt32 UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState::buttons
uint32_t ___buttons_0;
};
#pragma pack(pop, tp)
struct
{
uint32_t ___buttons_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickX_1_OffsetPadding[4];
// System.UInt16 UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState::leftStickX
uint16_t ___leftStickX_1;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickX_1_OffsetPadding_forAlignmentOnly[4];
uint16_t ___leftStickX_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickY_2_OffsetPadding[6];
// System.UInt16 UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState::leftStickY
uint16_t ___leftStickY_2;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickY_2_OffsetPadding_forAlignmentOnly[6];
uint16_t ___leftStickY_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickX_3_OffsetPadding[8];
// System.UInt16 UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState::rightStickX
uint16_t ___rightStickX_3;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickX_3_OffsetPadding_forAlignmentOnly[8];
uint16_t ___rightStickX_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickY_4_OffsetPadding[10];
// System.UInt16 UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState::rightStickY
uint16_t ___rightStickY_4;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickY_4_OffsetPadding_forAlignmentOnly[10];
uint16_t ___rightStickY_4_forAlignmentOnly;
};
};
};
uint8_t SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF__padding[20];
};
public:
inline static int32_t get_offset_of_buttons_0() { return static_cast<int32_t>(offsetof(SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF, ___buttons_0)); }
inline uint32_t get_buttons_0() const { return ___buttons_0; }
inline uint32_t* get_address_of_buttons_0() { return &___buttons_0; }
inline void set_buttons_0(uint32_t value)
{
___buttons_0 = value;
}
inline static int32_t get_offset_of_leftStickX_1() { return static_cast<int32_t>(offsetof(SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF, ___leftStickX_1)); }
inline uint16_t get_leftStickX_1() const { return ___leftStickX_1; }
inline uint16_t* get_address_of_leftStickX_1() { return &___leftStickX_1; }
inline void set_leftStickX_1(uint16_t value)
{
___leftStickX_1 = value;
}
inline static int32_t get_offset_of_leftStickY_2() { return static_cast<int32_t>(offsetof(SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF, ___leftStickY_2)); }
inline uint16_t get_leftStickY_2() const { return ___leftStickY_2; }
inline uint16_t* get_address_of_leftStickY_2() { return &___leftStickY_2; }
inline void set_leftStickY_2(uint16_t value)
{
___leftStickY_2 = value;
}
inline static int32_t get_offset_of_rightStickX_3() { return static_cast<int32_t>(offsetof(SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF, ___rightStickX_3)); }
inline uint16_t get_rightStickX_3() const { return ___rightStickX_3; }
inline uint16_t* get_address_of_rightStickX_3() { return &___rightStickX_3; }
inline void set_rightStickX_3(uint16_t value)
{
___rightStickX_3 = value;
}
inline static int32_t get_offset_of_rightStickY_4() { return static_cast<int32_t>(offsetof(SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF, ___rightStickY_4)); }
inline uint16_t get_rightStickY_4() const { return ___rightStickY_4; }
inline uint16_t* get_address_of_rightStickY_4() { return &___rightStickY_4; }
inline void set_rightStickY_4(uint16_t value)
{
___rightStickY_4 = value;
}
};
// Mirror.SimpleWeb.TcpConfig
struct TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE
{
public:
// System.Boolean Mirror.SimpleWeb.TcpConfig::noDelay
bool ___noDelay_0;
// System.Int32 Mirror.SimpleWeb.TcpConfig::sendTimeout
int32_t ___sendTimeout_1;
// System.Int32 Mirror.SimpleWeb.TcpConfig::receiveTimeout
int32_t ___receiveTimeout_2;
public:
inline static int32_t get_offset_of_noDelay_0() { return static_cast<int32_t>(offsetof(TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE, ___noDelay_0)); }
inline bool get_noDelay_0() const { return ___noDelay_0; }
inline bool* get_address_of_noDelay_0() { return &___noDelay_0; }
inline void set_noDelay_0(bool value)
{
___noDelay_0 = value;
}
inline static int32_t get_offset_of_sendTimeout_1() { return static_cast<int32_t>(offsetof(TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE, ___sendTimeout_1)); }
inline int32_t get_sendTimeout_1() const { return ___sendTimeout_1; }
inline int32_t* get_address_of_sendTimeout_1() { return &___sendTimeout_1; }
inline void set_sendTimeout_1(int32_t value)
{
___sendTimeout_1 = value;
}
inline static int32_t get_offset_of_receiveTimeout_2() { return static_cast<int32_t>(offsetof(TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE, ___receiveTimeout_2)); }
inline int32_t get_receiveTimeout_2() const { return ___receiveTimeout_2; }
inline int32_t* get_address_of_receiveTimeout_2() { return &___receiveTimeout_2; }
inline void set_receiveTimeout_2(int32_t value)
{
___receiveTimeout_2 = value;
}
};
// Native definition for P/Invoke marshalling of Mirror.SimpleWeb.TcpConfig
struct TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE_marshaled_pinvoke
{
int32_t ___noDelay_0;
int32_t ___sendTimeout_1;
int32_t ___receiveTimeout_2;
};
// Native definition for COM marshalling of Mirror.SimpleWeb.TcpConfig
struct TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE_marshaled_com
{
int32_t ___noDelay_0;
int32_t ___sendTimeout_1;
int32_t ___receiveTimeout_2;
};
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory
struct TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0
{
public:
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_History
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___m_History_0;
// UnityEngine.InputSystem.EnhancedTouch.Finger UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_Finger
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * ___m_Finger_1;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_Count
int32_t ___m_Count_2;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_StartIndex
int32_t ___m_StartIndex_3;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory::m_Version
uint32_t ___m_Version_4;
public:
inline static int32_t get_offset_of_m_History_0() { return static_cast<int32_t>(offsetof(TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0, ___m_History_0)); }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * get_m_History_0() const { return ___m_History_0; }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 ** get_address_of_m_History_0() { return &___m_History_0; }
inline void set_m_History_0(InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * value)
{
___m_History_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_History_0), (void*)value);
}
inline static int32_t get_offset_of_m_Finger_1() { return static_cast<int32_t>(offsetof(TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0, ___m_Finger_1)); }
inline Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * get_m_Finger_1() const { return ___m_Finger_1; }
inline Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB ** get_address_of_m_Finger_1() { return &___m_Finger_1; }
inline void set_m_Finger_1(Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * value)
{
___m_Finger_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Finger_1), (void*)value);
}
inline static int32_t get_offset_of_m_Count_2() { return static_cast<int32_t>(offsetof(TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0, ___m_Count_2)); }
inline int32_t get_m_Count_2() const { return ___m_Count_2; }
inline int32_t* get_address_of_m_Count_2() { return &___m_Count_2; }
inline void set_m_Count_2(int32_t value)
{
___m_Count_2 = value;
}
inline static int32_t get_offset_of_m_StartIndex_3() { return static_cast<int32_t>(offsetof(TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0, ___m_StartIndex_3)); }
inline int32_t get_m_StartIndex_3() const { return ___m_StartIndex_3; }
inline int32_t* get_address_of_m_StartIndex_3() { return &___m_StartIndex_3; }
inline void set_m_StartIndex_3(int32_t value)
{
___m_StartIndex_3 = value;
}
inline static int32_t get_offset_of_m_Version_4() { return static_cast<int32_t>(offsetof(TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0, ___m_Version_4)); }
inline uint32_t get_m_Version_4() const { return ___m_Version_4; }
inline uint32_t* get_address_of_m_Version_4() { return &___m_Version_4; }
inline void set_m_Version_4(uint32_t value)
{
___m_Version_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.EnhancedTouch.TouchHistory
struct TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0_marshaled_pinvoke
{
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___m_History_0;
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * ___m_Finger_1;
int32_t ___m_Count_2;
int32_t ___m_StartIndex_3;
uint32_t ___m_Version_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.EnhancedTouch.TouchHistory
struct TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0_marshaled_com
{
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___m_History_0;
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * ___m_Finger_1;
int32_t ___m_Count_2;
int32_t ___m_StartIndex_3;
uint32_t ___m_Version_4;
};
// UnityEngine.XR.ARSubsystems.TrackableId
struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId1
uint64_t ___m_SubId1_2;
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId2
uint64_t ___m_SubId2_3;
public:
inline static int32_t get_offset_of_m_SubId1_2() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId1_2)); }
inline uint64_t get_m_SubId1_2() const { return ___m_SubId1_2; }
inline uint64_t* get_address_of_m_SubId1_2() { return &___m_SubId1_2; }
inline void set_m_SubId1_2(uint64_t value)
{
___m_SubId1_2 = value;
}
inline static int32_t get_offset_of_m_SubId2_3() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId2_3)); }
inline uint64_t get_m_SubId2_3() const { return ___m_SubId2_3; }
inline uint64_t* get_address_of_m_SubId2_3() { return &___m_SubId2_3; }
inline void set_m_SubId2_3(uint64_t value)
{
___m_SubId2_3 = value;
}
};
struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields
{
public:
// System.Text.RegularExpressions.Regex UnityEngine.XR.ARSubsystems.TrackableId::s_TrackableIdRegex
Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___s_TrackableIdRegex_0;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::s_InvalidId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___s_InvalidId_1;
public:
inline static int32_t get_offset_of_s_TrackableIdRegex_0() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_TrackableIdRegex_0)); }
inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_s_TrackableIdRegex_0() const { return ___s_TrackableIdRegex_0; }
inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_s_TrackableIdRegex_0() { return &___s_TrackableIdRegex_0; }
inline void set_s_TrackableIdRegex_0(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value)
{
___s_TrackableIdRegex_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_TrackableIdRegex_0), (void*)value);
}
inline static int32_t get_offset_of_s_InvalidId_1() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_InvalidId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_s_InvalidId_1() const { return ___s_InvalidId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_s_InvalidId_1() { return &___s_InvalidId_1; }
inline void set_s_InvalidId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___s_InvalidId_1 = value;
}
};
// UnityEngine.InputSystem.Utilities.TypeTable
struct TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57
{
public:
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Type> UnityEngine.InputSystem.Utilities.TypeTable::table
Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * ___table_0;
public:
inline static int32_t get_offset_of_table_0() { return static_cast<int32_t>(offsetof(TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57, ___table_0)); }
inline Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * get_table_0() const { return ___table_0; }
inline Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E ** get_address_of_table_0() { return &___table_0; }
inline void set_table_0(Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * value)
{
___table_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___table_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.TypeTable
struct TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57_marshaled_pinvoke
{
Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * ___table_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.TypeTable
struct TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57_marshaled_com
{
Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * ___table_0;
};
// 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;
}
};
// Dissonance.Datastructures.Union16
struct Union16_t324DC17FB7D0D571A92483256A0D1F27F7002E32
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt16 Dissonance.Datastructures.Union16::_ushort
uint16_t ____ushort_0;
};
#pragma pack(pop, tp)
struct
{
uint16_t ____ushort_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte Dissonance.Datastructures.Union16::_byte1
uint8_t ____byte1_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ____byte1_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ____byte2_2_OffsetPadding[1];
// System.Byte Dissonance.Datastructures.Union16::_byte2
uint8_t ____byte2_2;
};
#pragma pack(pop, tp)
struct
{
char ____byte2_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ____byte2_2_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of__ushort_0() { return static_cast<int32_t>(offsetof(Union16_t324DC17FB7D0D571A92483256A0D1F27F7002E32, ____ushort_0)); }
inline uint16_t get__ushort_0() const { return ____ushort_0; }
inline uint16_t* get_address_of__ushort_0() { return &____ushort_0; }
inline void set__ushort_0(uint16_t value)
{
____ushort_0 = value;
}
inline static int32_t get_offset_of__byte1_1() { return static_cast<int32_t>(offsetof(Union16_t324DC17FB7D0D571A92483256A0D1F27F7002E32, ____byte1_1)); }
inline uint8_t get__byte1_1() const { return ____byte1_1; }
inline uint8_t* get_address_of__byte1_1() { return &____byte1_1; }
inline void set__byte1_1(uint8_t value)
{
____byte1_1 = value;
}
inline static int32_t get_offset_of__byte2_2() { return static_cast<int32_t>(offsetof(Union16_t324DC17FB7D0D571A92483256A0D1F27F7002E32, ____byte2_2)); }
inline uint8_t get__byte2_2() const { return ____byte2_2; }
inline uint8_t* get_address_of__byte2_2() { return &____byte2_2; }
inline void set__byte2_2(uint8_t value)
{
____byte2_2 = value;
}
};
// Dissonance.Datastructures.Union32
struct Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt32 Dissonance.Datastructures.Union32::_uint
uint32_t ____uint_0;
};
#pragma pack(pop, tp)
struct
{
uint32_t ____uint_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte Dissonance.Datastructures.Union32::_byte1
uint8_t ____byte1_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ____byte1_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ____byte2_2_OffsetPadding[1];
// System.Byte Dissonance.Datastructures.Union32::_byte2
uint8_t ____byte2_2;
};
#pragma pack(pop, tp)
struct
{
char ____byte2_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ____byte2_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ____byte3_3_OffsetPadding[2];
// System.Byte Dissonance.Datastructures.Union32::_byte3
uint8_t ____byte3_3;
};
#pragma pack(pop, tp)
struct
{
char ____byte3_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ____byte3_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ____byte4_4_OffsetPadding[3];
// System.Byte Dissonance.Datastructures.Union32::_byte4
uint8_t ____byte4_4;
};
#pragma pack(pop, tp)
struct
{
char ____byte4_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ____byte4_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of__uint_0() { return static_cast<int32_t>(offsetof(Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B, ____uint_0)); }
inline uint32_t get__uint_0() const { return ____uint_0; }
inline uint32_t* get_address_of__uint_0() { return &____uint_0; }
inline void set__uint_0(uint32_t value)
{
____uint_0 = value;
}
inline static int32_t get_offset_of__byte1_1() { return static_cast<int32_t>(offsetof(Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B, ____byte1_1)); }
inline uint8_t get__byte1_1() const { return ____byte1_1; }
inline uint8_t* get_address_of__byte1_1() { return &____byte1_1; }
inline void set__byte1_1(uint8_t value)
{
____byte1_1 = value;
}
inline static int32_t get_offset_of__byte2_2() { return static_cast<int32_t>(offsetof(Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B, ____byte2_2)); }
inline uint8_t get__byte2_2() const { return ____byte2_2; }
inline uint8_t* get_address_of__byte2_2() { return &____byte2_2; }
inline void set__byte2_2(uint8_t value)
{
____byte2_2 = value;
}
inline static int32_t get_offset_of__byte3_3() { return static_cast<int32_t>(offsetof(Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B, ____byte3_3)); }
inline uint8_t get__byte3_3() const { return ____byte3_3; }
inline uint8_t* get_address_of__byte3_3() { return &____byte3_3; }
inline void set__byte3_3(uint8_t value)
{
____byte3_3 = value;
}
inline static int32_t get_offset_of__byte4_4() { return static_cast<int32_t>(offsetof(Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B, ____byte4_4)); }
inline uint8_t get__byte4_4() const { return ____byte4_4; }
inline uint8_t* get_address_of__byte4_4() { return &____byte4_4; }
inline void set__byte4_4(uint8_t value)
{
____byte4_4 = value;
}
};
// Dissonance.Unit
struct Unit_t5784216E1DBF6B44E3579FB196E513B08D227195
{
public:
union
{
struct
{
};
uint8_t Unit_t5784216E1DBF6B44E3579FB196E513B08D227195__padding[1];
};
public:
};
struct Unit_t5784216E1DBF6B44E3579FB196E513B08D227195_StaticFields
{
public:
// Dissonance.Unit Dissonance.Unit::None
Unit_t5784216E1DBF6B44E3579FB196E513B08D227195 ___None_0;
public:
inline static int32_t get_offset_of_None_0() { return static_cast<int32_t>(offsetof(Unit_t5784216E1DBF6B44E3579FB196E513B08D227195_StaticFields, ___None_0)); }
inline Unit_t5784216E1DBF6B44E3579FB196E513B08D227195 get_None_0() const { return ___None_0; }
inline Unit_t5784216E1DBF6B44E3579FB196E513B08D227195 * get_address_of_None_0() { return &___None_0; }
inline void set_None_0(Unit_t5784216E1DBF6B44E3579FB196E513B08D227195 value)
{
___None_0 = value;
}
};
// UnityEngine.InputSystem.XR.UsageHint
struct UsageHint_t83A289C8F03488FF6A5515D37C8F605CEED3C09B
{
public:
// System.String UnityEngine.InputSystem.XR.UsageHint::content
String_t* ___content_0;
public:
inline static int32_t get_offset_of_content_0() { return static_cast<int32_t>(offsetof(UsageHint_t83A289C8F03488FF6A5515D37C8F605CEED3C09B, ___content_0)); }
inline String_t* get_content_0() const { return ___content_0; }
inline String_t** get_address_of_content_0() { return &___content_0; }
inline void set_content_0(String_t* value)
{
___content_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___content_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.XR.UsageHint
struct UsageHint_t83A289C8F03488FF6A5515D37C8F605CEED3C09B_marshaled_pinvoke
{
char* ___content_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.XR.UsageHint
struct UsageHint_t83A289C8F03488FF6A5515D37C8F605CEED3C09B_marshaled_com
{
Il2CppChar* ___content_0;
};
// UnityEngine.VFX.VFXOutputEventArgs
struct VFXOutputEventArgs_tE7E97EDFD67E4561E4412D2E4B1C999F95850BF5
{
public:
// System.Int32 UnityEngine.VFX.VFXOutputEventArgs::<nameId>k__BackingField
int32_t ___U3CnameIdU3Ek__BackingField_0;
// UnityEngine.VFX.VFXEventAttribute UnityEngine.VFX.VFXOutputEventArgs::<eventAttribute>k__BackingField
VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF * ___U3CeventAttributeU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CnameIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(VFXOutputEventArgs_tE7E97EDFD67E4561E4412D2E4B1C999F95850BF5, ___U3CnameIdU3Ek__BackingField_0)); }
inline int32_t get_U3CnameIdU3Ek__BackingField_0() const { return ___U3CnameIdU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CnameIdU3Ek__BackingField_0() { return &___U3CnameIdU3Ek__BackingField_0; }
inline void set_U3CnameIdU3Ek__BackingField_0(int32_t value)
{
___U3CnameIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CeventAttributeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(VFXOutputEventArgs_tE7E97EDFD67E4561E4412D2E4B1C999F95850BF5, ___U3CeventAttributeU3Ek__BackingField_1)); }
inline VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF * get_U3CeventAttributeU3Ek__BackingField_1() const { return ___U3CeventAttributeU3Ek__BackingField_1; }
inline VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF ** get_address_of_U3CeventAttributeU3Ek__BackingField_1() { return &___U3CeventAttributeU3Ek__BackingField_1; }
inline void set_U3CeventAttributeU3Ek__BackingField_1(VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF * value)
{
___U3CeventAttributeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CeventAttributeU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.VFX.VFXOutputEventArgs
struct VFXOutputEventArgs_tE7E97EDFD67E4561E4412D2E4B1C999F95850BF5_marshaled_pinvoke
{
int32_t ___U3CnameIdU3Ek__BackingField_0;
VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF_marshaled_pinvoke* ___U3CeventAttributeU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.VFX.VFXOutputEventArgs
struct VFXOutputEventArgs_tE7E97EDFD67E4561E4412D2E4B1C999F95850BF5_marshaled_com
{
int32_t ___U3CnameIdU3Ek__BackingField_0;
VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF_marshaled_com* ___U3CeventAttributeU3Ek__BackingField_1;
};
// 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.InputSystem.Utilities.Vector2MagnitudeComparer
struct Vector2MagnitudeComparer_t89D148099EB6C404C22E24BECEBBD9DA3D8DBEFB
{
public:
union
{
struct
{
};
uint8_t Vector2MagnitudeComparer_t89D148099EB6C404C22E24BECEBBD9DA3D8DBEFB__padding[1];
};
public:
};
// 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.InputSystem.Utilities.Vector3MagnitudeComparer
struct Vector3MagnitudeComparer_tE1ED9817C5D673AF5C54985805B6D0BF63A7652F
{
public:
union
{
struct
{
};
uint8_t Vector3MagnitudeComparer_tE1ED9817C5D673AF5C54985805B6D0BF63A7652F__padding[1];
};
public:
};
// Dissonance.Networking.Client.VoicePacketOptions
struct VoicePacketOptions_t0C429968A3E59EC5F770CDC8B13DCBF7F23A0B02
{
public:
// System.Byte Dissonance.Networking.Client.VoicePacketOptions::_bitfield
uint8_t ____bitfield_1;
public:
inline static int32_t get_offset_of__bitfield_1() { return static_cast<int32_t>(offsetof(VoicePacketOptions_t0C429968A3E59EC5F770CDC8B13DCBF7F23A0B02, ____bitfield_1)); }
inline uint8_t get__bitfield_1() const { return ____bitfield_1; }
inline uint8_t* get_address_of__bitfield_1() { return &____bitfield_1; }
inline void set__bitfield_1(uint8_t value)
{
____bitfield_1 = value;
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// Dissonance.Datastructures.WindowDeviationCalculator
struct WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F : public BaseWindowCalculator_1_tB6FBD04DDF34A827BECDC96AE22D99EE0922B31A
{
public:
// System.Single Dissonance.Datastructures.WindowDeviationCalculator::_sum
float ____sum_1;
// System.Single Dissonance.Datastructures.WindowDeviationCalculator::_sumOfSquares
float ____sumOfSquares_2;
// System.Single Dissonance.Datastructures.WindowDeviationCalculator::<StdDev>k__BackingField
float ___U3CStdDevU3Ek__BackingField_3;
// System.Single Dissonance.Datastructures.WindowDeviationCalculator::<Mean>k__BackingField
float ___U3CMeanU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of__sum_1() { return static_cast<int32_t>(offsetof(WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F, ____sum_1)); }
inline float get__sum_1() const { return ____sum_1; }
inline float* get_address_of__sum_1() { return &____sum_1; }
inline void set__sum_1(float value)
{
____sum_1 = value;
}
inline static int32_t get_offset_of__sumOfSquares_2() { return static_cast<int32_t>(offsetof(WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F, ____sumOfSquares_2)); }
inline float get__sumOfSquares_2() const { return ____sumOfSquares_2; }
inline float* get_address_of__sumOfSquares_2() { return &____sumOfSquares_2; }
inline void set__sumOfSquares_2(float value)
{
____sumOfSquares_2 = value;
}
inline static int32_t get_offset_of_U3CStdDevU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F, ___U3CStdDevU3Ek__BackingField_3)); }
inline float get_U3CStdDevU3Ek__BackingField_3() const { return ___U3CStdDevU3Ek__BackingField_3; }
inline float* get_address_of_U3CStdDevU3Ek__BackingField_3() { return &___U3CStdDevU3Ek__BackingField_3; }
inline void set_U3CStdDevU3Ek__BackingField_3(float value)
{
___U3CStdDevU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CMeanU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F, ___U3CMeanU3Ek__BackingField_4)); }
inline float get_U3CMeanU3Ek__BackingField_4() const { return ___U3CMeanU3Ek__BackingField_4; }
inline float* get_address_of_U3CMeanU3Ek__BackingField_4() { return &___U3CMeanU3Ek__BackingField_4; }
inline void set_U3CMeanU3Ek__BackingField_4(float value)
{
___U3CMeanU3Ek__BackingField_4 = value;
}
};
// UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState
struct XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt16 UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState::buttons
uint16_t ___buttons_0;
};
#pragma pack(pop, tp)
struct
{
uint16_t ___buttons_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftTrigger_1_OffsetPadding[2];
// System.Byte UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState::leftTrigger
uint8_t ___leftTrigger_1;
};
#pragma pack(pop, tp)
struct
{
char ___leftTrigger_1_OffsetPadding_forAlignmentOnly[2];
uint8_t ___leftTrigger_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightTrigger_2_OffsetPadding[3];
// System.Byte UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState::rightTrigger
uint8_t ___rightTrigger_2;
};
#pragma pack(pop, tp)
struct
{
char ___rightTrigger_2_OffsetPadding_forAlignmentOnly[3];
uint8_t ___rightTrigger_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickX_3_OffsetPadding[4];
// System.Int16 UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState::leftStickX
int16_t ___leftStickX_3;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickX_3_OffsetPadding_forAlignmentOnly[4];
int16_t ___leftStickX_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickY_4_OffsetPadding[6];
// System.Int16 UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState::leftStickY
int16_t ___leftStickY_4;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickY_4_OffsetPadding_forAlignmentOnly[6];
int16_t ___leftStickY_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickX_5_OffsetPadding[8];
// System.Int16 UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState::rightStickX
int16_t ___rightStickX_5;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickX_5_OffsetPadding_forAlignmentOnly[8];
int16_t ___rightStickX_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickY_6_OffsetPadding[10];
// System.Int16 UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState::rightStickY
int16_t ___rightStickY_6;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickY_6_OffsetPadding_forAlignmentOnly[10];
int16_t ___rightStickY_6_forAlignmentOnly;
};
};
};
uint8_t XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D__padding[4];
};
public:
inline static int32_t get_offset_of_buttons_0() { return static_cast<int32_t>(offsetof(XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D, ___buttons_0)); }
inline uint16_t get_buttons_0() const { return ___buttons_0; }
inline uint16_t* get_address_of_buttons_0() { return &___buttons_0; }
inline void set_buttons_0(uint16_t value)
{
___buttons_0 = value;
}
inline static int32_t get_offset_of_leftTrigger_1() { return static_cast<int32_t>(offsetof(XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D, ___leftTrigger_1)); }
inline uint8_t get_leftTrigger_1() const { return ___leftTrigger_1; }
inline uint8_t* get_address_of_leftTrigger_1() { return &___leftTrigger_1; }
inline void set_leftTrigger_1(uint8_t value)
{
___leftTrigger_1 = value;
}
inline static int32_t get_offset_of_rightTrigger_2() { return static_cast<int32_t>(offsetof(XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D, ___rightTrigger_2)); }
inline uint8_t get_rightTrigger_2() const { return ___rightTrigger_2; }
inline uint8_t* get_address_of_rightTrigger_2() { return &___rightTrigger_2; }
inline void set_rightTrigger_2(uint8_t value)
{
___rightTrigger_2 = value;
}
inline static int32_t get_offset_of_leftStickX_3() { return static_cast<int32_t>(offsetof(XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D, ___leftStickX_3)); }
inline int16_t get_leftStickX_3() const { return ___leftStickX_3; }
inline int16_t* get_address_of_leftStickX_3() { return &___leftStickX_3; }
inline void set_leftStickX_3(int16_t value)
{
___leftStickX_3 = value;
}
inline static int32_t get_offset_of_leftStickY_4() { return static_cast<int32_t>(offsetof(XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D, ___leftStickY_4)); }
inline int16_t get_leftStickY_4() const { return ___leftStickY_4; }
inline int16_t* get_address_of_leftStickY_4() { return &___leftStickY_4; }
inline void set_leftStickY_4(int16_t value)
{
___leftStickY_4 = value;
}
inline static int32_t get_offset_of_rightStickX_5() { return static_cast<int32_t>(offsetof(XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D, ___rightStickX_5)); }
inline int16_t get_rightStickX_5() const { return ___rightStickX_5; }
inline int16_t* get_address_of_rightStickX_5() { return &___rightStickX_5; }
inline void set_rightStickX_5(int16_t value)
{
___rightStickX_5 = value;
}
inline static int32_t get_offset_of_rightStickY_6() { return static_cast<int32_t>(offsetof(XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D, ___rightStickY_6)); }
inline int16_t get_rightStickY_6() const { return ___rightStickY_6; }
inline int16_t* get_address_of_rightStickY_6() { return &___rightStickY_6; }
inline void set_rightStickY_6(int16_t value)
{
___rightStickY_6 = value;
}
};
// UnityEngine.XR.Management.XRConfigurationDataAttribute
struct XRConfigurationDataAttribute_tC94F83D607B934FF3F894802DF857C51AA165236 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String UnityEngine.XR.Management.XRConfigurationDataAttribute::<displayName>k__BackingField
String_t* ___U3CdisplayNameU3Ek__BackingField_0;
// System.String UnityEngine.XR.Management.XRConfigurationDataAttribute::<buildSettingsKey>k__BackingField
String_t* ___U3CbuildSettingsKeyU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CdisplayNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XRConfigurationDataAttribute_tC94F83D607B934FF3F894802DF857C51AA165236, ___U3CdisplayNameU3Ek__BackingField_0)); }
inline String_t* get_U3CdisplayNameU3Ek__BackingField_0() const { return ___U3CdisplayNameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CdisplayNameU3Ek__BackingField_0() { return &___U3CdisplayNameU3Ek__BackingField_0; }
inline void set_U3CdisplayNameU3Ek__BackingField_0(String_t* value)
{
___U3CdisplayNameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayNameU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CbuildSettingsKeyU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XRConfigurationDataAttribute_tC94F83D607B934FF3F894802DF857C51AA165236, ___U3CbuildSettingsKeyU3Ek__BackingField_1)); }
inline String_t* get_U3CbuildSettingsKeyU3Ek__BackingField_1() const { return ___U3CbuildSettingsKeyU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CbuildSettingsKeyU3Ek__BackingField_1() { return &___U3CbuildSettingsKeyU3Ek__BackingField_1; }
inline void set_U3CbuildSettingsKeyU3Ek__BackingField_1(String_t* value)
{
___U3CbuildSettingsKeyU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CbuildSettingsKeyU3Ek__BackingField_1), (void*)value);
}
};
// UnityEngine.Yoga.YogaSize
struct YogaSize_tC805BF63DE9A9E4B9984B964AB0A1CFA04ADC1FD
{
public:
// System.Single UnityEngine.Yoga.YogaSize::width
float ___width_0;
// System.Single UnityEngine.Yoga.YogaSize::height
float ___height_1;
public:
inline static int32_t get_offset_of_width_0() { return static_cast<int32_t>(offsetof(YogaSize_tC805BF63DE9A9E4B9984B964AB0A1CFA04ADC1FD, ___width_0)); }
inline float get_width_0() const { return ___width_0; }
inline float* get_address_of_width_0() { return &___width_0; }
inline void set_width_0(float value)
{
___width_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(YogaSize_tC805BF63DE9A9E4B9984B964AB0A1CFA04ADC1FD, ___height_1)); }
inline float get_height_1() const { return ___height_1; }
inline float* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(float value)
{
___height_1 = value;
}
};
// <PrivateImplementationDetails>/__StaticArrayInitTypeSize=24
struct __StaticArrayInitTypeSizeU3D24_t805D53F76E7ABD63008C8E5943E79D895AFF5586
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D24_t805D53F76E7ABD63008C8E5943E79D895AFF5586__padding[24];
};
public:
};
// UnityEngine.InputSystem.LowLevel.ActionEvent/<m_ValueData>e__FixedBuffer
struct U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.ActionEvent/<m_ValueData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B__padding[1];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// Dissonance.Audio.AecDiagnostics/AecStats
struct AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2
{
public:
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::DelayMedian
float ___DelayMedian_0;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::DelayStdDev
float ___DelayStdDev_1;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::FractionPoorDelays
float ___FractionPoorDelays_2;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::EchoReturnLossAverage
float ___EchoReturnLossAverage_3;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::EchoReturnLossMin
float ___EchoReturnLossMin_4;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::EchoReturnLossMax
float ___EchoReturnLossMax_5;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::EchoReturnLossEnhancementAverage
float ___EchoReturnLossEnhancementAverage_6;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::EchoReturnLossEnhancementMin
float ___EchoReturnLossEnhancementMin_7;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::EchoReturnLossEnhancementMax
float ___EchoReturnLossEnhancementMax_8;
// System.Single Dissonance.Audio.AecDiagnostics/AecStats::ResidualEchoLikelihood
float ___ResidualEchoLikelihood_9;
public:
inline static int32_t get_offset_of_DelayMedian_0() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___DelayMedian_0)); }
inline float get_DelayMedian_0() const { return ___DelayMedian_0; }
inline float* get_address_of_DelayMedian_0() { return &___DelayMedian_0; }
inline void set_DelayMedian_0(float value)
{
___DelayMedian_0 = value;
}
inline static int32_t get_offset_of_DelayStdDev_1() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___DelayStdDev_1)); }
inline float get_DelayStdDev_1() const { return ___DelayStdDev_1; }
inline float* get_address_of_DelayStdDev_1() { return &___DelayStdDev_1; }
inline void set_DelayStdDev_1(float value)
{
___DelayStdDev_1 = value;
}
inline static int32_t get_offset_of_FractionPoorDelays_2() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___FractionPoorDelays_2)); }
inline float get_FractionPoorDelays_2() const { return ___FractionPoorDelays_2; }
inline float* get_address_of_FractionPoorDelays_2() { return &___FractionPoorDelays_2; }
inline void set_FractionPoorDelays_2(float value)
{
___FractionPoorDelays_2 = value;
}
inline static int32_t get_offset_of_EchoReturnLossAverage_3() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___EchoReturnLossAverage_3)); }
inline float get_EchoReturnLossAverage_3() const { return ___EchoReturnLossAverage_3; }
inline float* get_address_of_EchoReturnLossAverage_3() { return &___EchoReturnLossAverage_3; }
inline void set_EchoReturnLossAverage_3(float value)
{
___EchoReturnLossAverage_3 = value;
}
inline static int32_t get_offset_of_EchoReturnLossMin_4() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___EchoReturnLossMin_4)); }
inline float get_EchoReturnLossMin_4() const { return ___EchoReturnLossMin_4; }
inline float* get_address_of_EchoReturnLossMin_4() { return &___EchoReturnLossMin_4; }
inline void set_EchoReturnLossMin_4(float value)
{
___EchoReturnLossMin_4 = value;
}
inline static int32_t get_offset_of_EchoReturnLossMax_5() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___EchoReturnLossMax_5)); }
inline float get_EchoReturnLossMax_5() const { return ___EchoReturnLossMax_5; }
inline float* get_address_of_EchoReturnLossMax_5() { return &___EchoReturnLossMax_5; }
inline void set_EchoReturnLossMax_5(float value)
{
___EchoReturnLossMax_5 = value;
}
inline static int32_t get_offset_of_EchoReturnLossEnhancementAverage_6() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___EchoReturnLossEnhancementAverage_6)); }
inline float get_EchoReturnLossEnhancementAverage_6() const { return ___EchoReturnLossEnhancementAverage_6; }
inline float* get_address_of_EchoReturnLossEnhancementAverage_6() { return &___EchoReturnLossEnhancementAverage_6; }
inline void set_EchoReturnLossEnhancementAverage_6(float value)
{
___EchoReturnLossEnhancementAverage_6 = value;
}
inline static int32_t get_offset_of_EchoReturnLossEnhancementMin_7() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___EchoReturnLossEnhancementMin_7)); }
inline float get_EchoReturnLossEnhancementMin_7() const { return ___EchoReturnLossEnhancementMin_7; }
inline float* get_address_of_EchoReturnLossEnhancementMin_7() { return &___EchoReturnLossEnhancementMin_7; }
inline void set_EchoReturnLossEnhancementMin_7(float value)
{
___EchoReturnLossEnhancementMin_7 = value;
}
inline static int32_t get_offset_of_EchoReturnLossEnhancementMax_8() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___EchoReturnLossEnhancementMax_8)); }
inline float get_EchoReturnLossEnhancementMax_8() const { return ___EchoReturnLossEnhancementMax_8; }
inline float* get_address_of_EchoReturnLossEnhancementMax_8() { return &___EchoReturnLossEnhancementMax_8; }
inline void set_EchoReturnLossEnhancementMax_8(float value)
{
___EchoReturnLossEnhancementMax_8 = value;
}
inline static int32_t get_offset_of_ResidualEchoLikelihood_9() { return static_cast<int32_t>(offsetof(AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2, ___ResidualEchoLikelihood_9)); }
inline float get_ResidualEchoLikelihood_9() const { return ___ResidualEchoLikelihood_9; }
inline float* get_address_of_ResidualEchoLikelihood_9() { return &___ResidualEchoLikelihood_9; }
inline void set_ResidualEchoLikelihood_9(float value)
{
___ResidualEchoLikelihood_9 = value;
}
};
// Mirror.Authenticators.BasicAuthenticator/AuthRequestMessage
struct AuthRequestMessage_tEC038AE7A0DA76DBBF6E91676D5D31D6AC0B1776
{
public:
// System.String Mirror.Authenticators.BasicAuthenticator/AuthRequestMessage::authUsername
String_t* ___authUsername_0;
// System.String Mirror.Authenticators.BasicAuthenticator/AuthRequestMessage::authPassword
String_t* ___authPassword_1;
public:
inline static int32_t get_offset_of_authUsername_0() { return static_cast<int32_t>(offsetof(AuthRequestMessage_tEC038AE7A0DA76DBBF6E91676D5D31D6AC0B1776, ___authUsername_0)); }
inline String_t* get_authUsername_0() const { return ___authUsername_0; }
inline String_t** get_address_of_authUsername_0() { return &___authUsername_0; }
inline void set_authUsername_0(String_t* value)
{
___authUsername_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___authUsername_0), (void*)value);
}
inline static int32_t get_offset_of_authPassword_1() { return static_cast<int32_t>(offsetof(AuthRequestMessage_tEC038AE7A0DA76DBBF6E91676D5D31D6AC0B1776, ___authPassword_1)); }
inline String_t* get_authPassword_1() const { return ___authPassword_1; }
inline String_t** get_address_of_authPassword_1() { return &___authPassword_1; }
inline void set_authPassword_1(String_t* value)
{
___authPassword_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___authPassword_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.Authenticators.BasicAuthenticator/AuthRequestMessage
struct AuthRequestMessage_tEC038AE7A0DA76DBBF6E91676D5D31D6AC0B1776_marshaled_pinvoke
{
char* ___authUsername_0;
char* ___authPassword_1;
};
// Native definition for COM marshalling of Mirror.Authenticators.BasicAuthenticator/AuthRequestMessage
struct AuthRequestMessage_tEC038AE7A0DA76DBBF6E91676D5D31D6AC0B1776_marshaled_com
{
Il2CppChar* ___authUsername_0;
Il2CppChar* ___authPassword_1;
};
// Mirror.Authenticators.BasicAuthenticator/AuthResponseMessage
struct AuthResponseMessage_tAB2A4012F8D29C41FEE093148E31470EFD93FA00
{
public:
// System.Byte Mirror.Authenticators.BasicAuthenticator/AuthResponseMessage::code
uint8_t ___code_0;
// System.String Mirror.Authenticators.BasicAuthenticator/AuthResponseMessage::message
String_t* ___message_1;
public:
inline static int32_t get_offset_of_code_0() { return static_cast<int32_t>(offsetof(AuthResponseMessage_tAB2A4012F8D29C41FEE093148E31470EFD93FA00, ___code_0)); }
inline uint8_t get_code_0() const { return ___code_0; }
inline uint8_t* get_address_of_code_0() { return &___code_0; }
inline void set_code_0(uint8_t value)
{
___code_0 = value;
}
inline static int32_t get_offset_of_message_1() { return static_cast<int32_t>(offsetof(AuthResponseMessage_tAB2A4012F8D29C41FEE093148E31470EFD93FA00, ___message_1)); }
inline String_t* get_message_1() const { return ___message_1; }
inline String_t** get_address_of_message_1() { return &___message_1; }
inline void set_message_1(String_t* value)
{
___message_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___message_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.Authenticators.BasicAuthenticator/AuthResponseMessage
struct AuthResponseMessage_tAB2A4012F8D29C41FEE093148E31470EFD93FA00_marshaled_pinvoke
{
uint8_t ___code_0;
char* ___message_1;
};
// Native definition for COM marshalling of Mirror.Authenticators.BasicAuthenticator/AuthResponseMessage
struct AuthResponseMessage_tAB2A4012F8D29C41FEE093148E31470EFD93FA00_marshaled_com
{
uint8_t ___code_0;
Il2CppChar* ___message_1;
};
// Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage
struct CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1
{
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);
}
};
// Native definition for P/Invoke marshalling of Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage
struct CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_marshaled_pinvoke
{
char* ___name_0;
};
// Native definition for COM marshalling of Mirror.Examples.Chat.ChatNetworkManager/CreatePlayerMessage
struct CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1_marshaled_com
{
Il2CppChar* ___name_0;
};
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent/<stateData>e__FixedBuffer
struct U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.DeltaStateEvent/<stateData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F__padding[1];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport/<padding3>e__FixedBuffer
struct U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport/<padding3>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794__padding[8];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/<unknown1>e__FixedBuffer
struct U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/<unknown1>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE__padding[2];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/<unknown2>e__FixedBuffer
struct U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/<unknown2>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A__padding[23];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08
{
public:
union
{
struct
{
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer::FixedElementField
Il2CppChar ___FixedElementField_0;
};
uint8_t U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08__padding[128];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08, ___FixedElementField_0)); }
inline Il2CppChar get_FixedElementField_0() const { return ___FixedElementField_0; }
inline Il2CppChar* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(Il2CppChar value)
{
___FixedElementField_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08_marshaled_pinvoke
{
union
{
struct
{
uint8_t ___FixedElementField_0;
};
uint8_t U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08__padding[128];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08_marshaled_com
{
union
{
struct
{
uint8_t ___FixedElementField_0;
};
uint8_t U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08__padding[128];
};
};
// UnityEngine.InputSystem.Utilities.InputActionTrace/ActionEventPtr
struct ActionEventPtr_t6AC96D1777BC558C798E71FD26B4A4C7A3505862
{
public:
// UnityEngine.InputSystem.InputActionState UnityEngine.InputSystem.Utilities.InputActionTrace/ActionEventPtr::m_State
InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * ___m_State_0;
// UnityEngine.InputSystem.LowLevel.ActionEvent* UnityEngine.InputSystem.Utilities.InputActionTrace/ActionEventPtr::m_Ptr
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_Ptr_1;
public:
inline static int32_t get_offset_of_m_State_0() { return static_cast<int32_t>(offsetof(ActionEventPtr_t6AC96D1777BC558C798E71FD26B4A4C7A3505862, ___m_State_0)); }
inline InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * get_m_State_0() const { return ___m_State_0; }
inline InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E ** get_address_of_m_State_0() { return &___m_State_0; }
inline void set_m_State_0(InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * value)
{
___m_State_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_State_0), (void*)value);
}
inline static int32_t get_offset_of_m_Ptr_1() { return static_cast<int32_t>(offsetof(ActionEventPtr_t6AC96D1777BC558C798E71FD26B4A4C7A3505862, ___m_Ptr_1)); }
inline ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * get_m_Ptr_1() const { return ___m_Ptr_1; }
inline ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF ** get_address_of_m_Ptr_1() { return &___m_Ptr_1; }
inline void set_m_Ptr_1(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * value)
{
___m_Ptr_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.InputActionTrace/ActionEventPtr
struct ActionEventPtr_t6AC96D1777BC558C798E71FD26B4A4C7A3505862_marshaled_pinvoke
{
InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * ___m_State_0;
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_Ptr_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.InputActionTrace/ActionEventPtr
struct ActionEventPtr_t6AC96D1777BC558C798E71FD26B4A4C7A3505862_marshaled_com
{
InputActionState_tCCDFE9D4E805725BBAAB809EF7B0F6367B17513E * ___m_State_0;
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_Ptr_1;
};
// UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator
struct Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64
{
public:
// UnityEngine.InputSystem.Utilities.InputActionTrace UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator::m_Trace
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8 * ___m_Trace_0;
// UnityEngine.InputSystem.LowLevel.ActionEvent* UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator::m_Buffer
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_Buffer_1;
// System.Int32 UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator::m_EventCount
int32_t ___m_EventCount_2;
// UnityEngine.InputSystem.LowLevel.ActionEvent* UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator::m_CurrentEvent
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_CurrentEvent_3;
// System.Int32 UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator::m_CurrentIndex
int32_t ___m_CurrentIndex_4;
public:
inline static int32_t get_offset_of_m_Trace_0() { return static_cast<int32_t>(offsetof(Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64, ___m_Trace_0)); }
inline InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8 * get_m_Trace_0() const { return ___m_Trace_0; }
inline InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8 ** get_address_of_m_Trace_0() { return &___m_Trace_0; }
inline void set_m_Trace_0(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8 * value)
{
___m_Trace_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Trace_0), (void*)value);
}
inline static int32_t get_offset_of_m_Buffer_1() { return static_cast<int32_t>(offsetof(Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64, ___m_Buffer_1)); }
inline ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * get_m_Buffer_1() const { return ___m_Buffer_1; }
inline ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF ** get_address_of_m_Buffer_1() { return &___m_Buffer_1; }
inline void set_m_Buffer_1(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * value)
{
___m_Buffer_1 = value;
}
inline static int32_t get_offset_of_m_EventCount_2() { return static_cast<int32_t>(offsetof(Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64, ___m_EventCount_2)); }
inline int32_t get_m_EventCount_2() const { return ___m_EventCount_2; }
inline int32_t* get_address_of_m_EventCount_2() { return &___m_EventCount_2; }
inline void set_m_EventCount_2(int32_t value)
{
___m_EventCount_2 = value;
}
inline static int32_t get_offset_of_m_CurrentEvent_3() { return static_cast<int32_t>(offsetof(Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64, ___m_CurrentEvent_3)); }
inline ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * get_m_CurrentEvent_3() const { return ___m_CurrentEvent_3; }
inline ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF ** get_address_of_m_CurrentEvent_3() { return &___m_CurrentEvent_3; }
inline void set_m_CurrentEvent_3(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * value)
{
___m_CurrentEvent_3 = value;
}
inline static int32_t get_offset_of_m_CurrentIndex_4() { return static_cast<int32_t>(offsetof(Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64, ___m_CurrentIndex_4)); }
inline int32_t get_m_CurrentIndex_4() const { return ___m_CurrentIndex_4; }
inline int32_t* get_address_of_m_CurrentIndex_4() { return &___m_CurrentIndex_4; }
inline void set_m_CurrentIndex_4(int32_t value)
{
___m_CurrentIndex_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator
struct Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64_marshaled_pinvoke
{
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8 * ___m_Trace_0;
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_Buffer_1;
int32_t ___m_EventCount_2;
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_CurrentEvent_3;
int32_t ___m_CurrentIndex_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.InputActionTrace/Enumerator
struct Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64_marshaled_com
{
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8 * ___m_Trace_0;
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_Buffer_1;
int32_t ___m_EventCount_2;
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF * ___m_CurrentEvent_3;
int32_t ___m_CurrentIndex_4;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Cache
struct Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01
{
public:
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Layouts.InputControlLayout> UnityEngine.InputSystem.Layouts.InputControlLayout/Cache::table
Dictionary_2_tA47942F4C0B6F1BDD63537784B660B80EA3D9DF7 * ___table_0;
public:
inline static int32_t get_offset_of_table_0() { return static_cast<int32_t>(offsetof(Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01, ___table_0)); }
inline Dictionary_2_tA47942F4C0B6F1BDD63537784B660B80EA3D9DF7 * get_table_0() const { return ___table_0; }
inline Dictionary_2_tA47942F4C0B6F1BDD63537784B660B80EA3D9DF7 ** get_address_of_table_0() { return &___table_0; }
inline void set_table_0(Dictionary_2_tA47942F4C0B6F1BDD63537784B660B80EA3D9DF7 * value)
{
___table_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___table_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Cache
struct Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01_marshaled_pinvoke
{
Dictionary_2_tA47942F4C0B6F1BDD63537784B660B80EA3D9DF7 * ___table_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Cache
struct Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01_marshaled_com
{
Dictionary_2_tA47942F4C0B6F1BDD63537784B660B80EA3D9DF7 * ___table_0;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/CacheRefInstance
struct CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6
{
public:
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/CacheRefInstance::valid
bool ___valid_0;
public:
inline static int32_t get_offset_of_valid_0() { return static_cast<int32_t>(offsetof(CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6, ___valid_0)); }
inline bool get_valid_0() const { return ___valid_0; }
inline bool* get_address_of_valid_0() { return &___valid_0; }
inline void set_valid_0(bool value)
{
___valid_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/CacheRefInstance
struct CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6_marshaled_pinvoke
{
int32_t ___valid_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/CacheRefInstance
struct CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6_marshaled_com
{
int32_t ___valid_0;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Collection
struct Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09
{
public:
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Type> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutTypes
Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * ___layoutTypes_1;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.String> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutStrings
Dictionary_2_tA38B50B608F2776821B9397832231B38EC41AE99 * ___layoutStrings_2;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,System.Func`1<UnityEngine.InputSystem.Layouts.InputControlLayout>> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutBuilders
Dictionary_2_t5FF7E0EBD122DF4C2818E1EBC72616C24A7898E7 * ___layoutBuilders_3;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::baseLayoutTable
Dictionary_2_tAE5AA9DDBBC12053A29F9B0D9C55653F73E75C54 * ___baseLayoutTable_4;
// System.Collections.Generic.Dictionary`2<UnityEngine.InputSystem.Utilities.InternedString,UnityEngine.InputSystem.Utilities.InternedString[]> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutOverrides
Dictionary_2_tFA8504CE904CD62B021A37F5A43F67F6C23E48FC * ___layoutOverrides_5;
// System.Collections.Generic.HashSet`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutOverrideNames
HashSet_1_t0E3574D88D302F9A170D67757DB280451225C974 * ___layoutOverrideNames_6;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher> UnityEngine.InputSystem.Layouts.InputControlLayout/Collection::layoutMatchers
List_1_tCD03EFE7B0D4807007EF1EB1EA0C8E62F8C33243 * ___layoutMatchers_7;
public:
inline static int32_t get_offset_of_layoutTypes_1() { return static_cast<int32_t>(offsetof(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09, ___layoutTypes_1)); }
inline Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * get_layoutTypes_1() const { return ___layoutTypes_1; }
inline Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E ** get_address_of_layoutTypes_1() { return &___layoutTypes_1; }
inline void set_layoutTypes_1(Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * value)
{
___layoutTypes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutTypes_1), (void*)value);
}
inline static int32_t get_offset_of_layoutStrings_2() { return static_cast<int32_t>(offsetof(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09, ___layoutStrings_2)); }
inline Dictionary_2_tA38B50B608F2776821B9397832231B38EC41AE99 * get_layoutStrings_2() const { return ___layoutStrings_2; }
inline Dictionary_2_tA38B50B608F2776821B9397832231B38EC41AE99 ** get_address_of_layoutStrings_2() { return &___layoutStrings_2; }
inline void set_layoutStrings_2(Dictionary_2_tA38B50B608F2776821B9397832231B38EC41AE99 * value)
{
___layoutStrings_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutStrings_2), (void*)value);
}
inline static int32_t get_offset_of_layoutBuilders_3() { return static_cast<int32_t>(offsetof(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09, ___layoutBuilders_3)); }
inline Dictionary_2_t5FF7E0EBD122DF4C2818E1EBC72616C24A7898E7 * get_layoutBuilders_3() const { return ___layoutBuilders_3; }
inline Dictionary_2_t5FF7E0EBD122DF4C2818E1EBC72616C24A7898E7 ** get_address_of_layoutBuilders_3() { return &___layoutBuilders_3; }
inline void set_layoutBuilders_3(Dictionary_2_t5FF7E0EBD122DF4C2818E1EBC72616C24A7898E7 * value)
{
___layoutBuilders_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutBuilders_3), (void*)value);
}
inline static int32_t get_offset_of_baseLayoutTable_4() { return static_cast<int32_t>(offsetof(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09, ___baseLayoutTable_4)); }
inline Dictionary_2_tAE5AA9DDBBC12053A29F9B0D9C55653F73E75C54 * get_baseLayoutTable_4() const { return ___baseLayoutTable_4; }
inline Dictionary_2_tAE5AA9DDBBC12053A29F9B0D9C55653F73E75C54 ** get_address_of_baseLayoutTable_4() { return &___baseLayoutTable_4; }
inline void set_baseLayoutTable_4(Dictionary_2_tAE5AA9DDBBC12053A29F9B0D9C55653F73E75C54 * value)
{
___baseLayoutTable_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___baseLayoutTable_4), (void*)value);
}
inline static int32_t get_offset_of_layoutOverrides_5() { return static_cast<int32_t>(offsetof(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09, ___layoutOverrides_5)); }
inline Dictionary_2_tFA8504CE904CD62B021A37F5A43F67F6C23E48FC * get_layoutOverrides_5() const { return ___layoutOverrides_5; }
inline Dictionary_2_tFA8504CE904CD62B021A37F5A43F67F6C23E48FC ** get_address_of_layoutOverrides_5() { return &___layoutOverrides_5; }
inline void set_layoutOverrides_5(Dictionary_2_tFA8504CE904CD62B021A37F5A43F67F6C23E48FC * value)
{
___layoutOverrides_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutOverrides_5), (void*)value);
}
inline static int32_t get_offset_of_layoutOverrideNames_6() { return static_cast<int32_t>(offsetof(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09, ___layoutOverrideNames_6)); }
inline HashSet_1_t0E3574D88D302F9A170D67757DB280451225C974 * get_layoutOverrideNames_6() const { return ___layoutOverrideNames_6; }
inline HashSet_1_t0E3574D88D302F9A170D67757DB280451225C974 ** get_address_of_layoutOverrideNames_6() { return &___layoutOverrideNames_6; }
inline void set_layoutOverrideNames_6(HashSet_1_t0E3574D88D302F9A170D67757DB280451225C974 * value)
{
___layoutOverrideNames_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutOverrideNames_6), (void*)value);
}
inline static int32_t get_offset_of_layoutMatchers_7() { return static_cast<int32_t>(offsetof(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09, ___layoutMatchers_7)); }
inline List_1_tCD03EFE7B0D4807007EF1EB1EA0C8E62F8C33243 * get_layoutMatchers_7() const { return ___layoutMatchers_7; }
inline List_1_tCD03EFE7B0D4807007EF1EB1EA0C8E62F8C33243 ** get_address_of_layoutMatchers_7() { return &___layoutMatchers_7; }
inline void set_layoutMatchers_7(List_1_tCD03EFE7B0D4807007EF1EB1EA0C8E62F8C33243 * value)
{
___layoutMatchers_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutMatchers_7), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection
struct Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09_marshaled_pinvoke
{
Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * ___layoutTypes_1;
Dictionary_2_tA38B50B608F2776821B9397832231B38EC41AE99 * ___layoutStrings_2;
Dictionary_2_t5FF7E0EBD122DF4C2818E1EBC72616C24A7898E7 * ___layoutBuilders_3;
Dictionary_2_tAE5AA9DDBBC12053A29F9B0D9C55653F73E75C54 * ___baseLayoutTable_4;
Dictionary_2_tFA8504CE904CD62B021A37F5A43F67F6C23E48FC * ___layoutOverrides_5;
HashSet_1_t0E3574D88D302F9A170D67757DB280451225C974 * ___layoutOverrideNames_6;
List_1_tCD03EFE7B0D4807007EF1EB1EA0C8E62F8C33243 * ___layoutMatchers_7;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection
struct Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09_marshaled_com
{
Dictionary_2_tA0EA6A18C1974EB0112F50D6AF2F5D0CE45D508E * ___layoutTypes_1;
Dictionary_2_tA38B50B608F2776821B9397832231B38EC41AE99 * ___layoutStrings_2;
Dictionary_2_t5FF7E0EBD122DF4C2818E1EBC72616C24A7898E7 * ___layoutBuilders_3;
Dictionary_2_tAE5AA9DDBBC12053A29F9B0D9C55653F73E75C54 * ___baseLayoutTable_4;
Dictionary_2_tFA8504CE904CD62B021A37F5A43F67F6C23E48FC * ___layoutOverrides_5;
HashSet_1_t0E3574D88D302F9A170D67757DB280451225C974 * ___layoutOverrideNames_6;
List_1_tCD03EFE7B0D4807007EF1EB1EA0C8E62F8C33243 * ___layoutMatchers_7;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson
struct LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::name
String_t* ___name_0;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::extend
String_t* ___extend_1;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::extendMultiple
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___extendMultiple_2;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::format
String_t* ___format_3;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::beforeRender
String_t* ___beforeRender_4;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::commonUsages
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___commonUsages_5;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::displayName
String_t* ___displayName_6;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::description
String_t* ___description_7;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::type
String_t* ___type_8;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::variant
String_t* ___variant_9;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::isGenericTypeOfDevice
bool ___isGenericTypeOfDevice_10;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::hideInUI
bool ___hideInUI_11;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItemJson[] UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson::controls
ControlItemJsonU5BU5D_tDF16EC641652E35F42D90B60C753DF09F188CF7B* ___controls_12;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___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);
}
inline static int32_t get_offset_of_extend_1() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___extend_1)); }
inline String_t* get_extend_1() const { return ___extend_1; }
inline String_t** get_address_of_extend_1() { return &___extend_1; }
inline void set_extend_1(String_t* value)
{
___extend_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extend_1), (void*)value);
}
inline static int32_t get_offset_of_extendMultiple_2() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___extendMultiple_2)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_extendMultiple_2() const { return ___extendMultiple_2; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_extendMultiple_2() { return &___extendMultiple_2; }
inline void set_extendMultiple_2(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___extendMultiple_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extendMultiple_2), (void*)value);
}
inline static int32_t get_offset_of_format_3() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___format_3)); }
inline String_t* get_format_3() const { return ___format_3; }
inline String_t** get_address_of_format_3() { return &___format_3; }
inline void set_format_3(String_t* value)
{
___format_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___format_3), (void*)value);
}
inline static int32_t get_offset_of_beforeRender_4() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___beforeRender_4)); }
inline String_t* get_beforeRender_4() const { return ___beforeRender_4; }
inline String_t** get_address_of_beforeRender_4() { return &___beforeRender_4; }
inline void set_beforeRender_4(String_t* value)
{
___beforeRender_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___beforeRender_4), (void*)value);
}
inline static int32_t get_offset_of_commonUsages_5() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___commonUsages_5)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_commonUsages_5() const { return ___commonUsages_5; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_commonUsages_5() { return &___commonUsages_5; }
inline void set_commonUsages_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___commonUsages_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___commonUsages_5), (void*)value);
}
inline static int32_t get_offset_of_displayName_6() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___displayName_6)); }
inline String_t* get_displayName_6() const { return ___displayName_6; }
inline String_t** get_address_of_displayName_6() { return &___displayName_6; }
inline void set_displayName_6(String_t* value)
{
___displayName_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayName_6), (void*)value);
}
inline static int32_t get_offset_of_description_7() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___description_7)); }
inline String_t* get_description_7() const { return ___description_7; }
inline String_t** get_address_of_description_7() { return &___description_7; }
inline void set_description_7(String_t* value)
{
___description_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___description_7), (void*)value);
}
inline static int32_t get_offset_of_type_8() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___type_8)); }
inline String_t* get_type_8() const { return ___type_8; }
inline String_t** get_address_of_type_8() { return &___type_8; }
inline void set_type_8(String_t* value)
{
___type_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_8), (void*)value);
}
inline static int32_t get_offset_of_variant_9() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___variant_9)); }
inline String_t* get_variant_9() const { return ___variant_9; }
inline String_t** get_address_of_variant_9() { return &___variant_9; }
inline void set_variant_9(String_t* value)
{
___variant_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___variant_9), (void*)value);
}
inline static int32_t get_offset_of_isGenericTypeOfDevice_10() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___isGenericTypeOfDevice_10)); }
inline bool get_isGenericTypeOfDevice_10() const { return ___isGenericTypeOfDevice_10; }
inline bool* get_address_of_isGenericTypeOfDevice_10() { return &___isGenericTypeOfDevice_10; }
inline void set_isGenericTypeOfDevice_10(bool value)
{
___isGenericTypeOfDevice_10 = value;
}
inline static int32_t get_offset_of_hideInUI_11() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___hideInUI_11)); }
inline bool get_hideInUI_11() const { return ___hideInUI_11; }
inline bool* get_address_of_hideInUI_11() { return &___hideInUI_11; }
inline void set_hideInUI_11(bool value)
{
___hideInUI_11 = value;
}
inline static int32_t get_offset_of_controls_12() { return static_cast<int32_t>(offsetof(LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974, ___controls_12)); }
inline ControlItemJsonU5BU5D_tDF16EC641652E35F42D90B60C753DF09F188CF7B* get_controls_12() const { return ___controls_12; }
inline ControlItemJsonU5BU5D_tDF16EC641652E35F42D90B60C753DF09F188CF7B** get_address_of_controls_12() { return &___controls_12; }
inline void set_controls_12(ControlItemJsonU5BU5D_tDF16EC641652E35F42D90B60C753DF09F188CF7B* value)
{
___controls_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___controls_12), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson
struct LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974_marshaled_pinvoke
{
char* ___name_0;
char* ___extend_1;
char** ___extendMultiple_2;
char* ___format_3;
char* ___beforeRender_4;
char** ___commonUsages_5;
char* ___displayName_6;
char* ___description_7;
char* ___type_8;
char* ___variant_9;
int32_t ___isGenericTypeOfDevice_10;
int32_t ___hideInUI_11;
ControlItemJsonU5BU5D_tDF16EC641652E35F42D90B60C753DF09F188CF7B* ___controls_12;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJson
struct LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974_marshaled_com
{
Il2CppChar* ___name_0;
Il2CppChar* ___extend_1;
Il2CppChar** ___extendMultiple_2;
Il2CppChar* ___format_3;
Il2CppChar* ___beforeRender_4;
Il2CppChar** ___commonUsages_5;
Il2CppChar* ___displayName_6;
Il2CppChar* ___description_7;
Il2CppChar* ___type_8;
Il2CppChar* ___variant_9;
int32_t ___isGenericTypeOfDevice_10;
int32_t ___hideInUI_11;
ControlItemJsonU5BU5D_tDF16EC641652E35F42D90B60C753DF09F188CF7B* ___controls_12;
};
// UnityEngine.InputSystem.Layouts.InputDeviceBuilder/RefInstance
struct RefInstance_t184FE241C441EF9C2B8CD142F9CACF481E09DF18
{
public:
union
{
struct
{
};
uint8_t RefInstance_t184FE241C441EF9C2B8CD142F9CACF481E09DF18__padding[1];
};
public:
};
// UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson
struct DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::interface
String_t* ___interface_0;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::type
String_t* ___type_1;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::product
String_t* ___product_2;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::serial
String_t* ___serial_3;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::version
String_t* ___version_4;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::manufacturer
String_t* ___manufacturer_5;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson::capabilities
String_t* ___capabilities_6;
public:
inline static int32_t get_offset_of_interface_0() { return static_cast<int32_t>(offsetof(DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356, ___interface_0)); }
inline String_t* get_interface_0() const { return ___interface_0; }
inline String_t** get_address_of_interface_0() { return &___interface_0; }
inline void set_interface_0(String_t* value)
{
___interface_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___interface_0), (void*)value);
}
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356, ___type_1)); }
inline String_t* get_type_1() const { return ___type_1; }
inline String_t** get_address_of_type_1() { return &___type_1; }
inline void set_type_1(String_t* value)
{
___type_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_1), (void*)value);
}
inline static int32_t get_offset_of_product_2() { return static_cast<int32_t>(offsetof(DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356, ___product_2)); }
inline String_t* get_product_2() const { return ___product_2; }
inline String_t** get_address_of_product_2() { return &___product_2; }
inline void set_product_2(String_t* value)
{
___product_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___product_2), (void*)value);
}
inline static int32_t get_offset_of_serial_3() { return static_cast<int32_t>(offsetof(DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356, ___serial_3)); }
inline String_t* get_serial_3() const { return ___serial_3; }
inline String_t** get_address_of_serial_3() { return &___serial_3; }
inline void set_serial_3(String_t* value)
{
___serial_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serial_3), (void*)value);
}
inline static int32_t get_offset_of_version_4() { return static_cast<int32_t>(offsetof(DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356, ___version_4)); }
inline String_t* get_version_4() const { return ___version_4; }
inline String_t** get_address_of_version_4() { return &___version_4; }
inline void set_version_4(String_t* value)
{
___version_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___version_4), (void*)value);
}
inline static int32_t get_offset_of_manufacturer_5() { return static_cast<int32_t>(offsetof(DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356, ___manufacturer_5)); }
inline String_t* get_manufacturer_5() const { return ___manufacturer_5; }
inline String_t** get_address_of_manufacturer_5() { return &___manufacturer_5; }
inline void set_manufacturer_5(String_t* value)
{
___manufacturer_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___manufacturer_5), (void*)value);
}
inline static int32_t get_offset_of_capabilities_6() { return static_cast<int32_t>(offsetof(DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356, ___capabilities_6)); }
inline String_t* get_capabilities_6() const { return ___capabilities_6; }
inline String_t** get_address_of_capabilities_6() { return &___capabilities_6; }
inline void set_capabilities_6(String_t* value)
{
___capabilities_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___capabilities_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson
struct DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356_marshaled_pinvoke
{
char* ___interface_0;
char* ___type_1;
char* ___product_2;
char* ___serial_3;
char* ___version_4;
char* ___manufacturer_5;
char* ___capabilities_6;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceDescription/DeviceDescriptionJson
struct DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356_marshaled_com
{
Il2CppChar* ___interface_0;
Il2CppChar* ___type_1;
Il2CppChar* ___product_2;
Il2CppChar* ___serial_3;
Il2CppChar* ___version_4;
Il2CppChar* ___manufacturer_5;
Il2CppChar* ___capabilities_6;
};
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson
struct MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::interface
String_t* ___interface_0;
// System.String[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::interfaces
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___interfaces_1;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::deviceClass
String_t* ___deviceClass_2;
// System.String[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::deviceClasses
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___deviceClasses_3;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::manufacturer
String_t* ___manufacturer_4;
// System.String[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::manufacturers
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___manufacturers_5;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::product
String_t* ___product_6;
// System.String[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::products
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___products_7;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::version
String_t* ___version_8;
// System.String[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::versions
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___versions_9;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson/Capability[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson::capabilities
CapabilityU5BU5D_t59DCD2AF33973359753487FD30B891BD661DFBBC* ___capabilities_10;
public:
inline static int32_t get_offset_of_interface_0() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___interface_0)); }
inline String_t* get_interface_0() const { return ___interface_0; }
inline String_t** get_address_of_interface_0() { return &___interface_0; }
inline void set_interface_0(String_t* value)
{
___interface_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___interface_0), (void*)value);
}
inline static int32_t get_offset_of_interfaces_1() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___interfaces_1)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_interfaces_1() const { return ___interfaces_1; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_interfaces_1() { return &___interfaces_1; }
inline void set_interfaces_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___interfaces_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___interfaces_1), (void*)value);
}
inline static int32_t get_offset_of_deviceClass_2() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___deviceClass_2)); }
inline String_t* get_deviceClass_2() const { return ___deviceClass_2; }
inline String_t** get_address_of_deviceClass_2() { return &___deviceClass_2; }
inline void set_deviceClass_2(String_t* value)
{
___deviceClass_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceClass_2), (void*)value);
}
inline static int32_t get_offset_of_deviceClasses_3() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___deviceClasses_3)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_deviceClasses_3() const { return ___deviceClasses_3; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_deviceClasses_3() { return &___deviceClasses_3; }
inline void set_deviceClasses_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___deviceClasses_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceClasses_3), (void*)value);
}
inline static int32_t get_offset_of_manufacturer_4() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___manufacturer_4)); }
inline String_t* get_manufacturer_4() const { return ___manufacturer_4; }
inline String_t** get_address_of_manufacturer_4() { return &___manufacturer_4; }
inline void set_manufacturer_4(String_t* value)
{
___manufacturer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___manufacturer_4), (void*)value);
}
inline static int32_t get_offset_of_manufacturers_5() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___manufacturers_5)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_manufacturers_5() const { return ___manufacturers_5; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_manufacturers_5() { return &___manufacturers_5; }
inline void set_manufacturers_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___manufacturers_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___manufacturers_5), (void*)value);
}
inline static int32_t get_offset_of_product_6() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___product_6)); }
inline String_t* get_product_6() const { return ___product_6; }
inline String_t** get_address_of_product_6() { return &___product_6; }
inline void set_product_6(String_t* value)
{
___product_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___product_6), (void*)value);
}
inline static int32_t get_offset_of_products_7() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___products_7)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_products_7() const { return ___products_7; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_products_7() { return &___products_7; }
inline void set_products_7(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___products_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___products_7), (void*)value);
}
inline static int32_t get_offset_of_version_8() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___version_8)); }
inline String_t* get_version_8() const { return ___version_8; }
inline String_t** get_address_of_version_8() { return &___version_8; }
inline void set_version_8(String_t* value)
{
___version_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___version_8), (void*)value);
}
inline static int32_t get_offset_of_versions_9() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___versions_9)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_versions_9() const { return ___versions_9; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_versions_9() { return &___versions_9; }
inline void set_versions_9(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___versions_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___versions_9), (void*)value);
}
inline static int32_t get_offset_of_capabilities_10() { return static_cast<int32_t>(offsetof(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2, ___capabilities_10)); }
inline CapabilityU5BU5D_t59DCD2AF33973359753487FD30B891BD661DFBBC* get_capabilities_10() const { return ___capabilities_10; }
inline CapabilityU5BU5D_t59DCD2AF33973359753487FD30B891BD661DFBBC** get_address_of_capabilities_10() { return &___capabilities_10; }
inline void set_capabilities_10(CapabilityU5BU5D_t59DCD2AF33973359753487FD30B891BD661DFBBC* value)
{
___capabilities_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___capabilities_10), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson
struct MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2_marshaled_pinvoke
{
char* ___interface_0;
char** ___interfaces_1;
char* ___deviceClass_2;
char** ___deviceClasses_3;
char* ___manufacturer_4;
char** ___manufacturers_5;
char* ___product_6;
char** ___products_7;
char* ___version_8;
char** ___versions_9;
Capability_tF5B6FF984626974127E090122C8E72283DEAE653_marshaled_pinvoke* ___capabilities_10;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson
struct MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2_marshaled_com
{
Il2CppChar* ___interface_0;
Il2CppChar** ___interfaces_1;
Il2CppChar* ___deviceClass_2;
Il2CppChar** ___deviceClasses_3;
Il2CppChar* ___manufacturer_4;
Il2CppChar** ___manufacturers_5;
Il2CppChar* ___product_6;
Il2CppChar** ___products_7;
Il2CppChar* ___version_8;
Il2CppChar** ___versions_9;
Capability_tF5B6FF984626974127E090122C8E72283DEAE653_marshaled_com* ___capabilities_10;
};
// UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator
struct Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357
{
public:
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_Buffer
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * ___m_Buffer_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_EventCount
int32_t ___m_EventCount_1;
// UnityEngine.InputSystem.LowLevel.InputEvent* UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_CurrentEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * ___m_CurrentEvent_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer/Enumerator::m_CurrentIndex
int32_t ___m_CurrentIndex_3;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357, ___m_Buffer_0)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_m_Buffer_0() const { return ___m_Buffer_0; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_EventCount_1() { return static_cast<int32_t>(offsetof(Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357, ___m_EventCount_1)); }
inline int32_t get_m_EventCount_1() const { return ___m_EventCount_1; }
inline int32_t* get_address_of_m_EventCount_1() { return &___m_EventCount_1; }
inline void set_m_EventCount_1(int32_t value)
{
___m_EventCount_1 = value;
}
inline static int32_t get_offset_of_m_CurrentEvent_2() { return static_cast<int32_t>(offsetof(Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357, ___m_CurrentEvent_2)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_m_CurrentEvent_2() const { return ___m_CurrentEvent_2; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ** get_address_of_m_CurrentEvent_2() { return &___m_CurrentEvent_2; }
inline void set_m_CurrentEvent_2(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * value)
{
___m_CurrentEvent_2 = value;
}
inline static int32_t get_offset_of_m_CurrentIndex_3() { return static_cast<int32_t>(offsetof(Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357, ___m_CurrentIndex_3)); }
inline int32_t get_m_CurrentIndex_3() const { return ___m_CurrentIndex_3; }
inline int32_t* get_address_of_m_CurrentIndex_3() { return &___m_CurrentIndex_3; }
inline void set_m_CurrentIndex_3(int32_t value)
{
___m_CurrentIndex_3 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers
struct DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E
{
public:
// System.Void** UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers::deviceToBufferMapping
void** ___deviceToBufferMapping_0;
public:
inline static int32_t get_offset_of_deviceToBufferMapping_0() { return static_cast<int32_t>(offsetof(DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E, ___deviceToBufferMapping_0)); }
inline void** get_deviceToBufferMapping_0() const { return ___deviceToBufferMapping_0; }
inline void*** get_address_of_deviceToBufferMapping_0() { return &___deviceToBufferMapping_0; }
inline void set_deviceToBufferMapping_0(void** value)
{
___deviceToBufferMapping_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/Enumerator
struct Enumerator_tDDC4537D5BFC2C3A09BB1E887C3FCDD91B720216
{
public:
// UnityEngine.InputSystem.LowLevel.InputStateHistory UnityEngine.InputSystem.LowLevel.InputStateHistory/Enumerator::m_History
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * ___m_History_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_History_0() { return static_cast<int32_t>(offsetof(Enumerator_tDDC4537D5BFC2C3A09BB1E887C3FCDD91B720216, ___m_History_0)); }
inline InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * get_m_History_0() const { return ___m_History_0; }
inline InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA ** get_address_of_m_History_0() { return &___m_History_0; }
inline void set_m_History_0(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * value)
{
___m_History_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_History_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tDDC4537D5BFC2C3A09BB1E887C3FCDD91B720216, ___m_Index_1)); }
inline int32_t get_m_Index_1() const { return ___m_Index_1; }
inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; }
inline void set_m_Index_1(int32_t value)
{
___m_Index_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputStateHistory/Enumerator
struct Enumerator_tDDC4537D5BFC2C3A09BB1E887C3FCDD91B720216_marshaled_pinvoke
{
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * ___m_History_0;
int32_t ___m_Index_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputStateHistory/Enumerator
struct Enumerator_tDDC4537D5BFC2C3A09BB1E887C3FCDD91B720216_marshaled_com
{
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * ___m_History_0;
int32_t ___m_Index_1;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/Record
struct Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B
{
public:
// UnityEngine.InputSystem.LowLevel.InputStateHistory UnityEngine.InputSystem.LowLevel.InputStateHistory/Record::m_Owner
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * ___m_Owner_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory/Record::m_IndexPlusOne
int32_t ___m_IndexPlusOne_1;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory/Record::m_Version
uint32_t ___m_Version_2;
public:
inline static int32_t get_offset_of_m_Owner_0() { return static_cast<int32_t>(offsetof(Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B, ___m_Owner_0)); }
inline InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * get_m_Owner_0() const { return ___m_Owner_0; }
inline InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA ** get_address_of_m_Owner_0() { return &___m_Owner_0; }
inline void set_m_Owner_0(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * value)
{
___m_Owner_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Owner_0), (void*)value);
}
inline static int32_t get_offset_of_m_IndexPlusOne_1() { return static_cast<int32_t>(offsetof(Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B, ___m_IndexPlusOne_1)); }
inline int32_t get_m_IndexPlusOne_1() const { return ___m_IndexPlusOne_1; }
inline int32_t* get_address_of_m_IndexPlusOne_1() { return &___m_IndexPlusOne_1; }
inline void set_m_IndexPlusOne_1(int32_t value)
{
___m_IndexPlusOne_1 = value;
}
inline static int32_t get_offset_of_m_Version_2() { return static_cast<int32_t>(offsetof(Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B, ___m_Version_2)); }
inline uint32_t get_m_Version_2() const { return ___m_Version_2; }
inline uint32_t* get_address_of_m_Version_2() { return &___m_Version_2; }
inline void set_m_Version_2(uint32_t value)
{
___m_Version_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputStateHistory/Record
struct Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B_marshaled_pinvoke
{
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * ___m_Owner_0;
int32_t ___m_IndexPlusOne_1;
uint32_t ___m_Version_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputStateHistory/Record
struct Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B_marshaled_com
{
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA * ___m_Owner_0;
int32_t ___m_IndexPlusOne_1;
uint32_t ___m_Version_2;
};
// UnityEngine.InputSystem.Users.InputUser/ControlSchemeChangeSyntax
struct ControlSchemeChangeSyntax_t34B932298F654EB42D6C2F74DEF6A83384B6EB11
{
public:
// System.Int32 UnityEngine.InputSystem.Users.InputUser/ControlSchemeChangeSyntax::m_UserIndex
int32_t ___m_UserIndex_0;
public:
inline static int32_t get_offset_of_m_UserIndex_0() { return static_cast<int32_t>(offsetof(ControlSchemeChangeSyntax_t34B932298F654EB42D6C2F74DEF6A83384B6EB11, ___m_UserIndex_0)); }
inline int32_t get_m_UserIndex_0() const { return ___m_UserIndex_0; }
inline int32_t* get_address_of_m_UserIndex_0() { return &___m_UserIndex_0; }
inline void set_m_UserIndex_0(int32_t value)
{
___m_UserIndex_0 = value;
}
};
// UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection
struct OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8
{
public:
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection::device
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___device_0;
// System.UInt32 UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection::userId
uint32_t ___userId_1;
public:
inline static int32_t get_offset_of_device_0() { return static_cast<int32_t>(offsetof(OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8, ___device_0)); }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * get_device_0() const { return ___device_0; }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 ** get_address_of_device_0() { return &___device_0; }
inline void set_device_0(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * value)
{
___device_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___device_0), (void*)value);
}
inline static int32_t get_offset_of_userId_1() { return static_cast<int32_t>(offsetof(OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8, ___userId_1)); }
inline uint32_t get_userId_1() const { return ___userId_1; }
inline uint32_t* get_address_of_userId_1() { return &___userId_1; }
inline void set_userId_1(uint32_t value)
{
___userId_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection
struct OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8_marshaled_pinvoke
{
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___device_0;
uint32_t ___userId_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection
struct OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8_marshaled_com
{
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___device_0;
uint32_t ___userId_1;
};
// UnityEngine.InputSystem.LowLevel.KeyboardState/<keys>e__FixedBuffer
struct U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.KeyboardState/<keys>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371__padding[14];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion
struct BitRegion_t28F94274AF21C6224D51AD683FE6E5A05CC83D7A
{
public:
// System.UInt32 UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion::bitOffset
uint32_t ___bitOffset_0;
// System.UInt32 UnityEngine.InputSystem.Utilities.MemoryHelpers/BitRegion::sizeInBits
uint32_t ___sizeInBits_1;
public:
inline static int32_t get_offset_of_bitOffset_0() { return static_cast<int32_t>(offsetof(BitRegion_t28F94274AF21C6224D51AD683FE6E5A05CC83D7A, ___bitOffset_0)); }
inline uint32_t get_bitOffset_0() const { return ___bitOffset_0; }
inline uint32_t* get_address_of_bitOffset_0() { return &___bitOffset_0; }
inline void set_bitOffset_0(uint32_t value)
{
___bitOffset_0 = value;
}
inline static int32_t get_offset_of_sizeInBits_1() { return static_cast<int32_t>(offsetof(BitRegion_t28F94274AF21C6224D51AD683FE6E5A05CC83D7A, ___sizeInBits_1)); }
inline uint32_t get_sizeInBits_1() const { return ___sizeInBits_1; }
inline uint32_t* get_address_of_sizeInBits_1() { return &___sizeInBits_1; }
inline void set_sizeInBits_1(uint32_t value)
{
___sizeInBits_1 = value;
}
};
// Dissonance.Metrics/MetricEvent
struct MetricEvent_tD50103F48FA5DDB42890D785640DDFE2E6549556
{
public:
// System.String Dissonance.Metrics/MetricEvent::Name
String_t* ___Name_0;
// System.Double Dissonance.Metrics/MetricEvent::Value
double ___Value_1;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(MetricEvent_tD50103F48FA5DDB42890D785640DDFE2E6549556, ___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);
}
inline static int32_t get_offset_of_Value_1() { return static_cast<int32_t>(offsetof(MetricEvent_tD50103F48FA5DDB42890D785640DDFE2E6549556, ___Value_1)); }
inline double get_Value_1() const { return ___Value_1; }
inline double* get_address_of_Value_1() { return &___Value_1; }
inline void set_Value_1(double value)
{
___Value_1 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Metrics/MetricEvent
struct MetricEvent_tD50103F48FA5DDB42890D785640DDFE2E6549556_marshaled_pinvoke
{
char* ___Name_0;
double ___Value_1;
};
// Native definition for COM marshalling of Dissonance.Metrics/MetricEvent
struct MetricEvent_tD50103F48FA5DDB42890D785640DDFE2E6549556_marshaled_com
{
Il2CppChar* ___Name_0;
double ___Value_1;
};
// UnityEngine.XR.WindowsMR.Native/UserDefinedSettings
struct UserDefinedSettings_t192979420533CDACE82D93D78FCD17264639368D
{
public:
// System.UInt16 UnityEngine.XR.WindowsMR.Native/UserDefinedSettings::depthBufferType
uint16_t ___depthBufferType_0;
// System.UInt16 UnityEngine.XR.WindowsMR.Native/UserDefinedSettings::sharedDepthBuffer
uint16_t ___sharedDepthBuffer_1;
public:
inline static int32_t get_offset_of_depthBufferType_0() { return static_cast<int32_t>(offsetof(UserDefinedSettings_t192979420533CDACE82D93D78FCD17264639368D, ___depthBufferType_0)); }
inline uint16_t get_depthBufferType_0() const { return ___depthBufferType_0; }
inline uint16_t* get_address_of_depthBufferType_0() { return &___depthBufferType_0; }
inline void set_depthBufferType_0(uint16_t value)
{
___depthBufferType_0 = value;
}
inline static int32_t get_offset_of_sharedDepthBuffer_1() { return static_cast<int32_t>(offsetof(UserDefinedSettings_t192979420533CDACE82D93D78FCD17264639368D, ___sharedDepthBuffer_1)); }
inline uint16_t get_sharedDepthBuffer_1() const { return ___sharedDepthBuffer_1; }
inline uint16_t* get_address_of_sharedDepthBuffer_1() { return &___sharedDepthBuffer_1; }
inline void set_sharedDepthBuffer_1(uint16_t value)
{
___sharedDepthBuffer_1 = value;
}
};
// Mirror.NetworkRoomManager/PendingPlayer
struct PendingPlayer_t44A9965251D49D11642373F2980F536488B0D694
{
public:
// Mirror.NetworkConnection Mirror.NetworkRoomManager/PendingPlayer::conn
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_0;
// UnityEngine.GameObject Mirror.NetworkRoomManager/PendingPlayer::roomPlayer
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___roomPlayer_1;
public:
inline static int32_t get_offset_of_conn_0() { return static_cast<int32_t>(offsetof(PendingPlayer_t44A9965251D49D11642373F2980F536488B0D694, ___conn_0)); }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_conn_0() const { return ___conn_0; }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_conn_0() { return &___conn_0; }
inline void set_conn_0(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value)
{
___conn_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value);
}
inline static int32_t get_offset_of_roomPlayer_1() { return static_cast<int32_t>(offsetof(PendingPlayer_t44A9965251D49D11642373F2980F536488B0D694, ___roomPlayer_1)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_roomPlayer_1() const { return ___roomPlayer_1; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_roomPlayer_1() { return &___roomPlayer_1; }
inline void set_roomPlayer_1(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___roomPlayer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___roomPlayer_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.NetworkRoomManager/PendingPlayer
struct PendingPlayer_t44A9965251D49D11642373F2980F536488B0D694_marshaled_pinvoke
{
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_0;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___roomPlayer_1;
};
// Native definition for COM marshalling of Mirror.NetworkRoomManager/PendingPlayer
struct PendingPlayer_t44A9965251D49D11642373F2980F536488B0D694_marshaled_com
{
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___conn_0;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___roomPlayer_1;
};
// UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand/<nameBuffer>e__FixedBuffer
struct U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand/<nameBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339__padding[256];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand/<nameBuffer>e__FixedBuffer
struct U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand/<nameBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5__padding[256];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<idBuffer>e__FixedBuffer
struct U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<idBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24__padding[512];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<nameBuffer>e__FixedBuffer
struct U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<nameBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC__padding[512];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryUserIdCommand/<idBuffer>e__FixedBuffer
struct U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.QueryUserIdCommand/<idBuffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186__padding[512];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// Mirror.SimpleWeb.ReceiveLoop/Config
struct Config_t237711EE042BC9237C76698E05B29FD22F8692F9
{
public:
// Mirror.SimpleWeb.Connection Mirror.SimpleWeb.ReceiveLoop/Config::conn
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
// System.Int32 Mirror.SimpleWeb.ReceiveLoop/Config::maxMessageSize
int32_t ___maxMessageSize_1;
// System.Boolean Mirror.SimpleWeb.ReceiveLoop/Config::expectMask
bool ___expectMask_2;
// System.Collections.Concurrent.ConcurrentQueue`1<Mirror.SimpleWeb.Message> Mirror.SimpleWeb.ReceiveLoop/Config::queue
ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * ___queue_3;
// Mirror.SimpleWeb.BufferPool Mirror.SimpleWeb.ReceiveLoop/Config::bufferPool
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * ___bufferPool_4;
public:
inline static int32_t get_offset_of_conn_0() { return static_cast<int32_t>(offsetof(Config_t237711EE042BC9237C76698E05B29FD22F8692F9, ___conn_0)); }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * get_conn_0() const { return ___conn_0; }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 ** get_address_of_conn_0() { return &___conn_0; }
inline void set_conn_0(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * value)
{
___conn_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value);
}
inline static int32_t get_offset_of_maxMessageSize_1() { return static_cast<int32_t>(offsetof(Config_t237711EE042BC9237C76698E05B29FD22F8692F9, ___maxMessageSize_1)); }
inline int32_t get_maxMessageSize_1() const { return ___maxMessageSize_1; }
inline int32_t* get_address_of_maxMessageSize_1() { return &___maxMessageSize_1; }
inline void set_maxMessageSize_1(int32_t value)
{
___maxMessageSize_1 = value;
}
inline static int32_t get_offset_of_expectMask_2() { return static_cast<int32_t>(offsetof(Config_t237711EE042BC9237C76698E05B29FD22F8692F9, ___expectMask_2)); }
inline bool get_expectMask_2() const { return ___expectMask_2; }
inline bool* get_address_of_expectMask_2() { return &___expectMask_2; }
inline void set_expectMask_2(bool value)
{
___expectMask_2 = value;
}
inline static int32_t get_offset_of_queue_3() { return static_cast<int32_t>(offsetof(Config_t237711EE042BC9237C76698E05B29FD22F8692F9, ___queue_3)); }
inline ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * get_queue_3() const { return ___queue_3; }
inline ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 ** get_address_of_queue_3() { return &___queue_3; }
inline void set_queue_3(ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * value)
{
___queue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___queue_3), (void*)value);
}
inline static int32_t get_offset_of_bufferPool_4() { return static_cast<int32_t>(offsetof(Config_t237711EE042BC9237C76698E05B29FD22F8692F9, ___bufferPool_4)); }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * get_bufferPool_4() const { return ___bufferPool_4; }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC ** get_address_of_bufferPool_4() { return &___bufferPool_4; }
inline void set_bufferPool_4(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * value)
{
___bufferPool_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bufferPool_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.SimpleWeb.ReceiveLoop/Config
struct Config_t237711EE042BC9237C76698E05B29FD22F8692F9_marshaled_pinvoke
{
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
int32_t ___maxMessageSize_1;
int32_t ___expectMask_2;
ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * ___queue_3;
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * ___bufferPool_4;
};
// Native definition for COM marshalling of Mirror.SimpleWeb.ReceiveLoop/Config
struct Config_t237711EE042BC9237C76698E05B29FD22F8692F9_marshaled_com
{
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
int32_t ___maxMessageSize_1;
int32_t ___expectMask_2;
ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * ___queue_3;
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * ___bufferPool_4;
};
// UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand/<buffer>e__FixedBuffer
struct U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand/<buffer>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02__padding[1024];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// Mirror.SimpleWeb.SendLoop/Config
struct Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58
{
public:
// Mirror.SimpleWeb.Connection Mirror.SimpleWeb.SendLoop/Config::conn
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
// System.Int32 Mirror.SimpleWeb.SendLoop/Config::bufferSize
int32_t ___bufferSize_1;
// System.Boolean Mirror.SimpleWeb.SendLoop/Config::setMask
bool ___setMask_2;
public:
inline static int32_t get_offset_of_conn_0() { return static_cast<int32_t>(offsetof(Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58, ___conn_0)); }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * get_conn_0() const { return ___conn_0; }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 ** get_address_of_conn_0() { return &___conn_0; }
inline void set_conn_0(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * value)
{
___conn_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value);
}
inline static int32_t get_offset_of_bufferSize_1() { return static_cast<int32_t>(offsetof(Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58, ___bufferSize_1)); }
inline int32_t get_bufferSize_1() const { return ___bufferSize_1; }
inline int32_t* get_address_of_bufferSize_1() { return &___bufferSize_1; }
inline void set_bufferSize_1(int32_t value)
{
___bufferSize_1 = value;
}
inline static int32_t get_offset_of_setMask_2() { return static_cast<int32_t>(offsetof(Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58, ___setMask_2)); }
inline bool get_setMask_2() const { return ___setMask_2; }
inline bool* get_address_of_setMask_2() { return &___setMask_2; }
inline void set_setMask_2(bool value)
{
___setMask_2 = value;
}
};
// Native definition for P/Invoke marshalling of Mirror.SimpleWeb.SendLoop/Config
struct Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58_marshaled_pinvoke
{
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
int32_t ___bufferSize_1;
int32_t ___setMask_2;
};
// Native definition for COM marshalling of Mirror.SimpleWeb.SendLoop/Config
struct Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58_marshaled_com
{
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_0;
int32_t ___bufferSize_1;
int32_t ___setMask_2;
};
// Mirror.SimpleWeb.SslConfigLoader/Cert
struct Cert_t161CF951AAED79320EC39086B78D515B5EC37884
{
public:
// System.String Mirror.SimpleWeb.SslConfigLoader/Cert::path
String_t* ___path_0;
// System.String Mirror.SimpleWeb.SslConfigLoader/Cert::password
String_t* ___password_1;
public:
inline static int32_t get_offset_of_path_0() { return static_cast<int32_t>(offsetof(Cert_t161CF951AAED79320EC39086B78D515B5EC37884, ___path_0)); }
inline String_t* get_path_0() const { return ___path_0; }
inline String_t** get_address_of_path_0() { return &___path_0; }
inline void set_path_0(String_t* value)
{
___path_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___path_0), (void*)value);
}
inline static int32_t get_offset_of_password_1() { return static_cast<int32_t>(offsetof(Cert_t161CF951AAED79320EC39086B78D515B5EC37884, ___password_1)); }
inline String_t* get_password_1() const { return ___password_1; }
inline String_t** get_address_of_password_1() { return &___password_1; }
inline void set_password_1(String_t* value)
{
___password_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___password_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.SimpleWeb.SslConfigLoader/Cert
struct Cert_t161CF951AAED79320EC39086B78D515B5EC37884_marshaled_pinvoke
{
char* ___path_0;
char* ___password_1;
};
// Native definition for COM marshalling of Mirror.SimpleWeb.SslConfigLoader/Cert
struct Cert_t161CF951AAED79320EC39086B78D515B5EC37884_marshaled_com
{
Il2CppChar* ___path_0;
Il2CppChar* ___password_1;
};
// UnityEngine.InputSystem.LowLevel.StateEvent/<stateData>e__FixedBuffer
struct U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.StateEvent/<stateData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825__padding[1];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainGroups
struct TerrainGroups_t7252F67656E98D75852FF5CE365E82AB2ADB9288 : public Dictionary_2_t8BE99204247C1C97B2675C8E9AB2B482BADCD725
{
public:
public:
};
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation/SimulatedTouch
struct SimulatedTouch_tBEC96843AFC4D9C67509A3AAAC9FD6C23FE5A288
{
public:
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation/SimulatedTouch::sourceIndex
int32_t ___sourceIndex_0;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation/SimulatedTouch::buttonIndex
int32_t ___buttonIndex_1;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation/SimulatedTouch::touchId
int32_t ___touchId_2;
public:
inline static int32_t get_offset_of_sourceIndex_0() { return static_cast<int32_t>(offsetof(SimulatedTouch_tBEC96843AFC4D9C67509A3AAAC9FD6C23FE5A288, ___sourceIndex_0)); }
inline int32_t get_sourceIndex_0() const { return ___sourceIndex_0; }
inline int32_t* get_address_of_sourceIndex_0() { return &___sourceIndex_0; }
inline void set_sourceIndex_0(int32_t value)
{
___sourceIndex_0 = value;
}
inline static int32_t get_offset_of_buttonIndex_1() { return static_cast<int32_t>(offsetof(SimulatedTouch_tBEC96843AFC4D9C67509A3AAAC9FD6C23FE5A288, ___buttonIndex_1)); }
inline int32_t get_buttonIndex_1() const { return ___buttonIndex_1; }
inline int32_t* get_address_of_buttonIndex_1() { return &___buttonIndex_1; }
inline void set_buttonIndex_1(int32_t value)
{
___buttonIndex_1 = value;
}
inline static int32_t get_offset_of_touchId_2() { return static_cast<int32_t>(offsetof(SimulatedTouch_tBEC96843AFC4D9C67509A3AAAC9FD6C23FE5A288, ___touchId_2)); }
inline int32_t get_touchId_2() const { return ___touchId_2; }
inline int32_t* get_address_of_touchId_2() { return &___touchId_2; }
inline void set_touchId_2(int32_t value)
{
___touchId_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<primaryTouchData>e__FixedBuffer
struct U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.TouchscreenState/<primaryTouchData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14__padding[56];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<touchData>e__FixedBuffer
struct U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.TouchscreenState/<touchData>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D__padding[560];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData
struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3
{
public:
// System.Collections.Generic.List`1<System.String> UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData::PoseNames
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0;
// System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose> UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData::Poses
List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1;
public:
inline static int32_t get_offset_of_PoseNames_0() { return static_cast<int32_t>(offsetof(PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3, ___PoseNames_0)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_PoseNames_0() const { return ___PoseNames_0; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_PoseNames_0() { return &___PoseNames_0; }
inline void set_PoseNames_0(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___PoseNames_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PoseNames_0), (void*)value);
}
inline static int32_t get_offset_of_Poses_1() { return static_cast<int32_t>(offsetof(PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3, ___Poses_1)); }
inline List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * get_Poses_1() const { return ___Poses_1; }
inline List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 ** get_address_of_Poses_1() { return &___Poses_1; }
inline void set_Poses_1(List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * value)
{
___Poses_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Poses_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData
struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_marshaled_pinvoke
{
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0;
List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1;
};
// Native definition for COM marshalling of UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData
struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_marshaled_com
{
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0;
List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1;
};
// UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData
struct ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4
{
public:
// UnityEngine.XR.LegacyInputHelpers.ArmModel UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData::armModel
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * ___armModel_0;
// System.Single UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData::currentBlendAmount
float ___currentBlendAmount_1;
public:
inline static int32_t get_offset_of_armModel_0() { return static_cast<int32_t>(offsetof(ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4, ___armModel_0)); }
inline ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * get_armModel_0() const { return ___armModel_0; }
inline ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 ** get_address_of_armModel_0() { return &___armModel_0; }
inline void set_armModel_0(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * value)
{
___armModel_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___armModel_0), (void*)value);
}
inline static int32_t get_offset_of_currentBlendAmount_1() { return static_cast<int32_t>(offsetof(ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4, ___currentBlendAmount_1)); }
inline float get_currentBlendAmount_1() const { return ___currentBlendAmount_1; }
inline float* get_address_of_currentBlendAmount_1() { return &___currentBlendAmount_1; }
inline void set_currentBlendAmount_1(float value)
{
___currentBlendAmount_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData
struct ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4_marshaled_pinvoke
{
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * ___armModel_0;
float ___currentBlendAmount_1;
};
// Native definition for COM marshalling of UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData
struct ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4_marshaled_com
{
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * ___armModel_0;
float ___currentBlendAmount_1;
};
// UnityEngine.XR.WindowsMR.WindowsMRExtensions/MeshingData
struct MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.WindowsMRExtensions/MeshingData::version
int32_t ___version_0;
// System.Object UnityEngine.XR.WindowsMR.WindowsMRExtensions/MeshingData::surfaceInfo
RuntimeObject * ___surfaceInfo_1;
// System.Object UnityEngine.XR.WindowsMR.WindowsMRExtensions/MeshingData::surfaceMesh
RuntimeObject * ___surfaceMesh_2;
public:
inline static int32_t get_offset_of_version_0() { return static_cast<int32_t>(offsetof(MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703, ___version_0)); }
inline int32_t get_version_0() const { return ___version_0; }
inline int32_t* get_address_of_version_0() { return &___version_0; }
inline void set_version_0(int32_t value)
{
___version_0 = value;
}
inline static int32_t get_offset_of_surfaceInfo_1() { return static_cast<int32_t>(offsetof(MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703, ___surfaceInfo_1)); }
inline RuntimeObject * get_surfaceInfo_1() const { return ___surfaceInfo_1; }
inline RuntimeObject ** get_address_of_surfaceInfo_1() { return &___surfaceInfo_1; }
inline void set_surfaceInfo_1(RuntimeObject * value)
{
___surfaceInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___surfaceInfo_1), (void*)value);
}
inline static int32_t get_offset_of_surfaceMesh_2() { return static_cast<int32_t>(offsetof(MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703, ___surfaceMesh_2)); }
inline RuntimeObject * get_surfaceMesh_2() const { return ___surfaceMesh_2; }
inline RuntimeObject ** get_address_of_surfaceMesh_2() { return &___surfaceMesh_2; }
inline void set_surfaceMesh_2(RuntimeObject * value)
{
___surfaceMesh_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___surfaceMesh_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.WindowsMR.WindowsMRExtensions/MeshingData
struct MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703_marshaled_pinvoke
{
int32_t ___version_0;
Il2CppIUnknown* ___surfaceInfo_1;
Il2CppIUnknown* ___surfaceMesh_2;
};
// Native definition for COM marshalling of UnityEngine.XR.WindowsMR.WindowsMRExtensions/MeshingData
struct MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703_marshaled_com
{
int32_t ___version_0;
Il2CppIUnknown* ___surfaceInfo_1;
Il2CppIUnknown* ___surfaceMesh_2;
};
// UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox
struct WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454
{
public:
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::cx
float ___cx_0;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::cy
float ___cy_1;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::cz
float ___cz_2;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::ex
float ___ex_3;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::ey
float ___ey_4;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::ez
float ___ez_5;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::ox
float ___ox_6;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::oy
float ___oy_7;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::oz
float ___oz_8;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMROrientedBox::ow
float ___ow_9;
public:
inline static int32_t get_offset_of_cx_0() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___cx_0)); }
inline float get_cx_0() const { return ___cx_0; }
inline float* get_address_of_cx_0() { return &___cx_0; }
inline void set_cx_0(float value)
{
___cx_0 = value;
}
inline static int32_t get_offset_of_cy_1() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___cy_1)); }
inline float get_cy_1() const { return ___cy_1; }
inline float* get_address_of_cy_1() { return &___cy_1; }
inline void set_cy_1(float value)
{
___cy_1 = value;
}
inline static int32_t get_offset_of_cz_2() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___cz_2)); }
inline float get_cz_2() const { return ___cz_2; }
inline float* get_address_of_cz_2() { return &___cz_2; }
inline void set_cz_2(float value)
{
___cz_2 = value;
}
inline static int32_t get_offset_of_ex_3() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___ex_3)); }
inline float get_ex_3() const { return ___ex_3; }
inline float* get_address_of_ex_3() { return &___ex_3; }
inline void set_ex_3(float value)
{
___ex_3 = value;
}
inline static int32_t get_offset_of_ey_4() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___ey_4)); }
inline float get_ey_4() const { return ___ey_4; }
inline float* get_address_of_ey_4() { return &___ey_4; }
inline void set_ey_4(float value)
{
___ey_4 = value;
}
inline static int32_t get_offset_of_ez_5() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___ez_5)); }
inline float get_ez_5() const { return ___ez_5; }
inline float* get_address_of_ez_5() { return &___ez_5; }
inline void set_ez_5(float value)
{
___ez_5 = value;
}
inline static int32_t get_offset_of_ox_6() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___ox_6)); }
inline float get_ox_6() const { return ___ox_6; }
inline float* get_address_of_ox_6() { return &___ox_6; }
inline void set_ox_6(float value)
{
___ox_6 = value;
}
inline static int32_t get_offset_of_oy_7() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___oy_7)); }
inline float get_oy_7() const { return ___oy_7; }
inline float* get_address_of_oy_7() { return &___oy_7; }
inline void set_oy_7(float value)
{
___oy_7 = value;
}
inline static int32_t get_offset_of_oz_8() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___oz_8)); }
inline float get_oz_8() const { return ___oz_8; }
inline float* get_address_of_oz_8() { return &___oz_8; }
inline void set_oz_8(float value)
{
___oz_8 = value;
}
inline static int32_t get_offset_of_ow_9() { return static_cast<int32_t>(offsetof(WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454, ___ow_9)); }
inline float get_ow_9() const { return ___ow_9; }
inline float* get_address_of_ow_9() { return &___ow_9; }
inline void set_ow_9(float value)
{
___ow_9 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRPlane
struct WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F
{
public:
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRPlane::d
float ___d_0;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRPlane::nx
float ___nx_1;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRPlane::ny
float ___ny_2;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRPlane::nz
float ___nz_3;
public:
inline static int32_t get_offset_of_d_0() { return static_cast<int32_t>(offsetof(WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F, ___d_0)); }
inline float get_d_0() const { return ___d_0; }
inline float* get_address_of_d_0() { return &___d_0; }
inline void set_d_0(float value)
{
___d_0 = value;
}
inline static int32_t get_offset_of_nx_1() { return static_cast<int32_t>(offsetof(WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F, ___nx_1)); }
inline float get_nx_1() const { return ___nx_1; }
inline float* get_address_of_nx_1() { return &___nx_1; }
inline void set_nx_1(float value)
{
___nx_1 = value;
}
inline static int32_t get_offset_of_ny_2() { return static_cast<int32_t>(offsetof(WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F, ___ny_2)); }
inline float get_ny_2() const { return ___ny_2; }
inline float* get_address_of_ny_2() { return &___ny_2; }
inline void set_ny_2(float value)
{
___ny_2 = value;
}
inline static int32_t get_offset_of_nz_3() { return static_cast<int32_t>(offsetof(WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F, ___nz_3)); }
inline float get_nz_3() const { return ___nz_3; }
inline float* get_address_of_nz_3() { return &___nz_3; }
inline void set_nz_3(float value)
{
___nz_3 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRSphere
struct WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4
{
public:
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRSphere::cx
float ___cx_0;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRSphere::cy
float ___cy_1;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRSphere::cz
float ___cz_2;
// System.Single UnityEngine.XR.WindowsMR.WindowsMRExtensions/WMRSphere::r
float ___r_3;
public:
inline static int32_t get_offset_of_cx_0() { return static_cast<int32_t>(offsetof(WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4, ___cx_0)); }
inline float get_cx_0() const { return ___cx_0; }
inline float* get_address_of_cx_0() { return &___cx_0; }
inline void set_cx_0(float value)
{
___cx_0 = value;
}
inline static int32_t get_offset_of_cy_1() { return static_cast<int32_t>(offsetof(WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4, ___cy_1)); }
inline float get_cy_1() const { return ___cy_1; }
inline float* get_address_of_cy_1() { return &___cy_1; }
inline void set_cy_1(float value)
{
___cy_1 = value;
}
inline static int32_t get_offset_of_cz_2() { return static_cast<int32_t>(offsetof(WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4, ___cz_2)); }
inline float get_cz_2() const { return ___cz_2; }
inline float* get_address_of_cz_2() { return &___cz_2; }
inline void set_cz_2(float value)
{
___cz_2 = value;
}
inline static int32_t get_offset_of_r_3() { return static_cast<int32_t>(offsetof(WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4, ___r_3)); }
inline float get_r_3() const { return ___r_3; }
inline float* get_address_of_r_3() { return &___r_3; }
inline void set_r_3(float value)
{
___r_3 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRInput/SourceState
struct SourceState_t0F3BADF7B18263C8C260E6805158F332AFA1317F
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.WindowsMRInput/SourceState::version
int32_t ___version_0;
// System.Object UnityEngine.XR.WindowsMR.WindowsMRInput/SourceState::nativeState
RuntimeObject * ___nativeState_1;
public:
inline static int32_t get_offset_of_version_0() { return static_cast<int32_t>(offsetof(SourceState_t0F3BADF7B18263C8C260E6805158F332AFA1317F, ___version_0)); }
inline int32_t get_version_0() const { return ___version_0; }
inline int32_t* get_address_of_version_0() { return &___version_0; }
inline void set_version_0(int32_t value)
{
___version_0 = value;
}
inline static int32_t get_offset_of_nativeState_1() { return static_cast<int32_t>(offsetof(SourceState_t0F3BADF7B18263C8C260E6805158F332AFA1317F, ___nativeState_1)); }
inline RuntimeObject * get_nativeState_1() const { return ___nativeState_1; }
inline RuntimeObject ** get_address_of_nativeState_1() { return &___nativeState_1; }
inline void set_nativeState_1(RuntimeObject * value)
{
___nativeState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativeState_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.WindowsMR.WindowsMRInput/SourceState
struct SourceState_t0F3BADF7B18263C8C260E6805158F332AFA1317F_marshaled_pinvoke
{
int32_t ___version_0;
Il2CppIUnknown* ___nativeState_1;
};
// Native definition for COM marshalling of UnityEngine.XR.WindowsMR.WindowsMRInput/SourceState
struct SourceState_t0F3BADF7B18263C8C260E6805158F332AFA1317F_marshaled_com
{
int32_t ___version_0;
Il2CppIUnknown* ___nativeState_1;
};
// UnityEngine.XR.WindowsMR.WindowsMRLoader/UserDefinedSettings
struct UserDefinedSettings_t13075A9CE5747FC83A7F4F3EC5BFA53E0F73402F
{
public:
// System.UInt16 UnityEngine.XR.WindowsMR.WindowsMRLoader/UserDefinedSettings::depthBufferType
uint16_t ___depthBufferType_0;
// System.UInt16 UnityEngine.XR.WindowsMR.WindowsMRLoader/UserDefinedSettings::sharedDepthBuffer
uint16_t ___sharedDepthBuffer_1;
public:
inline static int32_t get_offset_of_depthBufferType_0() { return static_cast<int32_t>(offsetof(UserDefinedSettings_t13075A9CE5747FC83A7F4F3EC5BFA53E0F73402F, ___depthBufferType_0)); }
inline uint16_t get_depthBufferType_0() const { return ___depthBufferType_0; }
inline uint16_t* get_address_of_depthBufferType_0() { return &___depthBufferType_0; }
inline void set_depthBufferType_0(uint16_t value)
{
___depthBufferType_0 = value;
}
inline static int32_t get_offset_of_sharedDepthBuffer_1() { return static_cast<int32_t>(offsetof(UserDefinedSettings_t13075A9CE5747FC83A7F4F3EC5BFA53E0F73402F, ___sharedDepthBuffer_1)); }
inline uint16_t get_sharedDepthBuffer_1() const { return ___sharedDepthBuffer_1; }
inline uint16_t* get_address_of_sharedDepthBuffer_1() { return &___sharedDepthBuffer_1; }
inline void set_sharedDepthBuffer_1(uint16_t value)
{
___sharedDepthBuffer_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
struct Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<supportsTrackableAttachments>k__BackingField
bool ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CsubsystemImplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_3() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4)); }
inline bool get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4() const { return ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4() { return &___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4; }
inline void set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4(bool value)
{
___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
struct Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
struct Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4;
};
// UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor/Cinfo
struct Cinfo_t54ECED2FE09846D0F2F1981C3232E3DB2A87F227
{
public:
// System.String UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_t54ECED2FE09846D0F2F1981C3232E3DB2A87F227, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t54ECED2FE09846D0F2F1981C3232E3DB2A87F227, ___U3CsubsystemImplementationTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_1() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_1; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor/Cinfo
struct Cinfo_t54ECED2FE09846D0F2F1981C3232E3DB2A87F227_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor/Cinfo
struct Cinfo_t54ECED2FE09846D0F2F1981C3232E3DB2A87F227_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_1;
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<supportsInstall>k__BackingField
bool ___U3CsupportsInstallU3Ek__BackingField_0;
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<supportsMatchFrameRate>k__BackingField
bool ___U3CsupportsMatchFrameRateU3Ek__BackingField_1;
// System.String UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_3;
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_4;
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CsupportsInstallU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsupportsInstallU3Ek__BackingField_0)); }
inline bool get_U3CsupportsInstallU3Ek__BackingField_0() const { return ___U3CsupportsInstallU3Ek__BackingField_0; }
inline bool* get_address_of_U3CsupportsInstallU3Ek__BackingField_0() { return &___U3CsupportsInstallU3Ek__BackingField_0; }
inline void set_U3CsupportsInstallU3Ek__BackingField_0(bool value)
{
___U3CsupportsInstallU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CsupportsMatchFrameRateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsupportsMatchFrameRateU3Ek__BackingField_1)); }
inline bool get_U3CsupportsMatchFrameRateU3Ek__BackingField_1() const { return ___U3CsupportsMatchFrameRateU3Ek__BackingField_1; }
inline bool* get_address_of_U3CsupportsMatchFrameRateU3Ek__BackingField_1() { return &___U3CsupportsMatchFrameRateU3Ek__BackingField_1; }
inline void set_U3CsupportsMatchFrameRateU3Ek__BackingField_1(bool value)
{
___U3CsupportsMatchFrameRateU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CidU3Ek__BackingField_2)); }
inline String_t* get_U3CidU3Ek__BackingField_2() const { return ___U3CidU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_2() { return &___U3CidU3Ek__BackingField_2; }
inline void set_U3CidU3Ek__BackingField_2(String_t* value)
{
___U3CidU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CproviderTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_3() const { return ___U3CproviderTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_3() { return &___U3CproviderTypeU3Ek__BackingField_3; }
inline void set_U3CproviderTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsubsystemTypeOverrideU3Ek__BackingField_4)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_4() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_4; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_4() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_4; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_4(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsubsystemImplementationTypeU3Ek__BackingField_5)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_5() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_5; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_5() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_5; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_5(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_pinvoke
{
int32_t ___U3CsupportsInstallU3Ek__BackingField_0;
int32_t ___U3CsupportsMatchFrameRateU3Ek__BackingField_1;
char* ___U3CidU3Ek__BackingField_2;
Type_t * ___U3CproviderTypeU3Ek__BackingField_3;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_4;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_5;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_com
{
int32_t ___U3CsupportsInstallU3Ek__BackingField_0;
int32_t ___U3CsupportsMatchFrameRateU3Ek__BackingField_1;
Il2CppChar* ___U3CidU3Ek__BackingField_2;
Type_t * ___U3CproviderTypeU3Ek__BackingField_3;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_4;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_5;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder
struct ControlBuilder_t7F30262917B7807EF0606E18E05EEA76D5C5862D
{
public:
// UnityEngine.InputSystem.Layouts.InputControlLayout/Builder UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder::builder
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E * ___builder_0;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder::index
int32_t ___index_1;
public:
inline static int32_t get_offset_of_builder_0() { return static_cast<int32_t>(offsetof(ControlBuilder_t7F30262917B7807EF0606E18E05EEA76D5C5862D, ___builder_0)); }
inline Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E * get_builder_0() const { return ___builder_0; }
inline Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E ** get_address_of_builder_0() { return &___builder_0; }
inline void set_builder_0(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E * value)
{
___builder_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___builder_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(ControlBuilder_t7F30262917B7807EF0606E18E05EEA76D5C5862D, ___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;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder
struct ControlBuilder_t7F30262917B7807EF0606E18E05EEA76D5C5862D_marshaled_pinvoke
{
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E * ___builder_0;
int32_t ___index_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Builder/ControlBuilder
struct ControlBuilder_t7F30262917B7807EF0606E18E05EEA76D5C5862D_marshaled_com
{
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E * ___builder_0;
int32_t ___index_1;
};
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson/Capability
struct Capability_tF5B6FF984626974127E090122C8E72283DEAE653
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson/Capability::path
String_t* ___path_0;
// System.String UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson/Capability::value
String_t* ___value_1;
public:
inline static int32_t get_offset_of_path_0() { return static_cast<int32_t>(offsetof(Capability_tF5B6FF984626974127E090122C8E72283DEAE653, ___path_0)); }
inline String_t* get_path_0() const { return ___path_0; }
inline String_t** get_address_of_path_0() { return &___path_0; }
inline void set_path_0(String_t* value)
{
___path_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___path_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Capability_tF5B6FF984626974127E090122C8E72283DEAE653, ___value_1)); }
inline String_t* get_value_1() const { return ___value_1; }
inline String_t** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(String_t* value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson/Capability
struct Capability_tF5B6FF984626974127E090122C8E72283DEAE653_marshaled_pinvoke
{
char* ___path_0;
char* ___value_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson/Capability
struct Capability_tF5B6FF984626974127E090122C8E72283DEAE653_marshaled_com
{
Il2CppChar* ___path_0;
Il2CppChar* ___value_1;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithControlIndex>e__FixedBuffer
struct U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithControlIndex>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166__padding[1];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithoutControlIndex>e__FixedBuffer
struct U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114
{
public:
union
{
struct
{
// System.Byte UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithoutControlIndex>e__FixedBuffer::FixedElementField
uint8_t ___FixedElementField_0;
};
uint8_t U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114__padding[1];
};
public:
inline static int32_t get_offset_of_FixedElementField_0() { return static_cast<int32_t>(offsetof(U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114, ___FixedElementField_0)); }
inline uint8_t get_FixedElementField_0() const { return ___FixedElementField_0; }
inline uint8_t* get_address_of_FixedElementField_0() { return &___FixedElementField_0; }
inline void set_FixedElementField_0(uint8_t value)
{
___FixedElementField_0 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord
struct TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901
{
public:
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord::tileX
int32_t ___tileX_0;
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord::tileZ
int32_t ___tileZ_1;
public:
inline static int32_t get_offset_of_tileX_0() { return static_cast<int32_t>(offsetof(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901, ___tileX_0)); }
inline int32_t get_tileX_0() const { return ___tileX_0; }
inline int32_t* get_address_of_tileX_0() { return &___tileX_0; }
inline void set_tileX_0(int32_t value)
{
___tileX_0 = value;
}
inline static int32_t get_offset_of_tileZ_1() { return static_cast<int32_t>(offsetof(TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901, ___tileZ_1)); }
inline int32_t get_tileZ_1() const { return ___tileZ_1; }
inline int32_t* get_address_of_tileZ_1() { return &___tileZ_1; }
inline void set_tileZ_1(int32_t value)
{
___tileZ_1 = value;
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>
struct InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B, ___firstValue_1)); }
inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB get_firstValue_1() const { return ___firstValue_1; }
inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB value)
{
___firstValue_1 = value;
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B, ___additionalValues_2)); }
inline KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48* get_additionalValues_2() const { return ___additionalValues_2; }
inline KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(KeyValuePair_2U5BU5D_t346E5EF32BF6AB8CE577D2FE538C7B4F90DA2D48* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Utilities.InternedString>
struct InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95, ___firstValue_1)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_firstValue_1() const { return ___firstValue_1; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95, ___additionalValues_2)); }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* get_additionalValues_2() const { return ___additionalValues_2; }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection>
struct InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8 ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
OngoingAccountSelectionU5BU5D_t105469891865A4ECAD348DAAFBB4E709E82FDBCE* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4, ___firstValue_1)); }
inline OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8 get_firstValue_1() const { return ___firstValue_1; }
inline OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8 * get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8 value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___device_0), (void*)NULL);
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4, ___additionalValues_2)); }
inline OngoingAccountSelectionU5BU5D_t105469891865A4ECAD348DAAFBB4E709E82FDBCE* get_additionalValues_2() const { return ___additionalValues_2; }
inline OngoingAccountSelectionU5BU5D_t105469891865A4ECAD348DAAFBB4E709E82FDBCE** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(OngoingAccountSelectionU5BU5D_t105469891865A4ECAD348DAAFBB4E709E82FDBCE* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// System.Nullable`1<System.ArraySegment`1<System.Byte>>
struct Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4
{
public:
// T System.Nullable`1::value
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4, ___value_0)); }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE get_value_0() const { return ___value_0; }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____array_0), (void*)NULL);
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<UnityEngine.Color>
struct Nullable_1_tA06400BA484934D9CEBAF66D0E71C822EF09A498
{
public:
// T System.Nullable`1::value
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tA06400BA484934D9CEBAF66D0E71C822EF09A498, ___value_0)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_value_0() const { return ___value_0; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tA06400BA484934D9CEBAF66D0E71C822EF09A498, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.DateTime>
struct Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D
{
public:
// T System.Nullable`1::value
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D, ___value_0)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_value_0() const { return ___value_0; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<UnityEngine.InputSystem.InputControlScheme>
struct Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93
{
public:
// T System.Nullable`1::value
InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93, ___value_0)); }
inline InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190 get_value_0() const { return ___value_0; }
inline InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(InputControlScheme_t0BE74578857527363E5F7AE24BD73663173D7190 value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_BindingGroup_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_DeviceRequirements_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<UnityEngine.InputSystem.Users.InputUserAccountHandle>
struct Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004
{
public:
// T System.Nullable`1::value
InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004, ___value_0)); }
inline InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 get_value_0() const { return ___value_0; }
inline InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___m_ApiName_0), (void*)NULL);
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Dissonance.PlayerChannel>
struct Nullable_1_t96D5A796058E93F989EA6EEBE7F2B97D2D8E6DD1
{
public:
// T System.Nullable`1::value
PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t96D5A796058E93F989EA6EEBE7F2B97D2D8E6DD1, ___value_0)); }
inline PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5 get_value_0() const { return ___value_0; }
inline PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5 value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____playerId_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____properties_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____channels_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t96D5A796058E93F989EA6EEBE7F2B97D2D8E6DD1, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Dissonance.RoomChannel>
struct Nullable_1_t920FB56DD6CAE002766365D23C8F133E469A847F
{
public:
// T System.Nullable`1::value
RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t920FB56DD6CAE002766365D23C8F133E469A847F, ___value_0)); }
inline RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74 get_value_0() const { return ___value_0; }
inline RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74 value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____roomId_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____properties_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____channels_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t920FB56DD6CAE002766365D23C8F133E469A847F, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Dissonance.RoomMembership>
struct Nullable_1_t93F3D032CAA3D83B431DBD56752DF5343783B822
{
public:
// T System.Nullable`1::value
RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t93F3D032CAA3D83B431DBD56752DF5343783B822, ___value_0)); }
inline RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF get_value_0() const { return ___value_0; }
inline RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____name_0), (void*)NULL);
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t93F3D032CAA3D83B431DBD56752DF5343783B822, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Mirror.Cloud.ListServerService.ServerCollectionJson>
struct Nullable_1_t042A055CF6AC1232D1CEC87B86A0E2DC78444DDB
{
public:
// T System.Nullable`1::value
ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t042A055CF6AC1232D1CEC87B86A0E2DC78444DDB, ___value_0)); }
inline ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55 get_value_0() const { return ___value_0; }
inline ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(ServerCollectionJson_tBFC797E551DB0A17F1BA477B64D3D928A5C18B55 value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->___servers_0), (void*)NULL);
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t042A055CF6AC1232D1CEC87B86A0E2DC78444DDB, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct TrackingSubsystem_4_t5C7E2B8B7A9943DF8B9FF5B46FB5AFA71E9826F1 : public SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2
{
public:
public:
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t892C62E45E2A7AB7DB49B28F20A594598976739A : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t892C62E45E2A7AB7DB49B28F20A594598976739A_StaticFields
{
public:
// <PrivateImplementationDetails>/__StaticArrayInitTypeSize=24 <PrivateImplementationDetails>::6E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E
__StaticArrayInitTypeSizeU3D24_t805D53F76E7ABD63008C8E5943E79D895AFF5586 ___6E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0;
public:
inline static int32_t get_offset_of_U36E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t892C62E45E2A7AB7DB49B28F20A594598976739A_StaticFields, ___6E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0)); }
inline __StaticArrayInitTypeSizeU3D24_t805D53F76E7ABD63008C8E5943E79D895AFF5586 get_U36E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0() const { return ___6E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0; }
inline __StaticArrayInitTypeSizeU3D24_t805D53F76E7ABD63008C8E5943E79D895AFF5586 * get_address_of_U36E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0() { return &___6E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0; }
inline void set_U36E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0(__StaticArrayInitTypeSizeU3D24_t805D53F76E7ABD63008C8E5943E79D895AFF5586 value)
{
___6E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.AccelerometerState
struct AccelerometerState_t3DCF3AF8808830DB8A0AA8F46B9F7270056C28B9
{
public:
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.AccelerometerState::acceleration
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___acceleration_0;
public:
inline static int32_t get_offset_of_acceleration_0() { return static_cast<int32_t>(offsetof(AccelerometerState_t3DCF3AF8808830DB8A0AA8F46B9F7270056C28B9, ___acceleration_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_acceleration_0() const { return ___acceleration_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_acceleration_0() { return &___acceleration_0; }
inline void set_acceleration_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___acceleration_0 = value;
}
};
// Dissonance.Audio.Capture.AecSuppressionLevels
struct AecSuppressionLevels_tB59CE6F6E65D5BD23B8A56D50FDFED3FA80AEAE7
{
public:
// System.Int32 Dissonance.Audio.Capture.AecSuppressionLevels::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AecSuppressionLevels_tB59CE6F6E65D5BD23B8A56D50FDFED3FA80AEAE7, ___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;
}
};
// Dissonance.Audio.Capture.AecmRoutingMode
struct AecmRoutingMode_tA0B0D13107F6880C0D15E5B33651312F6259D806
{
public:
// System.Int32 Dissonance.Audio.Capture.AecmRoutingMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AecmRoutingMode_tA0B0D13107F6880C0D15E5B33651312F6259D806, ___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;
}
};
// Unity.Collections.Allocator
struct Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05
{
public:
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05, ___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.Analytics.AnalyticsSessionState
struct AnalyticsSessionState_t886946F698BCE50BAA2E7418B105E6C4C2F155E6
{
public:
// System.Int32 UnityEngine.Analytics.AnalyticsSessionState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AnalyticsSessionState_t886946F698BCE50BAA2E7418B105E6C4C2F155E6, ___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.AndroidJavaProxy
struct AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF : public RuntimeObject
{
public:
// UnityEngine.AndroidJavaClass UnityEngine.AndroidJavaProxy::javaInterface
AndroidJavaClass_t52E934B16476D72AA6E4B248F989F2F825EB62D4 * ___javaInterface_0;
// System.IntPtr UnityEngine.AndroidJavaProxy::proxyObject
intptr_t ___proxyObject_1;
public:
inline static int32_t get_offset_of_javaInterface_0() { return static_cast<int32_t>(offsetof(AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF, ___javaInterface_0)); }
inline AndroidJavaClass_t52E934B16476D72AA6E4B248F989F2F825EB62D4 * get_javaInterface_0() const { return ___javaInterface_0; }
inline AndroidJavaClass_t52E934B16476D72AA6E4B248F989F2F825EB62D4 ** get_address_of_javaInterface_0() { return &___javaInterface_0; }
inline void set_javaInterface_0(AndroidJavaClass_t52E934B16476D72AA6E4B248F989F2F825EB62D4 * value)
{
___javaInterface_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___javaInterface_0), (void*)value);
}
inline static int32_t get_offset_of_proxyObject_1() { return static_cast<int32_t>(offsetof(AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF, ___proxyObject_1)); }
inline intptr_t get_proxyObject_1() const { return ___proxyObject_1; }
inline intptr_t* get_address_of_proxyObject_1() { return &___proxyObject_1; }
inline void set_proxyObject_1(intptr_t value)
{
___proxyObject_1 = value;
}
};
struct AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF_StaticFields
{
public:
// UnityEngine.GlobalJavaObjectRef UnityEngine.AndroidJavaProxy::s_JavaLangSystemClass
GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * ___s_JavaLangSystemClass_2;
// System.IntPtr UnityEngine.AndroidJavaProxy::s_HashCodeMethodID
intptr_t ___s_HashCodeMethodID_3;
public:
inline static int32_t get_offset_of_s_JavaLangSystemClass_2() { return static_cast<int32_t>(offsetof(AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF_StaticFields, ___s_JavaLangSystemClass_2)); }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * get_s_JavaLangSystemClass_2() const { return ___s_JavaLangSystemClass_2; }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 ** get_address_of_s_JavaLangSystemClass_2() { return &___s_JavaLangSystemClass_2; }
inline void set_s_JavaLangSystemClass_2(GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * value)
{
___s_JavaLangSystemClass_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_JavaLangSystemClass_2), (void*)value);
}
inline static int32_t get_offset_of_s_HashCodeMethodID_3() { return static_cast<int32_t>(offsetof(AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF_StaticFields, ___s_HashCodeMethodID_3)); }
inline intptr_t get_s_HashCodeMethodID_3() const { return ___s_HashCodeMethodID_3; }
inline intptr_t* get_address_of_s_HashCodeMethodID_3() { return &___s_HashCodeMethodID_3; }
inline void set_s_HashCodeMethodID_3(intptr_t value)
{
___s_HashCodeMethodID_3 = value;
}
};
// UnityEngine.AndroidReflection
struct AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16 : public RuntimeObject
{
public:
public:
};
struct AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields
{
public:
// UnityEngine.GlobalJavaObjectRef UnityEngine.AndroidReflection::s_ReflectionHelperClass
GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * ___s_ReflectionHelperClass_0;
// System.IntPtr UnityEngine.AndroidReflection::s_ReflectionHelperGetConstructorID
intptr_t ___s_ReflectionHelperGetConstructorID_1;
// System.IntPtr UnityEngine.AndroidReflection::s_ReflectionHelperGetMethodID
intptr_t ___s_ReflectionHelperGetMethodID_2;
// System.IntPtr UnityEngine.AndroidReflection::s_ReflectionHelperGetFieldID
intptr_t ___s_ReflectionHelperGetFieldID_3;
// System.IntPtr UnityEngine.AndroidReflection::s_ReflectionHelperGetFieldSignature
intptr_t ___s_ReflectionHelperGetFieldSignature_4;
// System.IntPtr UnityEngine.AndroidReflection::s_ReflectionHelperNewProxyInstance
intptr_t ___s_ReflectionHelperNewProxyInstance_5;
// System.IntPtr UnityEngine.AndroidReflection::s_ReflectionHelperSetNativeExceptionOnProxy
intptr_t ___s_ReflectionHelperSetNativeExceptionOnProxy_6;
// System.IntPtr UnityEngine.AndroidReflection::s_FieldGetDeclaringClass
intptr_t ___s_FieldGetDeclaringClass_7;
public:
inline static int32_t get_offset_of_s_ReflectionHelperClass_0() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_ReflectionHelperClass_0)); }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * get_s_ReflectionHelperClass_0() const { return ___s_ReflectionHelperClass_0; }
inline GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 ** get_address_of_s_ReflectionHelperClass_0() { return &___s_ReflectionHelperClass_0; }
inline void set_s_ReflectionHelperClass_0(GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 * value)
{
___s_ReflectionHelperClass_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ReflectionHelperClass_0), (void*)value);
}
inline static int32_t get_offset_of_s_ReflectionHelperGetConstructorID_1() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_ReflectionHelperGetConstructorID_1)); }
inline intptr_t get_s_ReflectionHelperGetConstructorID_1() const { return ___s_ReflectionHelperGetConstructorID_1; }
inline intptr_t* get_address_of_s_ReflectionHelperGetConstructorID_1() { return &___s_ReflectionHelperGetConstructorID_1; }
inline void set_s_ReflectionHelperGetConstructorID_1(intptr_t value)
{
___s_ReflectionHelperGetConstructorID_1 = value;
}
inline static int32_t get_offset_of_s_ReflectionHelperGetMethodID_2() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_ReflectionHelperGetMethodID_2)); }
inline intptr_t get_s_ReflectionHelperGetMethodID_2() const { return ___s_ReflectionHelperGetMethodID_2; }
inline intptr_t* get_address_of_s_ReflectionHelperGetMethodID_2() { return &___s_ReflectionHelperGetMethodID_2; }
inline void set_s_ReflectionHelperGetMethodID_2(intptr_t value)
{
___s_ReflectionHelperGetMethodID_2 = value;
}
inline static int32_t get_offset_of_s_ReflectionHelperGetFieldID_3() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_ReflectionHelperGetFieldID_3)); }
inline intptr_t get_s_ReflectionHelperGetFieldID_3() const { return ___s_ReflectionHelperGetFieldID_3; }
inline intptr_t* get_address_of_s_ReflectionHelperGetFieldID_3() { return &___s_ReflectionHelperGetFieldID_3; }
inline void set_s_ReflectionHelperGetFieldID_3(intptr_t value)
{
___s_ReflectionHelperGetFieldID_3 = value;
}
inline static int32_t get_offset_of_s_ReflectionHelperGetFieldSignature_4() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_ReflectionHelperGetFieldSignature_4)); }
inline intptr_t get_s_ReflectionHelperGetFieldSignature_4() const { return ___s_ReflectionHelperGetFieldSignature_4; }
inline intptr_t* get_address_of_s_ReflectionHelperGetFieldSignature_4() { return &___s_ReflectionHelperGetFieldSignature_4; }
inline void set_s_ReflectionHelperGetFieldSignature_4(intptr_t value)
{
___s_ReflectionHelperGetFieldSignature_4 = value;
}
inline static int32_t get_offset_of_s_ReflectionHelperNewProxyInstance_5() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_ReflectionHelperNewProxyInstance_5)); }
inline intptr_t get_s_ReflectionHelperNewProxyInstance_5() const { return ___s_ReflectionHelperNewProxyInstance_5; }
inline intptr_t* get_address_of_s_ReflectionHelperNewProxyInstance_5() { return &___s_ReflectionHelperNewProxyInstance_5; }
inline void set_s_ReflectionHelperNewProxyInstance_5(intptr_t value)
{
___s_ReflectionHelperNewProxyInstance_5 = value;
}
inline static int32_t get_offset_of_s_ReflectionHelperSetNativeExceptionOnProxy_6() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_ReflectionHelperSetNativeExceptionOnProxy_6)); }
inline intptr_t get_s_ReflectionHelperSetNativeExceptionOnProxy_6() const { return ___s_ReflectionHelperSetNativeExceptionOnProxy_6; }
inline intptr_t* get_address_of_s_ReflectionHelperSetNativeExceptionOnProxy_6() { return &___s_ReflectionHelperSetNativeExceptionOnProxy_6; }
inline void set_s_ReflectionHelperSetNativeExceptionOnProxy_6(intptr_t value)
{
___s_ReflectionHelperSetNativeExceptionOnProxy_6 = value;
}
inline static int32_t get_offset_of_s_FieldGetDeclaringClass_7() { return static_cast<int32_t>(offsetof(AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields, ___s_FieldGetDeclaringClass_7)); }
inline intptr_t get_s_FieldGetDeclaringClass_7() const { return ___s_FieldGetDeclaringClass_7; }
inline intptr_t* get_address_of_s_FieldGetDeclaringClass_7() { return &___s_FieldGetDeclaringClass_7; }
inline void set_s_FieldGetDeclaringClass_7(intptr_t value)
{
___s_FieldGetDeclaringClass_7 = 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.InputSystem.LowLevel.AttitudeState
struct AttitudeState_tECDFB2A782FC7EB0991AFE84C9C87371A9A867A2
{
public:
// UnityEngine.Quaternion UnityEngine.InputSystem.LowLevel.AttitudeState::attitude
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___attitude_0;
public:
inline static int32_t get_offset_of_attitude_0() { return static_cast<int32_t>(offsetof(AttitudeState_tECDFB2A782FC7EB0991AFE84C9C87371A9A867A2, ___attitude_0)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_attitude_0() const { return ___attitude_0; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_attitude_0() { return &___attitude_0; }
inline void set_attitude_0(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___attitude_0 = value;
}
};
// Dissonance.AudioQuality
struct AudioQuality_tEA0F031D710B08E09C808B481641473E0D224315
{
public:
// System.Int32 Dissonance.AudioQuality::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AudioQuality_tEA0F031D710B08E09C808B481641473E0D224315, ___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.AudioRolloffMode
struct AudioRolloffMode_tF03AAD2EA769530A00736FF411F5A77B8C753CA1
{
public:
// System.Int32 UnityEngine.AudioRolloffMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AudioRolloffMode_tF03AAD2EA769530A00736FF411F5A77B8C753CA1, ___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.AudioSpeakerMode
struct AudioSpeakerMode_tFB0F4469E8C6A7FE319AA072D7CAA6006E57B80E
{
public:
// System.Int32 UnityEngine.AudioSpeakerMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AudioSpeakerMode_tFB0F4469E8C6A7FE319AA072D7CAA6006E57B80E, ___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;
}
};
// Dissonance.Audio.Capture.BasePreprocessingPipeline
struct BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777 : public RuntimeObject
{
public:
// Dissonance.Audio.ArvCalculator Dissonance.Audio.Capture.BasePreprocessingPipeline::_arv
ArvCalculator_t37426E5C165B02C59593A05AEB4A7AC83811455D ____arv_1;
// System.Int32 Dissonance.Audio.Capture.BasePreprocessingPipeline::_droppedSamples
int32_t ____droppedSamples_2;
// System.Object Dissonance.Audio.Capture.BasePreprocessingPipeline::_inputWriteLock
RuntimeObject * ____inputWriteLock_3;
// Dissonance.Audio.Capture.BufferedSampleProvider Dissonance.Audio.Capture.BasePreprocessingPipeline::_resamplerInput
BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * ____resamplerInput_4;
// Dissonance.Audio.Capture.Resampler Dissonance.Audio.Capture.BasePreprocessingPipeline::_resampler
Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C * ____resampler_5;
// Dissonance.Audio.Capture.SampleToFrameProvider Dissonance.Audio.Capture.BasePreprocessingPipeline::_resampledOutput
SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0 * ____resampledOutput_6;
// System.Single[] Dissonance.Audio.Capture.BasePreprocessingPipeline::_intermediateFrame
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____intermediateFrame_7;
// Dissonance.Audio.AudioFileWriter Dissonance.Audio.Capture.BasePreprocessingPipeline::_diagnosticOutputRecorder
AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * ____diagnosticOutputRecorder_8;
// System.Int32 Dissonance.Audio.Capture.BasePreprocessingPipeline::_outputFrameSize
int32_t ____outputFrameSize_9;
// NAudio.Wave.WaveFormat Dissonance.Audio.Capture.BasePreprocessingPipeline::_outputFormat
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____outputFormat_10;
// System.Boolean Dissonance.Audio.Capture.BasePreprocessingPipeline::_resetApplied
bool ____resetApplied_11;
// System.Int32 Dissonance.Audio.Capture.BasePreprocessingPipeline::_resetRequested
int32_t ____resetRequested_12;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Capture.BasePreprocessingPipeline::_runThread
bool ____runThread_13;
// Dissonance.Threading.DThread Dissonance.Audio.Capture.BasePreprocessingPipeline::_thread
DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42 * ____thread_14;
// System.Threading.AutoResetEvent Dissonance.Audio.Capture.BasePreprocessingPipeline::_threadEvent
AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * ____threadEvent_15;
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.Audio.Capture.IMicrophoneSubscriber>> Dissonance.Audio.Capture.BasePreprocessingPipeline::_micSubscriptions
ReadonlyLockedValue_1_t2E2291D836CF4B3033F5D5AA07429A6066CB7187 * ____micSubscriptions_16;
// System.Int32 Dissonance.Audio.Capture.BasePreprocessingPipeline::_micSubscriptionCount
int32_t ____micSubscriptionCount_17;
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.VAD.IVoiceActivationListener>> Dissonance.Audio.Capture.BasePreprocessingPipeline::_vadSubscriptions
ReadonlyLockedValue_1_t1DDB0BC1CBF89D1A072EC6E4E0E5E769813DEBD2 * ____vadSubscriptions_18;
// System.Int32 Dissonance.Audio.Capture.BasePreprocessingPipeline::_vadSubscriptionCount
int32_t ____vadSubscriptionCount_19;
// System.Int32 Dissonance.Audio.Capture.BasePreprocessingPipeline::_upstreamLatencyMs
int32_t ____upstreamLatencyMs_20;
// System.Int32 Dissonance.Audio.Capture.BasePreprocessingPipeline::_estimatedPreprocessorLatencyMs
int32_t ____estimatedPreprocessorLatencyMs_21;
public:
inline static int32_t get_offset_of__arv_1() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____arv_1)); }
inline ArvCalculator_t37426E5C165B02C59593A05AEB4A7AC83811455D get__arv_1() const { return ____arv_1; }
inline ArvCalculator_t37426E5C165B02C59593A05AEB4A7AC83811455D * get_address_of__arv_1() { return &____arv_1; }
inline void set__arv_1(ArvCalculator_t37426E5C165B02C59593A05AEB4A7AC83811455D value)
{
____arv_1 = value;
}
inline static int32_t get_offset_of__droppedSamples_2() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____droppedSamples_2)); }
inline int32_t get__droppedSamples_2() const { return ____droppedSamples_2; }
inline int32_t* get_address_of__droppedSamples_2() { return &____droppedSamples_2; }
inline void set__droppedSamples_2(int32_t value)
{
____droppedSamples_2 = value;
}
inline static int32_t get_offset_of__inputWriteLock_3() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____inputWriteLock_3)); }
inline RuntimeObject * get__inputWriteLock_3() const { return ____inputWriteLock_3; }
inline RuntimeObject ** get_address_of__inputWriteLock_3() { return &____inputWriteLock_3; }
inline void set__inputWriteLock_3(RuntimeObject * value)
{
____inputWriteLock_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inputWriteLock_3), (void*)value);
}
inline static int32_t get_offset_of__resamplerInput_4() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____resamplerInput_4)); }
inline BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * get__resamplerInput_4() const { return ____resamplerInput_4; }
inline BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF ** get_address_of__resamplerInput_4() { return &____resamplerInput_4; }
inline void set__resamplerInput_4(BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * value)
{
____resamplerInput_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resamplerInput_4), (void*)value);
}
inline static int32_t get_offset_of__resampler_5() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____resampler_5)); }
inline Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C * get__resampler_5() const { return ____resampler_5; }
inline Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C ** get_address_of__resampler_5() { return &____resampler_5; }
inline void set__resampler_5(Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C * value)
{
____resampler_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resampler_5), (void*)value);
}
inline static int32_t get_offset_of__resampledOutput_6() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____resampledOutput_6)); }
inline SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0 * get__resampledOutput_6() const { return ____resampledOutput_6; }
inline SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0 ** get_address_of__resampledOutput_6() { return &____resampledOutput_6; }
inline void set__resampledOutput_6(SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0 * value)
{
____resampledOutput_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resampledOutput_6), (void*)value);
}
inline static int32_t get_offset_of__intermediateFrame_7() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____intermediateFrame_7)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__intermediateFrame_7() const { return ____intermediateFrame_7; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__intermediateFrame_7() { return &____intermediateFrame_7; }
inline void set__intermediateFrame_7(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
____intermediateFrame_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____intermediateFrame_7), (void*)value);
}
inline static int32_t get_offset_of__diagnosticOutputRecorder_8() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____diagnosticOutputRecorder_8)); }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * get__diagnosticOutputRecorder_8() const { return ____diagnosticOutputRecorder_8; }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A ** get_address_of__diagnosticOutputRecorder_8() { return &____diagnosticOutputRecorder_8; }
inline void set__diagnosticOutputRecorder_8(AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * value)
{
____diagnosticOutputRecorder_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____diagnosticOutputRecorder_8), (void*)value);
}
inline static int32_t get_offset_of__outputFrameSize_9() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____outputFrameSize_9)); }
inline int32_t get__outputFrameSize_9() const { return ____outputFrameSize_9; }
inline int32_t* get_address_of__outputFrameSize_9() { return &____outputFrameSize_9; }
inline void set__outputFrameSize_9(int32_t value)
{
____outputFrameSize_9 = value;
}
inline static int32_t get_offset_of__outputFormat_10() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____outputFormat_10)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__outputFormat_10() const { return ____outputFormat_10; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__outputFormat_10() { return &____outputFormat_10; }
inline void set__outputFormat_10(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____outputFormat_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outputFormat_10), (void*)value);
}
inline static int32_t get_offset_of__resetApplied_11() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____resetApplied_11)); }
inline bool get__resetApplied_11() const { return ____resetApplied_11; }
inline bool* get_address_of__resetApplied_11() { return &____resetApplied_11; }
inline void set__resetApplied_11(bool value)
{
____resetApplied_11 = value;
}
inline static int32_t get_offset_of__resetRequested_12() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____resetRequested_12)); }
inline int32_t get__resetRequested_12() const { return ____resetRequested_12; }
inline int32_t* get_address_of__resetRequested_12() { return &____resetRequested_12; }
inline void set__resetRequested_12(int32_t value)
{
____resetRequested_12 = value;
}
inline static int32_t get_offset_of__runThread_13() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____runThread_13)); }
inline bool get__runThread_13() const { return ____runThread_13; }
inline bool* get_address_of__runThread_13() { return &____runThread_13; }
inline void set__runThread_13(bool value)
{
____runThread_13 = value;
}
inline static int32_t get_offset_of__thread_14() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____thread_14)); }
inline DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42 * get__thread_14() const { return ____thread_14; }
inline DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42 ** get_address_of__thread_14() { return &____thread_14; }
inline void set__thread_14(DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42 * value)
{
____thread_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____thread_14), (void*)value);
}
inline static int32_t get_offset_of__threadEvent_15() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____threadEvent_15)); }
inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * get__threadEvent_15() const { return ____threadEvent_15; }
inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D ** get_address_of__threadEvent_15() { return &____threadEvent_15; }
inline void set__threadEvent_15(AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * value)
{
____threadEvent_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____threadEvent_15), (void*)value);
}
inline static int32_t get_offset_of__micSubscriptions_16() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____micSubscriptions_16)); }
inline ReadonlyLockedValue_1_t2E2291D836CF4B3033F5D5AA07429A6066CB7187 * get__micSubscriptions_16() const { return ____micSubscriptions_16; }
inline ReadonlyLockedValue_1_t2E2291D836CF4B3033F5D5AA07429A6066CB7187 ** get_address_of__micSubscriptions_16() { return &____micSubscriptions_16; }
inline void set__micSubscriptions_16(ReadonlyLockedValue_1_t2E2291D836CF4B3033F5D5AA07429A6066CB7187 * value)
{
____micSubscriptions_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____micSubscriptions_16), (void*)value);
}
inline static int32_t get_offset_of__micSubscriptionCount_17() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____micSubscriptionCount_17)); }
inline int32_t get__micSubscriptionCount_17() const { return ____micSubscriptionCount_17; }
inline int32_t* get_address_of__micSubscriptionCount_17() { return &____micSubscriptionCount_17; }
inline void set__micSubscriptionCount_17(int32_t value)
{
____micSubscriptionCount_17 = value;
}
inline static int32_t get_offset_of__vadSubscriptions_18() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____vadSubscriptions_18)); }
inline ReadonlyLockedValue_1_t1DDB0BC1CBF89D1A072EC6E4E0E5E769813DEBD2 * get__vadSubscriptions_18() const { return ____vadSubscriptions_18; }
inline ReadonlyLockedValue_1_t1DDB0BC1CBF89D1A072EC6E4E0E5E769813DEBD2 ** get_address_of__vadSubscriptions_18() { return &____vadSubscriptions_18; }
inline void set__vadSubscriptions_18(ReadonlyLockedValue_1_t1DDB0BC1CBF89D1A072EC6E4E0E5E769813DEBD2 * value)
{
____vadSubscriptions_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____vadSubscriptions_18), (void*)value);
}
inline static int32_t get_offset_of__vadSubscriptionCount_19() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____vadSubscriptionCount_19)); }
inline int32_t get__vadSubscriptionCount_19() const { return ____vadSubscriptionCount_19; }
inline int32_t* get_address_of__vadSubscriptionCount_19() { return &____vadSubscriptionCount_19; }
inline void set__vadSubscriptionCount_19(int32_t value)
{
____vadSubscriptionCount_19 = value;
}
inline static int32_t get_offset_of__upstreamLatencyMs_20() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____upstreamLatencyMs_20)); }
inline int32_t get__upstreamLatencyMs_20() const { return ____upstreamLatencyMs_20; }
inline int32_t* get_address_of__upstreamLatencyMs_20() { return &____upstreamLatencyMs_20; }
inline void set__upstreamLatencyMs_20(int32_t value)
{
____upstreamLatencyMs_20 = value;
}
inline static int32_t get_offset_of__estimatedPreprocessorLatencyMs_21() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777, ____estimatedPreprocessorLatencyMs_21)); }
inline int32_t get__estimatedPreprocessorLatencyMs_21() const { return ____estimatedPreprocessorLatencyMs_21; }
inline int32_t* get_address_of__estimatedPreprocessorLatencyMs_21() { return &____estimatedPreprocessorLatencyMs_21; }
inline void set__estimatedPreprocessorLatencyMs_21(int32_t value)
{
____estimatedPreprocessorLatencyMs_21 = value;
}
};
struct BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Capture.BasePreprocessingPipeline::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// UnityEngine.InputSystem.XR.Bone
struct Bone_t351837659425A759E2D538ECDB43373FEC1E6121
{
public:
// System.UInt32 UnityEngine.InputSystem.XR.Bone::<parentBoneIndex>k__BackingField
uint32_t ___U3CparentBoneIndexU3Ek__BackingField_0;
// UnityEngine.Vector3 UnityEngine.InputSystem.XR.Bone::<position>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CpositionU3Ek__BackingField_1;
// UnityEngine.Quaternion UnityEngine.InputSystem.XR.Bone::<rotation>k__BackingField
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___U3CrotationU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CparentBoneIndexU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Bone_t351837659425A759E2D538ECDB43373FEC1E6121, ___U3CparentBoneIndexU3Ek__BackingField_0)); }
inline uint32_t get_U3CparentBoneIndexU3Ek__BackingField_0() const { return ___U3CparentBoneIndexU3Ek__BackingField_0; }
inline uint32_t* get_address_of_U3CparentBoneIndexU3Ek__BackingField_0() { return &___U3CparentBoneIndexU3Ek__BackingField_0; }
inline void set_U3CparentBoneIndexU3Ek__BackingField_0(uint32_t value)
{
___U3CparentBoneIndexU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Bone_t351837659425A759E2D538ECDB43373FEC1E6121, ___U3CpositionU3Ek__BackingField_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CpositionU3Ek__BackingField_1() const { return ___U3CpositionU3Ek__BackingField_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CpositionU3Ek__BackingField_1() { return &___U3CpositionU3Ek__BackingField_1; }
inline void set_U3CpositionU3Ek__BackingField_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CpositionU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CrotationU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Bone_t351837659425A759E2D538ECDB43373FEC1E6121, ___U3CrotationU3Ek__BackingField_2)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_U3CrotationU3Ek__BackingField_2() const { return ___U3CrotationU3Ek__BackingField_2; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_U3CrotationU3Ek__BackingField_2() { return &___U3CrotationU3Ek__BackingField_2; }
inline void set_U3CrotationU3Ek__BackingField_2(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___U3CrotationU3Ek__BackingField_2 = value;
}
};
// UnityEngine.InputSystem.XR.Haptics.BufferedRumble
struct BufferedRumble_t7CAEFC39A57256B8119174B6FD9DA6F7A315AA9C
{
public:
// UnityEngine.InputSystem.XR.Haptics.HapticCapabilities UnityEngine.InputSystem.XR.Haptics.BufferedRumble::<capabilities>k__BackingField
HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB ___U3CcapabilitiesU3Ek__BackingField_0;
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.XR.Haptics.BufferedRumble::<device>k__BackingField
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___U3CdeviceU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CcapabilitiesU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(BufferedRumble_t7CAEFC39A57256B8119174B6FD9DA6F7A315AA9C, ___U3CcapabilitiesU3Ek__BackingField_0)); }
inline HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB get_U3CcapabilitiesU3Ek__BackingField_0() const { return ___U3CcapabilitiesU3Ek__BackingField_0; }
inline HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB * get_address_of_U3CcapabilitiesU3Ek__BackingField_0() { return &___U3CcapabilitiesU3Ek__BackingField_0; }
inline void set_U3CcapabilitiesU3Ek__BackingField_0(HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB value)
{
___U3CcapabilitiesU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CdeviceU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(BufferedRumble_t7CAEFC39A57256B8119174B6FD9DA6F7A315AA9C, ___U3CdeviceU3Ek__BackingField_1)); }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * get_U3CdeviceU3Ek__BackingField_1() const { return ___U3CdeviceU3Ek__BackingField_1; }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 ** get_address_of_U3CdeviceU3Ek__BackingField_1() { return &___U3CdeviceU3Ek__BackingField_1; }
inline void set_U3CdeviceU3Ek__BackingField_1(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * value)
{
___U3CdeviceU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceU3Ek__BackingField_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.XR.Haptics.BufferedRumble
struct BufferedRumble_t7CAEFC39A57256B8119174B6FD9DA6F7A315AA9C_marshaled_pinvoke
{
HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB ___U3CcapabilitiesU3Ek__BackingField_0;
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___U3CdeviceU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.XR.Haptics.BufferedRumble
struct BufferedRumble_t7CAEFC39A57256B8119174B6FD9DA6F7A315AA9C_marshaled_com
{
HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB ___U3CcapabilitiesU3Ek__BackingField_0;
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___U3CdeviceU3Ek__BackingField_1;
};
// System.Runtime.InteropServices.CallingConvention
struct CallingConvention_tCD05DC1A211D9713286784F4DDDE1BA18B839924
{
public:
// System.Int32 System.Runtime.InteropServices.CallingConvention::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallingConvention_tCD05DC1A211D9713286784F4DDDE1BA18B839924, ___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;
}
};
// Dissonance.Audio.Capture.CapturePipelineManager
struct CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B : public RuntimeObject
{
public:
// System.Boolean Dissonance.Audio.Capture.CapturePipelineManager::_isMobilePlatform
bool ____isMobilePlatform_1;
// Dissonance.CodecSettingsLoader Dissonance.Audio.Capture.CapturePipelineManager::_codecSettingsLoader
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 * ____codecSettingsLoader_2;
// Dissonance.RoomChannels Dissonance.Audio.Capture.CapturePipelineManager::_roomChannels
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ____roomChannels_3;
// Dissonance.PlayerChannels Dissonance.Audio.Capture.CapturePipelineManager::_playerChannels
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ____playerChannels_4;
// Dissonance.PacketLossMonitor Dissonance.Audio.Capture.CapturePipelineManager::_receivingPacketLossMonitor
PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97 * ____receivingPacketLossMonitor_5;
// Dissonance.Networking.ICommsNetwork Dissonance.Audio.Capture.CapturePipelineManager::_network
RuntimeObject* ____network_6;
// Dissonance.Audio.Capture.IMicrophoneCapture Dissonance.Audio.Capture.CapturePipelineManager::_microphone
RuntimeObject* ____microphone_7;
// Dissonance.Audio.Capture.IPreprocessingPipeline Dissonance.Audio.Capture.CapturePipelineManager::_preprocessor
RuntimeObject* ____preprocessor_8;
// Dissonance.Audio.Capture.EncoderPipeline Dissonance.Audio.Capture.CapturePipelineManager::_encoder
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750 * ____encoder_9;
// System.Boolean Dissonance.Audio.Capture.CapturePipelineManager::_encounteredFatalException
bool ____encounteredFatalException_10;
// System.Boolean Dissonance.Audio.Capture.CapturePipelineManager::_netModeRequiresPipeline
bool ____netModeRequiresPipeline_11;
// System.Boolean Dissonance.Audio.Capture.CapturePipelineManager::_cannotStartMic
bool ____cannotStartMic_12;
// System.Boolean Dissonance.Audio.Capture.CapturePipelineManager::_encoderSubscribed
bool ____encoderSubscribed_13;
// System.Int32 Dissonance.Audio.Capture.CapturePipelineManager::_startupDelay
int32_t ____startupDelay_14;
// Dissonance.FrameSkipDetector Dissonance.Audio.Capture.CapturePipelineManager::_skipDetector
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5 ____skipDetector_15;
// System.Collections.Generic.List`1<Dissonance.VAD.IVoiceActivationListener> Dissonance.Audio.Capture.CapturePipelineManager::_activationListeners
List_1_tCCDF71E53021357B4D855C099B7432593A80C03E * ____activationListeners_16;
// System.Collections.Generic.List`1<Dissonance.Audio.Capture.IMicrophoneSubscriber> Dissonance.Audio.Capture.CapturePipelineManager::_audioListeners
List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 * ____audioListeners_17;
// System.String Dissonance.Audio.Capture.CapturePipelineManager::_micName
String_t* ____micName_18;
// System.Boolean Dissonance.Audio.Capture.CapturePipelineManager::_pendingResetRequest
bool ____pendingResetRequest_19;
public:
inline static int32_t get_offset_of__isMobilePlatform_1() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____isMobilePlatform_1)); }
inline bool get__isMobilePlatform_1() const { return ____isMobilePlatform_1; }
inline bool* get_address_of__isMobilePlatform_1() { return &____isMobilePlatform_1; }
inline void set__isMobilePlatform_1(bool value)
{
____isMobilePlatform_1 = value;
}
inline static int32_t get_offset_of__codecSettingsLoader_2() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____codecSettingsLoader_2)); }
inline CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 * get__codecSettingsLoader_2() const { return ____codecSettingsLoader_2; }
inline CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 ** get_address_of__codecSettingsLoader_2() { return &____codecSettingsLoader_2; }
inline void set__codecSettingsLoader_2(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 * value)
{
____codecSettingsLoader_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____codecSettingsLoader_2), (void*)value);
}
inline static int32_t get_offset_of__roomChannels_3() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____roomChannels_3)); }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * get__roomChannels_3() const { return ____roomChannels_3; }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 ** get_address_of__roomChannels_3() { return &____roomChannels_3; }
inline void set__roomChannels_3(RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * value)
{
____roomChannels_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomChannels_3), (void*)value);
}
inline static int32_t get_offset_of__playerChannels_4() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____playerChannels_4)); }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * get__playerChannels_4() const { return ____playerChannels_4; }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC ** get_address_of__playerChannels_4() { return &____playerChannels_4; }
inline void set__playerChannels_4(PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * value)
{
____playerChannels_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerChannels_4), (void*)value);
}
inline static int32_t get_offset_of__receivingPacketLossMonitor_5() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____receivingPacketLossMonitor_5)); }
inline PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97 * get__receivingPacketLossMonitor_5() const { return ____receivingPacketLossMonitor_5; }
inline PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97 ** get_address_of__receivingPacketLossMonitor_5() { return &____receivingPacketLossMonitor_5; }
inline void set__receivingPacketLossMonitor_5(PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97 * value)
{
____receivingPacketLossMonitor_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____receivingPacketLossMonitor_5), (void*)value);
}
inline static int32_t get_offset_of__network_6() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____network_6)); }
inline RuntimeObject* get__network_6() const { return ____network_6; }
inline RuntimeObject** get_address_of__network_6() { return &____network_6; }
inline void set__network_6(RuntimeObject* value)
{
____network_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____network_6), (void*)value);
}
inline static int32_t get_offset_of__microphone_7() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____microphone_7)); }
inline RuntimeObject* get__microphone_7() const { return ____microphone_7; }
inline RuntimeObject** get_address_of__microphone_7() { return &____microphone_7; }
inline void set__microphone_7(RuntimeObject* value)
{
____microphone_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____microphone_7), (void*)value);
}
inline static int32_t get_offset_of__preprocessor_8() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____preprocessor_8)); }
inline RuntimeObject* get__preprocessor_8() const { return ____preprocessor_8; }
inline RuntimeObject** get_address_of__preprocessor_8() { return &____preprocessor_8; }
inline void set__preprocessor_8(RuntimeObject* value)
{
____preprocessor_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____preprocessor_8), (void*)value);
}
inline static int32_t get_offset_of__encoder_9() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____encoder_9)); }
inline EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750 * get__encoder_9() const { return ____encoder_9; }
inline EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750 ** get_address_of__encoder_9() { return &____encoder_9; }
inline void set__encoder_9(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750 * value)
{
____encoder_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encoder_9), (void*)value);
}
inline static int32_t get_offset_of__encounteredFatalException_10() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____encounteredFatalException_10)); }
inline bool get__encounteredFatalException_10() const { return ____encounteredFatalException_10; }
inline bool* get_address_of__encounteredFatalException_10() { return &____encounteredFatalException_10; }
inline void set__encounteredFatalException_10(bool value)
{
____encounteredFatalException_10 = value;
}
inline static int32_t get_offset_of__netModeRequiresPipeline_11() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____netModeRequiresPipeline_11)); }
inline bool get__netModeRequiresPipeline_11() const { return ____netModeRequiresPipeline_11; }
inline bool* get_address_of__netModeRequiresPipeline_11() { return &____netModeRequiresPipeline_11; }
inline void set__netModeRequiresPipeline_11(bool value)
{
____netModeRequiresPipeline_11 = value;
}
inline static int32_t get_offset_of__cannotStartMic_12() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____cannotStartMic_12)); }
inline bool get__cannotStartMic_12() const { return ____cannotStartMic_12; }
inline bool* get_address_of__cannotStartMic_12() { return &____cannotStartMic_12; }
inline void set__cannotStartMic_12(bool value)
{
____cannotStartMic_12 = value;
}
inline static int32_t get_offset_of__encoderSubscribed_13() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____encoderSubscribed_13)); }
inline bool get__encoderSubscribed_13() const { return ____encoderSubscribed_13; }
inline bool* get_address_of__encoderSubscribed_13() { return &____encoderSubscribed_13; }
inline void set__encoderSubscribed_13(bool value)
{
____encoderSubscribed_13 = value;
}
inline static int32_t get_offset_of__startupDelay_14() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____startupDelay_14)); }
inline int32_t get__startupDelay_14() const { return ____startupDelay_14; }
inline int32_t* get_address_of__startupDelay_14() { return &____startupDelay_14; }
inline void set__startupDelay_14(int32_t value)
{
____startupDelay_14 = value;
}
inline static int32_t get_offset_of__skipDetector_15() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____skipDetector_15)); }
inline FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5 get__skipDetector_15() const { return ____skipDetector_15; }
inline FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5 * get_address_of__skipDetector_15() { return &____skipDetector_15; }
inline void set__skipDetector_15(FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5 value)
{
____skipDetector_15 = value;
}
inline static int32_t get_offset_of__activationListeners_16() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____activationListeners_16)); }
inline List_1_tCCDF71E53021357B4D855C099B7432593A80C03E * get__activationListeners_16() const { return ____activationListeners_16; }
inline List_1_tCCDF71E53021357B4D855C099B7432593A80C03E ** get_address_of__activationListeners_16() { return &____activationListeners_16; }
inline void set__activationListeners_16(List_1_tCCDF71E53021357B4D855C099B7432593A80C03E * value)
{
____activationListeners_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activationListeners_16), (void*)value);
}
inline static int32_t get_offset_of__audioListeners_17() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____audioListeners_17)); }
inline List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 * get__audioListeners_17() const { return ____audioListeners_17; }
inline List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 ** get_address_of__audioListeners_17() { return &____audioListeners_17; }
inline void set__audioListeners_17(List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 * value)
{
____audioListeners_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____audioListeners_17), (void*)value);
}
inline static int32_t get_offset_of__micName_18() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____micName_18)); }
inline String_t* get__micName_18() const { return ____micName_18; }
inline String_t** get_address_of__micName_18() { return &____micName_18; }
inline void set__micName_18(String_t* value)
{
____micName_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____micName_18), (void*)value);
}
inline static int32_t get_offset_of__pendingResetRequest_19() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B, ____pendingResetRequest_19)); }
inline bool get__pendingResetRequest_19() const { return ____pendingResetRequest_19; }
inline bool* get_address_of__pendingResetRequest_19() { return &____pendingResetRequest_19; }
inline void set__pendingResetRequest_19(bool value)
{
____pendingResetRequest_19 = value;
}
};
struct CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Capture.CapturePipelineManager::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.CellValue
struct CellValue_tFA3977E894154C486C0B8071410E5D8EE53D726E
{
public:
// System.UInt16 Mirror.Examples.MultipleMatch.CellValue::value__
uint16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CellValue_tFA3977E894154C486C0B8071410E5D8EE53D726E, ___value___2)); }
inline uint16_t get_value___2() const { return ___value___2; }
inline uint16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint16_t value)
{
___value___2 = value;
}
};
// Dissonance.ChannelPriority
struct ChannelPriority_t5B17C0F5D34916D8CBBE882A6D55B4D4DE985E56
{
public:
// System.Int32 Dissonance.ChannelPriority::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ChannelPriority_t5B17C0F5D34916D8CBBE882A6D55B4D4DE985E56, ___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;
}
};
// Dissonance.ChannelType
struct ChannelType_t556347B15E30BA8303B2B48A775D40EF572B4852
{
public:
// System.Int32 Dissonance.ChannelType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ChannelType_t556347B15E30BA8303B2B48A775D40EF572B4852, ___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.Examples.MultipleMatch.ClientMatchOperation
struct ClientMatchOperation_t0603902F6B6E7466BB388D812633FC57F465A9C5
{
public:
// System.Byte Mirror.Examples.MultipleMatch.ClientMatchOperation::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ClientMatchOperation_t0603902F6B6E7466BB388D812633FC57F465A9C5, ___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.SimpleWeb.ClientState
struct ClientState_t1E677920A8D2F653F257EAF86758BD702D6CBB04
{
public:
// System.Int32 Mirror.SimpleWeb.ClientState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ClientState_t1E677920A8D2F653F257EAF86758BD702D6CBB04, ___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;
}
};
// Dissonance.Networking.Client.ClientStatus
struct ClientStatus_t62E90A891D60D0F1318E4ED9417937CB59B3DABE
{
public:
// System.Int32 Dissonance.Networking.Client.ClientStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ClientStatus_t62E90A891D60D0F1318E4ED9417937CB59B3DABE, ___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;
}
};
// Dissonance.Audio.Codecs.Codec
struct Codec_t0B70ED3FE4BB463D0820A9391939DBEC6AB848AF
{
public:
// System.Byte Dissonance.Audio.Codecs.Codec::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Codec_t0B70ED3FE4BB463D0820A9391939DBEC6AB848AF, ___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;
}
};
// Dissonance.CommActivationMode
struct CommActivationMode_t9B44FFFD638B6AD5AD781F7DD393719DA870CFB8
{
public:
// System.Int32 Dissonance.CommActivationMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CommActivationMode_t9B44FFFD638B6AD5AD781F7DD393719DA870CFB8, ___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;
}
};
// Dissonance.CommTriggerTarget
struct CommTriggerTarget_t0702EECACB333BE97A96F120E18B56C13158F841
{
public:
// System.Int32 Dissonance.CommTriggerTarget::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CommTriggerTarget_t0702EECACB333BE97A96F120E18B56C13158F841, ___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.SimpleWeb.Connection
struct Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 : public RuntimeObject
{
public:
// System.Object Mirror.SimpleWeb.Connection::disposedLock
RuntimeObject * ___disposedLock_1;
// System.Net.Sockets.TcpClient Mirror.SimpleWeb.Connection::client
TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * ___client_2;
// System.Int32 Mirror.SimpleWeb.Connection::connId
int32_t ___connId_3;
// System.IO.Stream Mirror.SimpleWeb.Connection::stream
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_4;
// System.Threading.Thread Mirror.SimpleWeb.Connection::receiveThread
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * ___receiveThread_5;
// System.Threading.Thread Mirror.SimpleWeb.Connection::sendThread
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * ___sendThread_6;
// System.Threading.ManualResetEventSlim Mirror.SimpleWeb.Connection::sendPending
ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E * ___sendPending_7;
// System.Collections.Concurrent.ConcurrentQueue`1<Mirror.SimpleWeb.ArrayBuffer> Mirror.SimpleWeb.Connection::sendQueue
ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 * ___sendQueue_8;
// System.Action`1<Mirror.SimpleWeb.Connection> Mirror.SimpleWeb.Connection::onDispose
Action_1_t767A2E7158577A182BEB480A4907BBABD8F08159 * ___onDispose_9;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Mirror.SimpleWeb.Connection::hasDisposed
bool ___hasDisposed_10;
public:
inline static int32_t get_offset_of_disposedLock_1() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___disposedLock_1)); }
inline RuntimeObject * get_disposedLock_1() const { return ___disposedLock_1; }
inline RuntimeObject ** get_address_of_disposedLock_1() { return &___disposedLock_1; }
inline void set_disposedLock_1(RuntimeObject * value)
{
___disposedLock_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___disposedLock_1), (void*)value);
}
inline static int32_t get_offset_of_client_2() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___client_2)); }
inline TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * get_client_2() const { return ___client_2; }
inline TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE ** get_address_of_client_2() { return &___client_2; }
inline void set_client_2(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * value)
{
___client_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___client_2), (void*)value);
}
inline static int32_t get_offset_of_connId_3() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___connId_3)); }
inline int32_t get_connId_3() const { return ___connId_3; }
inline int32_t* get_address_of_connId_3() { return &___connId_3; }
inline void set_connId_3(int32_t value)
{
___connId_3 = value;
}
inline static int32_t get_offset_of_stream_4() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___stream_4)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_4() const { return ___stream_4; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_4() { return &___stream_4; }
inline void set_stream_4(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
___stream_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stream_4), (void*)value);
}
inline static int32_t get_offset_of_receiveThread_5() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___receiveThread_5)); }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * get_receiveThread_5() const { return ___receiveThread_5; }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 ** get_address_of_receiveThread_5() { return &___receiveThread_5; }
inline void set_receiveThread_5(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * value)
{
___receiveThread_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___receiveThread_5), (void*)value);
}
inline static int32_t get_offset_of_sendThread_6() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___sendThread_6)); }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * get_sendThread_6() const { return ___sendThread_6; }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 ** get_address_of_sendThread_6() { return &___sendThread_6; }
inline void set_sendThread_6(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * value)
{
___sendThread_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sendThread_6), (void*)value);
}
inline static int32_t get_offset_of_sendPending_7() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___sendPending_7)); }
inline ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E * get_sendPending_7() const { return ___sendPending_7; }
inline ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E ** get_address_of_sendPending_7() { return &___sendPending_7; }
inline void set_sendPending_7(ManualResetEventSlim_tDEDF52539E364C425BA581F3AAF42843AFAD366E * value)
{
___sendPending_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sendPending_7), (void*)value);
}
inline static int32_t get_offset_of_sendQueue_8() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___sendQueue_8)); }
inline ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 * get_sendQueue_8() const { return ___sendQueue_8; }
inline ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 ** get_address_of_sendQueue_8() { return &___sendQueue_8; }
inline void set_sendQueue_8(ConcurrentQueue_1_t4C1CA248D9A319B034C46F6ECAC936948A93B140 * value)
{
___sendQueue_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sendQueue_8), (void*)value);
}
inline static int32_t get_offset_of_onDispose_9() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___onDispose_9)); }
inline Action_1_t767A2E7158577A182BEB480A4907BBABD8F08159 * get_onDispose_9() const { return ___onDispose_9; }
inline Action_1_t767A2E7158577A182BEB480A4907BBABD8F08159 ** get_address_of_onDispose_9() { return &___onDispose_9; }
inline void set_onDispose_9(Action_1_t767A2E7158577A182BEB480A4907BBABD8F08159 * value)
{
___onDispose_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onDispose_9), (void*)value);
}
inline static int32_t get_offset_of_hasDisposed_10() { return static_cast<int32_t>(offsetof(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721, ___hasDisposed_10)); }
inline bool get_hasDisposed_10() const { return ___hasDisposed_10; }
inline bool* get_address_of_hasDisposed_10() { return &___hasDisposed_10; }
inline void set_hasDisposed_10(bool value)
{
___hasDisposed_10 = value;
}
};
// UnityEngine.XR.WindowsMR.ConnectionFailureReason
struct ConnectionFailureReason_t9CC54D7835F2E83798455E6B844ADE00AC490429
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.ConnectionFailureReason::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectionFailureReason_t9CC54D7835F2E83798455E6B844ADE00AC490429, ___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.XR.WindowsMR.ConnectionFlags
struct ConnectionFlags_t82C9E54DA7D635C4E487A50EBD0D543DDEE4C7EC
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.ConnectionFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectionFlags_t82C9E54DA7D635C4E487A50EBD0D543DDEE4C7EC, ___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;
}
};
// Dissonance.Networking.Client.ConnectionState
struct ConnectionState_t8E155C4E07BE420924F9222FDEA0E26C39CFDB5E
{
public:
// System.Int32 Dissonance.Networking.Client.ConnectionState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectionState_t8E155C4E07BE420924F9222FDEA0E26C39CFDB5E, ___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.XR.WindowsMR.ConnectionState
struct ConnectionState_t822837C4E68564CFC7E96BE0958EB8FF895DF5F7
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.ConnectionState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectionState_t822837C4E68564CFC7E96BE0958EB8FF895DF5F7, ___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;
}
};
// Dissonance.Networking.ConnectionStatus
struct ConnectionStatus_tFE19E20579FA162EDDB48CEE417D2F5C3C1D3749
{
public:
// System.Int32 Dissonance.Networking.ConnectionStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectionStatus_tFE19E20579FA162EDDB48CEE417D2F5C3C1D3749, ___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.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;
};
// Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessage
struct DissonanceNetworkMessage_tC008674BC2207F195F535170BB89202C7DC1D89A
{
public:
// System.ArraySegment`1<System.Byte> Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessage::Data
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___Data_0;
public:
inline static int32_t get_offset_of_Data_0() { return static_cast<int32_t>(offsetof(DissonanceNetworkMessage_tC008674BC2207F195F535170BB89202C7DC1D89A, ___Data_0)); }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE get_Data_0() const { return ___Data_0; }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE * get_address_of_Data_0() { return &___Data_0; }
inline void set_Data_0(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE value)
{
___Data_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Data_0))->____array_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessage
struct DissonanceNetworkMessage_tC008674BC2207F195F535170BB89202C7DC1D89A_marshaled_pinvoke
{
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___Data_0;
};
// Native definition for COM marshalling of Dissonance.Integrations.MirrorIgnorance.DissonanceNetworkMessage
struct DissonanceNetworkMessage_tC008674BC2207F195F535170BB89202C7DC1D89A_marshaled_com
{
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___Data_0;
};
// UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport
struct DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt16 UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::padding1
uint16_t ___padding1_0;
};
#pragma pack(pop, tp)
struct
{
uint16_t ___padding1_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons1_1_OffsetPadding[2];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::buttons1
uint8_t ___buttons1_1;
};
#pragma pack(pop, tp)
struct
{
char ___buttons1_1_OffsetPadding_forAlignmentOnly[2];
uint8_t ___buttons1_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons2_2_OffsetPadding[3];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::buttons2
uint8_t ___buttons2_2;
};
#pragma pack(pop, tp)
struct
{
char ___buttons2_2_OffsetPadding_forAlignmentOnly[3];
uint8_t ___buttons2_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons3_3_OffsetPadding[4];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::buttons3
uint8_t ___buttons3_3;
};
#pragma pack(pop, tp)
struct
{
char ___buttons3_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___buttons3_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___padding2_4_OffsetPadding[5];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::padding2
uint8_t ___padding2_4;
};
#pragma pack(pop, tp)
struct
{
char ___padding2_4_OffsetPadding_forAlignmentOnly[5];
uint8_t ___padding2_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickX_5_OffsetPadding[6];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::leftStickX
uint8_t ___leftStickX_5;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickX_5_OffsetPadding_forAlignmentOnly[6];
uint8_t ___leftStickX_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStickY_6_OffsetPadding[7];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::leftStickY
uint8_t ___leftStickY_6;
};
#pragma pack(pop, tp)
struct
{
char ___leftStickY_6_OffsetPadding_forAlignmentOnly[7];
uint8_t ___leftStickY_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickX_7_OffsetPadding[8];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::rightStickX
uint8_t ___rightStickX_7;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickX_7_OffsetPadding_forAlignmentOnly[8];
uint8_t ___rightStickX_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStickY_8_OffsetPadding[9];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::rightStickY
uint8_t ___rightStickY_8;
};
#pragma pack(pop, tp)
struct
{
char ___rightStickY_8_OffsetPadding_forAlignmentOnly[9];
uint8_t ___rightStickY_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___padding3_9_OffsetPadding[10];
// UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport/<padding3>e__FixedBuffer UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::padding3
U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794 ___padding3_9;
};
#pragma pack(pop, tp)
struct
{
char ___padding3_9_OffsetPadding_forAlignmentOnly[10];
U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794 ___padding3_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftTrigger_10_OffsetPadding[18];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::leftTrigger
uint8_t ___leftTrigger_10;
};
#pragma pack(pop, tp)
struct
{
char ___leftTrigger_10_OffsetPadding_forAlignmentOnly[18];
uint8_t ___leftTrigger_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightTrigger_11_OffsetPadding[19];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShock3HIDInputReport::rightTrigger
uint8_t ___rightTrigger_11;
};
#pragma pack(pop, tp)
struct
{
char ___rightTrigger_11_OffsetPadding_forAlignmentOnly[19];
uint8_t ___rightTrigger_11_forAlignmentOnly;
};
};
};
uint8_t DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32__padding[32];
};
public:
inline static int32_t get_offset_of_padding1_0() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___padding1_0)); }
inline uint16_t get_padding1_0() const { return ___padding1_0; }
inline uint16_t* get_address_of_padding1_0() { return &___padding1_0; }
inline void set_padding1_0(uint16_t value)
{
___padding1_0 = value;
}
inline static int32_t get_offset_of_buttons1_1() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___buttons1_1)); }
inline uint8_t get_buttons1_1() const { return ___buttons1_1; }
inline uint8_t* get_address_of_buttons1_1() { return &___buttons1_1; }
inline void set_buttons1_1(uint8_t value)
{
___buttons1_1 = value;
}
inline static int32_t get_offset_of_buttons2_2() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___buttons2_2)); }
inline uint8_t get_buttons2_2() const { return ___buttons2_2; }
inline uint8_t* get_address_of_buttons2_2() { return &___buttons2_2; }
inline void set_buttons2_2(uint8_t value)
{
___buttons2_2 = value;
}
inline static int32_t get_offset_of_buttons3_3() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___buttons3_3)); }
inline uint8_t get_buttons3_3() const { return ___buttons3_3; }
inline uint8_t* get_address_of_buttons3_3() { return &___buttons3_3; }
inline void set_buttons3_3(uint8_t value)
{
___buttons3_3 = value;
}
inline static int32_t get_offset_of_padding2_4() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___padding2_4)); }
inline uint8_t get_padding2_4() const { return ___padding2_4; }
inline uint8_t* get_address_of_padding2_4() { return &___padding2_4; }
inline void set_padding2_4(uint8_t value)
{
___padding2_4 = value;
}
inline static int32_t get_offset_of_leftStickX_5() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___leftStickX_5)); }
inline uint8_t get_leftStickX_5() const { return ___leftStickX_5; }
inline uint8_t* get_address_of_leftStickX_5() { return &___leftStickX_5; }
inline void set_leftStickX_5(uint8_t value)
{
___leftStickX_5 = value;
}
inline static int32_t get_offset_of_leftStickY_6() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___leftStickY_6)); }
inline uint8_t get_leftStickY_6() const { return ___leftStickY_6; }
inline uint8_t* get_address_of_leftStickY_6() { return &___leftStickY_6; }
inline void set_leftStickY_6(uint8_t value)
{
___leftStickY_6 = value;
}
inline static int32_t get_offset_of_rightStickX_7() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___rightStickX_7)); }
inline uint8_t get_rightStickX_7() const { return ___rightStickX_7; }
inline uint8_t* get_address_of_rightStickX_7() { return &___rightStickX_7; }
inline void set_rightStickX_7(uint8_t value)
{
___rightStickX_7 = value;
}
inline static int32_t get_offset_of_rightStickY_8() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___rightStickY_8)); }
inline uint8_t get_rightStickY_8() const { return ___rightStickY_8; }
inline uint8_t* get_address_of_rightStickY_8() { return &___rightStickY_8; }
inline void set_rightStickY_8(uint8_t value)
{
___rightStickY_8 = value;
}
inline static int32_t get_offset_of_padding3_9() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___padding3_9)); }
inline U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794 get_padding3_9() const { return ___padding3_9; }
inline U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794 * get_address_of_padding3_9() { return &___padding3_9; }
inline void set_padding3_9(U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794 value)
{
___padding3_9 = value;
}
inline static int32_t get_offset_of_leftTrigger_10() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___leftTrigger_10)); }
inline uint8_t get_leftTrigger_10() const { return ___leftTrigger_10; }
inline uint8_t* get_address_of_leftTrigger_10() { return &___leftTrigger_10; }
inline void set_leftTrigger_10(uint8_t value)
{
___leftTrigger_10 = value;
}
inline static int32_t get_offset_of_rightTrigger_11() { return static_cast<int32_t>(offsetof(DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32, ___rightTrigger_11)); }
inline uint8_t get_rightTrigger_11() const { return ___rightTrigger_11; }
inline uint8_t* get_address_of_rightTrigger_11() { return &___rightTrigger_11; }
inline void set_rightTrigger_11(uint8_t value)
{
___rightTrigger_11 = value;
}
};
// UnityEngine.InputSystem.DynamicBitfield
struct DynamicBitfield_tA51C2E6A95C3CBCFCC726BE62AD1A1802D6711BB
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.UInt64> UnityEngine.InputSystem.DynamicBitfield::array
InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD ___array_0;
// System.Int32 UnityEngine.InputSystem.DynamicBitfield::length
int32_t ___length_1;
public:
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(DynamicBitfield_tA51C2E6A95C3CBCFCC726BE62AD1A1802D6711BB, ___array_0)); }
inline InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD get_array_0() const { return ___array_0; }
inline InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD * get_address_of_array_0() { return &___array_0; }
inline void set_array_0(InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD value)
{
___array_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___array_0))->___additionalValues_2), (void*)NULL);
}
inline static int32_t get_offset_of_length_1() { return static_cast<int32_t>(offsetof(DynamicBitfield_tA51C2E6A95C3CBCFCC726BE62AD1A1802D6711BB, ___length_1)); }
inline int32_t get_length_1() const { return ___length_1; }
inline int32_t* get_address_of_length_1() { return &___length_1; }
inline void set_length_1(int32_t value)
{
___length_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.DynamicBitfield
struct DynamicBitfield_tA51C2E6A95C3CBCFCC726BE62AD1A1802D6711BB_marshaled_pinvoke
{
InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD ___array_0;
int32_t ___length_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.DynamicBitfield
struct DynamicBitfield_tA51C2E6A95C3CBCFCC726BE62AD1A1802D6711BB_marshaled_com
{
InlinedArray_1_t237EE3D7F3A2D9B1A938C196B2E8AAE8834582FD ___array_0;
int32_t ___length_1;
};
// Dissonance.Audio.Playback.EncodedAudioBuffer
struct EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43 : public RuntimeObject
{
public:
// HandyCollections.Heap.MinHeap`1<Dissonance.Networking.VoicePacket> Dissonance.Audio.Playback.EncodedAudioBuffer::_heap
MinHeap_1_t0F4AB65671BD330993C2934421706F4485E0ECD1 * ____heap_1;
// System.Action`1<Dissonance.Networking.VoicePacket> Dissonance.Audio.Playback.EncodedAudioBuffer::_droppedFrameHandler
Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * ____droppedFrameHandler_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Playback.EncodedAudioBuffer::_complete
bool ____complete_3;
// System.Int32 Dissonance.Audio.Playback.EncodedAudioBuffer::_count
int32_t ____count_4;
// System.UInt32 Dissonance.Audio.Playback.EncodedAudioBuffer::<SequenceNumber>k__BackingField
uint32_t ___U3CSequenceNumberU3Ek__BackingField_5;
// Dissonance.Datastructures.PacketLossCalculator Dissonance.Audio.Playback.EncodedAudioBuffer::_loss
PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE * ____loss_6;
public:
inline static int32_t get_offset_of__heap_1() { return static_cast<int32_t>(offsetof(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43, ____heap_1)); }
inline MinHeap_1_t0F4AB65671BD330993C2934421706F4485E0ECD1 * get__heap_1() const { return ____heap_1; }
inline MinHeap_1_t0F4AB65671BD330993C2934421706F4485E0ECD1 ** get_address_of__heap_1() { return &____heap_1; }
inline void set__heap_1(MinHeap_1_t0F4AB65671BD330993C2934421706F4485E0ECD1 * value)
{
____heap_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____heap_1), (void*)value);
}
inline static int32_t get_offset_of__droppedFrameHandler_2() { return static_cast<int32_t>(offsetof(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43, ____droppedFrameHandler_2)); }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * get__droppedFrameHandler_2() const { return ____droppedFrameHandler_2; }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 ** get_address_of__droppedFrameHandler_2() { return &____droppedFrameHandler_2; }
inline void set__droppedFrameHandler_2(Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * value)
{
____droppedFrameHandler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____droppedFrameHandler_2), (void*)value);
}
inline static int32_t get_offset_of__complete_3() { return static_cast<int32_t>(offsetof(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43, ____complete_3)); }
inline bool get__complete_3() const { return ____complete_3; }
inline bool* get_address_of__complete_3() { return &____complete_3; }
inline void set__complete_3(bool value)
{
____complete_3 = value;
}
inline static int32_t get_offset_of__count_4() { return static_cast<int32_t>(offsetof(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43, ____count_4)); }
inline int32_t get__count_4() const { return ____count_4; }
inline int32_t* get_address_of__count_4() { return &____count_4; }
inline void set__count_4(int32_t value)
{
____count_4 = value;
}
inline static int32_t get_offset_of_U3CSequenceNumberU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43, ___U3CSequenceNumberU3Ek__BackingField_5)); }
inline uint32_t get_U3CSequenceNumberU3Ek__BackingField_5() const { return ___U3CSequenceNumberU3Ek__BackingField_5; }
inline uint32_t* get_address_of_U3CSequenceNumberU3Ek__BackingField_5() { return &___U3CSequenceNumberU3Ek__BackingField_5; }
inline void set_U3CSequenceNumberU3Ek__BackingField_5(uint32_t value)
{
___U3CSequenceNumberU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of__loss_6() { return static_cast<int32_t>(offsetof(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43, ____loss_6)); }
inline PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE * get__loss_6() const { return ____loss_6; }
inline PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE ** get_address_of__loss_6() { return &____loss_6; }
inline void set__loss_6(PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE * value)
{
____loss_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____loss_6), (void*)value);
}
};
struct EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.EncodedAudioBuffer::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Dissonance.Audio.Capture.EncoderPipeline
struct EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750 : public RuntimeObject
{
public:
// System.Byte[] Dissonance.Audio.Capture.EncoderPipeline::_encodedBytes
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____encodedBytes_1;
// System.Single[] Dissonance.Audio.Capture.EncoderPipeline::_plainSamples
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____plainSamples_2;
// Dissonance.Threading.ReadonlyLockedValue`1<Dissonance.Audio.Codecs.IVoiceEncoder> Dissonance.Audio.Capture.EncoderPipeline::_encoder
ReadonlyLockedValue_1_tC39DD07E32DF4E1EF5BD6D078E44E39C5C78DCFA * ____encoder_3;
// Dissonance.Networking.ICommsNetwork Dissonance.Audio.Capture.EncoderPipeline::_net
RuntimeObject* ____net_4;
// Dissonance.Audio.Capture.BufferedSampleProvider Dissonance.Audio.Capture.EncoderPipeline::_input
BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * ____input_5;
// Dissonance.Audio.Capture.Resampler Dissonance.Audio.Capture.EncoderPipeline::_resampler
Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C * ____resampler_6;
// Dissonance.Audio.Capture.IFrameProvider Dissonance.Audio.Capture.EncoderPipeline::_output
RuntimeObject* ____output_7;
// NAudio.Wave.WaveFormat Dissonance.Audio.Capture.EncoderPipeline::_inputFormat
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____inputFormat_8;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Capture.EncoderPipeline::_stopped
bool ____stopped_9;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Capture.EncoderPipeline::_stopping
bool ____stopping_10;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Capture.EncoderPipeline::_disposed
bool ____disposed_11;
// System.Single Dissonance.Audio.Capture.EncoderPipeline::<TransmissionPacketLoss>k__BackingField
float ___U3CTransmissionPacketLossU3Ek__BackingField_12;
public:
inline static int32_t get_offset_of__encodedBytes_1() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____encodedBytes_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__encodedBytes_1() const { return ____encodedBytes_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__encodedBytes_1() { return &____encodedBytes_1; }
inline void set__encodedBytes_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____encodedBytes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encodedBytes_1), (void*)value);
}
inline static int32_t get_offset_of__plainSamples_2() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____plainSamples_2)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__plainSamples_2() const { return ____plainSamples_2; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__plainSamples_2() { return &____plainSamples_2; }
inline void set__plainSamples_2(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
____plainSamples_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____plainSamples_2), (void*)value);
}
inline static int32_t get_offset_of__encoder_3() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____encoder_3)); }
inline ReadonlyLockedValue_1_tC39DD07E32DF4E1EF5BD6D078E44E39C5C78DCFA * get__encoder_3() const { return ____encoder_3; }
inline ReadonlyLockedValue_1_tC39DD07E32DF4E1EF5BD6D078E44E39C5C78DCFA ** get_address_of__encoder_3() { return &____encoder_3; }
inline void set__encoder_3(ReadonlyLockedValue_1_tC39DD07E32DF4E1EF5BD6D078E44E39C5C78DCFA * value)
{
____encoder_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encoder_3), (void*)value);
}
inline static int32_t get_offset_of__net_4() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____net_4)); }
inline RuntimeObject* get__net_4() const { return ____net_4; }
inline RuntimeObject** get_address_of__net_4() { return &____net_4; }
inline void set__net_4(RuntimeObject* value)
{
____net_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____net_4), (void*)value);
}
inline static int32_t get_offset_of__input_5() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____input_5)); }
inline BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * get__input_5() const { return ____input_5; }
inline BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF ** get_address_of__input_5() { return &____input_5; }
inline void set__input_5(BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * value)
{
____input_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____input_5), (void*)value);
}
inline static int32_t get_offset_of__resampler_6() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____resampler_6)); }
inline Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C * get__resampler_6() const { return ____resampler_6; }
inline Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C ** get_address_of__resampler_6() { return &____resampler_6; }
inline void set__resampler_6(Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C * value)
{
____resampler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resampler_6), (void*)value);
}
inline static int32_t get_offset_of__output_7() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____output_7)); }
inline RuntimeObject* get__output_7() const { return ____output_7; }
inline RuntimeObject** get_address_of__output_7() { return &____output_7; }
inline void set__output_7(RuntimeObject* value)
{
____output_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____output_7), (void*)value);
}
inline static int32_t get_offset_of__inputFormat_8() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____inputFormat_8)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__inputFormat_8() const { return ____inputFormat_8; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__inputFormat_8() { return &____inputFormat_8; }
inline void set__inputFormat_8(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____inputFormat_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inputFormat_8), (void*)value);
}
inline static int32_t get_offset_of__stopped_9() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____stopped_9)); }
inline bool get__stopped_9() const { return ____stopped_9; }
inline bool* get_address_of__stopped_9() { return &____stopped_9; }
inline void set__stopped_9(bool value)
{
____stopped_9 = value;
}
inline static int32_t get_offset_of__stopping_10() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____stopping_10)); }
inline bool get__stopping_10() const { return ____stopping_10; }
inline bool* get_address_of__stopping_10() { return &____stopping_10; }
inline void set__stopping_10(bool value)
{
____stopping_10 = value;
}
inline static int32_t get_offset_of__disposed_11() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ____disposed_11)); }
inline bool get__disposed_11() const { return ____disposed_11; }
inline bool* get_address_of__disposed_11() { return &____disposed_11; }
inline void set__disposed_11(bool value)
{
____disposed_11 = value;
}
inline static int32_t get_offset_of_U3CTransmissionPacketLossU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750, ___U3CTransmissionPacketLossU3Ek__BackingField_12)); }
inline float get_U3CTransmissionPacketLossU3Ek__BackingField_12() const { return ___U3CTransmissionPacketLossU3Ek__BackingField_12; }
inline float* get_address_of_U3CTransmissionPacketLossU3Ek__BackingField_12() { return &___U3CTransmissionPacketLossU3Ek__BackingField_12; }
inline void set_U3CTransmissionPacketLossU3Ek__BackingField_12(float value)
{
___U3CTransmissionPacketLossU3Ek__BackingField_12 = value;
}
};
struct EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Capture.EncoderPipeline::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Mirror.SimpleWeb.EventType
struct EventType_t3474C26D6E5DCAA4B476CF681C03468E77BB9361
{
public:
// System.Int32 Mirror.SimpleWeb.EventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventType_t3474C26D6E5DCAA4B476CF681C03468E77BB9361, ___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.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;
};
// UnityEngine.InputSystem.XR.Eyes
struct Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0
{
public:
// UnityEngine.Vector3 UnityEngine.InputSystem.XR.Eyes::<leftEyePosition>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CleftEyePositionU3Ek__BackingField_0;
// UnityEngine.Quaternion UnityEngine.InputSystem.XR.Eyes::<leftEyeRotation>k__BackingField
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___U3CleftEyeRotationU3Ek__BackingField_1;
// UnityEngine.Vector3 UnityEngine.InputSystem.XR.Eyes::<rightEyePosition>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CrightEyePositionU3Ek__BackingField_2;
// UnityEngine.Quaternion UnityEngine.InputSystem.XR.Eyes::<rightEyeRotation>k__BackingField
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___U3CrightEyeRotationU3Ek__BackingField_3;
// UnityEngine.Vector3 UnityEngine.InputSystem.XR.Eyes::<fixationPoint>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CfixationPointU3Ek__BackingField_4;
// System.Single UnityEngine.InputSystem.XR.Eyes::<leftEyeOpenAmount>k__BackingField
float ___U3CleftEyeOpenAmountU3Ek__BackingField_5;
// System.Single UnityEngine.InputSystem.XR.Eyes::<rightEyeOpenAmount>k__BackingField
float ___U3CrightEyeOpenAmountU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CleftEyePositionU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0, ___U3CleftEyePositionU3Ek__BackingField_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CleftEyePositionU3Ek__BackingField_0() const { return ___U3CleftEyePositionU3Ek__BackingField_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CleftEyePositionU3Ek__BackingField_0() { return &___U3CleftEyePositionU3Ek__BackingField_0; }
inline void set_U3CleftEyePositionU3Ek__BackingField_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CleftEyePositionU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CleftEyeRotationU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0, ___U3CleftEyeRotationU3Ek__BackingField_1)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_U3CleftEyeRotationU3Ek__BackingField_1() const { return ___U3CleftEyeRotationU3Ek__BackingField_1; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_U3CleftEyeRotationU3Ek__BackingField_1() { return &___U3CleftEyeRotationU3Ek__BackingField_1; }
inline void set_U3CleftEyeRotationU3Ek__BackingField_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___U3CleftEyeRotationU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CrightEyePositionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0, ___U3CrightEyePositionU3Ek__BackingField_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CrightEyePositionU3Ek__BackingField_2() const { return ___U3CrightEyePositionU3Ek__BackingField_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CrightEyePositionU3Ek__BackingField_2() { return &___U3CrightEyePositionU3Ek__BackingField_2; }
inline void set_U3CrightEyePositionU3Ek__BackingField_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CrightEyePositionU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CrightEyeRotationU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0, ___U3CrightEyeRotationU3Ek__BackingField_3)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_U3CrightEyeRotationU3Ek__BackingField_3() const { return ___U3CrightEyeRotationU3Ek__BackingField_3; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_U3CrightEyeRotationU3Ek__BackingField_3() { return &___U3CrightEyeRotationU3Ek__BackingField_3; }
inline void set_U3CrightEyeRotationU3Ek__BackingField_3(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___U3CrightEyeRotationU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CfixationPointU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0, ___U3CfixationPointU3Ek__BackingField_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CfixationPointU3Ek__BackingField_4() const { return ___U3CfixationPointU3Ek__BackingField_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CfixationPointU3Ek__BackingField_4() { return &___U3CfixationPointU3Ek__BackingField_4; }
inline void set_U3CfixationPointU3Ek__BackingField_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CfixationPointU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CleftEyeOpenAmountU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0, ___U3CleftEyeOpenAmountU3Ek__BackingField_5)); }
inline float get_U3CleftEyeOpenAmountU3Ek__BackingField_5() const { return ___U3CleftEyeOpenAmountU3Ek__BackingField_5; }
inline float* get_address_of_U3CleftEyeOpenAmountU3Ek__BackingField_5() { return &___U3CleftEyeOpenAmountU3Ek__BackingField_5; }
inline void set_U3CleftEyeOpenAmountU3Ek__BackingField_5(float value)
{
___U3CleftEyeOpenAmountU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CrightEyeOpenAmountU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0, ___U3CrightEyeOpenAmountU3Ek__BackingField_6)); }
inline float get_U3CrightEyeOpenAmountU3Ek__BackingField_6() const { return ___U3CrightEyeOpenAmountU3Ek__BackingField_6; }
inline float* get_address_of_U3CrightEyeOpenAmountU3Ek__BackingField_6() { return &___U3CrightEyeOpenAmountU3Ek__BackingField_6; }
inline void set_U3CrightEyeOpenAmountU3Ek__BackingField_6(float value)
{
___U3CrightEyeOpenAmountU3Ek__BackingField_6 = value;
}
};
// UnityEngine.XR.ARSubsystems.Feature
struct Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.Feature::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// UnityEngine.InputSystem.XR.FeatureType
struct FeatureType_t2CCEB5A9410DC11158496FC1DB18C9A9792533F0
{
public:
// System.Int32 UnityEngine.InputSystem.XR.FeatureType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FeatureType_t2CCEB5A9410DC11158496FC1DB18C9A9792533F0, ___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;
}
};
// Dissonance.FrameSize
struct FrameSize_t244A42B2E1127A46F62DF37A15D127D527332529
{
public:
// System.Int32 Dissonance.FrameSize::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FrameSize_t244A42B2E1127A46F62DF37A15D127D527332529, ___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.InputSystem.LowLevel.GamepadButton
struct GamepadButton_tBFE7DB6CD58F9B6D7B9CED39B15F35F70C8FC1C7
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.GamepadButton::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GamepadButton_tBFE7DB6CD58F9B6D7B9CED39B15F35F70C8FC1C7, ___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.InputSystem.LowLevel.GamepadState
struct GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt32 UnityEngine.InputSystem.LowLevel.GamepadState::buttons
uint32_t ___buttons_8;
};
#pragma pack(pop, tp)
struct
{
uint32_t ___buttons_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftStick_9_OffsetPadding[4];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.GamepadState::leftStick
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftStick_9;
};
#pragma pack(pop, tp)
struct
{
char ___leftStick_9_OffsetPadding_forAlignmentOnly[4];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftStick_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightStick_10_OffsetPadding[12];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.GamepadState::rightStick
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightStick_10;
};
#pragma pack(pop, tp)
struct
{
char ___rightStick_10_OffsetPadding_forAlignmentOnly[12];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightStick_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___leftTrigger_11_OffsetPadding[20];
// System.Single UnityEngine.InputSystem.LowLevel.GamepadState::leftTrigger
float ___leftTrigger_11;
};
#pragma pack(pop, tp)
struct
{
char ___leftTrigger_11_OffsetPadding_forAlignmentOnly[20];
float ___leftTrigger_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___rightTrigger_12_OffsetPadding[24];
// System.Single UnityEngine.InputSystem.LowLevel.GamepadState::rightTrigger
float ___rightTrigger_12;
};
#pragma pack(pop, tp)
struct
{
char ___rightTrigger_12_OffsetPadding_forAlignmentOnly[24];
float ___rightTrigger_12_forAlignmentOnly;
};
};
};
uint8_t GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1__padding[28];
};
public:
inline static int32_t get_offset_of_buttons_8() { return static_cast<int32_t>(offsetof(GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1, ___buttons_8)); }
inline uint32_t get_buttons_8() const { return ___buttons_8; }
inline uint32_t* get_address_of_buttons_8() { return &___buttons_8; }
inline void set_buttons_8(uint32_t value)
{
___buttons_8 = value;
}
inline static int32_t get_offset_of_leftStick_9() { return static_cast<int32_t>(offsetof(GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1, ___leftStick_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftStick_9() const { return ___leftStick_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftStick_9() { return &___leftStick_9; }
inline void set_leftStick_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___leftStick_9 = value;
}
inline static int32_t get_offset_of_rightStick_10() { return static_cast<int32_t>(offsetof(GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1, ___rightStick_10)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightStick_10() const { return ___rightStick_10; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightStick_10() { return &___rightStick_10; }
inline void set_rightStick_10(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___rightStick_10 = value;
}
inline static int32_t get_offset_of_leftTrigger_11() { return static_cast<int32_t>(offsetof(GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1, ___leftTrigger_11)); }
inline float get_leftTrigger_11() const { return ___leftTrigger_11; }
inline float* get_address_of_leftTrigger_11() { return &___leftTrigger_11; }
inline void set_leftTrigger_11(float value)
{
___leftTrigger_11 = value;
}
inline static int32_t get_offset_of_rightTrigger_12() { return static_cast<int32_t>(offsetof(GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1, ___rightTrigger_12)); }
inline float get_rightTrigger_12() const { return ___rightTrigger_12; }
inline float* get_address_of_rightTrigger_12() { return &___rightTrigger_12; }
inline void set_rightTrigger_12(float value)
{
___rightTrigger_12 = value;
}
};
// UnityEngine.XR.InteractionSubsystems.GestureState
struct GestureState_tF46000290CC6332630D7FE0425DA51EB79CBE557
{
public:
// System.Int32 UnityEngine.XR.InteractionSubsystems.GestureState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GestureState_tF46000290CC6332630D7FE0425DA51EB79CBE557, ___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.GlobalJavaObjectRef
struct GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.GlobalJavaObjectRef::m_disposed
bool ___m_disposed_0;
// System.IntPtr UnityEngine.GlobalJavaObjectRef::m_jobject
intptr_t ___m_jobject_1;
public:
inline static int32_t get_offset_of_m_disposed_0() { return static_cast<int32_t>(offsetof(GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289, ___m_disposed_0)); }
inline bool get_m_disposed_0() const { return ___m_disposed_0; }
inline bool* get_address_of_m_disposed_0() { return &___m_disposed_0; }
inline void set_m_disposed_0(bool value)
{
___m_disposed_0 = value;
}
inline static int32_t get_offset_of_m_jobject_1() { return static_cast<int32_t>(offsetof(GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289, ___m_jobject_1)); }
inline intptr_t get_m_jobject_1() const { return ___m_jobject_1; }
inline intptr_t* get_address_of_m_jobject_1() { return &___m_jobject_1; }
inline void set_m_jobject_1(intptr_t value)
{
___m_jobject_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.GravityState
struct GravityState_tF57272682CCE64C1683677C707355170CDFEFBF2
{
public:
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.GravityState::gravity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___gravity_0;
public:
inline static int32_t get_offset_of_gravity_0() { return static_cast<int32_t>(offsetof(GravityState_tF57272682CCE64C1683677C707355170CDFEFBF2, ___gravity_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_gravity_0() const { return ___gravity_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_gravity_0() { return &___gravity_0; }
inline void set_gravity_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___gravity_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.GyroscopeState
struct GyroscopeState_tEC80136C0306CA468B296734EF814E8BA3C7897A
{
public:
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.GyroscopeState::angularVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___angularVelocity_0;
public:
inline static int32_t get_offset_of_angularVelocity_0() { return static_cast<int32_t>(offsetof(GyroscopeState_tEC80136C0306CA468B296734EF814E8BA3C7897A, ___angularVelocity_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_angularVelocity_0() const { return ___angularVelocity_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_angularVelocity_0() { return &___angularVelocity_0; }
inline void set_angularVelocity_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___angularVelocity_0 = value;
}
};
// UnityEngine.InputSystem.LowLevel.IMECompositionString
struct IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.InputSystem.LowLevel.IMECompositionString::size
int32_t ___size_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___size_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buffer_1_OffsetPadding[4];
// UnityEngine.InputSystem.LowLevel.IMECompositionString/<buffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.IMECompositionString::buffer
U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08 ___buffer_1;
};
#pragma pack(pop, tp)
struct
{
char ___buffer_1_OffsetPadding_forAlignmentOnly[4];
U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08 ___buffer_1_forAlignmentOnly;
};
};
};
uint8_t IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D__padding[132];
};
public:
inline static int32_t get_offset_of_size_0() { return static_cast<int32_t>(offsetof(IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D, ___size_0)); }
inline int32_t get_size_0() const { return ___size_0; }
inline int32_t* get_address_of_size_0() { return &___size_0; }
inline void set_size_0(int32_t value)
{
___size_0 = value;
}
inline static int32_t get_offset_of_buffer_1() { return static_cast<int32_t>(offsetof(IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D, ___buffer_1)); }
inline U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08 get_buffer_1() const { return ___buffer_1; }
inline U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08 * get_address_of_buffer_1() { return &___buffer_1; }
inline void set_buffer_1(U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08 value)
{
___buffer_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString
struct IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___size_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___size_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buffer_1_OffsetPadding[4];
U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08_marshaled_pinvoke ___buffer_1;
};
#pragma pack(pop, tp)
struct
{
char ___buffer_1_OffsetPadding_forAlignmentOnly[4];
U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08_marshaled_pinvoke ___buffer_1_forAlignmentOnly;
};
};
};
uint8_t IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D__padding[132];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString
struct IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___size_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___size_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buffer_1_OffsetPadding[4];
U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08_marshaled_com ___buffer_1;
};
#pragma pack(pop, tp)
struct
{
char ___buffer_1_OffsetPadding_forAlignmentOnly[4];
U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08_marshaled_com ___buffer_1_forAlignmentOnly;
};
};
};
uint8_t IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D__padding[132];
};
};
// UnityEngine.InputSystem.InputBindingComposite
struct InputBindingComposite_t0C553FBD13F1BCC1196ED530ABC6E55EAD8907CE : public RuntimeObject
{
public:
public:
};
struct InputBindingComposite_t0C553FBD13F1BCC1196ED530ABC6E55EAD8907CE_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputBindingComposite::s_Composites
TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 ___s_Composites_0;
public:
inline static int32_t get_offset_of_s_Composites_0() { return static_cast<int32_t>(offsetof(InputBindingComposite_t0C553FBD13F1BCC1196ED530ABC6E55EAD8907CE_StaticFields, ___s_Composites_0)); }
inline TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 get_s_Composites_0() const { return ___s_Composites_0; }
inline TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 * get_address_of_s_Composites_0() { return &___s_Composites_0; }
inline void set_s_Composites_0(TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 value)
{
___s_Composites_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Composites_0))->___table_0), (void*)NULL);
}
};
// UnityEngine.InputSystem.Layouts.InputControlAttribute
struct InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F : public PropertyAttribute_t4A352471DF625C56C811E27AC86B7E1CE6444052
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<layout>k__BackingField
String_t* ___U3ClayoutU3Ek__BackingField_0;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<variants>k__BackingField
String_t* ___U3CvariantsU3Ek__BackingField_1;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_2;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<format>k__BackingField
String_t* ___U3CformatU3Ek__BackingField_3;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<usage>k__BackingField
String_t* ___U3CusageU3Ek__BackingField_4;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlAttribute::<usages>k__BackingField
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___U3CusagesU3Ek__BackingField_5;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<parameters>k__BackingField
String_t* ___U3CparametersU3Ek__BackingField_6;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<processors>k__BackingField
String_t* ___U3CprocessorsU3Ek__BackingField_7;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<alias>k__BackingField
String_t* ___U3CaliasU3Ek__BackingField_8;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlAttribute::<aliases>k__BackingField
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___U3CaliasesU3Ek__BackingField_9;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<useStateFrom>k__BackingField
String_t* ___U3CuseStateFromU3Ek__BackingField_10;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlAttribute::<bit>k__BackingField
uint32_t ___U3CbitU3Ek__BackingField_11;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlAttribute::<offset>k__BackingField
uint32_t ___U3CoffsetU3Ek__BackingField_12;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlAttribute::<sizeInBits>k__BackingField
uint32_t ___U3CsizeInBitsU3Ek__BackingField_13;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlAttribute::<arraySize>k__BackingField
int32_t ___U3CarraySizeU3Ek__BackingField_14;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<displayName>k__BackingField
String_t* ___U3CdisplayNameU3Ek__BackingField_15;
// System.String UnityEngine.InputSystem.Layouts.InputControlAttribute::<shortDisplayName>k__BackingField
String_t* ___U3CshortDisplayNameU3Ek__BackingField_16;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlAttribute::<noisy>k__BackingField
bool ___U3CnoisyU3Ek__BackingField_17;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlAttribute::<synthetic>k__BackingField
bool ___U3CsyntheticU3Ek__BackingField_18;
// System.Object UnityEngine.InputSystem.Layouts.InputControlAttribute::<defaultState>k__BackingField
RuntimeObject * ___U3CdefaultStateU3Ek__BackingField_19;
// System.Object UnityEngine.InputSystem.Layouts.InputControlAttribute::<minValue>k__BackingField
RuntimeObject * ___U3CminValueU3Ek__BackingField_20;
// System.Object UnityEngine.InputSystem.Layouts.InputControlAttribute::<maxValue>k__BackingField
RuntimeObject * ___U3CmaxValueU3Ek__BackingField_21;
public:
inline static int32_t get_offset_of_U3ClayoutU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3ClayoutU3Ek__BackingField_0)); }
inline String_t* get_U3ClayoutU3Ek__BackingField_0() const { return ___U3ClayoutU3Ek__BackingField_0; }
inline String_t** get_address_of_U3ClayoutU3Ek__BackingField_0() { return &___U3ClayoutU3Ek__BackingField_0; }
inline void set_U3ClayoutU3Ek__BackingField_0(String_t* value)
{
___U3ClayoutU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3ClayoutU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CvariantsU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CvariantsU3Ek__BackingField_1)); }
inline String_t* get_U3CvariantsU3Ek__BackingField_1() const { return ___U3CvariantsU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CvariantsU3Ek__BackingField_1() { return &___U3CvariantsU3Ek__BackingField_1; }
inline void set_U3CvariantsU3Ek__BackingField_1(String_t* value)
{
___U3CvariantsU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CvariantsU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CnameU3Ek__BackingField_2)); }
inline String_t* get_U3CnameU3Ek__BackingField_2() const { return ___U3CnameU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_2() { return &___U3CnameU3Ek__BackingField_2; }
inline void set_U3CnameU3Ek__BackingField_2(String_t* value)
{
___U3CnameU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CformatU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CformatU3Ek__BackingField_3)); }
inline String_t* get_U3CformatU3Ek__BackingField_3() const { return ___U3CformatU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CformatU3Ek__BackingField_3() { return &___U3CformatU3Ek__BackingField_3; }
inline void set_U3CformatU3Ek__BackingField_3(String_t* value)
{
___U3CformatU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CformatU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CusageU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CusageU3Ek__BackingField_4)); }
inline String_t* get_U3CusageU3Ek__BackingField_4() const { return ___U3CusageU3Ek__BackingField_4; }
inline String_t** get_address_of_U3CusageU3Ek__BackingField_4() { return &___U3CusageU3Ek__BackingField_4; }
inline void set_U3CusageU3Ek__BackingField_4(String_t* value)
{
___U3CusageU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CusageU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CusagesU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CusagesU3Ek__BackingField_5)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_U3CusagesU3Ek__BackingField_5() const { return ___U3CusagesU3Ek__BackingField_5; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_U3CusagesU3Ek__BackingField_5() { return &___U3CusagesU3Ek__BackingField_5; }
inline void set_U3CusagesU3Ek__BackingField_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___U3CusagesU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CusagesU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CparametersU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CparametersU3Ek__BackingField_6)); }
inline String_t* get_U3CparametersU3Ek__BackingField_6() const { return ___U3CparametersU3Ek__BackingField_6; }
inline String_t** get_address_of_U3CparametersU3Ek__BackingField_6() { return &___U3CparametersU3Ek__BackingField_6; }
inline void set_U3CparametersU3Ek__BackingField_6(String_t* value)
{
___U3CparametersU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CparametersU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CprocessorsU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CprocessorsU3Ek__BackingField_7)); }
inline String_t* get_U3CprocessorsU3Ek__BackingField_7() const { return ___U3CprocessorsU3Ek__BackingField_7; }
inline String_t** get_address_of_U3CprocessorsU3Ek__BackingField_7() { return &___U3CprocessorsU3Ek__BackingField_7; }
inline void set_U3CprocessorsU3Ek__BackingField_7(String_t* value)
{
___U3CprocessorsU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CprocessorsU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CaliasU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CaliasU3Ek__BackingField_8)); }
inline String_t* get_U3CaliasU3Ek__BackingField_8() const { return ___U3CaliasU3Ek__BackingField_8; }
inline String_t** get_address_of_U3CaliasU3Ek__BackingField_8() { return &___U3CaliasU3Ek__BackingField_8; }
inline void set_U3CaliasU3Ek__BackingField_8(String_t* value)
{
___U3CaliasU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CaliasU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_U3CaliasesU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CaliasesU3Ek__BackingField_9)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_U3CaliasesU3Ek__BackingField_9() const { return ___U3CaliasesU3Ek__BackingField_9; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_U3CaliasesU3Ek__BackingField_9() { return &___U3CaliasesU3Ek__BackingField_9; }
inline void set_U3CaliasesU3Ek__BackingField_9(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___U3CaliasesU3Ek__BackingField_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CaliasesU3Ek__BackingField_9), (void*)value);
}
inline static int32_t get_offset_of_U3CuseStateFromU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CuseStateFromU3Ek__BackingField_10)); }
inline String_t* get_U3CuseStateFromU3Ek__BackingField_10() const { return ___U3CuseStateFromU3Ek__BackingField_10; }
inline String_t** get_address_of_U3CuseStateFromU3Ek__BackingField_10() { return &___U3CuseStateFromU3Ek__BackingField_10; }
inline void set_U3CuseStateFromU3Ek__BackingField_10(String_t* value)
{
___U3CuseStateFromU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CuseStateFromU3Ek__BackingField_10), (void*)value);
}
inline static int32_t get_offset_of_U3CbitU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CbitU3Ek__BackingField_11)); }
inline uint32_t get_U3CbitU3Ek__BackingField_11() const { return ___U3CbitU3Ek__BackingField_11; }
inline uint32_t* get_address_of_U3CbitU3Ek__BackingField_11() { return &___U3CbitU3Ek__BackingField_11; }
inline void set_U3CbitU3Ek__BackingField_11(uint32_t value)
{
___U3CbitU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CoffsetU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CoffsetU3Ek__BackingField_12)); }
inline uint32_t get_U3CoffsetU3Ek__BackingField_12() const { return ___U3CoffsetU3Ek__BackingField_12; }
inline uint32_t* get_address_of_U3CoffsetU3Ek__BackingField_12() { return &___U3CoffsetU3Ek__BackingField_12; }
inline void set_U3CoffsetU3Ek__BackingField_12(uint32_t value)
{
___U3CoffsetU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CsizeInBitsU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CsizeInBitsU3Ek__BackingField_13)); }
inline uint32_t get_U3CsizeInBitsU3Ek__BackingField_13() const { return ___U3CsizeInBitsU3Ek__BackingField_13; }
inline uint32_t* get_address_of_U3CsizeInBitsU3Ek__BackingField_13() { return &___U3CsizeInBitsU3Ek__BackingField_13; }
inline void set_U3CsizeInBitsU3Ek__BackingField_13(uint32_t value)
{
___U3CsizeInBitsU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CarraySizeU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CarraySizeU3Ek__BackingField_14)); }
inline int32_t get_U3CarraySizeU3Ek__BackingField_14() const { return ___U3CarraySizeU3Ek__BackingField_14; }
inline int32_t* get_address_of_U3CarraySizeU3Ek__BackingField_14() { return &___U3CarraySizeU3Ek__BackingField_14; }
inline void set_U3CarraySizeU3Ek__BackingField_14(int32_t value)
{
___U3CarraySizeU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CdisplayNameU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CdisplayNameU3Ek__BackingField_15)); }
inline String_t* get_U3CdisplayNameU3Ek__BackingField_15() const { return ___U3CdisplayNameU3Ek__BackingField_15; }
inline String_t** get_address_of_U3CdisplayNameU3Ek__BackingField_15() { return &___U3CdisplayNameU3Ek__BackingField_15; }
inline void set_U3CdisplayNameU3Ek__BackingField_15(String_t* value)
{
___U3CdisplayNameU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayNameU3Ek__BackingField_15), (void*)value);
}
inline static int32_t get_offset_of_U3CshortDisplayNameU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CshortDisplayNameU3Ek__BackingField_16)); }
inline String_t* get_U3CshortDisplayNameU3Ek__BackingField_16() const { return ___U3CshortDisplayNameU3Ek__BackingField_16; }
inline String_t** get_address_of_U3CshortDisplayNameU3Ek__BackingField_16() { return &___U3CshortDisplayNameU3Ek__BackingField_16; }
inline void set_U3CshortDisplayNameU3Ek__BackingField_16(String_t* value)
{
___U3CshortDisplayNameU3Ek__BackingField_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CshortDisplayNameU3Ek__BackingField_16), (void*)value);
}
inline static int32_t get_offset_of_U3CnoisyU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CnoisyU3Ek__BackingField_17)); }
inline bool get_U3CnoisyU3Ek__BackingField_17() const { return ___U3CnoisyU3Ek__BackingField_17; }
inline bool* get_address_of_U3CnoisyU3Ek__BackingField_17() { return &___U3CnoisyU3Ek__BackingField_17; }
inline void set_U3CnoisyU3Ek__BackingField_17(bool value)
{
___U3CnoisyU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CsyntheticU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CsyntheticU3Ek__BackingField_18)); }
inline bool get_U3CsyntheticU3Ek__BackingField_18() const { return ___U3CsyntheticU3Ek__BackingField_18; }
inline bool* get_address_of_U3CsyntheticU3Ek__BackingField_18() { return &___U3CsyntheticU3Ek__BackingField_18; }
inline void set_U3CsyntheticU3Ek__BackingField_18(bool value)
{
___U3CsyntheticU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CdefaultStateU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CdefaultStateU3Ek__BackingField_19)); }
inline RuntimeObject * get_U3CdefaultStateU3Ek__BackingField_19() const { return ___U3CdefaultStateU3Ek__BackingField_19; }
inline RuntimeObject ** get_address_of_U3CdefaultStateU3Ek__BackingField_19() { return &___U3CdefaultStateU3Ek__BackingField_19; }
inline void set_U3CdefaultStateU3Ek__BackingField_19(RuntimeObject * value)
{
___U3CdefaultStateU3Ek__BackingField_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdefaultStateU3Ek__BackingField_19), (void*)value);
}
inline static int32_t get_offset_of_U3CminValueU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CminValueU3Ek__BackingField_20)); }
inline RuntimeObject * get_U3CminValueU3Ek__BackingField_20() const { return ___U3CminValueU3Ek__BackingField_20; }
inline RuntimeObject ** get_address_of_U3CminValueU3Ek__BackingField_20() { return &___U3CminValueU3Ek__BackingField_20; }
inline void set_U3CminValueU3Ek__BackingField_20(RuntimeObject * value)
{
___U3CminValueU3Ek__BackingField_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CminValueU3Ek__BackingField_20), (void*)value);
}
inline static int32_t get_offset_of_U3CmaxValueU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F, ___U3CmaxValueU3Ek__BackingField_21)); }
inline RuntimeObject * get_U3CmaxValueU3Ek__BackingField_21() const { return ___U3CmaxValueU3Ek__BackingField_21; }
inline RuntimeObject ** get_address_of_U3CmaxValueU3Ek__BackingField_21() { return &___U3CmaxValueU3Ek__BackingField_21; }
inline void set_U3CmaxValueU3Ek__BackingField_21(RuntimeObject * value)
{
___U3CmaxValueU3Ek__BackingField_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmaxValueU3Ek__BackingField_21), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute
struct InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Type UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<stateType>k__BackingField
Type_t * ___U3CstateTypeU3Ek__BackingField_0;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<stateFormat>k__BackingField
String_t* ___U3CstateFormatU3Ek__BackingField_1;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<commonUsages>k__BackingField
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___U3CcommonUsagesU3Ek__BackingField_2;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<variants>k__BackingField
String_t* ___U3CvariantsU3Ek__BackingField_3;
// System.Nullable`1<System.Boolean> UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::updateBeforeRenderInternal
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___updateBeforeRenderInternal_4;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<isGenericTypeOfDevice>k__BackingField
bool ___U3CisGenericTypeOfDeviceU3Ek__BackingField_5;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<displayName>k__BackingField
String_t* ___U3CdisplayNameU3Ek__BackingField_6;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<description>k__BackingField
String_t* ___U3CdescriptionU3Ek__BackingField_7;
// System.Boolean UnityEngine.InputSystem.Layouts.InputControlLayoutAttribute::<hideInUI>k__BackingField
bool ___U3ChideInUIU3Ek__BackingField_8;
public:
inline static int32_t get_offset_of_U3CstateTypeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3CstateTypeU3Ek__BackingField_0)); }
inline Type_t * get_U3CstateTypeU3Ek__BackingField_0() const { return ___U3CstateTypeU3Ek__BackingField_0; }
inline Type_t ** get_address_of_U3CstateTypeU3Ek__BackingField_0() { return &___U3CstateTypeU3Ek__BackingField_0; }
inline void set_U3CstateTypeU3Ek__BackingField_0(Type_t * value)
{
___U3CstateTypeU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CstateTypeU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CstateFormatU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3CstateFormatU3Ek__BackingField_1)); }
inline String_t* get_U3CstateFormatU3Ek__BackingField_1() const { return ___U3CstateFormatU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CstateFormatU3Ek__BackingField_1() { return &___U3CstateFormatU3Ek__BackingField_1; }
inline void set_U3CstateFormatU3Ek__BackingField_1(String_t* value)
{
___U3CstateFormatU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CstateFormatU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CcommonUsagesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3CcommonUsagesU3Ek__BackingField_2)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_U3CcommonUsagesU3Ek__BackingField_2() const { return ___U3CcommonUsagesU3Ek__BackingField_2; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_U3CcommonUsagesU3Ek__BackingField_2() { return &___U3CcommonUsagesU3Ek__BackingField_2; }
inline void set_U3CcommonUsagesU3Ek__BackingField_2(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___U3CcommonUsagesU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcommonUsagesU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CvariantsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3CvariantsU3Ek__BackingField_3)); }
inline String_t* get_U3CvariantsU3Ek__BackingField_3() const { return ___U3CvariantsU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CvariantsU3Ek__BackingField_3() { return &___U3CvariantsU3Ek__BackingField_3; }
inline void set_U3CvariantsU3Ek__BackingField_3(String_t* value)
{
___U3CvariantsU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CvariantsU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_updateBeforeRenderInternal_4() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___updateBeforeRenderInternal_4)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_updateBeforeRenderInternal_4() const { return ___updateBeforeRenderInternal_4; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_updateBeforeRenderInternal_4() { return &___updateBeforeRenderInternal_4; }
inline void set_updateBeforeRenderInternal_4(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___updateBeforeRenderInternal_4 = value;
}
inline static int32_t get_offset_of_U3CisGenericTypeOfDeviceU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3CisGenericTypeOfDeviceU3Ek__BackingField_5)); }
inline bool get_U3CisGenericTypeOfDeviceU3Ek__BackingField_5() const { return ___U3CisGenericTypeOfDeviceU3Ek__BackingField_5; }
inline bool* get_address_of_U3CisGenericTypeOfDeviceU3Ek__BackingField_5() { return &___U3CisGenericTypeOfDeviceU3Ek__BackingField_5; }
inline void set_U3CisGenericTypeOfDeviceU3Ek__BackingField_5(bool value)
{
___U3CisGenericTypeOfDeviceU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CdisplayNameU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3CdisplayNameU3Ek__BackingField_6)); }
inline String_t* get_U3CdisplayNameU3Ek__BackingField_6() const { return ___U3CdisplayNameU3Ek__BackingField_6; }
inline String_t** get_address_of_U3CdisplayNameU3Ek__BackingField_6() { return &___U3CdisplayNameU3Ek__BackingField_6; }
inline void set_U3CdisplayNameU3Ek__BackingField_6(String_t* value)
{
___U3CdisplayNameU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayNameU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CdescriptionU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3CdescriptionU3Ek__BackingField_7)); }
inline String_t* get_U3CdescriptionU3Ek__BackingField_7() const { return ___U3CdescriptionU3Ek__BackingField_7; }
inline String_t** get_address_of_U3CdescriptionU3Ek__BackingField_7() { return &___U3CdescriptionU3Ek__BackingField_7; }
inline void set_U3CdescriptionU3Ek__BackingField_7(String_t* value)
{
___U3CdescriptionU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdescriptionU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3ChideInUIU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5, ___U3ChideInUIU3Ek__BackingField_8)); }
inline bool get_U3ChideInUIU3Ek__BackingField_8() const { return ___U3ChideInUIU3Ek__BackingField_8; }
inline bool* get_address_of_U3ChideInUIU3Ek__BackingField_8() { return &___U3ChideInUIU3Ek__BackingField_8; }
inline void set_U3ChideInUIU3Ek__BackingField_8(bool value)
{
___U3ChideInUIU3Ek__BackingField_8 = value;
}
};
// UnityEngine.InputSystem.Layouts.InputDeviceBuilder
struct InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643
{
public:
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.Layouts.InputDeviceBuilder::m_Device
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___m_Device_0;
// UnityEngine.InputSystem.Layouts.InputControlLayout/CacheRefInstance UnityEngine.InputSystem.Layouts.InputDeviceBuilder::m_LayoutCacheRef
CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6 ___m_LayoutCacheRef_1;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem> UnityEngine.InputSystem.Layouts.InputDeviceBuilder::m_ChildControlOverrides
Dictionary_2_t7E1F133D1556AAA0EE83A9C3B21974C8302A22CA * ___m_ChildControlOverrides_2;
// System.Text.StringBuilder UnityEngine.InputSystem.Layouts.InputDeviceBuilder::m_StringBuilder
StringBuilder_t * ___m_StringBuilder_3;
public:
inline static int32_t get_offset_of_m_Device_0() { return static_cast<int32_t>(offsetof(InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643, ___m_Device_0)); }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * get_m_Device_0() const { return ___m_Device_0; }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 ** get_address_of_m_Device_0() { return &___m_Device_0; }
inline void set_m_Device_0(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * value)
{
___m_Device_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Device_0), (void*)value);
}
inline static int32_t get_offset_of_m_LayoutCacheRef_1() { return static_cast<int32_t>(offsetof(InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643, ___m_LayoutCacheRef_1)); }
inline CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6 get_m_LayoutCacheRef_1() const { return ___m_LayoutCacheRef_1; }
inline CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6 * get_address_of_m_LayoutCacheRef_1() { return &___m_LayoutCacheRef_1; }
inline void set_m_LayoutCacheRef_1(CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6 value)
{
___m_LayoutCacheRef_1 = value;
}
inline static int32_t get_offset_of_m_ChildControlOverrides_2() { return static_cast<int32_t>(offsetof(InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643, ___m_ChildControlOverrides_2)); }
inline Dictionary_2_t7E1F133D1556AAA0EE83A9C3B21974C8302A22CA * get_m_ChildControlOverrides_2() const { return ___m_ChildControlOverrides_2; }
inline Dictionary_2_t7E1F133D1556AAA0EE83A9C3B21974C8302A22CA ** get_address_of_m_ChildControlOverrides_2() { return &___m_ChildControlOverrides_2; }
inline void set_m_ChildControlOverrides_2(Dictionary_2_t7E1F133D1556AAA0EE83A9C3B21974C8302A22CA * value)
{
___m_ChildControlOverrides_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChildControlOverrides_2), (void*)value);
}
inline static int32_t get_offset_of_m_StringBuilder_3() { return static_cast<int32_t>(offsetof(InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643, ___m_StringBuilder_3)); }
inline StringBuilder_t * get_m_StringBuilder_3() const { return ___m_StringBuilder_3; }
inline StringBuilder_t ** get_address_of_m_StringBuilder_3() { return &___m_StringBuilder_3; }
inline void set_m_StringBuilder_3(StringBuilder_t * value)
{
___m_StringBuilder_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StringBuilder_3), (void*)value);
}
};
struct InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643_StaticFields
{
public:
// UnityEngine.InputSystem.Layouts.InputDeviceBuilder UnityEngine.InputSystem.Layouts.InputDeviceBuilder::s_Instance
InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643 ___s_Instance_5;
// System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceBuilder::s_InstanceRef
int32_t ___s_InstanceRef_6;
public:
inline static int32_t get_offset_of_s_Instance_5() { return static_cast<int32_t>(offsetof(InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643_StaticFields, ___s_Instance_5)); }
inline InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643 get_s_Instance_5() const { return ___s_Instance_5; }
inline InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643 * get_address_of_s_Instance_5() { return &___s_Instance_5; }
inline void set_s_Instance_5(InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643 value)
{
___s_Instance_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Instance_5))->___m_Device_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Instance_5))->___m_ChildControlOverrides_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Instance_5))->___m_StringBuilder_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_InstanceRef_6() { return static_cast<int32_t>(offsetof(InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643_StaticFields, ___s_InstanceRef_6)); }
inline int32_t get_s_InstanceRef_6() const { return ___s_InstanceRef_6; }
inline int32_t* get_address_of_s_InstanceRef_6() { return &___s_InstanceRef_6; }
inline void set_s_InstanceRef_6(int32_t value)
{
___s_InstanceRef_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceBuilder
struct InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643_marshaled_pinvoke
{
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___m_Device_0;
CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6_marshaled_pinvoke ___m_LayoutCacheRef_1;
Dictionary_2_t7E1F133D1556AAA0EE83A9C3B21974C8302A22CA * ___m_ChildControlOverrides_2;
char* ___m_StringBuilder_3;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceBuilder
struct InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643_marshaled_com
{
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___m_Device_0;
CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6_marshaled_com ___m_LayoutCacheRef_1;
Dictionary_2_t7E1F133D1556AAA0EE83A9C3B21974C8302A22CA * ___m_ChildControlOverrides_2;
Il2CppChar* ___m_StringBuilder_3;
};
// UnityEngine.XR.InputDeviceCharacteristics
struct InputDeviceCharacteristics_t0C34BAC0C6F661161E2DA1677CD590273F1C9C64
{
public:
// System.UInt32 UnityEngine.XR.InputDeviceCharacteristics::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputDeviceCharacteristics_t0C34BAC0C6F661161E2DA1677CD590273F1C9C64, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand
struct InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputDeviceCommand::type
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___type_4;
};
#pragma pack(pop, tp)
struct
{
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___type_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_5_OffsetPadding[4];
// System.Int32 UnityEngine.InputSystem.LowLevel.InputDeviceCommand::sizeInBytes
int32_t ___sizeInBytes_5;
};
#pragma pack(pop, tp)
struct
{
char ___sizeInBytes_5_OffsetPadding_forAlignmentOnly[4];
int32_t ___sizeInBytes_5_forAlignmentOnly;
};
};
};
uint8_t InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854__padding[8];
};
public:
inline static int32_t get_offset_of_type_4() { return static_cast<int32_t>(offsetof(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854, ___type_4)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_type_4() const { return ___type_4; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_type_4() { return &___type_4; }
inline void set_type_4(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___type_4 = value;
}
inline static int32_t get_offset_of_sizeInBytes_5() { return static_cast<int32_t>(offsetof(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854, ___sizeInBytes_5)); }
inline int32_t get_sizeInBytes_5() const { return ___sizeInBytes_5; }
inline int32_t* get_address_of_sizeInBytes_5() { return &___sizeInBytes_5; }
inline void set_sizeInBytes_5(int32_t value)
{
___sizeInBytes_5 = value;
}
};
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher
struct InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0
{
public:
// System.Collections.Generic.KeyValuePair`2<UnityEngine.InputSystem.Utilities.InternedString,System.Object>[] UnityEngine.InputSystem.Layouts.InputDeviceMatcher::m_Patterns
KeyValuePair_2U5BU5D_tD091D99F54F79B269CC17F6E7BBE1B5F3F3E92D0* ___m_Patterns_0;
public:
inline static int32_t get_offset_of_m_Patterns_0() { return static_cast<int32_t>(offsetof(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0, ___m_Patterns_0)); }
inline KeyValuePair_2U5BU5D_tD091D99F54F79B269CC17F6E7BBE1B5F3F3E92D0* get_m_Patterns_0() const { return ___m_Patterns_0; }
inline KeyValuePair_2U5BU5D_tD091D99F54F79B269CC17F6E7BBE1B5F3F3E92D0** get_address_of_m_Patterns_0() { return &___m_Patterns_0; }
inline void set_m_Patterns_0(KeyValuePair_2U5BU5D_tD091D99F54F79B269CC17F6E7BBE1B5F3F3E92D0* value)
{
___m_Patterns_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Patterns_0), (void*)value);
}
};
struct InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kInterfaceKey
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___kInterfaceKey_1;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kDeviceClassKey
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___kDeviceClassKey_2;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kManufacturerKey
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___kManufacturerKey_3;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kProductKey
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___kProductKey_4;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputDeviceMatcher::kVersionKey
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___kVersionKey_5;
public:
inline static int32_t get_offset_of_kInterfaceKey_1() { return static_cast<int32_t>(offsetof(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields, ___kInterfaceKey_1)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_kInterfaceKey_1() const { return ___kInterfaceKey_1; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_kInterfaceKey_1() { return &___kInterfaceKey_1; }
inline void set_kInterfaceKey_1(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___kInterfaceKey_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___kInterfaceKey_1))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___kInterfaceKey_1))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_kDeviceClassKey_2() { return static_cast<int32_t>(offsetof(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields, ___kDeviceClassKey_2)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_kDeviceClassKey_2() const { return ___kDeviceClassKey_2; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_kDeviceClassKey_2() { return &___kDeviceClassKey_2; }
inline void set_kDeviceClassKey_2(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___kDeviceClassKey_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___kDeviceClassKey_2))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___kDeviceClassKey_2))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_kManufacturerKey_3() { return static_cast<int32_t>(offsetof(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields, ___kManufacturerKey_3)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_kManufacturerKey_3() const { return ___kManufacturerKey_3; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_kManufacturerKey_3() { return &___kManufacturerKey_3; }
inline void set_kManufacturerKey_3(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___kManufacturerKey_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___kManufacturerKey_3))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___kManufacturerKey_3))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_kProductKey_4() { return static_cast<int32_t>(offsetof(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields, ___kProductKey_4)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_kProductKey_4() const { return ___kProductKey_4; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_kProductKey_4() { return &___kProductKey_4; }
inline void set_kProductKey_4(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___kProductKey_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___kProductKey_4))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___kProductKey_4))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_kVersionKey_5() { return static_cast<int32_t>(offsetof(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields, ___kVersionKey_5)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_kVersionKey_5() const { return ___kVersionKey_5; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_kVersionKey_5() { return &___kVersionKey_5; }
inline void set_kVersionKey_5(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___kVersionKey_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___kVersionKey_5))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___kVersionKey_5))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher
struct InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_marshaled_pinvoke
{
KeyValuePair_2_t8437CFCF35B557B23AD6F0D32340D2791BC7E990 * ___m_Patterns_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputDeviceMatcher
struct InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_marshaled_com
{
KeyValuePair_2_t8437CFCF35B557B23AD6F0D32340D2791BC7E990 * ___m_Patterns_0;
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace
struct InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_ChangeCounter
int32_t ___m_ChangeCounter_1;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_Enabled
bool ___m_Enabled_2;
// System.Func`3<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice,System.Boolean> UnityEngine.InputSystem.LowLevel.InputEventTrace::m_OnFilterEvent
Func_3_tD9575C6FC5ED9BEECD456B91570103C1729D05E5 * ___m_OnFilterEvent_3;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_DeviceId
int32_t ___m_DeviceId_4;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr>> UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventListeners
InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349 ___m_EventListeners_5;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferSize
int64_t ___m_EventBufferSize_6;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_MaxEventBufferSize
int64_t ___m_MaxEventBufferSize_7;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_GrowIncrementSize
int64_t ___m_GrowIncrementSize_8;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventCount
int64_t ___m_EventCount_9;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventSizeInBytes
int64_t ___m_EventSizeInBytes_10;
// System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferStorage
uint64_t ___m_EventBufferStorage_11;
// System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferHeadStorage
uint64_t ___m_EventBufferHeadStorage_12;
// System.UInt64 UnityEngine.InputSystem.LowLevel.InputEventTrace::m_EventBufferTailStorage
uint64_t ___m_EventBufferTailStorage_13;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_HasWrapped
bool ___m_HasWrapped_14;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace::m_RecordFrameMarkers
bool ___m_RecordFrameMarkers_15;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo[] UnityEngine.InputSystem.LowLevel.InputEventTrace::m_DeviceInfos
DeviceInfoU5BU5D_tE904BBEAFB84F98A3635CA21223E62B9D89CDF43* ___m_DeviceInfos_16;
public:
inline static int32_t get_offset_of_m_ChangeCounter_1() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_ChangeCounter_1)); }
inline int32_t get_m_ChangeCounter_1() const { return ___m_ChangeCounter_1; }
inline int32_t* get_address_of_m_ChangeCounter_1() { return &___m_ChangeCounter_1; }
inline void set_m_ChangeCounter_1(int32_t value)
{
___m_ChangeCounter_1 = value;
}
inline static int32_t get_offset_of_m_Enabled_2() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_Enabled_2)); }
inline bool get_m_Enabled_2() const { return ___m_Enabled_2; }
inline bool* get_address_of_m_Enabled_2() { return &___m_Enabled_2; }
inline void set_m_Enabled_2(bool value)
{
___m_Enabled_2 = value;
}
inline static int32_t get_offset_of_m_OnFilterEvent_3() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_OnFilterEvent_3)); }
inline Func_3_tD9575C6FC5ED9BEECD456B91570103C1729D05E5 * get_m_OnFilterEvent_3() const { return ___m_OnFilterEvent_3; }
inline Func_3_tD9575C6FC5ED9BEECD456B91570103C1729D05E5 ** get_address_of_m_OnFilterEvent_3() { return &___m_OnFilterEvent_3; }
inline void set_m_OnFilterEvent_3(Func_3_tD9575C6FC5ED9BEECD456B91570103C1729D05E5 * value)
{
___m_OnFilterEvent_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnFilterEvent_3), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceId_4() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_DeviceId_4)); }
inline int32_t get_m_DeviceId_4() const { return ___m_DeviceId_4; }
inline int32_t* get_address_of_m_DeviceId_4() { return &___m_DeviceId_4; }
inline void set_m_DeviceId_4(int32_t value)
{
___m_DeviceId_4 = value;
}
inline static int32_t get_offset_of_m_EventListeners_5() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_EventListeners_5)); }
inline InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349 get_m_EventListeners_5() const { return ___m_EventListeners_5; }
inline InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349 * get_address_of_m_EventListeners_5() { return &___m_EventListeners_5; }
inline void set_m_EventListeners_5(InlinedArray_1_t6C45850556B0B59F4BE5DBA2B14D794327330349 value)
{
___m_EventListeners_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_EventListeners_5))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_EventListeners_5))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_EventBufferSize_6() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_EventBufferSize_6)); }
inline int64_t get_m_EventBufferSize_6() const { return ___m_EventBufferSize_6; }
inline int64_t* get_address_of_m_EventBufferSize_6() { return &___m_EventBufferSize_6; }
inline void set_m_EventBufferSize_6(int64_t value)
{
___m_EventBufferSize_6 = value;
}
inline static int32_t get_offset_of_m_MaxEventBufferSize_7() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_MaxEventBufferSize_7)); }
inline int64_t get_m_MaxEventBufferSize_7() const { return ___m_MaxEventBufferSize_7; }
inline int64_t* get_address_of_m_MaxEventBufferSize_7() { return &___m_MaxEventBufferSize_7; }
inline void set_m_MaxEventBufferSize_7(int64_t value)
{
___m_MaxEventBufferSize_7 = value;
}
inline static int32_t get_offset_of_m_GrowIncrementSize_8() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_GrowIncrementSize_8)); }
inline int64_t get_m_GrowIncrementSize_8() const { return ___m_GrowIncrementSize_8; }
inline int64_t* get_address_of_m_GrowIncrementSize_8() { return &___m_GrowIncrementSize_8; }
inline void set_m_GrowIncrementSize_8(int64_t value)
{
___m_GrowIncrementSize_8 = value;
}
inline static int32_t get_offset_of_m_EventCount_9() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_EventCount_9)); }
inline int64_t get_m_EventCount_9() const { return ___m_EventCount_9; }
inline int64_t* get_address_of_m_EventCount_9() { return &___m_EventCount_9; }
inline void set_m_EventCount_9(int64_t value)
{
___m_EventCount_9 = value;
}
inline static int32_t get_offset_of_m_EventSizeInBytes_10() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_EventSizeInBytes_10)); }
inline int64_t get_m_EventSizeInBytes_10() const { return ___m_EventSizeInBytes_10; }
inline int64_t* get_address_of_m_EventSizeInBytes_10() { return &___m_EventSizeInBytes_10; }
inline void set_m_EventSizeInBytes_10(int64_t value)
{
___m_EventSizeInBytes_10 = value;
}
inline static int32_t get_offset_of_m_EventBufferStorage_11() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_EventBufferStorage_11)); }
inline uint64_t get_m_EventBufferStorage_11() const { return ___m_EventBufferStorage_11; }
inline uint64_t* get_address_of_m_EventBufferStorage_11() { return &___m_EventBufferStorage_11; }
inline void set_m_EventBufferStorage_11(uint64_t value)
{
___m_EventBufferStorage_11 = value;
}
inline static int32_t get_offset_of_m_EventBufferHeadStorage_12() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_EventBufferHeadStorage_12)); }
inline uint64_t get_m_EventBufferHeadStorage_12() const { return ___m_EventBufferHeadStorage_12; }
inline uint64_t* get_address_of_m_EventBufferHeadStorage_12() { return &___m_EventBufferHeadStorage_12; }
inline void set_m_EventBufferHeadStorage_12(uint64_t value)
{
___m_EventBufferHeadStorage_12 = value;
}
inline static int32_t get_offset_of_m_EventBufferTailStorage_13() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_EventBufferTailStorage_13)); }
inline uint64_t get_m_EventBufferTailStorage_13() const { return ___m_EventBufferTailStorage_13; }
inline uint64_t* get_address_of_m_EventBufferTailStorage_13() { return &___m_EventBufferTailStorage_13; }
inline void set_m_EventBufferTailStorage_13(uint64_t value)
{
___m_EventBufferTailStorage_13 = value;
}
inline static int32_t get_offset_of_m_HasWrapped_14() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_HasWrapped_14)); }
inline bool get_m_HasWrapped_14() const { return ___m_HasWrapped_14; }
inline bool* get_address_of_m_HasWrapped_14() { return &___m_HasWrapped_14; }
inline void set_m_HasWrapped_14(bool value)
{
___m_HasWrapped_14 = value;
}
inline static int32_t get_offset_of_m_RecordFrameMarkers_15() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_RecordFrameMarkers_15)); }
inline bool get_m_RecordFrameMarkers_15() const { return ___m_RecordFrameMarkers_15; }
inline bool* get_address_of_m_RecordFrameMarkers_15() { return &___m_RecordFrameMarkers_15; }
inline void set_m_RecordFrameMarkers_15(bool value)
{
___m_RecordFrameMarkers_15 = value;
}
inline static int32_t get_offset_of_m_DeviceInfos_16() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2, ___m_DeviceInfos_16)); }
inline DeviceInfoU5BU5D_tE904BBEAFB84F98A3635CA21223E62B9D89CDF43* get_m_DeviceInfos_16() const { return ___m_DeviceInfos_16; }
inline DeviceInfoU5BU5D_tE904BBEAFB84F98A3635CA21223E62B9D89CDF43** get_address_of_m_DeviceInfos_16() { return &___m_DeviceInfos_16; }
inline void set_m_DeviceInfos_16(DeviceInfoU5BU5D_tE904BBEAFB84F98A3635CA21223E62B9D89CDF43* value)
{
___m_DeviceInfos_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceInfos_16), (void*)value);
}
};
struct InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2_StaticFields
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace::kFileVersion
int32_t ___kFileVersion_17;
public:
inline static int32_t get_offset_of_kFileVersion_17() { return static_cast<int32_t>(offsetof(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2_StaticFields, ___kFileVersion_17)); }
inline int32_t get_kFileVersion_17() const { return ___kFileVersion_17; }
inline int32_t* get_address_of_kFileVersion_17() { return &___kFileVersion_17; }
inline void set_kFileVersion_17(int32_t value)
{
___kFileVersion_17 = value;
}
};
// UnityEngine.InputSystem.InputProcessor
struct InputProcessor_tA241F1712E640354F912A2E655EE22945CFF14A4 : public RuntimeObject
{
public:
public:
};
struct InputProcessor_tA241F1712E640354F912A2E655EE22945CFF14A4_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.TypeTable UnityEngine.InputSystem.InputProcessor::s_Processors
TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 ___s_Processors_0;
public:
inline static int32_t get_offset_of_s_Processors_0() { return static_cast<int32_t>(offsetof(InputProcessor_tA241F1712E640354F912A2E655EE22945CFF14A4_StaticFields, ___s_Processors_0)); }
inline TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 get_s_Processors_0() const { return ___s_Processors_0; }
inline TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 * get_address_of_s_Processors_0() { return &___s_Processors_0; }
inline void set_s_Processors_0(TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57 value)
{
___s_Processors_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Processors_0))->___table_0), (void*)NULL);
}
};
// UnityEngine.InputSystem.LowLevel.InputStateBlock
struct InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42
{
public:
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::<format>k__BackingField
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___U3CformatU3Ek__BackingField_21;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<byteOffset>k__BackingField
uint32_t ___U3CbyteOffsetU3Ek__BackingField_22;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<bitOffset>k__BackingField
uint32_t ___U3CbitOffsetU3Ek__BackingField_23;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBlock::<sizeInBits>k__BackingField
uint32_t ___U3CsizeInBitsU3Ek__BackingField_24;
public:
inline static int32_t get_offset_of_U3CformatU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42, ___U3CformatU3Ek__BackingField_21)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_U3CformatU3Ek__BackingField_21() const { return ___U3CformatU3Ek__BackingField_21; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_U3CformatU3Ek__BackingField_21() { return &___U3CformatU3Ek__BackingField_21; }
inline void set_U3CformatU3Ek__BackingField_21(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___U3CformatU3Ek__BackingField_21 = value;
}
inline static int32_t get_offset_of_U3CbyteOffsetU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42, ___U3CbyteOffsetU3Ek__BackingField_22)); }
inline uint32_t get_U3CbyteOffsetU3Ek__BackingField_22() const { return ___U3CbyteOffsetU3Ek__BackingField_22; }
inline uint32_t* get_address_of_U3CbyteOffsetU3Ek__BackingField_22() { return &___U3CbyteOffsetU3Ek__BackingField_22; }
inline void set_U3CbyteOffsetU3Ek__BackingField_22(uint32_t value)
{
___U3CbyteOffsetU3Ek__BackingField_22 = value;
}
inline static int32_t get_offset_of_U3CbitOffsetU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42, ___U3CbitOffsetU3Ek__BackingField_23)); }
inline uint32_t get_U3CbitOffsetU3Ek__BackingField_23() const { return ___U3CbitOffsetU3Ek__BackingField_23; }
inline uint32_t* get_address_of_U3CbitOffsetU3Ek__BackingField_23() { return &___U3CbitOffsetU3Ek__BackingField_23; }
inline void set_U3CbitOffsetU3Ek__BackingField_23(uint32_t value)
{
___U3CbitOffsetU3Ek__BackingField_23 = value;
}
inline static int32_t get_offset_of_U3CsizeInBitsU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42, ___U3CsizeInBitsU3Ek__BackingField_24)); }
inline uint32_t get_U3CsizeInBitsU3Ek__BackingField_24() const { return ___U3CsizeInBitsU3Ek__BackingField_24; }
inline uint32_t* get_address_of_U3CsizeInBitsU3Ek__BackingField_24() { return &___U3CsizeInBitsU3Ek__BackingField_24; }
inline void set_U3CsizeInBitsU3Ek__BackingField_24(uint32_t value)
{
___U3CsizeInBitsU3Ek__BackingField_24 = value;
}
};
struct InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatBit
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatBit_2;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSBit
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatSBit_3;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatInt
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatInt_4;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUInt
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatUInt_5;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatShort
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatShort_6;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatUShort
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatUShort_7;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatByte
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatByte_8;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatSByte
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatSByte_9;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatLong
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatLong_10;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatULong
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatULong_11;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatFloat
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatFloat_12;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatDouble
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatDouble_13;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatVector2_14;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatVector3_15;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatQuaternion
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatQuaternion_16;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Short
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatVector2Short_17;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Short
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatVector3Short_18;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector2Byte
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatVector2Byte_19;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputStateBlock::FormatVector3Byte
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___FormatVector3Byte_20;
public:
inline static int32_t get_offset_of_FormatBit_2() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatBit_2)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatBit_2() const { return ___FormatBit_2; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatBit_2() { return &___FormatBit_2; }
inline void set_FormatBit_2(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatBit_2 = value;
}
inline static int32_t get_offset_of_FormatSBit_3() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatSBit_3)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatSBit_3() const { return ___FormatSBit_3; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatSBit_3() { return &___FormatSBit_3; }
inline void set_FormatSBit_3(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatSBit_3 = value;
}
inline static int32_t get_offset_of_FormatInt_4() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatInt_4)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatInt_4() const { return ___FormatInt_4; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatInt_4() { return &___FormatInt_4; }
inline void set_FormatInt_4(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatInt_4 = value;
}
inline static int32_t get_offset_of_FormatUInt_5() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatUInt_5)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatUInt_5() const { return ___FormatUInt_5; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatUInt_5() { return &___FormatUInt_5; }
inline void set_FormatUInt_5(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatUInt_5 = value;
}
inline static int32_t get_offset_of_FormatShort_6() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatShort_6)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatShort_6() const { return ___FormatShort_6; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatShort_6() { return &___FormatShort_6; }
inline void set_FormatShort_6(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatShort_6 = value;
}
inline static int32_t get_offset_of_FormatUShort_7() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatUShort_7)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatUShort_7() const { return ___FormatUShort_7; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatUShort_7() { return &___FormatUShort_7; }
inline void set_FormatUShort_7(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatUShort_7 = value;
}
inline static int32_t get_offset_of_FormatByte_8() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatByte_8)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatByte_8() const { return ___FormatByte_8; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatByte_8() { return &___FormatByte_8; }
inline void set_FormatByte_8(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatByte_8 = value;
}
inline static int32_t get_offset_of_FormatSByte_9() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatSByte_9)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatSByte_9() const { return ___FormatSByte_9; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatSByte_9() { return &___FormatSByte_9; }
inline void set_FormatSByte_9(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatSByte_9 = value;
}
inline static int32_t get_offset_of_FormatLong_10() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatLong_10)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatLong_10() const { return ___FormatLong_10; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatLong_10() { return &___FormatLong_10; }
inline void set_FormatLong_10(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatLong_10 = value;
}
inline static int32_t get_offset_of_FormatULong_11() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatULong_11)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatULong_11() const { return ___FormatULong_11; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatULong_11() { return &___FormatULong_11; }
inline void set_FormatULong_11(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatULong_11 = value;
}
inline static int32_t get_offset_of_FormatFloat_12() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatFloat_12)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatFloat_12() const { return ___FormatFloat_12; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatFloat_12() { return &___FormatFloat_12; }
inline void set_FormatFloat_12(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatFloat_12 = value;
}
inline static int32_t get_offset_of_FormatDouble_13() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatDouble_13)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatDouble_13() const { return ___FormatDouble_13; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatDouble_13() { return &___FormatDouble_13; }
inline void set_FormatDouble_13(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatDouble_13 = value;
}
inline static int32_t get_offset_of_FormatVector2_14() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatVector2_14)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatVector2_14() const { return ___FormatVector2_14; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatVector2_14() { return &___FormatVector2_14; }
inline void set_FormatVector2_14(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatVector2_14 = value;
}
inline static int32_t get_offset_of_FormatVector3_15() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatVector3_15)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatVector3_15() const { return ___FormatVector3_15; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatVector3_15() { return &___FormatVector3_15; }
inline void set_FormatVector3_15(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatVector3_15 = value;
}
inline static int32_t get_offset_of_FormatQuaternion_16() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatQuaternion_16)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatQuaternion_16() const { return ___FormatQuaternion_16; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatQuaternion_16() { return &___FormatQuaternion_16; }
inline void set_FormatQuaternion_16(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatQuaternion_16 = value;
}
inline static int32_t get_offset_of_FormatVector2Short_17() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatVector2Short_17)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatVector2Short_17() const { return ___FormatVector2Short_17; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatVector2Short_17() { return &___FormatVector2Short_17; }
inline void set_FormatVector2Short_17(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatVector2Short_17 = value;
}
inline static int32_t get_offset_of_FormatVector3Short_18() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatVector3Short_18)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatVector3Short_18() const { return ___FormatVector3Short_18; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatVector3Short_18() { return &___FormatVector3Short_18; }
inline void set_FormatVector3Short_18(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatVector3Short_18 = value;
}
inline static int32_t get_offset_of_FormatVector2Byte_19() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatVector2Byte_19)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatVector2Byte_19() const { return ___FormatVector2Byte_19; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatVector2Byte_19() { return &___FormatVector2Byte_19; }
inline void set_FormatVector2Byte_19(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatVector2Byte_19 = value;
}
inline static int32_t get_offset_of_FormatVector3Byte_20() { return static_cast<int32_t>(offsetof(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields, ___FormatVector3Byte_20)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_FormatVector3Byte_20() const { return ___FormatVector3Byte_20; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_FormatVector3Byte_20() { return &___FormatVector3Byte_20; }
inline void set_FormatVector3Byte_20(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___FormatVector3Byte_20 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputStateBuffers
struct InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB
{
public:
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBuffers::sizePerBuffer
uint32_t ___sizePerBuffer_0;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateBuffers::totalSize
uint32_t ___totalSize_1;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::defaultStateBuffer
void* ___defaultStateBuffer_2;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::noiseMaskBuffer
void* ___noiseMaskBuffer_3;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::m_AllBuffers
void* ___m_AllBuffers_4;
// UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers UnityEngine.InputSystem.LowLevel.InputStateBuffers::m_PlayerStateBuffers
DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E ___m_PlayerStateBuffers_5;
public:
inline static int32_t get_offset_of_sizePerBuffer_0() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB, ___sizePerBuffer_0)); }
inline uint32_t get_sizePerBuffer_0() const { return ___sizePerBuffer_0; }
inline uint32_t* get_address_of_sizePerBuffer_0() { return &___sizePerBuffer_0; }
inline void set_sizePerBuffer_0(uint32_t value)
{
___sizePerBuffer_0 = value;
}
inline static int32_t get_offset_of_totalSize_1() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB, ___totalSize_1)); }
inline uint32_t get_totalSize_1() const { return ___totalSize_1; }
inline uint32_t* get_address_of_totalSize_1() { return &___totalSize_1; }
inline void set_totalSize_1(uint32_t value)
{
___totalSize_1 = value;
}
inline static int32_t get_offset_of_defaultStateBuffer_2() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB, ___defaultStateBuffer_2)); }
inline void* get_defaultStateBuffer_2() const { return ___defaultStateBuffer_2; }
inline void** get_address_of_defaultStateBuffer_2() { return &___defaultStateBuffer_2; }
inline void set_defaultStateBuffer_2(void* value)
{
___defaultStateBuffer_2 = value;
}
inline static int32_t get_offset_of_noiseMaskBuffer_3() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB, ___noiseMaskBuffer_3)); }
inline void* get_noiseMaskBuffer_3() const { return ___noiseMaskBuffer_3; }
inline void** get_address_of_noiseMaskBuffer_3() { return &___noiseMaskBuffer_3; }
inline void set_noiseMaskBuffer_3(void* value)
{
___noiseMaskBuffer_3 = value;
}
inline static int32_t get_offset_of_m_AllBuffers_4() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB, ___m_AllBuffers_4)); }
inline void* get_m_AllBuffers_4() const { return ___m_AllBuffers_4; }
inline void** get_address_of_m_AllBuffers_4() { return &___m_AllBuffers_4; }
inline void set_m_AllBuffers_4(void* value)
{
___m_AllBuffers_4 = value;
}
inline static int32_t get_offset_of_m_PlayerStateBuffers_5() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB, ___m_PlayerStateBuffers_5)); }
inline DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E get_m_PlayerStateBuffers_5() const { return ___m_PlayerStateBuffers_5; }
inline DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E * get_address_of_m_PlayerStateBuffers_5() { return &___m_PlayerStateBuffers_5; }
inline void set_m_PlayerStateBuffers_5(DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E value)
{
___m_PlayerStateBuffers_5 = value;
}
};
struct InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB_StaticFields
{
public:
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_DefaultStateBuffer
void* ___s_DefaultStateBuffer_6;
// System.Void* UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_NoiseMaskBuffer
void* ___s_NoiseMaskBuffer_7;
// UnityEngine.InputSystem.LowLevel.InputStateBuffers/DoubleBuffers UnityEngine.InputSystem.LowLevel.InputStateBuffers::s_CurrentBuffers
DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E ___s_CurrentBuffers_8;
public:
inline static int32_t get_offset_of_s_DefaultStateBuffer_6() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB_StaticFields, ___s_DefaultStateBuffer_6)); }
inline void* get_s_DefaultStateBuffer_6() const { return ___s_DefaultStateBuffer_6; }
inline void** get_address_of_s_DefaultStateBuffer_6() { return &___s_DefaultStateBuffer_6; }
inline void set_s_DefaultStateBuffer_6(void* value)
{
___s_DefaultStateBuffer_6 = value;
}
inline static int32_t get_offset_of_s_NoiseMaskBuffer_7() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB_StaticFields, ___s_NoiseMaskBuffer_7)); }
inline void* get_s_NoiseMaskBuffer_7() const { return ___s_NoiseMaskBuffer_7; }
inline void** get_address_of_s_NoiseMaskBuffer_7() { return &___s_NoiseMaskBuffer_7; }
inline void set_s_NoiseMaskBuffer_7(void* value)
{
___s_NoiseMaskBuffer_7 = value;
}
inline static int32_t get_offset_of_s_CurrentBuffers_8() { return static_cast<int32_t>(offsetof(InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB_StaticFields, ___s_CurrentBuffers_8)); }
inline DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E get_s_CurrentBuffers_8() const { return ___s_CurrentBuffers_8; }
inline DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E * get_address_of_s_CurrentBuffers_8() { return &___s_CurrentBuffers_8; }
inline void set_s_CurrentBuffers_8(DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E value)
{
___s_CurrentBuffers_8 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputUpdateType
struct InputUpdateType_tB8BBAA96C9BA1DF27CD58B346C2B3356C2C4205E
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InputUpdateType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputUpdateType_tB8BBAA96C9BA1DF27CD58B346C2B3356C2C4205E, ___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.InputSystem.Users.InputUserChange
struct InputUserChange_t662B024D9EA4DC794CD0632284E18322E640F76F
{
public:
// System.Int32 UnityEngine.InputSystem.Users.InputUserChange::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputUserChange_t662B024D9EA4DC794CD0632284E18322E640F76F, ___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.InputSystem.Users.InputUserPairingOptions
struct InputUserPairingOptions_tFE46EF2C7D3B9CA945612261D132AC3B43A9463A
{
public:
// System.Int32 UnityEngine.InputSystem.Users.InputUserPairingOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputUserPairingOptions_tFE46EF2C7D3B9CA945612261D132AC3B43A9463A, ___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.InputSystem.Users.InputUserSettings
struct InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75 : public RuntimeObject
{
public:
// System.String UnityEngine.InputSystem.Users.InputUserSettings::<customBindings>k__BackingField
String_t* ___U3CcustomBindingsU3Ek__BackingField_0;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<invertMouseX>k__BackingField
bool ___U3CinvertMouseXU3Ek__BackingField_1;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<invertMouseY>k__BackingField
bool ___U3CinvertMouseYU3Ek__BackingField_2;
// System.Nullable`1<System.Single> UnityEngine.InputSystem.Users.InputUserSettings::<mouseSmoothing>k__BackingField
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___U3CmouseSmoothingU3Ek__BackingField_3;
// System.Nullable`1<System.Single> UnityEngine.InputSystem.Users.InputUserSettings::<mouseSensitivity>k__BackingField
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___U3CmouseSensitivityU3Ek__BackingField_4;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<invertStickX>k__BackingField
bool ___U3CinvertStickXU3Ek__BackingField_5;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<invertStickY>k__BackingField
bool ___U3CinvertStickYU3Ek__BackingField_6;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<swapSticks>k__BackingField
bool ___U3CswapSticksU3Ek__BackingField_7;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<swapBumpers>k__BackingField
bool ___U3CswapBumpersU3Ek__BackingField_8;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<swapTriggers>k__BackingField
bool ___U3CswapTriggersU3Ek__BackingField_9;
// System.Boolean UnityEngine.InputSystem.Users.InputUserSettings::<swapDpadAndLeftStick>k__BackingField
bool ___U3CswapDpadAndLeftStickU3Ek__BackingField_10;
// System.Single UnityEngine.InputSystem.Users.InputUserSettings::<vibrationStrength>k__BackingField
float ___U3CvibrationStrengthU3Ek__BackingField_11;
// System.String UnityEngine.InputSystem.Users.InputUserSettings::m_CustomBindings
String_t* ___m_CustomBindings_12;
public:
inline static int32_t get_offset_of_U3CcustomBindingsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CcustomBindingsU3Ek__BackingField_0)); }
inline String_t* get_U3CcustomBindingsU3Ek__BackingField_0() const { return ___U3CcustomBindingsU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CcustomBindingsU3Ek__BackingField_0() { return &___U3CcustomBindingsU3Ek__BackingField_0; }
inline void set_U3CcustomBindingsU3Ek__BackingField_0(String_t* value)
{
___U3CcustomBindingsU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcustomBindingsU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CinvertMouseXU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CinvertMouseXU3Ek__BackingField_1)); }
inline bool get_U3CinvertMouseXU3Ek__BackingField_1() const { return ___U3CinvertMouseXU3Ek__BackingField_1; }
inline bool* get_address_of_U3CinvertMouseXU3Ek__BackingField_1() { return &___U3CinvertMouseXU3Ek__BackingField_1; }
inline void set_U3CinvertMouseXU3Ek__BackingField_1(bool value)
{
___U3CinvertMouseXU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CinvertMouseYU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CinvertMouseYU3Ek__BackingField_2)); }
inline bool get_U3CinvertMouseYU3Ek__BackingField_2() const { return ___U3CinvertMouseYU3Ek__BackingField_2; }
inline bool* get_address_of_U3CinvertMouseYU3Ek__BackingField_2() { return &___U3CinvertMouseYU3Ek__BackingField_2; }
inline void set_U3CinvertMouseYU3Ek__BackingField_2(bool value)
{
___U3CinvertMouseYU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CmouseSmoothingU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CmouseSmoothingU3Ek__BackingField_3)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get_U3CmouseSmoothingU3Ek__BackingField_3() const { return ___U3CmouseSmoothingU3Ek__BackingField_3; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of_U3CmouseSmoothingU3Ek__BackingField_3() { return &___U3CmouseSmoothingU3Ek__BackingField_3; }
inline void set_U3CmouseSmoothingU3Ek__BackingField_3(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
___U3CmouseSmoothingU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CmouseSensitivityU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CmouseSensitivityU3Ek__BackingField_4)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get_U3CmouseSensitivityU3Ek__BackingField_4() const { return ___U3CmouseSensitivityU3Ek__BackingField_4; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of_U3CmouseSensitivityU3Ek__BackingField_4() { return &___U3CmouseSensitivityU3Ek__BackingField_4; }
inline void set_U3CmouseSensitivityU3Ek__BackingField_4(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
___U3CmouseSensitivityU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CinvertStickXU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CinvertStickXU3Ek__BackingField_5)); }
inline bool get_U3CinvertStickXU3Ek__BackingField_5() const { return ___U3CinvertStickXU3Ek__BackingField_5; }
inline bool* get_address_of_U3CinvertStickXU3Ek__BackingField_5() { return &___U3CinvertStickXU3Ek__BackingField_5; }
inline void set_U3CinvertStickXU3Ek__BackingField_5(bool value)
{
___U3CinvertStickXU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CinvertStickYU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CinvertStickYU3Ek__BackingField_6)); }
inline bool get_U3CinvertStickYU3Ek__BackingField_6() const { return ___U3CinvertStickYU3Ek__BackingField_6; }
inline bool* get_address_of_U3CinvertStickYU3Ek__BackingField_6() { return &___U3CinvertStickYU3Ek__BackingField_6; }
inline void set_U3CinvertStickYU3Ek__BackingField_6(bool value)
{
___U3CinvertStickYU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CswapSticksU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CswapSticksU3Ek__BackingField_7)); }
inline bool get_U3CswapSticksU3Ek__BackingField_7() const { return ___U3CswapSticksU3Ek__BackingField_7; }
inline bool* get_address_of_U3CswapSticksU3Ek__BackingField_7() { return &___U3CswapSticksU3Ek__BackingField_7; }
inline void set_U3CswapSticksU3Ek__BackingField_7(bool value)
{
___U3CswapSticksU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CswapBumpersU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CswapBumpersU3Ek__BackingField_8)); }
inline bool get_U3CswapBumpersU3Ek__BackingField_8() const { return ___U3CswapBumpersU3Ek__BackingField_8; }
inline bool* get_address_of_U3CswapBumpersU3Ek__BackingField_8() { return &___U3CswapBumpersU3Ek__BackingField_8; }
inline void set_U3CswapBumpersU3Ek__BackingField_8(bool value)
{
___U3CswapBumpersU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CswapTriggersU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CswapTriggersU3Ek__BackingField_9)); }
inline bool get_U3CswapTriggersU3Ek__BackingField_9() const { return ___U3CswapTriggersU3Ek__BackingField_9; }
inline bool* get_address_of_U3CswapTriggersU3Ek__BackingField_9() { return &___U3CswapTriggersU3Ek__BackingField_9; }
inline void set_U3CswapTriggersU3Ek__BackingField_9(bool value)
{
___U3CswapTriggersU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CswapDpadAndLeftStickU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CswapDpadAndLeftStickU3Ek__BackingField_10)); }
inline bool get_U3CswapDpadAndLeftStickU3Ek__BackingField_10() const { return ___U3CswapDpadAndLeftStickU3Ek__BackingField_10; }
inline bool* get_address_of_U3CswapDpadAndLeftStickU3Ek__BackingField_10() { return &___U3CswapDpadAndLeftStickU3Ek__BackingField_10; }
inline void set_U3CswapDpadAndLeftStickU3Ek__BackingField_10(bool value)
{
___U3CswapDpadAndLeftStickU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CvibrationStrengthU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___U3CvibrationStrengthU3Ek__BackingField_11)); }
inline float get_U3CvibrationStrengthU3Ek__BackingField_11() const { return ___U3CvibrationStrengthU3Ek__BackingField_11; }
inline float* get_address_of_U3CvibrationStrengthU3Ek__BackingField_11() { return &___U3CvibrationStrengthU3Ek__BackingField_11; }
inline void set_U3CvibrationStrengthU3Ek__BackingField_11(float value)
{
___U3CvibrationStrengthU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_m_CustomBindings_12() { return static_cast<int32_t>(offsetof(InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75, ___m_CustomBindings_12)); }
inline String_t* get_m_CustomBindings_12() const { return ___m_CustomBindings_12; }
inline String_t** get_address_of_m_CustomBindings_12() { return &___m_CustomBindings_12; }
inline void set_m_CustomBindings_12(String_t* value)
{
___m_CustomBindings_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CustomBindings_12), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.JoystickState
struct JoystickState_t583D04A243176B4616A15F1A2D8B3440F93B0EAF
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.JoystickState::buttons
int32_t ___buttons_0;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.JoystickState::stick
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___stick_1;
public:
inline static int32_t get_offset_of_buttons_0() { return static_cast<int32_t>(offsetof(JoystickState_t583D04A243176B4616A15F1A2D8B3440F93B0EAF, ___buttons_0)); }
inline int32_t get_buttons_0() const { return ___buttons_0; }
inline int32_t* get_address_of_buttons_0() { return &___buttons_0; }
inline void set_buttons_0(int32_t value)
{
___buttons_0 = value;
}
inline static int32_t get_offset_of_stick_1() { return static_cast<int32_t>(offsetof(JoystickState_t583D04A243176B4616A15F1A2D8B3440F93B0EAF, ___stick_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_stick_1() const { return ___stick_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_stick_1() { return &___stick_1; }
inline void set_stick_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___stick_1 = value;
}
};
// UnityEngine.InputSystem.Key
struct Key_t171B7C2F472A7CA0FC5CD9AB6321F48B773F75F4
{
public:
// System.Int32 UnityEngine.InputSystem.Key::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Key_t171B7C2F472A7CA0FC5CD9AB6321F48B773F75F4, ___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.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.InputSystem.LowLevel.KeyboardState
struct KeyboardState_tDC52E6B6A7F643842BEDB525DCD2FEC77FFC735A
{
public:
// UnityEngine.InputSystem.LowLevel.KeyboardState/<keys>e__FixedBuffer UnityEngine.InputSystem.LowLevel.KeyboardState::keys
U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371 ___keys_2;
public:
inline static int32_t get_offset_of_keys_2() { return static_cast<int32_t>(offsetof(KeyboardState_tDC52E6B6A7F643842BEDB525DCD2FEC77FFC735A, ___keys_2)); }
inline U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371 get_keys_2() const { return ___keys_2; }
inline U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371 * get_address_of_keys_2() { return &___keys_2; }
inline void set_keys_2(U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371 value)
{
___keys_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.LinearAccelerationState
struct LinearAccelerationState_t6ADDC654D390AB566A7CD00BE7B80A3EC6EE32D7
{
public:
// UnityEngine.Vector3 UnityEngine.InputSystem.LowLevel.LinearAccelerationState::acceleration
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___acceleration_0;
public:
inline static int32_t get_offset_of_acceleration_0() { return static_cast<int32_t>(offsetof(LinearAccelerationState_t6ADDC654D390AB566A7CD00BE7B80A3EC6EE32D7, ___acceleration_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_acceleration_0() const { return ___acceleration_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_acceleration_0() { return &___acceleration_0; }
inline void set_acceleration_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___acceleration_0 = value;
}
};
// Dissonance.LogCategory
struct LogCategory_t28F205D3E34D38069F756D5B8D23C71E2C51E672
{
public:
// System.Int32 Dissonance.LogCategory::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LogCategory_t28F205D3E34D38069F756D5B8D23C71E2C51E672, ___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;
}
};
// Dissonance.LogLevel
struct LogLevel_t436713582703DA14D3A50CAC93386BECDB0A506B
{
public:
// System.Int32 Dissonance.LogLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LogLevel_t436713582703DA14D3A50CAC93386BECDB0A506B, ___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;
}
};
// Mirror.Examples.MultipleMatch.MatchInfo
struct MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574
{
public:
// System.Guid Mirror.Examples.MultipleMatch.MatchInfo::matchId
Guid_t ___matchId_0;
// System.Byte Mirror.Examples.MultipleMatch.MatchInfo::players
uint8_t ___players_1;
// System.Byte Mirror.Examples.MultipleMatch.MatchInfo::maxPlayers
uint8_t ___maxPlayers_2;
public:
inline static int32_t get_offset_of_matchId_0() { return static_cast<int32_t>(offsetof(MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574, ___matchId_0)); }
inline Guid_t get_matchId_0() const { return ___matchId_0; }
inline Guid_t * get_address_of_matchId_0() { return &___matchId_0; }
inline void set_matchId_0(Guid_t value)
{
___matchId_0 = value;
}
inline static int32_t get_offset_of_players_1() { return static_cast<int32_t>(offsetof(MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574, ___players_1)); }
inline uint8_t get_players_1() const { return ___players_1; }
inline uint8_t* get_address_of_players_1() { return &___players_1; }
inline void set_players_1(uint8_t value)
{
___players_1 = value;
}
inline static int32_t get_offset_of_maxPlayers_2() { return static_cast<int32_t>(offsetof(MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574, ___maxPlayers_2)); }
inline uint8_t get_maxPlayers_2() const { return ___maxPlayers_2; }
inline uint8_t* get_address_of_maxPlayers_2() { return &___maxPlayers_2; }
inline void set_maxPlayers_2(uint8_t value)
{
___maxPlayers_2 = value;
}
};
// Dissonance.Networking.MessageTypes
struct MessageTypes_t5CE7D34B3CD7575793534714BA096D5BB07745B5
{
public:
// System.Byte Dissonance.Networking.MessageTypes::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MessageTypes_t5CE7D34B3CD7575793534714BA096D5BB07745B5, ___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;
}
};
// UnityEngine.InputSystem.LowLevel.MouseButton
struct MouseButton_tE3B2140867D7F8A59667245C147E92D1A7E6B27D
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.MouseButton::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MouseButton_tE3B2140867D7F8A59667245C147E92D1A7E6B27D, ___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.InputSystem.LowLevel.MouseState
struct MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.MouseState::position
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___position_0;
};
#pragma pack(pop, tp)
struct
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___position_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___delta_1_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.MouseState::delta
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___delta_1;
};
#pragma pack(pop, tp)
struct
{
char ___delta_1_OffsetPadding_forAlignmentOnly[8];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___delta_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___scroll_2_OffsetPadding[16];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.MouseState::scroll
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___scroll_2;
};
#pragma pack(pop, tp)
struct
{
char ___scroll_2_OffsetPadding_forAlignmentOnly[16];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___scroll_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons_3_OffsetPadding[24];
// System.UInt16 UnityEngine.InputSystem.LowLevel.MouseState::buttons
uint16_t ___buttons_3;
};
#pragma pack(pop, tp)
struct
{
char ___buttons_3_OffsetPadding_forAlignmentOnly[24];
uint16_t ___buttons_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___displayIndex_4_OffsetPadding[26];
// System.UInt16 UnityEngine.InputSystem.LowLevel.MouseState::displayIndex
uint16_t ___displayIndex_4;
};
#pragma pack(pop, tp)
struct
{
char ___displayIndex_4_OffsetPadding_forAlignmentOnly[26];
uint16_t ___displayIndex_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___clickCount_5_OffsetPadding[28];
// System.UInt16 UnityEngine.InputSystem.LowLevel.MouseState::clickCount
uint16_t ___clickCount_5;
};
#pragma pack(pop, tp)
struct
{
char ___clickCount_5_OffsetPadding_forAlignmentOnly[28];
uint16_t ___clickCount_5_forAlignmentOnly;
};
};
};
uint8_t MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2__padding[30];
};
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2, ___position_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_position_0() const { return ___position_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_delta_1() { return static_cast<int32_t>(offsetof(MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2, ___delta_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_delta_1() const { return ___delta_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_delta_1() { return &___delta_1; }
inline void set_delta_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___delta_1 = value;
}
inline static int32_t get_offset_of_scroll_2() { return static_cast<int32_t>(offsetof(MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2, ___scroll_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_scroll_2() const { return ___scroll_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_scroll_2() { return &___scroll_2; }
inline void set_scroll_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___scroll_2 = value;
}
inline static int32_t get_offset_of_buttons_3() { return static_cast<int32_t>(offsetof(MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2, ___buttons_3)); }
inline uint16_t get_buttons_3() const { return ___buttons_3; }
inline uint16_t* get_address_of_buttons_3() { return &___buttons_3; }
inline void set_buttons_3(uint16_t value)
{
___buttons_3 = value;
}
inline static int32_t get_offset_of_displayIndex_4() { return static_cast<int32_t>(offsetof(MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2, ___displayIndex_4)); }
inline uint16_t get_displayIndex_4() const { return ___displayIndex_4; }
inline uint16_t* get_address_of_displayIndex_4() { return &___displayIndex_4; }
inline void set_displayIndex_4(uint16_t value)
{
___displayIndex_4 = value;
}
inline static int32_t get_offset_of_clickCount_5() { return static_cast<int32_t>(offsetof(MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2, ___clickCount_5)); }
inline uint16_t get_clickCount_5() const { return ___clickCount_5; }
inline uint16_t* get_address_of_clickCount_5() { return &___clickCount_5; }
inline void set_clickCount_5(uint16_t value)
{
___clickCount_5 = value;
}
};
// UnityEngine.EventSystems.MoveDirection
struct MoveDirection_t740623362F85DF2963BE20C702F7B8EF44E91645
{
public:
// System.Int32 UnityEngine.EventSystems.MoveDirection::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MoveDirection_t740623362F85DF2963BE20C702F7B8EF44E91645, ___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.InputSystem.Utilities.NameAndParameters
struct NameAndParameters_t07BD7EC876CD2097E8D8FB69E37C0F57EFCFF8C8
{
public:
// System.String UnityEngine.InputSystem.Utilities.NameAndParameters::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.NamedValue> UnityEngine.InputSystem.Utilities.NameAndParameters::<parameters>k__BackingField
ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 ___U3CparametersU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NameAndParameters_t07BD7EC876CD2097E8D8FB69E37C0F57EFCFF8C8, ___U3CnameU3Ek__BackingField_0)); }
inline String_t* get_U3CnameU3Ek__BackingField_0() const { return ___U3CnameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_0() { return &___U3CnameU3Ek__BackingField_0; }
inline void set_U3CnameU3Ek__BackingField_0(String_t* value)
{
___U3CnameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CparametersU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NameAndParameters_t07BD7EC876CD2097E8D8FB69E37C0F57EFCFF8C8, ___U3CparametersU3Ek__BackingField_1)); }
inline ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 get_U3CparametersU3Ek__BackingField_1() const { return ___U3CparametersU3Ek__BackingField_1; }
inline ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 * get_address_of_U3CparametersU3Ek__BackingField_1() { return &___U3CparametersU3Ek__BackingField_1; }
inline void set_U3CparametersU3Ek__BackingField_1(ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 value)
{
___U3CparametersU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CparametersU3Ek__BackingField_1))->___m_Array_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.NameAndParameters
struct NameAndParameters_t07BD7EC876CD2097E8D8FB69E37C0F57EFCFF8C8_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_0;
ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 ___U3CparametersU3Ek__BackingField_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.NameAndParameters
struct NameAndParameters_t07BD7EC876CD2097E8D8FB69E37C0F57EFCFF8C8_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 ___U3CparametersU3Ek__BackingField_1;
};
// UnityEngineInternal.Input.NativeInputEventType
struct NativeInputEventType_tB3CDF49B057A87E6CBA3EB8C551A971D2B70C9E9
{
public:
// System.Int32 UnityEngineInternal.Input.NativeInputEventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NativeInputEventType_tB3CDF49B057A87E6CBA3EB8C551A971D2B70C9E9, ___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;
}
};
// Dissonance.Networking.NetworkMode
struct NetworkMode_tE758574731E2678B330207DB3D78ECD7AB6683C5
{
public:
// System.Int32 Dissonance.Networking.NetworkMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkMode_tE758574731E2678B330207DB3D78ECD7AB6683C5, ___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;
}
};
// Dissonance.NetworkPlayerType
struct NetworkPlayerType_t3445BA48958A28E366C27CBA1F3E9814B29EC845
{
public:
// System.Int32 Dissonance.NetworkPlayerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkPlayerType_t3445BA48958A28E366C27CBA1F3E9814B29EC845, ___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;
}
};
// Dissonance.Audio.Capture.NoiseSuppressionLevels
struct NoiseSuppressionLevels_tF923004A912A13E482426287B89151C8D867CA4C
{
public:
// System.Int32 Dissonance.Audio.Capture.NoiseSuppressionLevels::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NoiseSuppressionLevels_tF923004A912A13E482426287B89151C8D867CA4C, ___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.XR.ARSubsystems.NotTrackingReason
struct NotTrackingReason_t853CA5527FA4E156B45DD1BD3E3E978C78BC49A9
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.NotTrackingReason::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NotTrackingReason_t853CA5527FA4E156B45DD1BD3E3E978C78BC49A9, ___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;
};
// Dissonance.Audio.OpenChannelVolumeDuck
struct OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1 : public RuntimeObject
{
public:
// Dissonance.RoomChannels Dissonance.Audio.OpenChannelVolumeDuck::_rooms
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ____rooms_2;
// Dissonance.PlayerChannels Dissonance.Audio.OpenChannelVolumeDuck::_players
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ____players_3;
// Dissonance.Audio.Fader Dissonance.Audio.OpenChannelVolumeDuck::_fader
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 ____fader_4;
public:
inline static int32_t get_offset_of__rooms_2() { return static_cast<int32_t>(offsetof(OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1, ____rooms_2)); }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * get__rooms_2() const { return ____rooms_2; }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 ** get_address_of__rooms_2() { return &____rooms_2; }
inline void set__rooms_2(RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * value)
{
____rooms_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rooms_2), (void*)value);
}
inline static int32_t get_offset_of__players_3() { return static_cast<int32_t>(offsetof(OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1, ____players_3)); }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * get__players_3() const { return ____players_3; }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC ** get_address_of__players_3() { return &____players_3; }
inline void set__players_3(PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * value)
{
____players_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____players_3), (void*)value);
}
inline static int32_t get_offset_of__fader_4() { return static_cast<int32_t>(offsetof(OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1, ____fader_4)); }
inline Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 get__fader_4() const { return ____fader_4; }
inline Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 * get_address_of__fader_4() { return &____fader_4; }
inline void set__fader_4(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 value)
{
____fader_4 = value;
}
};
// Dissonance.PacketLossMonitor
struct PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97 : public RuntimeObject
{
public:
// System.Collections.ObjectModel.ReadOnlyCollection`1<Dissonance.VoicePlayerState> Dissonance.PacketLossMonitor::_players
ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 * ____players_0;
// System.DateTime Dissonance.PacketLossMonitor::_lastUpdatedPacketLoss
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ____lastUpdatedPacketLoss_1;
// System.Int32 Dissonance.PacketLossMonitor::_lastUpdatedPlayerCount
int32_t ____lastUpdatedPlayerCount_2;
// System.Collections.Generic.List`1<System.Single> Dissonance.PacketLossMonitor::_tmpLossValues
List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * ____tmpLossValues_3;
// System.Single Dissonance.PacketLossMonitor::<PacketLoss>k__BackingField
float ___U3CPacketLossU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of__players_0() { return static_cast<int32_t>(offsetof(PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97, ____players_0)); }
inline ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 * get__players_0() const { return ____players_0; }
inline ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 ** get_address_of__players_0() { return &____players_0; }
inline void set__players_0(ReadOnlyCollection_1_t1C62CD7B1FE855063DC54CBAD9238F93AF7A5C24 * value)
{
____players_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____players_0), (void*)value);
}
inline static int32_t get_offset_of__lastUpdatedPacketLoss_1() { return static_cast<int32_t>(offsetof(PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97, ____lastUpdatedPacketLoss_1)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get__lastUpdatedPacketLoss_1() const { return ____lastUpdatedPacketLoss_1; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of__lastUpdatedPacketLoss_1() { return &____lastUpdatedPacketLoss_1; }
inline void set__lastUpdatedPacketLoss_1(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
____lastUpdatedPacketLoss_1 = value;
}
inline static int32_t get_offset_of__lastUpdatedPlayerCount_2() { return static_cast<int32_t>(offsetof(PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97, ____lastUpdatedPlayerCount_2)); }
inline int32_t get__lastUpdatedPlayerCount_2() const { return ____lastUpdatedPlayerCount_2; }
inline int32_t* get_address_of__lastUpdatedPlayerCount_2() { return &____lastUpdatedPlayerCount_2; }
inline void set__lastUpdatedPlayerCount_2(int32_t value)
{
____lastUpdatedPlayerCount_2 = value;
}
inline static int32_t get_offset_of__tmpLossValues_3() { return static_cast<int32_t>(offsetof(PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97, ____tmpLossValues_3)); }
inline List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * get__tmpLossValues_3() const { return ____tmpLossValues_3; }
inline List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA ** get_address_of__tmpLossValues_3() { return &____tmpLossValues_3; }
inline void set__tmpLossValues_3(List_1_t6726F9309570A0BDC5D42E10777F3E2931C487AA * value)
{
____tmpLossValues_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____tmpLossValues_3), (void*)value);
}
inline static int32_t get_offset_of_U3CPacketLossU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97, ___U3CPacketLossU3Ek__BackingField_4)); }
inline float get_U3CPacketLossU3Ek__BackingField_4() const { return ___U3CPacketLossU3Ek__BackingField_4; }
inline float* get_address_of_U3CPacketLossU3Ek__BackingField_4() { return &___U3CPacketLossU3Ek__BackingField_4; }
inline void set_U3CPacketLossU3Ek__BackingField_4(float value)
{
___U3CPacketLossU3Ek__BackingField_4 = value;
}
};
// Dissonance.Networking.PacketReader
struct PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1
{
public:
// System.ArraySegment`1<System.Byte> Dissonance.Networking.PacketReader::_array
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ____array_1;
// System.Int32 Dissonance.Networking.PacketReader::_count
int32_t ____count_2;
public:
inline static int32_t get_offset_of__array_1() { return static_cast<int32_t>(offsetof(PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1, ____array_1)); }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE get__array_1() const { return ____array_1; }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE * get_address_of__array_1() { return &____array_1; }
inline void set__array_1(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE value)
{
____array_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____array_1))->____array_0), (void*)NULL);
}
inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1, ____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;
}
};
struct PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1_StaticFields
{
public:
// Dissonance.Log Dissonance.Networking.PacketReader::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.PacketReader
struct PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1_marshaled_pinvoke
{
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ____array_1;
int32_t ____count_2;
};
// Native definition for COM marshalling of Dissonance.Networking.PacketReader
struct PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1_marshaled_com
{
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ____array_1;
int32_t ____count_2;
};
// Dissonance.Networking.PacketWriter
struct PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1
{
public:
// System.ArraySegment`1<System.Byte> Dissonance.Networking.PacketWriter::_array
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ____array_2;
// System.Int32 Dissonance.Networking.PacketWriter::_count
int32_t ____count_3;
public:
inline static int32_t get_offset_of__array_2() { return static_cast<int32_t>(offsetof(PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1, ____array_2)); }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE get__array_2() const { return ____array_2; }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE * get_address_of__array_2() { return &____array_2; }
inline void set__array_2(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE value)
{
____array_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____array_2))->____array_0), (void*)NULL);
}
inline static int32_t get_offset_of__count_3() { return static_cast<int32_t>(offsetof(PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1, ____count_3)); }
inline int32_t get__count_3() const { return ____count_3; }
inline int32_t* get_address_of__count_3() { return &____count_3; }
inline void set__count_3(int32_t value)
{
____count_3 = value;
}
};
struct PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1_StaticFields
{
public:
// Dissonance.Log Dissonance.Networking.PacketWriter::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.PacketWriter
struct PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1_marshaled_pinvoke
{
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ____array_2;
int32_t ____count_3;
};
// Native definition for COM marshalling of Dissonance.Networking.PacketWriter
struct PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1_marshaled_com
{
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ____array_2;
int32_t ____count_3;
};
// Dissonance.Networking.Client.PeerVoiceReceiver
struct PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44 : public RuntimeObject
{
public:
// System.String Dissonance.Networking.Client.PeerVoiceReceiver::_name
String_t* ____name_1;
// Dissonance.Networking.Client.EventQueue Dissonance.Networking.Client.PeerVoiceReceiver::_events
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 * ____events_2;
// Dissonance.Rooms Dissonance.Networking.Client.PeerVoiceReceiver::_localListeningRooms
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * ____localListeningRooms_3;
// Dissonance.Datastructures.ConcurrentPool`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>> Dissonance.Networking.Client.PeerVoiceReceiver::_channelListPool
ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF * ____channelListPool_4;
// System.UInt16 Dissonance.Networking.Client.PeerVoiceReceiver::_localId
uint16_t ____localId_5;
// System.String Dissonance.Networking.Client.PeerVoiceReceiver::_localName
String_t* ____localName_6;
// System.DateTime Dissonance.Networking.Client.PeerVoiceReceiver::_lastReceiptTime
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ____lastReceiptTime_7;
// System.UInt16 Dissonance.Networking.Client.PeerVoiceReceiver::_remoteSequenceNumber
uint16_t ____remoteSequenceNumber_8;
// System.UInt32 Dissonance.Networking.Client.PeerVoiceReceiver::_localSequenceNumber
uint32_t ____localSequenceNumber_9;
// System.Boolean Dissonance.Networking.Client.PeerVoiceReceiver::<Open>k__BackingField
bool ___U3COpenU3Ek__BackingField_10;
// System.Boolean Dissonance.Networking.Client.PeerVoiceReceiver::_receivedInitialPacket
bool ____receivedInitialPacket_11;
// System.UInt16 Dissonance.Networking.Client.PeerVoiceReceiver::_currentChannelSession
uint16_t ____currentChannelSession_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Int32> Dissonance.Networking.Client.PeerVoiceReceiver::_expectedPerChannelSessions
Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ____expectedPerChannelSessions_13;
// System.Collections.Generic.List`1<System.Int32> Dissonance.Networking.Client.PeerVoiceReceiver::_tmpCompositeIdBuffer
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ____tmpCompositeIdBuffer_14;
public:
inline static int32_t get_offset_of__name_1() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____name_1)); }
inline String_t* get__name_1() const { return ____name_1; }
inline String_t** get_address_of__name_1() { return &____name_1; }
inline void set__name_1(String_t* value)
{
____name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____name_1), (void*)value);
}
inline static int32_t get_offset_of__events_2() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____events_2)); }
inline EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 * get__events_2() const { return ____events_2; }
inline EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 ** get_address_of__events_2() { return &____events_2; }
inline void set__events_2(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 * value)
{
____events_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____events_2), (void*)value);
}
inline static int32_t get_offset_of__localListeningRooms_3() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____localListeningRooms_3)); }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * get__localListeningRooms_3() const { return ____localListeningRooms_3; }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 ** get_address_of__localListeningRooms_3() { return &____localListeningRooms_3; }
inline void set__localListeningRooms_3(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * value)
{
____localListeningRooms_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localListeningRooms_3), (void*)value);
}
inline static int32_t get_offset_of__channelListPool_4() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____channelListPool_4)); }
inline ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF * get__channelListPool_4() const { return ____channelListPool_4; }
inline ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF ** get_address_of__channelListPool_4() { return &____channelListPool_4; }
inline void set__channelListPool_4(ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF * value)
{
____channelListPool_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channelListPool_4), (void*)value);
}
inline static int32_t get_offset_of__localId_5() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____localId_5)); }
inline uint16_t get__localId_5() const { return ____localId_5; }
inline uint16_t* get_address_of__localId_5() { return &____localId_5; }
inline void set__localId_5(uint16_t value)
{
____localId_5 = value;
}
inline static int32_t get_offset_of__localName_6() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____localName_6)); }
inline String_t* get__localName_6() const { return ____localName_6; }
inline String_t** get_address_of__localName_6() { return &____localName_6; }
inline void set__localName_6(String_t* value)
{
____localName_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localName_6), (void*)value);
}
inline static int32_t get_offset_of__lastReceiptTime_7() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____lastReceiptTime_7)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get__lastReceiptTime_7() const { return ____lastReceiptTime_7; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of__lastReceiptTime_7() { return &____lastReceiptTime_7; }
inline void set__lastReceiptTime_7(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
____lastReceiptTime_7 = value;
}
inline static int32_t get_offset_of__remoteSequenceNumber_8() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____remoteSequenceNumber_8)); }
inline uint16_t get__remoteSequenceNumber_8() const { return ____remoteSequenceNumber_8; }
inline uint16_t* get_address_of__remoteSequenceNumber_8() { return &____remoteSequenceNumber_8; }
inline void set__remoteSequenceNumber_8(uint16_t value)
{
____remoteSequenceNumber_8 = value;
}
inline static int32_t get_offset_of__localSequenceNumber_9() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____localSequenceNumber_9)); }
inline uint32_t get__localSequenceNumber_9() const { return ____localSequenceNumber_9; }
inline uint32_t* get_address_of__localSequenceNumber_9() { return &____localSequenceNumber_9; }
inline void set__localSequenceNumber_9(uint32_t value)
{
____localSequenceNumber_9 = value;
}
inline static int32_t get_offset_of_U3COpenU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ___U3COpenU3Ek__BackingField_10)); }
inline bool get_U3COpenU3Ek__BackingField_10() const { return ___U3COpenU3Ek__BackingField_10; }
inline bool* get_address_of_U3COpenU3Ek__BackingField_10() { return &___U3COpenU3Ek__BackingField_10; }
inline void set_U3COpenU3Ek__BackingField_10(bool value)
{
___U3COpenU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of__receivedInitialPacket_11() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____receivedInitialPacket_11)); }
inline bool get__receivedInitialPacket_11() const { return ____receivedInitialPacket_11; }
inline bool* get_address_of__receivedInitialPacket_11() { return &____receivedInitialPacket_11; }
inline void set__receivedInitialPacket_11(bool value)
{
____receivedInitialPacket_11 = value;
}
inline static int32_t get_offset_of__currentChannelSession_12() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____currentChannelSession_12)); }
inline uint16_t get__currentChannelSession_12() const { return ____currentChannelSession_12; }
inline uint16_t* get_address_of__currentChannelSession_12() { return &____currentChannelSession_12; }
inline void set__currentChannelSession_12(uint16_t value)
{
____currentChannelSession_12 = value;
}
inline static int32_t get_offset_of__expectedPerChannelSessions_13() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____expectedPerChannelSessions_13)); }
inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get__expectedPerChannelSessions_13() const { return ____expectedPerChannelSessions_13; }
inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of__expectedPerChannelSessions_13() { return &____expectedPerChannelSessions_13; }
inline void set__expectedPerChannelSessions_13(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value)
{
____expectedPerChannelSessions_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____expectedPerChannelSessions_13), (void*)value);
}
inline static int32_t get_offset_of__tmpCompositeIdBuffer_14() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44, ____tmpCompositeIdBuffer_14)); }
inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * get__tmpCompositeIdBuffer_14() const { return ____tmpCompositeIdBuffer_14; }
inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 ** get_address_of__tmpCompositeIdBuffer_14() { return &____tmpCompositeIdBuffer_14; }
inline void set__tmpCompositeIdBuffer_14(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * value)
{
____tmpCompositeIdBuffer_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____tmpCompositeIdBuffer_14), (void*)value);
}
};
struct PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44_StaticFields
{
public:
// Dissonance.Log Dissonance.Networking.Client.PeerVoiceReceiver::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.PenState
struct PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PenState::position
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___position_0;
};
#pragma pack(pop, tp)
struct
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___position_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___delta_1_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PenState::delta
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___delta_1;
};
#pragma pack(pop, tp)
struct
{
char ___delta_1_OffsetPadding_forAlignmentOnly[8];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___delta_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___tilt_2_OffsetPadding[16];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PenState::tilt
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___tilt_2;
};
#pragma pack(pop, tp)
struct
{
char ___tilt_2_OffsetPadding_forAlignmentOnly[16];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___tilt_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___pressure_3_OffsetPadding[24];
// System.Single UnityEngine.InputSystem.LowLevel.PenState::pressure
float ___pressure_3;
};
#pragma pack(pop, tp)
struct
{
char ___pressure_3_OffsetPadding_forAlignmentOnly[24];
float ___pressure_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___twist_4_OffsetPadding[28];
// System.Single UnityEngine.InputSystem.LowLevel.PenState::twist
float ___twist_4;
};
#pragma pack(pop, tp)
struct
{
char ___twist_4_OffsetPadding_forAlignmentOnly[28];
float ___twist_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buttons_5_OffsetPadding[32];
// System.UInt16 UnityEngine.InputSystem.LowLevel.PenState::buttons
uint16_t ___buttons_5;
};
#pragma pack(pop, tp)
struct
{
char ___buttons_5_OffsetPadding_forAlignmentOnly[32];
uint16_t ___buttons_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___displayIndex_6_OffsetPadding[34];
// System.UInt16 UnityEngine.InputSystem.LowLevel.PenState::displayIndex
uint16_t ___displayIndex_6;
};
#pragma pack(pop, tp)
struct
{
char ___displayIndex_6_OffsetPadding_forAlignmentOnly[34];
uint16_t ___displayIndex_6_forAlignmentOnly;
};
};
};
uint8_t PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3__padding[36];
};
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3, ___position_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_position_0() const { return ___position_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_delta_1() { return static_cast<int32_t>(offsetof(PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3, ___delta_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_delta_1() const { return ___delta_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_delta_1() { return &___delta_1; }
inline void set_delta_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___delta_1 = value;
}
inline static int32_t get_offset_of_tilt_2() { return static_cast<int32_t>(offsetof(PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3, ___tilt_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_tilt_2() const { return ___tilt_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_tilt_2() { return &___tilt_2; }
inline void set_tilt_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___tilt_2 = value;
}
inline static int32_t get_offset_of_pressure_3() { return static_cast<int32_t>(offsetof(PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3, ___pressure_3)); }
inline float get_pressure_3() const { return ___pressure_3; }
inline float* get_address_of_pressure_3() { return &___pressure_3; }
inline void set_pressure_3(float value)
{
___pressure_3 = value;
}
inline static int32_t get_offset_of_twist_4() { return static_cast<int32_t>(offsetof(PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3, ___twist_4)); }
inline float get_twist_4() const { return ___twist_4; }
inline float* get_address_of_twist_4() { return &___twist_4; }
inline void set_twist_4(float value)
{
___twist_4 = value;
}
inline static int32_t get_offset_of_buttons_5() { return static_cast<int32_t>(offsetof(PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3, ___buttons_5)); }
inline uint16_t get_buttons_5() const { return ___buttons_5; }
inline uint16_t* get_address_of_buttons_5() { return &___buttons_5; }
inline void set_buttons_5(uint16_t value)
{
___buttons_5 = value;
}
inline static int32_t get_offset_of_displayIndex_6() { return static_cast<int32_t>(offsetof(PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3, ___displayIndex_6)); }
inline uint16_t get_displayIndex_6() const { return ___displayIndex_6; }
inline uint16_t* get_address_of_displayIndex_6() { return &___displayIndex_6; }
inline void set_displayIndex_6(uint16_t value)
{
___displayIndex_6 = value;
}
};
// UnityEngine.Playables.PlayableHandle
struct PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A
{
public:
// System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
struct PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A_StaticFields
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::m_Null
PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A ___m_Null_2;
public:
inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A_StaticFields, ___m_Null_2)); }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A get_m_Null_2() const { return ___m_Null_2; }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A * get_address_of_m_Null_2() { return &___m_Null_2; }
inline void set_m_Null_2(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A value)
{
___m_Null_2 = value;
}
};
// UnityEngine.Playables.PlayableOutputHandle
struct PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1
{
public:
// System.IntPtr UnityEngine.Playables.PlayableOutputHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableOutputHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
struct PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1_StaticFields
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutputHandle::m_Null
PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 ___m_Null_2;
public:
inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1_StaticFields, ___m_Null_2)); }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 get_m_Null_2() const { return ___m_Null_2; }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 * get_address_of_m_Null_2() { return &___m_Null_2; }
inline void set_m_Null_2(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 value)
{
___m_Null_2 = value;
}
};
// Mirror.Examples.MultipleMatch.PlayerInfo
struct PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6
{
public:
// System.Int32 Mirror.Examples.MultipleMatch.PlayerInfo::playerIndex
int32_t ___playerIndex_0;
// System.Boolean Mirror.Examples.MultipleMatch.PlayerInfo::ready
bool ___ready_1;
// System.Guid Mirror.Examples.MultipleMatch.PlayerInfo::matchId
Guid_t ___matchId_2;
public:
inline static int32_t get_offset_of_playerIndex_0() { return static_cast<int32_t>(offsetof(PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6, ___playerIndex_0)); }
inline int32_t get_playerIndex_0() const { return ___playerIndex_0; }
inline int32_t* get_address_of_playerIndex_0() { return &___playerIndex_0; }
inline void set_playerIndex_0(int32_t value)
{
___playerIndex_0 = value;
}
inline static int32_t get_offset_of_ready_1() { return static_cast<int32_t>(offsetof(PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6, ___ready_1)); }
inline bool get_ready_1() const { return ___ready_1; }
inline bool* get_address_of_ready_1() { return &___ready_1; }
inline void set_ready_1(bool value)
{
___ready_1 = value;
}
inline static int32_t get_offset_of_matchId_2() { return static_cast<int32_t>(offsetof(PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6, ___matchId_2)); }
inline Guid_t get_matchId_2() const { return ___matchId_2; }
inline Guid_t * get_address_of_matchId_2() { return &___matchId_2; }
inline void set_matchId_2(Guid_t value)
{
___matchId_2 = value;
}
};
// Native definition for P/Invoke marshalling of Mirror.Examples.MultipleMatch.PlayerInfo
struct PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6_marshaled_pinvoke
{
int32_t ___playerIndex_0;
int32_t ___ready_1;
Guid_t ___matchId_2;
};
// Native definition for COM marshalling of Mirror.Examples.MultipleMatch.PlayerInfo
struct PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6_marshaled_com
{
int32_t ___playerIndex_0;
int32_t ___ready_1;
Guid_t ___matchId_2;
};
// UnityEngine.InputSystem.PlayerJoinBehavior
struct PlayerJoinBehavior_tC208855AAA12E44FF9B91A55B2C66905C1ABE7FD
{
public:
// System.Int32 UnityEngine.InputSystem.PlayerJoinBehavior::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlayerJoinBehavior_tC208855AAA12E44FF9B91A55B2C66905C1ABE7FD, ___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.InputSystem.PlayerNotifications
struct PlayerNotifications_tEA221E61C149E5FFFF8FF5C8562F543C14114B0C
{
public:
// System.Int32 UnityEngine.InputSystem.PlayerNotifications::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlayerNotifications_tEA221E61C149E5FFFF8FF5C8562F543C14114B0C, ___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.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;
}
};
// UnityEngine.InputSystem.LowLevel.PointerState
struct PointerState_t0585A210633466F8BD33F0F854E0E2D364336564
{
public:
// System.UInt32 UnityEngine.InputSystem.LowLevel.PointerState::pointerId
uint32_t ___pointerId_0;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PointerState::position
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___position_1;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PointerState::delta
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___delta_2;
// System.Single UnityEngine.InputSystem.LowLevel.PointerState::pressure
float ___pressure_3;
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.PointerState::radius
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___radius_4;
// System.UInt16 UnityEngine.InputSystem.LowLevel.PointerState::buttons
uint16_t ___buttons_5;
public:
inline static int32_t get_offset_of_pointerId_0() { return static_cast<int32_t>(offsetof(PointerState_t0585A210633466F8BD33F0F854E0E2D364336564, ___pointerId_0)); }
inline uint32_t get_pointerId_0() const { return ___pointerId_0; }
inline uint32_t* get_address_of_pointerId_0() { return &___pointerId_0; }
inline void set_pointerId_0(uint32_t value)
{
___pointerId_0 = value;
}
inline static int32_t get_offset_of_position_1() { return static_cast<int32_t>(offsetof(PointerState_t0585A210633466F8BD33F0F854E0E2D364336564, ___position_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_position_1() const { return ___position_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_position_1() { return &___position_1; }
inline void set_position_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___position_1 = value;
}
inline static int32_t get_offset_of_delta_2() { return static_cast<int32_t>(offsetof(PointerState_t0585A210633466F8BD33F0F854E0E2D364336564, ___delta_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_delta_2() const { return ___delta_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_delta_2() { return &___delta_2; }
inline void set_delta_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___delta_2 = value;
}
inline static int32_t get_offset_of_pressure_3() { return static_cast<int32_t>(offsetof(PointerState_t0585A210633466F8BD33F0F854E0E2D364336564, ___pressure_3)); }
inline float get_pressure_3() const { return ___pressure_3; }
inline float* get_address_of_pressure_3() { return &___pressure_3; }
inline void set_pressure_3(float value)
{
___pressure_3 = value;
}
inline static int32_t get_offset_of_radius_4() { return static_cast<int32_t>(offsetof(PointerState_t0585A210633466F8BD33F0F854E0E2D364336564, ___radius_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_radius_4() const { return ___radius_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_radius_4() { return &___radius_4; }
inline void set_radius_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___radius_4 = value;
}
inline static int32_t get_offset_of_buttons_5() { return static_cast<int32_t>(offsetof(PointerState_t0585A210633466F8BD33F0F854E0E2D364336564, ___buttons_5)); }
inline uint16_t get_buttons_5() const { return ___buttons_5; }
inline uint16_t* get_address_of_buttons_5() { return &___buttons_5; }
inline void set_buttons_5(uint16_t value)
{
___buttons_5 = value;
}
};
// UnityEngine.Pose
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A
{
public:
// UnityEngine.Vector3 UnityEngine.Pose::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Quaternion UnityEngine.Pose::rotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_1;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___rotation_1)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_1() const { return ___rotation_1; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_1() { return &___rotation_1; }
inline void set_rotation_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___rotation_1 = value;
}
};
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields
{
public:
// UnityEngine.Pose UnityEngine.Pose::k_Identity
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___k_Identity_2;
public:
inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields, ___k_Identity_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_k_Identity_2() const { return ___k_Identity_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_k_Identity_2() { return &___k_Identity_2; }
inline void set_k_Identity_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___k_Identity_2 = value;
}
};
// UnityEngine.SpatialTracking.PoseDataFlags
struct PoseDataFlags_tB6A466AA30BE06A3F9ABA4C63BC7E4912FB8C6D7
{
public:
// System.Int32 UnityEngine.SpatialTracking.PoseDataFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PoseDataFlags_tB6A466AA30BE06A3F9ABA4C63BC7E4912FB8C6D7, ___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.XR.Tango.PoseStatus
struct PoseStatus_tE2709BBA5C636A8485BD0FB152CD936CACA9336C
{
public:
// System.Int32 UnityEngine.XR.Tango.PoseStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PoseStatus_tE2709BBA5C636A8485BD0FB152CD936CACA9336C, ___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.InputSystem.Interactions.PressBehavior
struct PressBehavior_t11F9CED64CCCBF14FCFB235FF37D71797DA95807
{
public:
// System.Int32 UnityEngine.InputSystem.Interactions.PressBehavior::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PressBehavior_t11F9CED64CCCBF14FCFB235FF37D71797DA95807, ___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;
}
};
// Unity.Profiling.ProfilerMarker
struct ProfilerMarker_tAE86534C80C5D67768DB3B244D8D139A2E6495E1
{
public:
// System.IntPtr Unity.Profiling.ProfilerMarker::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ProfilerMarker_tAE86534C80C5D67768DB3B244D8D139A2E6495E1, ___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;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___m_GameObject_0)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___module_1)); }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldPosition_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldNormal_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___screenPosition_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___screenPosition_9 = value;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_pinvoke
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_com
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// UnityEngine.RemoteConfigSettings
struct RemoteConfigSettings_tAA5BDD4B4E416F9907EB1B5E6295157CD224A932 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.RemoteConfigSettings::m_Ptr
intptr_t ___m_Ptr_0;
// System.Action`1<System.Boolean> UnityEngine.RemoteConfigSettings::Updated
Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * ___Updated_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(RemoteConfigSettings_tAA5BDD4B4E416F9907EB1B5E6295157CD224A932, ___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_Updated_1() { return static_cast<int32_t>(offsetof(RemoteConfigSettings_tAA5BDD4B4E416F9907EB1B5E6295157CD224A932, ___Updated_1)); }
inline Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * get_Updated_1() const { return ___Updated_1; }
inline Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 ** get_address_of_Updated_1() { return &___Updated_1; }
inline void set_Updated_1(Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * value)
{
___Updated_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Updated_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.RemoteConfigSettings
struct RemoteConfigSettings_tAA5BDD4B4E416F9907EB1B5E6295157CD224A932_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
Il2CppMethodPointer ___Updated_1;
};
// Native definition for COM marshalling of UnityEngine.RemoteConfigSettings
struct RemoteConfigSettings_tAA5BDD4B4E416F9907EB1B5E6295157CD224A932_marshaled_com
{
intptr_t ___m_Ptr_0;
Il2CppMethodPointer ___Updated_1;
};
// 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.SimpleWeb.SendLoopConfig
struct SendLoopConfig_tBC5A186D7AB84F378F900EBA5ECDD0FDE394FCB9 : public RuntimeObject
{
public:
public:
};
struct SendLoopConfig_tBC5A186D7AB84F378F900EBA5ECDD0FDE394FCB9_StaticFields
{
public:
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Mirror.SimpleWeb.SendLoopConfig::batchSend
bool ___batchSend_0;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Mirror.SimpleWeb.SendLoopConfig::sleepBeforeSend
bool ___sleepBeforeSend_1;
public:
inline static int32_t get_offset_of_batchSend_0() { return static_cast<int32_t>(offsetof(SendLoopConfig_tBC5A186D7AB84F378F900EBA5ECDD0FDE394FCB9_StaticFields, ___batchSend_0)); }
inline bool get_batchSend_0() const { return ___batchSend_0; }
inline bool* get_address_of_batchSend_0() { return &___batchSend_0; }
inline void set_batchSend_0(bool value)
{
___batchSend_0 = value;
}
inline static int32_t get_offset_of_sleepBeforeSend_1() { return static_cast<int32_t>(offsetof(SendLoopConfig_tBC5A186D7AB84F378F900EBA5ECDD0FDE394FCB9_StaticFields, ___sleepBeforeSend_1)); }
inline bool get_sleepBeforeSend_1() const { return ___sleepBeforeSend_1; }
inline bool* get_address_of_sleepBeforeSend_1() { return &___sleepBeforeSend_1; }
inline void set_sleepBeforeSend_1(bool value)
{
___sleepBeforeSend_1 = value;
}
};
// Mirror.Discovery.ServerFoundUnityEvent
struct ServerFoundUnityEvent_t4E4DCA48D70BC4E17D90B92E694B5C64F2BDDA43 : public UnityEvent_1_t079F4478C0889C5CBE14FD6E79020F208D7D95B0
{
public:
public:
};
// Mirror.Examples.MultipleMatch.ServerMatchOperation
struct ServerMatchOperation_t0A2F55BB9FF27A6AA0A6963897F1F9FD51342527
{
public:
// System.Byte Mirror.Examples.MultipleMatch.ServerMatchOperation::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ServerMatchOperation_t0A2F55BB9FF27A6AA0A6963897F1F9FD51342527, ___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;
}
};
// Dissonance.Networking.Server.ServerState
struct ServerState_tE0C9CC6950B29F9788F82E66494D5154BFDCE8D0
{
public:
// System.Int32 Dissonance.Networking.Server.ServerState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ServerState_tE0C9CC6950B29F9788F82E66494D5154BFDCE8D0, ___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.XR.ARSubsystems.SessionAvailability
struct SessionAvailability_tF5E98733E00C91772417EDEF3B3A6FA1DF653FCD
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.SessionAvailability::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SessionAvailability_tF5E98733E00C91772417EDEF3B3A6FA1DF653FCD, ___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;
}
};
// Dissonance.Audio.Playback.SpeechSession
struct SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF
{
public:
// System.Single Dissonance.Audio.Playback.SpeechSession::_minimumDelay
float ____minimumDelay_6;
// Dissonance.Audio.Playback.IRemoteChannelProvider Dissonance.Audio.Playback.SpeechSession::_channels
RuntimeObject* ____channels_7;
// Dissonance.Audio.Playback.IDecoderPipeline Dissonance.Audio.Playback.SpeechSession::_pipeline
RuntimeObject* ____pipeline_8;
// Dissonance.Audio.Playback.SessionContext Dissonance.Audio.Playback.SpeechSession::_context
SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B ____context_9;
// System.DateTime Dissonance.Audio.Playback.SpeechSession::_creationTime
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ____creationTime_10;
// Dissonance.Audio.Playback.IJitterEstimator Dissonance.Audio.Playback.SpeechSession::_jitter
RuntimeObject* ____jitter_11;
public:
inline static int32_t get_offset_of__minimumDelay_6() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF, ____minimumDelay_6)); }
inline float get__minimumDelay_6() const { return ____minimumDelay_6; }
inline float* get_address_of__minimumDelay_6() { return &____minimumDelay_6; }
inline void set__minimumDelay_6(float value)
{
____minimumDelay_6 = value;
}
inline static int32_t get_offset_of__channels_7() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF, ____channels_7)); }
inline RuntimeObject* get__channels_7() const { return ____channels_7; }
inline RuntimeObject** get_address_of__channels_7() { return &____channels_7; }
inline void set__channels_7(RuntimeObject* value)
{
____channels_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channels_7), (void*)value);
}
inline static int32_t get_offset_of__pipeline_8() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF, ____pipeline_8)); }
inline RuntimeObject* get__pipeline_8() const { return ____pipeline_8; }
inline RuntimeObject** get_address_of__pipeline_8() { return &____pipeline_8; }
inline void set__pipeline_8(RuntimeObject* value)
{
____pipeline_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____pipeline_8), (void*)value);
}
inline static int32_t get_offset_of__context_9() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF, ____context_9)); }
inline SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B get__context_9() const { return ____context_9; }
inline SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B * get_address_of__context_9() { return &____context_9; }
inline void set__context_9(SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B value)
{
____context_9 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____context_9))->___PlayerName_0), (void*)NULL);
}
inline static int32_t get_offset_of__creationTime_10() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF, ____creationTime_10)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get__creationTime_10() const { return ____creationTime_10; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of__creationTime_10() { return &____creationTime_10; }
inline void set__creationTime_10(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
____creationTime_10 = value;
}
inline static int32_t get_offset_of__jitter_11() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF, ____jitter_11)); }
inline RuntimeObject* get__jitter_11() const { return ____jitter_11; }
inline RuntimeObject** get_address_of__jitter_11() { return &____jitter_11; }
inline void set__jitter_11(RuntimeObject* value)
{
____jitter_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____jitter_11), (void*)value);
}
};
struct SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.SpeechSession::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Single[] Dissonance.Audio.Playback.SpeechSession::DesyncFixBuffer
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___DesyncFixBuffer_1;
// System.Int32 Dissonance.Audio.Playback.SpeechSession::FixedDelayToleranceTicks
int32_t ___FixedDelayToleranceTicks_4;
// System.Single Dissonance.Audio.Playback.SpeechSession::InitialBufferDelay
float ___InitialBufferDelay_5;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of_DesyncFixBuffer_1() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields, ___DesyncFixBuffer_1)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_DesyncFixBuffer_1() const { return ___DesyncFixBuffer_1; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_DesyncFixBuffer_1() { return &___DesyncFixBuffer_1; }
inline void set_DesyncFixBuffer_1(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
___DesyncFixBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DesyncFixBuffer_1), (void*)value);
}
inline static int32_t get_offset_of_FixedDelayToleranceTicks_4() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields, ___FixedDelayToleranceTicks_4)); }
inline int32_t get_FixedDelayToleranceTicks_4() const { return ___FixedDelayToleranceTicks_4; }
inline int32_t* get_address_of_FixedDelayToleranceTicks_4() { return &___FixedDelayToleranceTicks_4; }
inline void set_FixedDelayToleranceTicks_4(int32_t value)
{
___FixedDelayToleranceTicks_4 = value;
}
inline static int32_t get_offset_of_InitialBufferDelay_5() { return static_cast<int32_t>(offsetof(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields, ___InitialBufferDelay_5)); }
inline float get_InitialBufferDelay_5() const { return ___InitialBufferDelay_5; }
inline float* get_address_of_InitialBufferDelay_5() { return &___InitialBufferDelay_5; }
inline void set_InitialBufferDelay_5(float value)
{
___InitialBufferDelay_5 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Audio.Playback.SpeechSession
struct SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_marshaled_pinvoke
{
float ____minimumDelay_6;
RuntimeObject* ____channels_7;
RuntimeObject* ____pipeline_8;
SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B_marshaled_pinvoke ____context_9;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ____creationTime_10;
RuntimeObject* ____jitter_11;
};
// Native definition for COM marshalling of Dissonance.Audio.Playback.SpeechSession
struct SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_marshaled_com
{
float ____minimumDelay_6;
RuntimeObject* ____channels_7;
RuntimeObject* ____pipeline_8;
SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B_marshaled_com ____context_9;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ____creationTime_10;
RuntimeObject* ____jitter_11;
};
// System.Security.Authentication.SslProtocols
struct SslProtocols_tF8B65D359D2670DCDA2BDF3677A9E7217FC3DA68
{
public:
// System.Int32 System.Security.Authentication.SslProtocols::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SslProtocols_tF8B65D359D2670DCDA2BDF3677A9E7217FC3DA68, ___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.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.TimeSpan
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
public:
inline static int32_t get_offset_of__ticks_22() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_22)); }
inline int64_t get__ticks_22() const { return ____ticks_22; }
inline int64_t* get_address_of__ticks_22() { return &____ticks_22; }
inline void set__ticks_22(int64_t value)
{
____ticks_22 = value;
}
};
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_21;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_23;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_24;
public:
inline static int32_t get_offset_of_Zero_19() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; }
inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Zero_19 = value;
}
inline static int32_t get_offset_of_MaxValue_20() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; }
inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaxValue_20 = value;
}
inline static int32_t get_offset_of_MinValue_21() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; }
inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinValue_21 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_23)); }
inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; }
inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; }
inline void set__legacyConfigChecked_23(bool value)
{
____legacyConfigChecked_23 = value;
}
inline static int32_t get_offset_of__legacyMode_24() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_24)); }
inline bool get__legacyMode_24() const { return ____legacyMode_24; }
inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; }
inline void set__legacyMode_24(bool value)
{
____legacyMode_24 = value;
}
};
// UnityEngine.InputSystem.LowLevel.TouchFlags
struct TouchFlags_tDB9302FC3B9066A4B428F60FE159A5D41AC9AFAA
{
public:
// System.Byte UnityEngine.InputSystem.LowLevel.TouchFlags::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TouchFlags_tDB9302FC3B9066A4B428F60FE159A5D41AC9AFAA, ___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;
}
};
// UnityEngine.InputSystem.LowLevel.TouchState
struct TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.InputSystem.LowLevel.TouchState::touchId
int32_t ___touchId_1;
};
#pragma pack(pop, tp)
struct
{
int32_t ___touchId_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___position_2_OffsetPadding[4];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::position
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___position_2;
};
#pragma pack(pop, tp)
struct
{
char ___position_2_OffsetPadding_forAlignmentOnly[4];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___position_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___delta_3_OffsetPadding[12];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::delta
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___delta_3;
};
#pragma pack(pop, tp)
struct
{
char ___delta_3_OffsetPadding_forAlignmentOnly[12];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___delta_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___pressure_4_OffsetPadding[20];
// System.Single UnityEngine.InputSystem.LowLevel.TouchState::pressure
float ___pressure_4;
};
#pragma pack(pop, tp)
struct
{
char ___pressure_4_OffsetPadding_forAlignmentOnly[20];
float ___pressure_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___radius_5_OffsetPadding[24];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::radius
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___radius_5;
};
#pragma pack(pop, tp)
struct
{
char ___radius_5_OffsetPadding_forAlignmentOnly[24];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___radius_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___phaseId_6_OffsetPadding[32];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::phaseId
uint8_t ___phaseId_6;
};
#pragma pack(pop, tp)
struct
{
char ___phaseId_6_OffsetPadding_forAlignmentOnly[32];
uint8_t ___phaseId_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___tapCount_7_OffsetPadding[33];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::tapCount
uint8_t ___tapCount_7;
};
#pragma pack(pop, tp)
struct
{
char ___tapCount_7_OffsetPadding_forAlignmentOnly[33];
uint8_t ___tapCount_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___displayIndex_8_OffsetPadding[34];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::displayIndex
uint8_t ___displayIndex_8;
};
#pragma pack(pop, tp)
struct
{
char ___displayIndex_8_OffsetPadding_forAlignmentOnly[34];
uint8_t ___displayIndex_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___flags_9_OffsetPadding[35];
// System.Byte UnityEngine.InputSystem.LowLevel.TouchState::flags
uint8_t ___flags_9;
};
#pragma pack(pop, tp)
struct
{
char ___flags_9_OffsetPadding_forAlignmentOnly[35];
uint8_t ___flags_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___padding_10_OffsetPadding[36];
// System.Int32 UnityEngine.InputSystem.LowLevel.TouchState::padding
int32_t ___padding_10;
};
#pragma pack(pop, tp)
struct
{
char ___padding_10_OffsetPadding_forAlignmentOnly[36];
int32_t ___padding_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___startTime_11_OffsetPadding[40];
// System.Double UnityEngine.InputSystem.LowLevel.TouchState::startTime
double ___startTime_11;
};
#pragma pack(pop, tp)
struct
{
char ___startTime_11_OffsetPadding_forAlignmentOnly[40];
double ___startTime_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___startPosition_12_OffsetPadding[48];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.TouchState::startPosition
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___startPosition_12;
};
#pragma pack(pop, tp)
struct
{
char ___startPosition_12_OffsetPadding_forAlignmentOnly[48];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___startPosition_12_forAlignmentOnly;
};
};
};
uint8_t TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A__padding[56];
};
public:
inline static int32_t get_offset_of_touchId_1() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___touchId_1)); }
inline int32_t get_touchId_1() const { return ___touchId_1; }
inline int32_t* get_address_of_touchId_1() { return &___touchId_1; }
inline void set_touchId_1(int32_t value)
{
___touchId_1 = value;
}
inline static int32_t get_offset_of_position_2() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___position_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_position_2() const { return ___position_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_position_2() { return &___position_2; }
inline void set_position_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___position_2 = value;
}
inline static int32_t get_offset_of_delta_3() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___delta_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_delta_3() const { return ___delta_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_delta_3() { return &___delta_3; }
inline void set_delta_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___delta_3 = value;
}
inline static int32_t get_offset_of_pressure_4() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___pressure_4)); }
inline float get_pressure_4() const { return ___pressure_4; }
inline float* get_address_of_pressure_4() { return &___pressure_4; }
inline void set_pressure_4(float value)
{
___pressure_4 = value;
}
inline static int32_t get_offset_of_radius_5() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___radius_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_radius_5() const { return ___radius_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_radius_5() { return &___radius_5; }
inline void set_radius_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___radius_5 = value;
}
inline static int32_t get_offset_of_phaseId_6() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___phaseId_6)); }
inline uint8_t get_phaseId_6() const { return ___phaseId_6; }
inline uint8_t* get_address_of_phaseId_6() { return &___phaseId_6; }
inline void set_phaseId_6(uint8_t value)
{
___phaseId_6 = value;
}
inline static int32_t get_offset_of_tapCount_7() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___tapCount_7)); }
inline uint8_t get_tapCount_7() const { return ___tapCount_7; }
inline uint8_t* get_address_of_tapCount_7() { return &___tapCount_7; }
inline void set_tapCount_7(uint8_t value)
{
___tapCount_7 = value;
}
inline static int32_t get_offset_of_displayIndex_8() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___displayIndex_8)); }
inline uint8_t get_displayIndex_8() const { return ___displayIndex_8; }
inline uint8_t* get_address_of_displayIndex_8() { return &___displayIndex_8; }
inline void set_displayIndex_8(uint8_t value)
{
___displayIndex_8 = value;
}
inline static int32_t get_offset_of_flags_9() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___flags_9)); }
inline uint8_t get_flags_9() const { return ___flags_9; }
inline uint8_t* get_address_of_flags_9() { return &___flags_9; }
inline void set_flags_9(uint8_t value)
{
___flags_9 = value;
}
inline static int32_t get_offset_of_padding_10() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___padding_10)); }
inline int32_t get_padding_10() const { return ___padding_10; }
inline int32_t* get_address_of_padding_10() { return &___padding_10; }
inline void set_padding_10(int32_t value)
{
___padding_10 = value;
}
inline static int32_t get_offset_of_startTime_11() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___startTime_11)); }
inline double get_startTime_11() const { return ___startTime_11; }
inline double* get_address_of_startTime_11() { return &___startTime_11; }
inline void set_startTime_11(double value)
{
___startTime_11 = value;
}
inline static int32_t get_offset_of_startPosition_12() { return static_cast<int32_t>(offsetof(TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A, ___startPosition_12)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_startPosition_12() const { return ___startPosition_12; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_startPosition_12() { return &___startPosition_12; }
inline void set_startPosition_12(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___startPosition_12 = value;
}
};
// UnityEngine.InputSystem.LowLevel.TouchscreenState
struct TouchscreenState_t4E8FE1DC956443362DA6C8664791FA2CB69322EB
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<primaryTouchData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.TouchscreenState::primaryTouchData
U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14 ___primaryTouchData_1;
};
#pragma pack(pop, tp)
struct
{
U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14 ___primaryTouchData_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___touchData_3_OffsetPadding[56];
// UnityEngine.InputSystem.LowLevel.TouchscreenState/<touchData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.TouchscreenState::touchData
U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D ___touchData_3;
};
#pragma pack(pop, tp)
struct
{
char ___touchData_3_OffsetPadding_forAlignmentOnly[56];
U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D ___touchData_3_forAlignmentOnly;
};
};
};
uint8_t TouchscreenState_t4E8FE1DC956443362DA6C8664791FA2CB69322EB__padding[560];
};
public:
inline static int32_t get_offset_of_primaryTouchData_1() { return static_cast<int32_t>(offsetof(TouchscreenState_t4E8FE1DC956443362DA6C8664791FA2CB69322EB, ___primaryTouchData_1)); }
inline U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14 get_primaryTouchData_1() const { return ___primaryTouchData_1; }
inline U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14 * get_address_of_primaryTouchData_1() { return &___primaryTouchData_1; }
inline void set_primaryTouchData_1(U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14 value)
{
___primaryTouchData_1 = value;
}
inline static int32_t get_offset_of_touchData_3() { return static_cast<int32_t>(offsetof(TouchscreenState_t4E8FE1DC956443362DA6C8664791FA2CB69322EB, ___touchData_3)); }
inline U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D get_touchData_3() const { return ___touchData_3; }
inline U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D * get_address_of_touchData_3() { return &___touchData_3; }
inline void set_touchData_3(U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D value)
{
___touchData_3 = value;
}
};
// UnityEngine.XR.TrackingOriginModeFlags
struct TrackingOriginModeFlags_t256D586CBC67509591B0DFEC26F2D2B5C0B532B0
{
public:
// System.Int32 UnityEngine.XR.TrackingOriginModeFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingOriginModeFlags_t256D586CBC67509591B0DFEC26F2D2B5C0B532B0, ___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.XR.TrackingSpaceType
struct TrackingSpaceType_tDDC4AF6806433DAC0E0174208D3107B9364A4445
{
public:
// System.Int32 UnityEngine.XR.TrackingSpaceType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingSpaceType_tDDC4AF6806433DAC0E0174208D3107B9364A4445, ___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.XR.ARSubsystems.TrackingState
struct TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackingState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38, ___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.TypeCode
struct TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C
{
public:
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C, ___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.InputSystem.UI.UIPointerBehavior
struct UIPointerBehavior_tB75AA99444461CC194976F706E7383368FF6170C
{
public:
// System.Int32 UnityEngine.InputSystem.UI.UIPointerBehavior::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UIPointerBehavior_tB75AA99444461CC194976F706E7383368FF6170C, ___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.InputSystem.UI.UIPointerType
struct UIPointerType_t972927F1BA6CEBC28D15A95D7E8C515380D688F0
{
public:
// System.Int32 UnityEngine.InputSystem.UI.UIPointerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UIPointerType_t972927F1BA6CEBC28D15A95D7E8C515380D688F0, ___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;
}
};
// UnityEditor.XR.LegacyInputHelpers.UserRequestedTrackingMode
struct UserRequestedTrackingMode_t8819718A514B8F5BFDE5E9EC48B19A8C3CFAA7D7
{
public:
// System.Int32 UnityEditor.XR.LegacyInputHelpers.UserRequestedTrackingMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UserRequestedTrackingMode_t8819718A514B8F5BFDE5E9EC48B19A8C3CFAA7D7, ___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.VFX.VFXEventAttribute
struct VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.VFX.VFXEventAttribute::m_Ptr
intptr_t ___m_Ptr_0;
// System.Boolean UnityEngine.VFX.VFXEventAttribute::m_Owner
bool ___m_Owner_1;
// UnityEngine.VFX.VisualEffectAsset UnityEngine.VFX.VFXEventAttribute::m_VfxAsset
VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50 * ___m_VfxAsset_2;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF, ___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_Owner_1() { return static_cast<int32_t>(offsetof(VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF, ___m_Owner_1)); }
inline bool get_m_Owner_1() const { return ___m_Owner_1; }
inline bool* get_address_of_m_Owner_1() { return &___m_Owner_1; }
inline void set_m_Owner_1(bool value)
{
___m_Owner_1 = value;
}
inline static int32_t get_offset_of_m_VfxAsset_2() { return static_cast<int32_t>(offsetof(VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF, ___m_VfxAsset_2)); }
inline VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50 * get_m_VfxAsset_2() const { return ___m_VfxAsset_2; }
inline VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50 ** get_address_of_m_VfxAsset_2() { return &___m_VfxAsset_2; }
inline void set_m_VfxAsset_2(VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50 * value)
{
___m_VfxAsset_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_VfxAsset_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.VFX.VFXEventAttribute
struct VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
int32_t ___m_Owner_1;
VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50 * ___m_VfxAsset_2;
};
// Native definition for COM marshalling of UnityEngine.VFX.VFXEventAttribute
struct VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF_marshaled_com
{
intptr_t ___m_Ptr_0;
int32_t ___m_Owner_1;
VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50 * ___m_VfxAsset_2;
};
// UnityEngine.VFX.VFXExpressionValues
struct VFXExpressionValues_tFB46D1CD053E9CD5BD04CBE4DB1B0ED24C9C0883 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.VFX.VFXExpressionValues::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(VFXExpressionValues_tFB46D1CD053E9CD5BD04CBE4DB1B0ED24C9C0883, ___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.VFX.VFXExpressionValues
struct VFXExpressionValues_tFB46D1CD053E9CD5BD04CBE4DB1B0ED24C9C0883_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.VFX.VFXExpressionValues
struct VFXExpressionValues_tFB46D1CD053E9CD5BD04CBE4DB1B0ED24C9C0883_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.VFX.VFXSpawnerState
struct VFXSpawnerState_t5879CC401019E9C9D4F81128147AE52AAED167CD : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.VFX.VFXSpawnerState::m_Ptr
intptr_t ___m_Ptr_0;
// System.Boolean UnityEngine.VFX.VFXSpawnerState::m_Owner
bool ___m_Owner_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(VFXSpawnerState_t5879CC401019E9C9D4F81128147AE52AAED167CD, ___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_Owner_1() { return static_cast<int32_t>(offsetof(VFXSpawnerState_t5879CC401019E9C9D4F81128147AE52AAED167CD, ___m_Owner_1)); }
inline bool get_m_Owner_1() const { return ___m_Owner_1; }
inline bool* get_address_of_m_Owner_1() { return &___m_Owner_1; }
inline void set_m_Owner_1(bool value)
{
___m_Owner_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.VFX.VFXSpawnerState
struct VFXSpawnerState_t5879CC401019E9C9D4F81128147AE52AAED167CD_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
int32_t ___m_Owner_1;
};
// Native definition for COM marshalling of UnityEngine.VFX.VFXSpawnerState
struct VFXSpawnerState_t5879CC401019E9C9D4F81128147AE52AAED167CD_marshaled_com
{
intptr_t ___m_Ptr_0;
int32_t ___m_Owner_1;
};
// Dissonance.Audio.Capture.VadSensitivityLevels
struct VadSensitivityLevels_tD54575F33E385EEE67D491420F6AB70AED2ABEBA
{
public:
// System.Int32 Dissonance.Audio.Capture.VadSensitivityLevels::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VadSensitivityLevels_tD54575F33E385EEE67D491420F6AB70AED2ABEBA, ___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.Video.Video3DLayout
struct Video3DLayout_t128A1265A65BE3B41138D19C5A827986A2F22F45
{
public:
// System.Int32 UnityEngine.Video.Video3DLayout::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Video3DLayout_t128A1265A65BE3B41138D19C5A827986A2F22F45, ___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.Video.VideoAspectRatio
struct VideoAspectRatio_tB3C11859B0FA98E77D62BE7E1BD59084E7919B5E
{
public:
// System.Int32 UnityEngine.Video.VideoAspectRatio::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VideoAspectRatio_tB3C11859B0FA98E77D62BE7E1BD59084E7919B5E, ___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.Video.VideoAudioOutputMode
struct VideoAudioOutputMode_tDD6B846B9A65F1C53DA4D4D8117CDB223BE3DE56
{
public:
// System.Int32 UnityEngine.Video.VideoAudioOutputMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VideoAudioOutputMode_tDD6B846B9A65F1C53DA4D4D8117CDB223BE3DE56, ___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.Video.VideoRenderMode
struct VideoRenderMode_tB2F8E98B2EBB3216E6322E55C246CE0587CC0A7B
{
public:
// System.Int32 UnityEngine.Video.VideoRenderMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VideoRenderMode_tB2F8E98B2EBB3216E6322E55C246CE0587CC0A7B, ___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.Video.VideoSource
struct VideoSource_t66E8298534E5BB7DFD28A7D8ADE397E328CD8896
{
public:
// System.Int32 UnityEngine.Video.VideoSource::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VideoSource_t66E8298534E5BB7DFD28A7D8ADE397E328CD8896, ___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.Video.VideoTimeReference
struct VideoTimeReference_tDF02822B01320D3B0ADBE75452C8FA6B5FE96F1E
{
public:
// System.Int32 UnityEngine.Video.VideoTimeReference::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VideoTimeReference_tDF02822B01320D3B0ADBE75452C8FA6B5FE96F1E, ___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.Video.VideoTimeSource
struct VideoTimeSource_t881900D70589FDDD1C7471CB8C7FEA132B98038F
{
public:
// System.Int32 UnityEngine.Video.VideoTimeSource::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VideoTimeSource_t881900D70589FDDD1C7471CB8C7FEA132B98038F, ___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;
}
};
// NAudio.Wave.WaveFileWriter
struct WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB
{
public:
// System.IO.Stream NAudio.Wave.WaveFileWriter::_outStream
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ____outStream_5;
// System.IO.BinaryWriter NAudio.Wave.WaveFileWriter::_writer
BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * ____writer_6;
// System.Int64 NAudio.Wave.WaveFileWriter::_dataSizePos
int64_t ____dataSizePos_7;
// System.Int64 NAudio.Wave.WaveFileWriter::_factSampleCountPos
int64_t ____factSampleCountPos_8;
// System.Int32 NAudio.Wave.WaveFileWriter::_dataChunkSize
int32_t ____dataChunkSize_9;
// System.String NAudio.Wave.WaveFileWriter::<Filename>k__BackingField
String_t* ___U3CFilenameU3Ek__BackingField_10;
// NAudio.Wave.WaveFormat NAudio.Wave.WaveFileWriter::<WaveFormat>k__BackingField
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ___U3CWaveFormatU3Ek__BackingField_11;
public:
inline static int32_t get_offset_of__outStream_5() { return static_cast<int32_t>(offsetof(WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49, ____outStream_5)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get__outStream_5() const { return ____outStream_5; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of__outStream_5() { return &____outStream_5; }
inline void set__outStream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
____outStream_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outStream_5), (void*)value);
}
inline static int32_t get_offset_of__writer_6() { return static_cast<int32_t>(offsetof(WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49, ____writer_6)); }
inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * get__writer_6() const { return ____writer_6; }
inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F ** get_address_of__writer_6() { return &____writer_6; }
inline void set__writer_6(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * value)
{
____writer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____writer_6), (void*)value);
}
inline static int32_t get_offset_of__dataSizePos_7() { return static_cast<int32_t>(offsetof(WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49, ____dataSizePos_7)); }
inline int64_t get__dataSizePos_7() const { return ____dataSizePos_7; }
inline int64_t* get_address_of__dataSizePos_7() { return &____dataSizePos_7; }
inline void set__dataSizePos_7(int64_t value)
{
____dataSizePos_7 = value;
}
inline static int32_t get_offset_of__factSampleCountPos_8() { return static_cast<int32_t>(offsetof(WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49, ____factSampleCountPos_8)); }
inline int64_t get__factSampleCountPos_8() const { return ____factSampleCountPos_8; }
inline int64_t* get_address_of__factSampleCountPos_8() { return &____factSampleCountPos_8; }
inline void set__factSampleCountPos_8(int64_t value)
{
____factSampleCountPos_8 = value;
}
inline static int32_t get_offset_of__dataChunkSize_9() { return static_cast<int32_t>(offsetof(WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49, ____dataChunkSize_9)); }
inline int32_t get__dataChunkSize_9() const { return ____dataChunkSize_9; }
inline int32_t* get_address_of__dataChunkSize_9() { return &____dataChunkSize_9; }
inline void set__dataChunkSize_9(int32_t value)
{
____dataChunkSize_9 = value;
}
inline static int32_t get_offset_of_U3CFilenameU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49, ___U3CFilenameU3Ek__BackingField_10)); }
inline String_t* get_U3CFilenameU3Ek__BackingField_10() const { return ___U3CFilenameU3Ek__BackingField_10; }
inline String_t** get_address_of_U3CFilenameU3Ek__BackingField_10() { return &___U3CFilenameU3Ek__BackingField_10; }
inline void set_U3CFilenameU3Ek__BackingField_10(String_t* value)
{
___U3CFilenameU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CFilenameU3Ek__BackingField_10), (void*)value);
}
inline static int32_t get_offset_of_U3CWaveFormatU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49, ___U3CWaveFormatU3Ek__BackingField_11)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get_U3CWaveFormatU3Ek__BackingField_11() const { return ___U3CWaveFormatU3Ek__BackingField_11; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of_U3CWaveFormatU3Ek__BackingField_11() { return &___U3CWaveFormatU3Ek__BackingField_11; }
inline void set_U3CWaveFormatU3Ek__BackingField_11(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
___U3CWaveFormatU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CWaveFormatU3Ek__BackingField_11), (void*)value);
}
};
// Mirror.SimpleWeb.WebSocketServer
struct WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65 : public RuntimeObject
{
public:
// System.Collections.Concurrent.ConcurrentQueue`1<Mirror.SimpleWeb.Message> Mirror.SimpleWeb.WebSocketServer::receiveQueue
ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * ___receiveQueue_0;
// Mirror.SimpleWeb.TcpConfig Mirror.SimpleWeb.WebSocketServer::tcpConfig
TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE ___tcpConfig_1;
// System.Int32 Mirror.SimpleWeb.WebSocketServer::maxMessageSize
int32_t ___maxMessageSize_2;
// System.Net.Sockets.TcpListener Mirror.SimpleWeb.WebSocketServer::listener
TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * ___listener_3;
// System.Threading.Thread Mirror.SimpleWeb.WebSocketServer::acceptThread
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * ___acceptThread_4;
// System.Boolean Mirror.SimpleWeb.WebSocketServer::serverStopped
bool ___serverStopped_5;
// Mirror.SimpleWeb.ServerHandshake Mirror.SimpleWeb.WebSocketServer::handShake
ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5 * ___handShake_6;
// Mirror.SimpleWeb.ServerSslHelper Mirror.SimpleWeb.WebSocketServer::sslHelper
ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34 * ___sslHelper_7;
// Mirror.SimpleWeb.BufferPool Mirror.SimpleWeb.WebSocketServer::bufferPool
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * ___bufferPool_8;
// System.Collections.Concurrent.ConcurrentDictionary`2<System.Int32,Mirror.SimpleWeb.Connection> Mirror.SimpleWeb.WebSocketServer::connections
ConcurrentDictionary_2_tFBE52C8624D40D3A5E382857535FC5706937657C * ___connections_9;
// System.Int32 Mirror.SimpleWeb.WebSocketServer::_idCounter
int32_t ____idCounter_10;
public:
inline static int32_t get_offset_of_receiveQueue_0() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___receiveQueue_0)); }
inline ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * get_receiveQueue_0() const { return ___receiveQueue_0; }
inline ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 ** get_address_of_receiveQueue_0() { return &___receiveQueue_0; }
inline void set_receiveQueue_0(ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * value)
{
___receiveQueue_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___receiveQueue_0), (void*)value);
}
inline static int32_t get_offset_of_tcpConfig_1() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___tcpConfig_1)); }
inline TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE get_tcpConfig_1() const { return ___tcpConfig_1; }
inline TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE * get_address_of_tcpConfig_1() { return &___tcpConfig_1; }
inline void set_tcpConfig_1(TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE value)
{
___tcpConfig_1 = value;
}
inline static int32_t get_offset_of_maxMessageSize_2() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___maxMessageSize_2)); }
inline int32_t get_maxMessageSize_2() const { return ___maxMessageSize_2; }
inline int32_t* get_address_of_maxMessageSize_2() { return &___maxMessageSize_2; }
inline void set_maxMessageSize_2(int32_t value)
{
___maxMessageSize_2 = value;
}
inline static int32_t get_offset_of_listener_3() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___listener_3)); }
inline TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * get_listener_3() const { return ___listener_3; }
inline TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B ** get_address_of_listener_3() { return &___listener_3; }
inline void set_listener_3(TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * value)
{
___listener_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___listener_3), (void*)value);
}
inline static int32_t get_offset_of_acceptThread_4() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___acceptThread_4)); }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * get_acceptThread_4() const { return ___acceptThread_4; }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 ** get_address_of_acceptThread_4() { return &___acceptThread_4; }
inline void set_acceptThread_4(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * value)
{
___acceptThread_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___acceptThread_4), (void*)value);
}
inline static int32_t get_offset_of_serverStopped_5() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___serverStopped_5)); }
inline bool get_serverStopped_5() const { return ___serverStopped_5; }
inline bool* get_address_of_serverStopped_5() { return &___serverStopped_5; }
inline void set_serverStopped_5(bool value)
{
___serverStopped_5 = value;
}
inline static int32_t get_offset_of_handShake_6() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___handShake_6)); }
inline ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5 * get_handShake_6() const { return ___handShake_6; }
inline ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5 ** get_address_of_handShake_6() { return &___handShake_6; }
inline void set_handShake_6(ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5 * value)
{
___handShake_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___handShake_6), (void*)value);
}
inline static int32_t get_offset_of_sslHelper_7() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___sslHelper_7)); }
inline ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34 * get_sslHelper_7() const { return ___sslHelper_7; }
inline ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34 ** get_address_of_sslHelper_7() { return &___sslHelper_7; }
inline void set_sslHelper_7(ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34 * value)
{
___sslHelper_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sslHelper_7), (void*)value);
}
inline static int32_t get_offset_of_bufferPool_8() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___bufferPool_8)); }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * get_bufferPool_8() const { return ___bufferPool_8; }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC ** get_address_of_bufferPool_8() { return &___bufferPool_8; }
inline void set_bufferPool_8(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * value)
{
___bufferPool_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bufferPool_8), (void*)value);
}
inline static int32_t get_offset_of_connections_9() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ___connections_9)); }
inline ConcurrentDictionary_2_tFBE52C8624D40D3A5E382857535FC5706937657C * get_connections_9() const { return ___connections_9; }
inline ConcurrentDictionary_2_tFBE52C8624D40D3A5E382857535FC5706937657C ** get_address_of_connections_9() { return &___connections_9; }
inline void set_connections_9(ConcurrentDictionary_2_tFBE52C8624D40D3A5E382857535FC5706937657C * value)
{
___connections_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___connections_9), (void*)value);
}
inline static int32_t get_offset_of__idCounter_10() { return static_cast<int32_t>(offsetof(WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65, ____idCounter_10)); }
inline int32_t get__idCounter_10() const { return ____idCounter_10; }
inline int32_t* get_address_of__idCounter_10() { return &____idCounter_10; }
inline void set__idCounter_10(int32_t value)
{
____idCounter_10 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMREmulationMode
struct WindowsMREmulationMode_t07D598B252E1A23575F2E1C20A83B5EE7177C878
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.WindowsMREmulationMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(WindowsMREmulationMode_t07D598B252E1A23575F2E1C20A83B5EE7177C878, ___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;
}
};
// Unity.XR.WindowsMR.WindowsMRUsages
struct WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86 : public RuntimeObject
{
public:
public:
};
struct WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields
{
public:
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> Unity.XR.WindowsMR.WindowsMRUsages::PointerPosition
InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 ___PointerPosition_0;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion> Unity.XR.WindowsMR.WindowsMRUsages::PointerRotation
InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 ___PointerRotation_1;
// UnityEngine.XR.InputFeatureUsage`1<System.Single> Unity.XR.WindowsMR.WindowsMRUsages::SourceLossRisk
InputFeatureUsage_1_t9525982C3C73085CB36503407750B9DE0E598BE1 ___SourceLossRisk_2;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> Unity.XR.WindowsMR.WindowsMRUsages::SourceMitigationDirection
InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 ___SourceMitigationDirection_3;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> Unity.XR.WindowsMR.WindowsMRUsages::AirTap
InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 ___AirTap_4;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Vector3> Unity.XR.WindowsMR.WindowsMRUsages::EyeGazePosition
InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 ___EyeGazePosition_5;
// UnityEngine.XR.InputFeatureUsage`1<UnityEngine.Quaternion> Unity.XR.WindowsMR.WindowsMRUsages::EyeGazeRotation
InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 ___EyeGazeRotation_6;
// UnityEngine.XR.InputFeatureUsage`1<System.Boolean> Unity.XR.WindowsMR.WindowsMRUsages::EyeGazeAvailable
InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 ___EyeGazeAvailable_7;
public:
inline static int32_t get_offset_of_PointerPosition_0() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___PointerPosition_0)); }
inline InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 get_PointerPosition_0() const { return ___PointerPosition_0; }
inline InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 * get_address_of_PointerPosition_0() { return &___PointerPosition_0; }
inline void set_PointerPosition_0(InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 value)
{
___PointerPosition_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___PointerPosition_0))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline static int32_t get_offset_of_PointerRotation_1() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___PointerRotation_1)); }
inline InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 get_PointerRotation_1() const { return ___PointerRotation_1; }
inline InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 * get_address_of_PointerRotation_1() { return &___PointerRotation_1; }
inline void set_PointerRotation_1(InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 value)
{
___PointerRotation_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___PointerRotation_1))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline static int32_t get_offset_of_SourceLossRisk_2() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___SourceLossRisk_2)); }
inline InputFeatureUsage_1_t9525982C3C73085CB36503407750B9DE0E598BE1 get_SourceLossRisk_2() const { return ___SourceLossRisk_2; }
inline InputFeatureUsage_1_t9525982C3C73085CB36503407750B9DE0E598BE1 * get_address_of_SourceLossRisk_2() { return &___SourceLossRisk_2; }
inline void set_SourceLossRisk_2(InputFeatureUsage_1_t9525982C3C73085CB36503407750B9DE0E598BE1 value)
{
___SourceLossRisk_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___SourceLossRisk_2))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline static int32_t get_offset_of_SourceMitigationDirection_3() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___SourceMitigationDirection_3)); }
inline InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 get_SourceMitigationDirection_3() const { return ___SourceMitigationDirection_3; }
inline InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 * get_address_of_SourceMitigationDirection_3() { return &___SourceMitigationDirection_3; }
inline void set_SourceMitigationDirection_3(InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 value)
{
___SourceMitigationDirection_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___SourceMitigationDirection_3))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline static int32_t get_offset_of_AirTap_4() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___AirTap_4)); }
inline InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 get_AirTap_4() const { return ___AirTap_4; }
inline InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 * get_address_of_AirTap_4() { return &___AirTap_4; }
inline void set_AirTap_4(InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 value)
{
___AirTap_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___AirTap_4))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline static int32_t get_offset_of_EyeGazePosition_5() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___EyeGazePosition_5)); }
inline InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 get_EyeGazePosition_5() const { return ___EyeGazePosition_5; }
inline InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 * get_address_of_EyeGazePosition_5() { return &___EyeGazePosition_5; }
inline void set_EyeGazePosition_5(InputFeatureUsage_1_t2E7E3FD2C721D53BE7A1B809921F9476185C8709 value)
{
___EyeGazePosition_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___EyeGazePosition_5))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline static int32_t get_offset_of_EyeGazeRotation_6() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___EyeGazeRotation_6)); }
inline InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 get_EyeGazeRotation_6() const { return ___EyeGazeRotation_6; }
inline InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 * get_address_of_EyeGazeRotation_6() { return &___EyeGazeRotation_6; }
inline void set_EyeGazeRotation_6(InputFeatureUsage_1_t152DE78832E6E5157647309AA0BF7CFC75F44A49 value)
{
___EyeGazeRotation_6 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___EyeGazeRotation_6))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
inline static int32_t get_offset_of_EyeGazeAvailable_7() { return static_cast<int32_t>(offsetof(WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields, ___EyeGazeAvailable_7)); }
inline InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 get_EyeGazeAvailable_7() const { return ___EyeGazeAvailable_7; }
inline InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 * get_address_of_EyeGazeAvailable_7() { return &___EyeGazeAvailable_7; }
inline void set_EyeGazeAvailable_7(InputFeatureUsage_1_t28793BE3C4ACB9F1B34C0C392EAAFB16A5FA8E40 value)
{
___EyeGazeAvailable_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___EyeGazeAvailable_7))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
}
};
// UnityEngine.XR.WindowsMR.XRAnchorStore
struct XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E : public RuntimeObject
{
public:
// System.Boolean UnityEngine.XR.WindowsMR.XRAnchorStore::disposed
bool ___disposed_1;
// System.IntPtr UnityEngine.XR.WindowsMR.XRAnchorStore::storePtr
intptr_t ___storePtr_2;
// System.Collections.Generic.List`1<System.String> UnityEngine.XR.WindowsMR.XRAnchorStore::persistedNames
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___persistedNames_3;
public:
inline static int32_t get_offset_of_disposed_1() { return static_cast<int32_t>(offsetof(XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E, ___disposed_1)); }
inline bool get_disposed_1() const { return ___disposed_1; }
inline bool* get_address_of_disposed_1() { return &___disposed_1; }
inline void set_disposed_1(bool value)
{
___disposed_1 = value;
}
inline static int32_t get_offset_of_storePtr_2() { return static_cast<int32_t>(offsetof(XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E, ___storePtr_2)); }
inline intptr_t get_storePtr_2() const { return ___storePtr_2; }
inline intptr_t* get_address_of_storePtr_2() { return &___storePtr_2; }
inline void set_storePtr_2(intptr_t value)
{
___storePtr_2 = value;
}
inline static int32_t get_offset_of_persistedNames_3() { return static_cast<int32_t>(offsetof(XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E, ___persistedNames_3)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_persistedNames_3() const { return ___persistedNames_3; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_persistedNames_3() { return &___persistedNames_3; }
inline void set_persistedNames_3(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___persistedNames_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___persistedNames_3), (void*)value);
}
};
struct XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.WindowsMR.XRAnchorStore::defaultId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___defaultId_0;
public:
inline static int32_t get_offset_of_defaultId_0() { return static_cast<int32_t>(offsetof(XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E_StaticFields, ___defaultId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_defaultId_0() const { return ___defaultId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_defaultId_0() { return &___defaultId_0; }
inline void set_defaultId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___defaultId_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor
struct XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B : public SubsystemDescriptorWithProvider_2_t0A7F13BEDD4EC8DFDD5AEC7D5171B22F3D852CE5
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor::<supportsTrackableAttachments>k__BackingField
bool ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B, ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3)); }
inline bool get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3() const { return ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3() { return &___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3; }
inline void set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3(bool value)
{
___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3 = value;
}
};
// UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem
struct XRGestureSubsystem_t9CE9DF7141C4363F8917D3F006EBB9FAE322AF02 : public Subsystem_1_t56D88B317016EC2FF380261B659BB963F1D9EDE6
{
public:
// System.Boolean UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem::m_Running
bool ___m_Running_1;
// UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem/Provider UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem::m_Provider
Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058 * ___m_Provider_2;
public:
inline static int32_t get_offset_of_m_Running_1() { return static_cast<int32_t>(offsetof(XRGestureSubsystem_t9CE9DF7141C4363F8917D3F006EBB9FAE322AF02, ___m_Running_1)); }
inline bool get_m_Running_1() const { return ___m_Running_1; }
inline bool* get_address_of_m_Running_1() { return &___m_Running_1; }
inline void set_m_Running_1(bool value)
{
___m_Running_1 = value;
}
inline static int32_t get_offset_of_m_Provider_2() { return static_cast<int32_t>(offsetof(XRGestureSubsystem_t9CE9DF7141C4363F8917D3F006EBB9FAE322AF02, ___m_Provider_2)); }
inline Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058 * get_m_Provider_2() const { return ___m_Provider_2; }
inline Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058 ** get_address_of_m_Provider_2() { return &___m_Provider_2; }
inline void set_m_Provider_2(Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058 * value)
{
___m_Provider_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Provider_2), (void*)value);
}
};
// UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor
struct XRGestureSubsystemDescriptor_t6E5DC38A325CBBAC11AEA936891539086943D4EB : public SubsystemDescriptor_1_tB41B6146FDE975239B7C10EFDB3DFA321FB6D7B8
{
public:
public:
};
// UnityEngine.XR.XRNode
struct XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD
{
public:
// System.Int32 UnityEngine.XR.XRNode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD, ___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.XR.ARSubsystems.XRSessionSubsystem
struct XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD : public SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F
{
public:
// UnityEngine.XR.ARSubsystems.ConfigurationChooser UnityEngine.XR.ARSubsystems.XRSessionSubsystem::m_DefaultConfigurationChooser
ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * ___m_DefaultConfigurationChooser_4;
// UnityEngine.XR.ARSubsystems.ConfigurationChooser UnityEngine.XR.ARSubsystems.XRSessionSubsystem::m_ConfigurationChooser
ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * ___m_ConfigurationChooser_5;
public:
inline static int32_t get_offset_of_m_DefaultConfigurationChooser_4() { return static_cast<int32_t>(offsetof(XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD, ___m_DefaultConfigurationChooser_4)); }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * get_m_DefaultConfigurationChooser_4() const { return ___m_DefaultConfigurationChooser_4; }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 ** get_address_of_m_DefaultConfigurationChooser_4() { return &___m_DefaultConfigurationChooser_4; }
inline void set_m_DefaultConfigurationChooser_4(ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * value)
{
___m_DefaultConfigurationChooser_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultConfigurationChooser_4), (void*)value);
}
inline static int32_t get_offset_of_m_ConfigurationChooser_5() { return static_cast<int32_t>(offsetof(XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD, ___m_ConfigurationChooser_5)); }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * get_m_ConfigurationChooser_5() const { return ___m_ConfigurationChooser_5; }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 ** get_address_of_m_ConfigurationChooser_5() { return &___m_ConfigurationChooser_5; }
inline void set_m_ConfigurationChooser_5(ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * value)
{
___m_ConfigurationChooser_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ConfigurationChooser_5), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor
struct XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C : public SubsystemDescriptorWithProvider_2_tE9888364F17DF110619D7238068EB1EC98053AE5
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::<supportsInstall>k__BackingField
bool ___U3CsupportsInstallU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::<supportsMatchFrameRate>k__BackingField
bool ___U3CsupportsMatchFrameRateU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CsupportsInstallU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C, ___U3CsupportsInstallU3Ek__BackingField_3)); }
inline bool get_U3CsupportsInstallU3Ek__BackingField_3() const { return ___U3CsupportsInstallU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsInstallU3Ek__BackingField_3() { return &___U3CsupportsInstallU3Ek__BackingField_3; }
inline void set_U3CsupportsInstallU3Ek__BackingField_3(bool value)
{
___U3CsupportsInstallU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsMatchFrameRateU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C, ___U3CsupportsMatchFrameRateU3Ek__BackingField_4)); }
inline bool get_U3CsupportsMatchFrameRateU3Ek__BackingField_4() const { return ___U3CsupportsMatchFrameRateU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsMatchFrameRateU3Ek__BackingField_4() { return &___U3CsupportsMatchFrameRateU3Ek__BackingField_4; }
inline void set_U3CsupportsMatchFrameRateU3Ek__BackingField_4(bool value)
{
___U3CsupportsMatchFrameRateU3Ek__BackingField_4 = value;
}
};
// UnityEngine.Yoga.YogaMeasureMode
struct YogaMeasureMode_tC1410798E2727CAFC5099EC884C7649A5B4D8DC8
{
public:
// System.Int32 UnityEngine.Yoga.YogaMeasureMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(YogaMeasureMode_tC1410798E2727CAFC5099EC884C7649A5B4D8DC8, ___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.Yoga.YogaNode
struct YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Yoga.YogaNode::_ygNode
intptr_t ____ygNode_0;
// UnityEngine.Yoga.MeasureFunction UnityEngine.Yoga.YogaNode::_measureFunction
MeasureFunction_tBD19E8A44621B4D553785068ECCF0439CD9666C6 * ____measureFunction_1;
// UnityEngine.Yoga.BaselineFunction UnityEngine.Yoga.YogaNode::_baselineFunction
BaselineFunction_t7C180BD26F5C8850EEDDBEC2471D9A466EF0D24A * ____baselineFunction_2;
public:
inline static int32_t get_offset_of__ygNode_0() { return static_cast<int32_t>(offsetof(YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6, ____ygNode_0)); }
inline intptr_t get__ygNode_0() const { return ____ygNode_0; }
inline intptr_t* get_address_of__ygNode_0() { return &____ygNode_0; }
inline void set__ygNode_0(intptr_t value)
{
____ygNode_0 = value;
}
inline static int32_t get_offset_of__measureFunction_1() { return static_cast<int32_t>(offsetof(YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6, ____measureFunction_1)); }
inline MeasureFunction_tBD19E8A44621B4D553785068ECCF0439CD9666C6 * get__measureFunction_1() const { return ____measureFunction_1; }
inline MeasureFunction_tBD19E8A44621B4D553785068ECCF0439CD9666C6 ** get_address_of__measureFunction_1() { return &____measureFunction_1; }
inline void set__measureFunction_1(MeasureFunction_tBD19E8A44621B4D553785068ECCF0439CD9666C6 * value)
{
____measureFunction_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____measureFunction_1), (void*)value);
}
inline static int32_t get_offset_of__baselineFunction_2() { return static_cast<int32_t>(offsetof(YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6, ____baselineFunction_2)); }
inline BaselineFunction_t7C180BD26F5C8850EEDDBEC2471D9A466EF0D24A * get__baselineFunction_2() const { return ____baselineFunction_2; }
inline BaselineFunction_t7C180BD26F5C8850EEDDBEC2471D9A466EF0D24A ** get_address_of__baselineFunction_2() { return &____baselineFunction_2; }
inline void set__baselineFunction_2(BaselineFunction_t7C180BD26F5C8850EEDDBEC2471D9A466EF0D24A * value)
{
____baselineFunction_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____baselineFunction_2), (void*)value);
}
};
// UnityEngine.jvalue
struct jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Boolean UnityEngine.jvalue::z
bool ___z_0;
};
#pragma pack(pop, tp)
struct
{
bool ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.SByte UnityEngine.jvalue::b
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Char UnityEngine.jvalue::c
Il2CppChar ___c_2;
};
#pragma pack(pop, tp)
struct
{
Il2CppChar ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int16 UnityEngine.jvalue::s
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.jvalue::i
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int64 UnityEngine.jvalue::j
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Single UnityEngine.jvalue::f
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Double UnityEngine.jvalue::d
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.IntPtr UnityEngine.jvalue::l
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_z_0() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___z_0)); }
inline bool get_z_0() const { return ___z_0; }
inline bool* get_address_of_z_0() { return &___z_0; }
inline void set_z_0(bool value)
{
___z_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___b_1)); }
inline int8_t get_b_1() const { return ___b_1; }
inline int8_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int8_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___c_2)); }
inline Il2CppChar get_c_2() const { return ___c_2; }
inline Il2CppChar* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(Il2CppChar value)
{
___c_2 = value;
}
inline static int32_t get_offset_of_s_3() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___s_3)); }
inline int16_t get_s_3() const { return ___s_3; }
inline int16_t* get_address_of_s_3() { return &___s_3; }
inline void set_s_3(int16_t value)
{
___s_3 = value;
}
inline static int32_t get_offset_of_i_4() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___i_4)); }
inline int32_t get_i_4() const { return ___i_4; }
inline int32_t* get_address_of_i_4() { return &___i_4; }
inline void set_i_4(int32_t value)
{
___i_4 = value;
}
inline static int32_t get_offset_of_j_5() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___j_5)); }
inline int64_t get_j_5() const { return ___j_5; }
inline int64_t* get_address_of_j_5() { return &___j_5; }
inline void set_j_5(int64_t value)
{
___j_5 = value;
}
inline static int32_t get_offset_of_f_6() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___f_6)); }
inline float get_f_6() const { return ___f_6; }
inline float* get_address_of_f_6() { return &___f_6; }
inline void set_f_6(float value)
{
___f_6 = value;
}
inline static int32_t get_offset_of_d_7() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___d_7)); }
inline double get_d_7() const { return ___d_7; }
inline double* get_address_of_d_7() { return &___d_7; }
inline void set_d_7(double value)
{
___d_7 = value;
}
inline static int32_t get_offset_of_l_8() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___l_8)); }
inline intptr_t get_l_8() const { return ___l_8; }
inline intptr_t* get_address_of_l_8() { return &___l_8; }
inline void set_l_8(intptr_t value)
{
___l_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.jvalue
struct jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.jvalue
struct jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Dissonance.Audio.AecDiagnostics/AecState
struct AecState_tD9B65A909A572F8E4411626DA315069E74322C70
{
public:
// System.Int32 Dissonance.Audio.AecDiagnostics/AecState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AecState_tD9B65A909A572F8E4411626DA315069E74322C70, ___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;
}
};
// Dissonance.Extensions.ArraySegmentExtensions/DisposableHandle
struct DisposableHandle_tD86A03360E4EDF69EB86290DD7266F9FA18ADC4A
{
public:
// System.IntPtr Dissonance.Extensions.ArraySegmentExtensions/DisposableHandle::_ptr
intptr_t ____ptr_0;
// System.Runtime.InteropServices.GCHandle Dissonance.Extensions.ArraySegmentExtensions/DisposableHandle::_handle
GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 ____handle_1;
public:
inline static int32_t get_offset_of__ptr_0() { return static_cast<int32_t>(offsetof(DisposableHandle_tD86A03360E4EDF69EB86290DD7266F9FA18ADC4A, ____ptr_0)); }
inline intptr_t get__ptr_0() const { return ____ptr_0; }
inline intptr_t* get_address_of__ptr_0() { return &____ptr_0; }
inline void set__ptr_0(intptr_t value)
{
____ptr_0 = value;
}
inline static int32_t get_offset_of__handle_1() { return static_cast<int32_t>(offsetof(DisposableHandle_tD86A03360E4EDF69EB86290DD7266F9FA18ADC4A, ____handle_1)); }
inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 get__handle_1() const { return ____handle_1; }
inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * get_address_of__handle_1() { return &____handle_1; }
inline void set__handle_1(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 value)
{
____handle_1 = value;
}
};
// UnityEngine.InputSystem.Composites.AxisComposite/WhichSideWins
struct WhichSideWins_t7AC8AC4BDE8FFCD7F70EEED6006FE378E14F858E
{
public:
// System.Int32 UnityEngine.InputSystem.Composites.AxisComposite/WhichSideWins::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(WhichSideWins_t7AC8AC4BDE8FFCD7F70EEED6006FE378E14F858E, ___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.InputSystem.Controls.AxisControl/Clamp
struct Clamp_t704AE5BAE42103937DBCFD8268214DB043B03D2F
{
public:
// System.Int32 UnityEngine.InputSystem.Controls.AxisControl/Clamp::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Clamp_t704AE5BAE42103937DBCFD8268214DB043B03D2F, ___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.InputSystem.Controls.DpadControl/ButtonBits
struct ButtonBits_t350FD4912589B335B86973EB719C3644810C9BD4
{
public:
// System.Int32 UnityEngine.InputSystem.Controls.DpadControl/ButtonBits::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ButtonBits_t350FD4912589B335B86973EB719C3644810C9BD4, ___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.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/Flags
struct Flags_t659FEBAC288B861B300D1EB272065E50CBA7E75F
{
public:
// System.Int32 UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/Flags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t659FEBAC288B861B300D1EB272065E50CBA7E75F, ___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;
}
};
// Dissonance.Networking.Client.EventQueue/EventType
struct EventType_tE235D013A1E8D3AA70BE89515C95CBD95D5B2BED
{
public:
// System.Int32 Dissonance.Networking.Client.EventQueue/EventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventType_tE235D013A1E8D3AA70BE89515C95CBD95D5B2BED, ___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.InputSystem.HID.HID/Button
struct Button_t4958901F776AAA75E2045E83A5E0E79D8753A106
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/Button::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Button_t4958901F776AAA75E2045E83A5E0E79D8753A106, ___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.InputSystem.HID.HID/GenericDesktop
struct GenericDesktop_t60700AC3F4460FB57599645C5BB75FA2B2EABA56
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/GenericDesktop::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GenericDesktop_t60700AC3F4460FB57599645C5BB75FA2B2EABA56, ___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.InputSystem.HID.HID/HIDCollectionType
struct HIDCollectionType_tB606FD6158193D1A1779A54E1D79E62A8B305008
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HIDCollectionType_tB606FD6158193D1A1779A54E1D79E62A8B305008, ___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.InputSystem.HID.HID/HIDElementFlags
struct HIDElementFlags_t040F7D7848019230713D29456541AA8FC84F72AB
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HIDElementFlags_t040F7D7848019230713D29456541AA8FC84F72AB, ___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.InputSystem.HID.HID/HIDReportType
struct HIDReportType_tCB969577ED4CDFE7B6649224F57410E2C9D0C343
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDReportType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HIDReportType_tCB969577ED4CDFE7B6649224F57410E2C9D0C343, ___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.InputSystem.HID.HID/Simulation
struct Simulation_tAF663C451BC0EB0550F877A7CED1A0BC9E438B21
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/Simulation::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Simulation_tAF663C451BC0EB0550F877A7CED1A0BC9E438B21, ___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.InputSystem.HID.HID/UsagePage
struct UsagePage_t4A3EF6CBE7B3C43331616B1E1B6CD06E9942E034
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/UsagePage::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UsagePage_t4A3EF6CBE7B3C43331616B1E1B6CD06E9942E034, ___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.InputSystem.HID.HIDParser/HIDItemStateGlobal
struct HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6
{
public:
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::usagePage
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usagePage_0;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::logicalMinimum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___logicalMinimum_1;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::logicalMaximum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___logicalMaximum_2;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::physicalMinimum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___physicalMinimum_3;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::physicalMaximum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___physicalMaximum_4;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::unitExponent
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___unitExponent_5;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::unit
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___unit_6;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::reportSize
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportSize_7;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::reportCount
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportCount_8;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal::reportId
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportId_9;
public:
inline static int32_t get_offset_of_usagePage_0() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___usagePage_0)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_usagePage_0() const { return ___usagePage_0; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_usagePage_0() { return &___usagePage_0; }
inline void set_usagePage_0(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___usagePage_0 = value;
}
inline static int32_t get_offset_of_logicalMinimum_1() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___logicalMinimum_1)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_logicalMinimum_1() const { return ___logicalMinimum_1; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_logicalMinimum_1() { return &___logicalMinimum_1; }
inline void set_logicalMinimum_1(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___logicalMinimum_1 = value;
}
inline static int32_t get_offset_of_logicalMaximum_2() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___logicalMaximum_2)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_logicalMaximum_2() const { return ___logicalMaximum_2; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_logicalMaximum_2() { return &___logicalMaximum_2; }
inline void set_logicalMaximum_2(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___logicalMaximum_2 = value;
}
inline static int32_t get_offset_of_physicalMinimum_3() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___physicalMinimum_3)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_physicalMinimum_3() const { return ___physicalMinimum_3; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_physicalMinimum_3() { return &___physicalMinimum_3; }
inline void set_physicalMinimum_3(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___physicalMinimum_3 = value;
}
inline static int32_t get_offset_of_physicalMaximum_4() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___physicalMaximum_4)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_physicalMaximum_4() const { return ___physicalMaximum_4; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_physicalMaximum_4() { return &___physicalMaximum_4; }
inline void set_physicalMaximum_4(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___physicalMaximum_4 = value;
}
inline static int32_t get_offset_of_unitExponent_5() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___unitExponent_5)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_unitExponent_5() const { return ___unitExponent_5; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_unitExponent_5() { return &___unitExponent_5; }
inline void set_unitExponent_5(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___unitExponent_5 = value;
}
inline static int32_t get_offset_of_unit_6() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___unit_6)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_unit_6() const { return ___unit_6; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_unit_6() { return &___unit_6; }
inline void set_unit_6(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___unit_6 = value;
}
inline static int32_t get_offset_of_reportSize_7() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___reportSize_7)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_reportSize_7() const { return ___reportSize_7; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_reportSize_7() { return &___reportSize_7; }
inline void set_reportSize_7(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___reportSize_7 = value;
}
inline static int32_t get_offset_of_reportCount_8() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___reportCount_8)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_reportCount_8() const { return ___reportCount_8; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_reportCount_8() { return &___reportCount_8; }
inline void set_reportCount_8(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___reportCount_8 = value;
}
inline static int32_t get_offset_of_reportId_9() { return static_cast<int32_t>(offsetof(HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6, ___reportId_9)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_reportId_9() const { return ___reportId_9; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_reportId_9() { return &___reportId_9; }
inline void set_reportId_9(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___reportId_9 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
struct HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6_marshaled_pinvoke
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usagePage_0;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___logicalMinimum_1;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___logicalMaximum_2;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___physicalMinimum_3;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___physicalMaximum_4;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___unitExponent_5;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___unit_6;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportSize_7;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportCount_8;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportId_9;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateGlobal
struct HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6_marshaled_com
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usagePage_0;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___logicalMinimum_1;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___logicalMaximum_2;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___physicalMinimum_3;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___physicalMaximum_4;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___unitExponent_5;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___unit_6;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportSize_7;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportCount_8;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___reportId_9;
};
// UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
struct HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08
{
public:
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usage
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usage_0;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usageMinimum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMinimum_1;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usageMaximum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMaximum_2;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::designatorIndex
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorIndex_3;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::designatorMinimum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorMinimum_4;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::designatorMaximum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorMaximum_5;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::stringIndex
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringIndex_6;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::stringMinimum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringMinimum_7;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::stringMaximum
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringMaximum_8;
// System.Collections.Generic.List`1<System.Int32> UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal::usageList
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___usageList_9;
public:
inline static int32_t get_offset_of_usage_0() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___usage_0)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_usage_0() const { return ___usage_0; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_usage_0() { return &___usage_0; }
inline void set_usage_0(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___usage_0 = value;
}
inline static int32_t get_offset_of_usageMinimum_1() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___usageMinimum_1)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_usageMinimum_1() const { return ___usageMinimum_1; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_usageMinimum_1() { return &___usageMinimum_1; }
inline void set_usageMinimum_1(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___usageMinimum_1 = value;
}
inline static int32_t get_offset_of_usageMaximum_2() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___usageMaximum_2)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_usageMaximum_2() const { return ___usageMaximum_2; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_usageMaximum_2() { return &___usageMaximum_2; }
inline void set_usageMaximum_2(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___usageMaximum_2 = value;
}
inline static int32_t get_offset_of_designatorIndex_3() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___designatorIndex_3)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_designatorIndex_3() const { return ___designatorIndex_3; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_designatorIndex_3() { return &___designatorIndex_3; }
inline void set_designatorIndex_3(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___designatorIndex_3 = value;
}
inline static int32_t get_offset_of_designatorMinimum_4() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___designatorMinimum_4)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_designatorMinimum_4() const { return ___designatorMinimum_4; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_designatorMinimum_4() { return &___designatorMinimum_4; }
inline void set_designatorMinimum_4(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___designatorMinimum_4 = value;
}
inline static int32_t get_offset_of_designatorMaximum_5() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___designatorMaximum_5)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_designatorMaximum_5() const { return ___designatorMaximum_5; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_designatorMaximum_5() { return &___designatorMaximum_5; }
inline void set_designatorMaximum_5(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___designatorMaximum_5 = value;
}
inline static int32_t get_offset_of_stringIndex_6() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___stringIndex_6)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_stringIndex_6() const { return ___stringIndex_6; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_stringIndex_6() { return &___stringIndex_6; }
inline void set_stringIndex_6(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___stringIndex_6 = value;
}
inline static int32_t get_offset_of_stringMinimum_7() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___stringMinimum_7)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_stringMinimum_7() const { return ___stringMinimum_7; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_stringMinimum_7() { return &___stringMinimum_7; }
inline void set_stringMinimum_7(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___stringMinimum_7 = value;
}
inline static int32_t get_offset_of_stringMaximum_8() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___stringMaximum_8)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_stringMaximum_8() const { return ___stringMaximum_8; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_stringMaximum_8() { return &___stringMaximum_8; }
inline void set_stringMaximum_8(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___stringMaximum_8 = value;
}
inline static int32_t get_offset_of_usageList_9() { return static_cast<int32_t>(offsetof(HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08, ___usageList_9)); }
inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * get_usageList_9() const { return ___usageList_9; }
inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 ** get_address_of_usageList_9() { return &___usageList_9; }
inline void set_usageList_9(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * value)
{
___usageList_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___usageList_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
struct HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08_marshaled_pinvoke
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usage_0;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMinimum_1;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMaximum_2;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorIndex_3;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorMinimum_4;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorMaximum_5;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringIndex_6;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringMinimum_7;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringMaximum_8;
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___usageList_9;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HIDParser/HIDItemStateLocal
struct HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08_marshaled_com
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usage_0;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMinimum_1;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMaximum_2;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorIndex_3;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorMinimum_4;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___designatorMaximum_5;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringIndex_6;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringMinimum_7;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___stringMaximum_8;
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___usageList_9;
};
// UnityEngine.InputSystem.HID.HIDParser/HIDItemTypeAndTag
struct HIDItemTypeAndTag_t9ABEA30FE9BD6F3C84F7E170A10331930D5F8E62
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDItemTypeAndTag::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HIDItemTypeAndTag_t9ABEA30FE9BD6F3C84F7E170A10331930D5F8E62, ___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.InputSystem.LowLevel.InitiateUserAccountPairingCommand/Result
struct Result_t7BA974CC6F6D66F6AF87B02D18EFE31FC9FEEC2D
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand/Result::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Result_t7BA974CC6F6D66F6AF87B02D18EFE31FC9FEEC2D, ___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.InputSystem.InputControl/ControlFlags
struct ControlFlags_tDF40B996324A2207FDB32C5E901A6AD6820B28A4
{
public:
// System.Int32 UnityEngine.InputSystem.InputControl/ControlFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ControlFlags_tDF40B996324A2207FDB32C5E901A6AD6820B28A4, ___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.InputSystem.Layouts.InputControlLayout/Builder
struct Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E : public RuntimeObject
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_0;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::<displayName>k__BackingField
String_t* ___U3CdisplayNameU3Ek__BackingField_1;
// System.Type UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::<type>k__BackingField
Type_t * ___U3CtypeU3Ek__BackingField_2;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::<stateFormat>k__BackingField
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___U3CstateFormatU3Ek__BackingField_3;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::<stateSizeInBytes>k__BackingField
int32_t ___U3CstateSizeInBytesU3Ek__BackingField_4;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::<extendsLayout>k__BackingField
String_t* ___U3CextendsLayoutU3Ek__BackingField_5;
// System.Nullable`1<System.Boolean> UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::<updateBeforeRender>k__BackingField
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___U3CupdateBeforeRenderU3Ek__BackingField_6;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::m_ControlCount
int32_t ___m_ControlCount_7;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem[] UnityEngine.InputSystem.Layouts.InputControlLayout/Builder::m_Controls
ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE* ___m_Controls_8;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___U3CnameU3Ek__BackingField_0)); }
inline String_t* get_U3CnameU3Ek__BackingField_0() const { return ___U3CnameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_0() { return &___U3CnameU3Ek__BackingField_0; }
inline void set_U3CnameU3Ek__BackingField_0(String_t* value)
{
___U3CnameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CdisplayNameU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___U3CdisplayNameU3Ek__BackingField_1)); }
inline String_t* get_U3CdisplayNameU3Ek__BackingField_1() const { return ___U3CdisplayNameU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CdisplayNameU3Ek__BackingField_1() { return &___U3CdisplayNameU3Ek__BackingField_1; }
inline void set_U3CdisplayNameU3Ek__BackingField_1(String_t* value)
{
___U3CdisplayNameU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayNameU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CtypeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___U3CtypeU3Ek__BackingField_2)); }
inline Type_t * get_U3CtypeU3Ek__BackingField_2() const { return ___U3CtypeU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CtypeU3Ek__BackingField_2() { return &___U3CtypeU3Ek__BackingField_2; }
inline void set_U3CtypeU3Ek__BackingField_2(Type_t * value)
{
___U3CtypeU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtypeU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CstateFormatU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___U3CstateFormatU3Ek__BackingField_3)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_U3CstateFormatU3Ek__BackingField_3() const { return ___U3CstateFormatU3Ek__BackingField_3; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_U3CstateFormatU3Ek__BackingField_3() { return &___U3CstateFormatU3Ek__BackingField_3; }
inline void set_U3CstateFormatU3Ek__BackingField_3(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___U3CstateFormatU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CstateSizeInBytesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___U3CstateSizeInBytesU3Ek__BackingField_4)); }
inline int32_t get_U3CstateSizeInBytesU3Ek__BackingField_4() const { return ___U3CstateSizeInBytesU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CstateSizeInBytesU3Ek__BackingField_4() { return &___U3CstateSizeInBytesU3Ek__BackingField_4; }
inline void set_U3CstateSizeInBytesU3Ek__BackingField_4(int32_t value)
{
___U3CstateSizeInBytesU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CextendsLayoutU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___U3CextendsLayoutU3Ek__BackingField_5)); }
inline String_t* get_U3CextendsLayoutU3Ek__BackingField_5() const { return ___U3CextendsLayoutU3Ek__BackingField_5; }
inline String_t** get_address_of_U3CextendsLayoutU3Ek__BackingField_5() { return &___U3CextendsLayoutU3Ek__BackingField_5; }
inline void set_U3CextendsLayoutU3Ek__BackingField_5(String_t* value)
{
___U3CextendsLayoutU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CextendsLayoutU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CupdateBeforeRenderU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___U3CupdateBeforeRenderU3Ek__BackingField_6)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_U3CupdateBeforeRenderU3Ek__BackingField_6() const { return ___U3CupdateBeforeRenderU3Ek__BackingField_6; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_U3CupdateBeforeRenderU3Ek__BackingField_6() { return &___U3CupdateBeforeRenderU3Ek__BackingField_6; }
inline void set_U3CupdateBeforeRenderU3Ek__BackingField_6(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___U3CupdateBeforeRenderU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_m_ControlCount_7() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___m_ControlCount_7)); }
inline int32_t get_m_ControlCount_7() const { return ___m_ControlCount_7; }
inline int32_t* get_address_of_m_ControlCount_7() { return &___m_ControlCount_7; }
inline void set_m_ControlCount_7(int32_t value)
{
___m_ControlCount_7 = value;
}
inline static int32_t get_offset_of_m_Controls_8() { return static_cast<int32_t>(offsetof(Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E, ___m_Controls_8)); }
inline ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE* get_m_Controls_8() const { return ___m_Controls_8; }
inline ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE** get_address_of_m_Controls_8() { return &___m_Controls_8; }
inline void set_m_Controls_8(ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE* value)
{
___m_Controls_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Controls_8), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Flags
struct Flags_tA3F44ADBCBCD055AA48A3F8CB4B8F78F7BA56365
{
public:
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/Flags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_tA3F44ADBCBCD055AA48A3F8CB4B8F78F7BA56365, ___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.InputSystem.Layouts.InputControlLayout/LayoutJsonNameAndDescriptorOnly
struct LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJsonNameAndDescriptorOnly::name
String_t* ___name_0;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJsonNameAndDescriptorOnly::extend
String_t* ___extend_1;
// System.String[] UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJsonNameAndDescriptorOnly::extendMultiple
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___extendMultiple_2;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/MatcherJson UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJsonNameAndDescriptorOnly::device
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2 ___device_3;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05, ___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);
}
inline static int32_t get_offset_of_extend_1() { return static_cast<int32_t>(offsetof(LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05, ___extend_1)); }
inline String_t* get_extend_1() const { return ___extend_1; }
inline String_t** get_address_of_extend_1() { return &___extend_1; }
inline void set_extend_1(String_t* value)
{
___extend_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extend_1), (void*)value);
}
inline static int32_t get_offset_of_extendMultiple_2() { return static_cast<int32_t>(offsetof(LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05, ___extendMultiple_2)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_extendMultiple_2() const { return ___extendMultiple_2; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_extendMultiple_2() { return &___extendMultiple_2; }
inline void set_extendMultiple_2(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___extendMultiple_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extendMultiple_2), (void*)value);
}
inline static int32_t get_offset_of_device_3() { return static_cast<int32_t>(offsetof(LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05, ___device_3)); }
inline MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2 get_device_3() const { return ___device_3; }
inline MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2 * get_address_of_device_3() { return &___device_3; }
inline void set_device_3(MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2 value)
{
___device_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___interface_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___interfaces_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___deviceClass_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___deviceClasses_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___manufacturer_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___manufacturers_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___product_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___products_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___version_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___versions_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___device_3))->___capabilities_10), (void*)NULL);
#endif
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJsonNameAndDescriptorOnly
struct LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05_marshaled_pinvoke
{
char* ___name_0;
char* ___extend_1;
char** ___extendMultiple_2;
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2_marshaled_pinvoke ___device_3;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutJsonNameAndDescriptorOnly
struct LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05_marshaled_com
{
Il2CppChar* ___name_0;
Il2CppChar* ___extend_1;
Il2CppChar** ___extendMultiple_2;
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2_marshaled_com ___device_3;
};
// UnityEngine.InputSystem.InputDevice/DeviceFlags
struct DeviceFlags_tA5AF72BF8629F5737F2487BEFA1E69B6C1B1B9E6
{
public:
// System.Int32 UnityEngine.InputSystem.InputDevice/DeviceFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DeviceFlags_tA5AF72BF8629F5737F2487BEFA1E69B6C1B1B9E6, ___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.InputSystem.LowLevel.InputEventTrace/DeviceInfo
struct DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_DeviceId
int32_t ___m_DeviceId_0;
// System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_Layout
String_t* ___m_Layout_1;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_StateFormat
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___m_StateFormat_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_StateSizeInBytes
int32_t ___m_StateSizeInBytes_3;
// System.String UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo::m_FullLayoutJson
String_t* ___m_FullLayoutJson_4;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23, ___m_DeviceId_0)); }
inline int32_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline int32_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(int32_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_Layout_1() { return static_cast<int32_t>(offsetof(DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23, ___m_Layout_1)); }
inline String_t* get_m_Layout_1() const { return ___m_Layout_1; }
inline String_t** get_address_of_m_Layout_1() { return &___m_Layout_1; }
inline void set_m_Layout_1(String_t* value)
{
___m_Layout_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Layout_1), (void*)value);
}
inline static int32_t get_offset_of_m_StateFormat_2() { return static_cast<int32_t>(offsetof(DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23, ___m_StateFormat_2)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_m_StateFormat_2() const { return ___m_StateFormat_2; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_m_StateFormat_2() { return &___m_StateFormat_2; }
inline void set_m_StateFormat_2(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___m_StateFormat_2 = value;
}
inline static int32_t get_offset_of_m_StateSizeInBytes_3() { return static_cast<int32_t>(offsetof(DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23, ___m_StateSizeInBytes_3)); }
inline int32_t get_m_StateSizeInBytes_3() const { return ___m_StateSizeInBytes_3; }
inline int32_t* get_address_of_m_StateSizeInBytes_3() { return &___m_StateSizeInBytes_3; }
inline void set_m_StateSizeInBytes_3(int32_t value)
{
___m_StateSizeInBytes_3 = value;
}
inline static int32_t get_offset_of_m_FullLayoutJson_4() { return static_cast<int32_t>(offsetof(DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23, ___m_FullLayoutJson_4)); }
inline String_t* get_m_FullLayoutJson_4() const { return ___m_FullLayoutJson_4; }
inline String_t** get_address_of_m_FullLayoutJson_4() { return &___m_FullLayoutJson_4; }
inline void set_m_FullLayoutJson_4(String_t* value)
{
___m_FullLayoutJson_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FullLayoutJson_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo
struct DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23_marshaled_pinvoke
{
int32_t ___m_DeviceId_0;
char* ___m_Layout_1;
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___m_StateFormat_2;
int32_t ___m_StateSizeInBytes_3;
char* ___m_FullLayoutJson_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventTrace/DeviceInfo
struct DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23_marshaled_com
{
int32_t ___m_DeviceId_0;
Il2CppChar* ___m_Layout_1;
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___m_StateFormat_2;
int32_t ___m_StateSizeInBytes_3;
Il2CppChar* ___m_FullLayoutJson_4;
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator
struct Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF : public RuntimeObject
{
public:
// UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_Trace
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 * ___m_Trace_0;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_ChangeCounter
int32_t ___m_ChangeCounter_1;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator::m_Current
InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 ___m_Current_2;
public:
inline static int32_t get_offset_of_m_Trace_0() { return static_cast<int32_t>(offsetof(Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF, ___m_Trace_0)); }
inline InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 * get_m_Trace_0() const { return ___m_Trace_0; }
inline InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 ** get_address_of_m_Trace_0() { return &___m_Trace_0; }
inline void set_m_Trace_0(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 * value)
{
___m_Trace_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Trace_0), (void*)value);
}
inline static int32_t get_offset_of_m_ChangeCounter_1() { return static_cast<int32_t>(offsetof(Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF, ___m_ChangeCounter_1)); }
inline int32_t get_m_ChangeCounter_1() const { return ___m_ChangeCounter_1; }
inline int32_t* get_address_of_m_ChangeCounter_1() { return &___m_ChangeCounter_1; }
inline void set_m_ChangeCounter_1(int32_t value)
{
___m_ChangeCounter_1 = value;
}
inline static int32_t get_offset_of_m_Current_2() { return static_cast<int32_t>(offsetof(Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF, ___m_Current_2)); }
inline InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 get_m_Current_2() const { return ___m_Current_2; }
inline InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 * get_address_of_m_Current_2() { return &___m_Current_2; }
inline void set_m_Current_2(InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 value)
{
___m_Current_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags
struct FileFlags_t7EDED89BD64C59BC93A21AC5D4C9E3D4833E9D40
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/FileFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileFlags_t7EDED89BD64C59BC93A21AC5D4C9E3D4833E9D40, ___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.InputSystem.InputSettings/UpdateMode
struct UpdateMode_t24E23B988EAE20B371D4C098BAC74337026333D6
{
public:
// System.Int32 UnityEngine.InputSystem.InputSettings/UpdateMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UpdateMode_t24E23B988EAE20B371D4C098BAC74337026333D6, ___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.InputSystem.LowLevel.InputStateHistory/RecordHeader
struct RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Double UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::time
double ___time_0;
};
#pragma pack(pop, tp)
struct
{
double ___time_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___version_1_OffsetPadding[8];
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::version
uint32_t ___version_1;
};
#pragma pack(pop, tp)
struct
{
char ___version_1_OffsetPadding_forAlignmentOnly[8];
uint32_t ___version_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___controlIndex_2_OffsetPadding[12];
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::controlIndex
int32_t ___controlIndex_2;
};
#pragma pack(pop, tp)
struct
{
char ___controlIndex_2_OffsetPadding_forAlignmentOnly[12];
int32_t ___controlIndex_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StateWithoutControlIndex_3_OffsetPadding[12];
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithoutControlIndex>e__FixedBuffer UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::m_StateWithoutControlIndex
U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114 ___m_StateWithoutControlIndex_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_StateWithoutControlIndex_3_OffsetPadding_forAlignmentOnly[12];
U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114 ___m_StateWithoutControlIndex_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StateWithControlIndex_4_OffsetPadding[16];
// UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader/<m_StateWithControlIndex>e__FixedBuffer UnityEngine.InputSystem.LowLevel.InputStateHistory/RecordHeader::m_StateWithControlIndex
U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166 ___m_StateWithControlIndex_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_StateWithControlIndex_4_OffsetPadding_forAlignmentOnly[16];
U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166 ___m_StateWithControlIndex_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_time_0() { return static_cast<int32_t>(offsetof(RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D, ___time_0)); }
inline double get_time_0() const { return ___time_0; }
inline double* get_address_of_time_0() { return &___time_0; }
inline void set_time_0(double value)
{
___time_0 = value;
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D, ___version_1)); }
inline uint32_t get_version_1() const { return ___version_1; }
inline uint32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(uint32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_controlIndex_2() { return static_cast<int32_t>(offsetof(RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D, ___controlIndex_2)); }
inline int32_t get_controlIndex_2() const { return ___controlIndex_2; }
inline int32_t* get_address_of_controlIndex_2() { return &___controlIndex_2; }
inline void set_controlIndex_2(int32_t value)
{
___controlIndex_2 = value;
}
inline static int32_t get_offset_of_m_StateWithoutControlIndex_3() { return static_cast<int32_t>(offsetof(RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D, ___m_StateWithoutControlIndex_3)); }
inline U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114 get_m_StateWithoutControlIndex_3() const { return ___m_StateWithoutControlIndex_3; }
inline U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114 * get_address_of_m_StateWithoutControlIndex_3() { return &___m_StateWithoutControlIndex_3; }
inline void set_m_StateWithoutControlIndex_3(U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114 value)
{
___m_StateWithoutControlIndex_3 = value;
}
inline static int32_t get_offset_of_m_StateWithControlIndex_4() { return static_cast<int32_t>(offsetof(RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D, ___m_StateWithControlIndex_4)); }
inline U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166 get_m_StateWithControlIndex_4() const { return ___m_StateWithControlIndex_4; }
inline U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166 * get_address_of_m_StateWithControlIndex_4() { return &___m_StateWithControlIndex_4; }
inline void set_m_StateWithControlIndex_4(U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166 value)
{
___m_StateWithControlIndex_4 = value;
}
};
// UnityEngine.InputSystem.Users.InputUser/CompareDevicesByUserAccount
struct CompareDevicesByUserAccount_t4B08B44539DF6B841E2E282B8EFC3561D9201357
{
public:
// UnityEngine.InputSystem.Users.InputUserAccountHandle UnityEngine.InputSystem.Users.InputUser/CompareDevicesByUserAccount::platformUserAccountHandle
InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 ___platformUserAccountHandle_0;
public:
inline static int32_t get_offset_of_platformUserAccountHandle_0() { return static_cast<int32_t>(offsetof(CompareDevicesByUserAccount_t4B08B44539DF6B841E2E282B8EFC3561D9201357, ___platformUserAccountHandle_0)); }
inline InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 get_platformUserAccountHandle_0() const { return ___platformUserAccountHandle_0; }
inline InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 * get_address_of_platformUserAccountHandle_0() { return &___platformUserAccountHandle_0; }
inline void set_platformUserAccountHandle_0(InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9 value)
{
___platformUserAccountHandle_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___platformUserAccountHandle_0))->___m_ApiName_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Users.InputUser/CompareDevicesByUserAccount
struct CompareDevicesByUserAccount_t4B08B44539DF6B841E2E282B8EFC3561D9201357_marshaled_pinvoke
{
InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9_marshaled_pinvoke ___platformUserAccountHandle_0;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Users.InputUser/CompareDevicesByUserAccount
struct CompareDevicesByUserAccount_t4B08B44539DF6B841E2E282B8EFC3561D9201357_marshaled_com
{
InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9_marshaled_com ___platformUserAccountHandle_0;
};
// UnityEngine.InputSystem.Users.InputUser/UserFlags
struct UserFlags_t375A9018783898F7DB7B6519CB7B9825D01E8F0B
{
public:
// System.Int32 UnityEngine.InputSystem.Users.InputUser/UserFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UserFlags_t375A9018783898F7DB7B6519CB7B9825D01E8F0B, ___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.InputSystem.LowLevel.JoystickState/Button
struct Button_tA7DBF9F356F2CC9395B76D592AE705213318A86C
{
public:
// System.Int32 UnityEngine.InputSystem.LowLevel.JoystickState/Button::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Button_tA7DBF9F356F2CC9395B76D592AE705213318A86C, ___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.InputSystem.Utilities.JsonParser/JsonString
struct JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80
{
public:
// UnityEngine.InputSystem.Utilities.Substring UnityEngine.InputSystem.Utilities.JsonParser/JsonString::text
Substring_t67485753F4F24B456382D330F071E9A152C4E473 ___text_0;
// System.Boolean UnityEngine.InputSystem.Utilities.JsonParser/JsonString::hasEscapes
bool ___hasEscapes_1;
public:
inline static int32_t get_offset_of_text_0() { return static_cast<int32_t>(offsetof(JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80, ___text_0)); }
inline Substring_t67485753F4F24B456382D330F071E9A152C4E473 get_text_0() const { return ___text_0; }
inline Substring_t67485753F4F24B456382D330F071E9A152C4E473 * get_address_of_text_0() { return &___text_0; }
inline void set_text_0(Substring_t67485753F4F24B456382D330F071E9A152C4E473 value)
{
___text_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___text_0))->___m_String_0), (void*)NULL);
}
inline static int32_t get_offset_of_hasEscapes_1() { return static_cast<int32_t>(offsetof(JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80, ___hasEscapes_1)); }
inline bool get_hasEscapes_1() const { return ___hasEscapes_1; }
inline bool* get_address_of_hasEscapes_1() { return &___hasEscapes_1; }
inline void set_hasEscapes_1(bool value)
{
___hasEscapes_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonString
struct JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80_marshaled_pinvoke
{
Substring_t67485753F4F24B456382D330F071E9A152C4E473_marshaled_pinvoke ___text_0;
int32_t ___hasEscapes_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonString
struct JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80_marshaled_com
{
Substring_t67485753F4F24B456382D330F071E9A152C4E473_marshaled_com ___text_0;
int32_t ___hasEscapes_1;
};
// UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType
struct JsonValueType_t39B788AAB8FE80D9F5C62AF19458D4E9E5FA2061
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonValueType_t39B788AAB8FE80D9F5C62AF19458D4E9E5FA2061, ___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.SimpleWeb.Log/Levels
struct Levels_t3EA1E18A80763E10277F9D1CD0337CD9FA317995
{
public:
// System.Int32 Mirror.SimpleWeb.Log/Levels::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Levels_t3EA1E18A80763E10277F9D1CD0337CD9FA317995, ___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.InputSystem.Interactions.MultiTapInteraction/TapPhase
struct TapPhase_tDE590EEA44F1B5939E7BE0232DD118B760450375
{
public:
// System.Int32 UnityEngine.InputSystem.Interactions.MultiTapInteraction/TapPhase::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TapPhase_tDE590EEA44F1B5939E7BE0232DD118B760450375, ___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.XR.WindowsMR.Native/UnitySubsystemErrorCode
struct UnitySubsystemErrorCode_tAA5F8843DC35694D214A6CE631CD3CD5382AD846
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.Native/UnitySubsystemErrorCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnitySubsystemErrorCode_tAA5F8843DC35694D214A6CE631CD3CD5382AD846, ___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.XR.WindowsMR.NativeTypes/SpatialLocatability
struct SpatialLocatability_t8CF515124A8D73BEDCFA7133166CF5DAB300B2DD
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.NativeTypes/SpatialLocatability::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpatialLocatability_t8CF515124A8D73BEDCFA7133166CF5DAB300B2DD, ___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.Experimental.NetworkRigidbody/ClientSyncState
struct ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074 : public RuntimeObject
{
public:
// System.Single Mirror.Experimental.NetworkRigidbody/ClientSyncState::nextSyncTime
float ___nextSyncTime_0;
// UnityEngine.Vector3 Mirror.Experimental.NetworkRigidbody/ClientSyncState::velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_1;
// UnityEngine.Vector3 Mirror.Experimental.NetworkRigidbody/ClientSyncState::angularVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___angularVelocity_2;
// System.Boolean Mirror.Experimental.NetworkRigidbody/ClientSyncState::isKinematic
bool ___isKinematic_3;
// System.Boolean Mirror.Experimental.NetworkRigidbody/ClientSyncState::useGravity
bool ___useGravity_4;
// System.Single Mirror.Experimental.NetworkRigidbody/ClientSyncState::drag
float ___drag_5;
// System.Single Mirror.Experimental.NetworkRigidbody/ClientSyncState::angularDrag
float ___angularDrag_6;
public:
inline static int32_t get_offset_of_nextSyncTime_0() { return static_cast<int32_t>(offsetof(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074, ___nextSyncTime_0)); }
inline float get_nextSyncTime_0() const { return ___nextSyncTime_0; }
inline float* get_address_of_nextSyncTime_0() { return &___nextSyncTime_0; }
inline void set_nextSyncTime_0(float value)
{
___nextSyncTime_0 = value;
}
inline static int32_t get_offset_of_velocity_1() { return static_cast<int32_t>(offsetof(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074, ___velocity_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_1() const { return ___velocity_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_1() { return &___velocity_1; }
inline void set_velocity_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___velocity_1 = value;
}
inline static int32_t get_offset_of_angularVelocity_2() { return static_cast<int32_t>(offsetof(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074, ___angularVelocity_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_angularVelocity_2() const { return ___angularVelocity_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_angularVelocity_2() { return &___angularVelocity_2; }
inline void set_angularVelocity_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___angularVelocity_2 = value;
}
inline static int32_t get_offset_of_isKinematic_3() { return static_cast<int32_t>(offsetof(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074, ___isKinematic_3)); }
inline bool get_isKinematic_3() const { return ___isKinematic_3; }
inline bool* get_address_of_isKinematic_3() { return &___isKinematic_3; }
inline void set_isKinematic_3(bool value)
{
___isKinematic_3 = value;
}
inline static int32_t get_offset_of_useGravity_4() { return static_cast<int32_t>(offsetof(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074, ___useGravity_4)); }
inline bool get_useGravity_4() const { return ___useGravity_4; }
inline bool* get_address_of_useGravity_4() { return &___useGravity_4; }
inline void set_useGravity_4(bool value)
{
___useGravity_4 = value;
}
inline static int32_t get_offset_of_drag_5() { return static_cast<int32_t>(offsetof(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074, ___drag_5)); }
inline float get_drag_5() const { return ___drag_5; }
inline float* get_address_of_drag_5() { return &___drag_5; }
inline void set_drag_5(float value)
{
___drag_5 = value;
}
inline static int32_t get_offset_of_angularDrag_6() { return static_cast<int32_t>(offsetof(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074, ___angularDrag_6)); }
inline float get_angularDrag_6() const { return ___angularDrag_6; }
inline float* get_address_of_angularDrag_6() { return &___angularDrag_6; }
inline void set_angularDrag_6(float value)
{
___angularDrag_6 = value;
}
};
// Mirror.Experimental.NetworkRigidbody2D/ClientSyncState
struct ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98 : public RuntimeObject
{
public:
// System.Single Mirror.Experimental.NetworkRigidbody2D/ClientSyncState::nextSyncTime
float ___nextSyncTime_0;
// UnityEngine.Vector2 Mirror.Experimental.NetworkRigidbody2D/ClientSyncState::velocity
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___velocity_1;
// System.Single Mirror.Experimental.NetworkRigidbody2D/ClientSyncState::angularVelocity
float ___angularVelocity_2;
// System.Boolean Mirror.Experimental.NetworkRigidbody2D/ClientSyncState::isKinematic
bool ___isKinematic_3;
// System.Single Mirror.Experimental.NetworkRigidbody2D/ClientSyncState::gravityScale
float ___gravityScale_4;
// System.Single Mirror.Experimental.NetworkRigidbody2D/ClientSyncState::drag
float ___drag_5;
// System.Single Mirror.Experimental.NetworkRigidbody2D/ClientSyncState::angularDrag
float ___angularDrag_6;
public:
inline static int32_t get_offset_of_nextSyncTime_0() { return static_cast<int32_t>(offsetof(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98, ___nextSyncTime_0)); }
inline float get_nextSyncTime_0() const { return ___nextSyncTime_0; }
inline float* get_address_of_nextSyncTime_0() { return &___nextSyncTime_0; }
inline void set_nextSyncTime_0(float value)
{
___nextSyncTime_0 = value;
}
inline static int32_t get_offset_of_velocity_1() { return static_cast<int32_t>(offsetof(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98, ___velocity_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_velocity_1() const { return ___velocity_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_velocity_1() { return &___velocity_1; }
inline void set_velocity_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___velocity_1 = value;
}
inline static int32_t get_offset_of_angularVelocity_2() { return static_cast<int32_t>(offsetof(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98, ___angularVelocity_2)); }
inline float get_angularVelocity_2() const { return ___angularVelocity_2; }
inline float* get_address_of_angularVelocity_2() { return &___angularVelocity_2; }
inline void set_angularVelocity_2(float value)
{
___angularVelocity_2 = value;
}
inline static int32_t get_offset_of_isKinematic_3() { return static_cast<int32_t>(offsetof(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98, ___isKinematic_3)); }
inline bool get_isKinematic_3() const { return ___isKinematic_3; }
inline bool* get_address_of_isKinematic_3() { return &___isKinematic_3; }
inline void set_isKinematic_3(bool value)
{
___isKinematic_3 = value;
}
inline static int32_t get_offset_of_gravityScale_4() { return static_cast<int32_t>(offsetof(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98, ___gravityScale_4)); }
inline float get_gravityScale_4() const { return ___gravityScale_4; }
inline float* get_address_of_gravityScale_4() { return &___gravityScale_4; }
inline void set_gravityScale_4(float value)
{
___gravityScale_4 = value;
}
inline static int32_t get_offset_of_drag_5() { return static_cast<int32_t>(offsetof(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98, ___drag_5)); }
inline float get_drag_5() const { return ___drag_5; }
inline float* get_address_of_drag_5() { return &___drag_5; }
inline void set_drag_5(float value)
{
___drag_5 = value;
}
inline static int32_t get_offset_of_angularDrag_6() { return static_cast<int32_t>(offsetof(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98, ___angularDrag_6)); }
inline float get_angularDrag_6() const { return ___angularDrag_6; }
inline float* get_address_of_angularDrag_6() { return &___angularDrag_6; }
inline void set_angularDrag_6(float value)
{
___angularDrag_6 = value;
}
};
// Mirror.NetworkTransformBase/DataPoint
struct DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 : public RuntimeObject
{
public:
// System.Single Mirror.NetworkTransformBase/DataPoint::timeStamp
float ___timeStamp_0;
// UnityEngine.Vector3 Mirror.NetworkTransformBase/DataPoint::localPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___localPosition_1;
// UnityEngine.Quaternion Mirror.NetworkTransformBase/DataPoint::localRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___localRotation_2;
// UnityEngine.Vector3 Mirror.NetworkTransformBase/DataPoint::localScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___localScale_3;
// System.Single Mirror.NetworkTransformBase/DataPoint::movementSpeed
float ___movementSpeed_4;
public:
inline static int32_t get_offset_of_timeStamp_0() { return static_cast<int32_t>(offsetof(DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003, ___timeStamp_0)); }
inline float get_timeStamp_0() const { return ___timeStamp_0; }
inline float* get_address_of_timeStamp_0() { return &___timeStamp_0; }
inline void set_timeStamp_0(float value)
{
___timeStamp_0 = value;
}
inline static int32_t get_offset_of_localPosition_1() { return static_cast<int32_t>(offsetof(DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003, ___localPosition_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_localPosition_1() const { return ___localPosition_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_localPosition_1() { return &___localPosition_1; }
inline void set_localPosition_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___localPosition_1 = value;
}
inline static int32_t get_offset_of_localRotation_2() { return static_cast<int32_t>(offsetof(DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003, ___localRotation_2)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_localRotation_2() const { return ___localRotation_2; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_localRotation_2() { return &___localRotation_2; }
inline void set_localRotation_2(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___localRotation_2 = value;
}
inline static int32_t get_offset_of_localScale_3() { return static_cast<int32_t>(offsetof(DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003, ___localScale_3)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_localScale_3() const { return ___localScale_3; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_localScale_3() { return &___localScale_3; }
inline void set_localScale_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___localScale_3 = value;
}
inline static int32_t get_offset_of_movementSpeed_4() { return static_cast<int32_t>(offsetof(DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003, ___movementSpeed_4)); }
inline float get_movementSpeed_4() const { return ___movementSpeed_4; }
inline float* get_address_of_movementSpeed_4() { return &___movementSpeed_4; }
inline void set_movementSpeed_4(float value)
{
___movementSpeed_4 = value;
}
};
// Mirror.Experimental.NetworkTransformBase/DataPoint
struct DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7
{
public:
// System.Single Mirror.Experimental.NetworkTransformBase/DataPoint::timeStamp
float ___timeStamp_0;
// UnityEngine.Vector3 Mirror.Experimental.NetworkTransformBase/DataPoint::localPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___localPosition_1;
// UnityEngine.Quaternion Mirror.Experimental.NetworkTransformBase/DataPoint::localRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___localRotation_2;
// UnityEngine.Vector3 Mirror.Experimental.NetworkTransformBase/DataPoint::localScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___localScale_3;
// System.Single Mirror.Experimental.NetworkTransformBase/DataPoint::movementSpeed
float ___movementSpeed_4;
public:
inline static int32_t get_offset_of_timeStamp_0() { return static_cast<int32_t>(offsetof(DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7, ___timeStamp_0)); }
inline float get_timeStamp_0() const { return ___timeStamp_0; }
inline float* get_address_of_timeStamp_0() { return &___timeStamp_0; }
inline void set_timeStamp_0(float value)
{
___timeStamp_0 = value;
}
inline static int32_t get_offset_of_localPosition_1() { return static_cast<int32_t>(offsetof(DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7, ___localPosition_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_localPosition_1() const { return ___localPosition_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_localPosition_1() { return &___localPosition_1; }
inline void set_localPosition_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___localPosition_1 = value;
}
inline static int32_t get_offset_of_localRotation_2() { return static_cast<int32_t>(offsetof(DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7, ___localRotation_2)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_localRotation_2() const { return ___localRotation_2; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_localRotation_2() { return &___localRotation_2; }
inline void set_localRotation_2(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___localRotation_2 = value;
}
inline static int32_t get_offset_of_localScale_3() { return static_cast<int32_t>(offsetof(DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7, ___localScale_3)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_localScale_3() const { return ___localScale_3; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_localScale_3() { return &___localScale_3; }
inline void set_localScale_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___localScale_3 = value;
}
inline static int32_t get_offset_of_movementSpeed_4() { return static_cast<int32_t>(offsetof(DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7, ___movementSpeed_4)); }
inline float get_movementSpeed_4() const { return ___movementSpeed_4; }
inline float* get_address_of_movementSpeed_4() { return &___movementSpeed_4; }
inline void set_movementSpeed_4(float value)
{
___movementSpeed_4 = value;
}
};
// Dissonance.Audio.Codecs.Opus.OpusNative/Application
struct Application_t5D65176B8EC7CE70525ABC2749A233751A56BEE8
{
public:
// System.Int32 Dissonance.Audio.Codecs.Opus.OpusNative/Application::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Application_t5D65176B8EC7CE70525ABC2749A233751A56BEE8, ___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;
}
};
// Dissonance.Audio.Codecs.Opus.OpusNative/Bandwidth
struct Bandwidth_t005B3CFF378DD8EFD6AFB21749EE36F500767A7C
{
public:
// System.Int32 Dissonance.Audio.Codecs.Opus.OpusNative/Bandwidth::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Bandwidth_t005B3CFF378DD8EFD6AFB21749EE36F500767A7C, ___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;
}
};
// Dissonance.Audio.Codecs.Opus.OpusNative/Ctl
struct Ctl_t31FE4D70ADF1AD63D64AF5E7C0C37DDCAC429FED
{
public:
// System.Int32 Dissonance.Audio.Codecs.Opus.OpusNative/Ctl::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Ctl_t31FE4D70ADF1AD63D64AF5E7C0C37DDCAC429FED, ___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;
}
};
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusErrors
struct OpusErrors_tC1B6902F7C42A9718A6584FFF953EDCC58D75C8A
{
public:
// System.Int32 Dissonance.Audio.Codecs.Opus.OpusNative/OpusErrors::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OpusErrors_tC1B6902F7C42A9718A6584FFF953EDCC58D75C8A, ___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.ParticleSystem/Particle
struct Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1
{
public:
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Position_0;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Velocity_1;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AnimatedVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AnimatedVelocity_2;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_InitialVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_InitialVelocity_3;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AxisOfRotation
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AxisOfRotation_4;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Rotation
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Rotation_5;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AngularVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AngularVelocity_6;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_StartSize
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_StartSize_7;
// UnityEngine.Color32 UnityEngine.ParticleSystem/Particle::m_StartColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___m_StartColor_8;
// System.UInt32 UnityEngine.ParticleSystem/Particle::m_RandomSeed
uint32_t ___m_RandomSeed_9;
// System.UInt32 UnityEngine.ParticleSystem/Particle::m_ParentRandomSeed
uint32_t ___m_ParentRandomSeed_10;
// System.Single UnityEngine.ParticleSystem/Particle::m_Lifetime
float ___m_Lifetime_11;
// System.Single UnityEngine.ParticleSystem/Particle::m_StartLifetime
float ___m_StartLifetime_12;
// System.Int32 UnityEngine.ParticleSystem/Particle::m_MeshIndex
int32_t ___m_MeshIndex_13;
// System.Single UnityEngine.ParticleSystem/Particle::m_EmitAccumulator0
float ___m_EmitAccumulator0_14;
// System.Single UnityEngine.ParticleSystem/Particle::m_EmitAccumulator1
float ___m_EmitAccumulator1_15;
// System.UInt32 UnityEngine.ParticleSystem/Particle::m_Flags
uint32_t ___m_Flags_16;
public:
inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Position_0() const { return ___m_Position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Position_0() { return &___m_Position_0; }
inline void set_m_Position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Position_0 = value;
}
inline static int32_t get_offset_of_m_Velocity_1() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Velocity_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Velocity_1() const { return ___m_Velocity_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Velocity_1() { return &___m_Velocity_1; }
inline void set_m_Velocity_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Velocity_1 = value;
}
inline static int32_t get_offset_of_m_AnimatedVelocity_2() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_AnimatedVelocity_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AnimatedVelocity_2() const { return ___m_AnimatedVelocity_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AnimatedVelocity_2() { return &___m_AnimatedVelocity_2; }
inline void set_m_AnimatedVelocity_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AnimatedVelocity_2 = value;
}
inline static int32_t get_offset_of_m_InitialVelocity_3() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_InitialVelocity_3)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_InitialVelocity_3() const { return ___m_InitialVelocity_3; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_InitialVelocity_3() { return &___m_InitialVelocity_3; }
inline void set_m_InitialVelocity_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_InitialVelocity_3 = value;
}
inline static int32_t get_offset_of_m_AxisOfRotation_4() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_AxisOfRotation_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AxisOfRotation_4() const { return ___m_AxisOfRotation_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AxisOfRotation_4() { return &___m_AxisOfRotation_4; }
inline void set_m_AxisOfRotation_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AxisOfRotation_4 = value;
}
inline static int32_t get_offset_of_m_Rotation_5() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Rotation_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Rotation_5() const { return ___m_Rotation_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Rotation_5() { return &___m_Rotation_5; }
inline void set_m_Rotation_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Rotation_5 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_6() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_AngularVelocity_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AngularVelocity_6() const { return ___m_AngularVelocity_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AngularVelocity_6() { return &___m_AngularVelocity_6; }
inline void set_m_AngularVelocity_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AngularVelocity_6 = value;
}
inline static int32_t get_offset_of_m_StartSize_7() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_StartSize_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_StartSize_7() const { return ___m_StartSize_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_StartSize_7() { return &___m_StartSize_7; }
inline void set_m_StartSize_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_StartSize_7 = value;
}
inline static int32_t get_offset_of_m_StartColor_8() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_StartColor_8)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_m_StartColor_8() const { return ___m_StartColor_8; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_m_StartColor_8() { return &___m_StartColor_8; }
inline void set_m_StartColor_8(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___m_StartColor_8 = value;
}
inline static int32_t get_offset_of_m_RandomSeed_9() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_RandomSeed_9)); }
inline uint32_t get_m_RandomSeed_9() const { return ___m_RandomSeed_9; }
inline uint32_t* get_address_of_m_RandomSeed_9() { return &___m_RandomSeed_9; }
inline void set_m_RandomSeed_9(uint32_t value)
{
___m_RandomSeed_9 = value;
}
inline static int32_t get_offset_of_m_ParentRandomSeed_10() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_ParentRandomSeed_10)); }
inline uint32_t get_m_ParentRandomSeed_10() const { return ___m_ParentRandomSeed_10; }
inline uint32_t* get_address_of_m_ParentRandomSeed_10() { return &___m_ParentRandomSeed_10; }
inline void set_m_ParentRandomSeed_10(uint32_t value)
{
___m_ParentRandomSeed_10 = value;
}
inline static int32_t get_offset_of_m_Lifetime_11() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Lifetime_11)); }
inline float get_m_Lifetime_11() const { return ___m_Lifetime_11; }
inline float* get_address_of_m_Lifetime_11() { return &___m_Lifetime_11; }
inline void set_m_Lifetime_11(float value)
{
___m_Lifetime_11 = value;
}
inline static int32_t get_offset_of_m_StartLifetime_12() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_StartLifetime_12)); }
inline float get_m_StartLifetime_12() const { return ___m_StartLifetime_12; }
inline float* get_address_of_m_StartLifetime_12() { return &___m_StartLifetime_12; }
inline void set_m_StartLifetime_12(float value)
{
___m_StartLifetime_12 = value;
}
inline static int32_t get_offset_of_m_MeshIndex_13() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_MeshIndex_13)); }
inline int32_t get_m_MeshIndex_13() const { return ___m_MeshIndex_13; }
inline int32_t* get_address_of_m_MeshIndex_13() { return &___m_MeshIndex_13; }
inline void set_m_MeshIndex_13(int32_t value)
{
___m_MeshIndex_13 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator0_14() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_EmitAccumulator0_14)); }
inline float get_m_EmitAccumulator0_14() const { return ___m_EmitAccumulator0_14; }
inline float* get_address_of_m_EmitAccumulator0_14() { return &___m_EmitAccumulator0_14; }
inline void set_m_EmitAccumulator0_14(float value)
{
___m_EmitAccumulator0_14 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator1_15() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_EmitAccumulator1_15)); }
inline float get_m_EmitAccumulator1_15() const { return ___m_EmitAccumulator1_15; }
inline float* get_address_of_m_EmitAccumulator1_15() { return &___m_EmitAccumulator1_15; }
inline void set_m_EmitAccumulator1_15(float value)
{
___m_EmitAccumulator1_15 = value;
}
inline static int32_t get_offset_of_m_Flags_16() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Flags_16)); }
inline uint32_t get_m_Flags_16() const { return ___m_Flags_16; }
inline uint32_t* get_address_of_m_Flags_16() { return &___m_Flags_16; }
inline void set_m_Flags_16(uint32_t value)
{
___m_Flags_16 = value;
}
};
// UnityEngine.InputSystem.PlayerInput/ControlsChangedEvent
struct ControlsChangedEvent_tD7A83A666777246B9B22B47348E25EB613C2769F : public UnityEvent_1_t5256CDE7A58AD7D6F156F53EB8E692F61A9FB2B0
{
public:
public:
};
// UnityEngine.InputSystem.PlayerInput/DeviceLostEvent
struct DeviceLostEvent_tF3C401927234A694F690FA685FCAE477D37FC2E9 : public UnityEvent_1_t5256CDE7A58AD7D6F156F53EB8E692F61A9FB2B0
{
public:
public:
};
// UnityEngine.InputSystem.PlayerInput/DeviceRegainedEvent
struct DeviceRegainedEvent_t94948DD31F91C3CBB27954D00A04B5F49DBC9676 : public UnityEvent_1_t5256CDE7A58AD7D6F156F53EB8E692F61A9FB2B0
{
public:
public:
};
// UnityEngine.InputSystem.PlayerInputManager/PlayerJoinedEvent
struct PlayerJoinedEvent_tE262B40C1032F1DFCA9AAD89AB20E69CA2CBE3F1 : public UnityEvent_1_t5256CDE7A58AD7D6F156F53EB8E692F61A9FB2B0
{
public:
public:
};
// UnityEngine.InputSystem.PlayerInputManager/PlayerLeftEvent
struct PlayerLeftEvent_tE22FB60A78C639453B4A023A35E0D5A7D2B2C6B2 : public UnityEvent_1_t5256CDE7A58AD7D6F156F53EB8E692F61A9FB2B0
{
public:
public:
};
// UnityEngine.EventSystems.PointerEventData/FramePressState
struct FramePressState_t4BB461B7704D7F72519B36A0C8B3370AB302E7A7
{
public:
// System.Int32 UnityEngine.EventSystems.PointerEventData/FramePressState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FramePressState_t4BB461B7704D7F72519B36A0C8B3370AB302E7A7, ___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.EventSystems.PointerEventData/InputButton
struct InputButton_tA5409FE587ADC841D2BF80835D04074A89C59A9D
{
public:
// System.Int32 UnityEngine.EventSystems.PointerEventData/InputButton::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputButton_tA5409FE587ADC841D2BF80835D04074A89C59A9D, ___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.InputSystem.LowLevel.QueryPairedUserAccountCommand/Result
struct Result_tD4081CE96CD4649DF45DEB74E40A070EED04EB1A
{
public:
// System.Int64 UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/Result::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Result_tD4081CE96CD4649DF45DEB74E40A070EED04EB1A, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// UnityEngine.RemoteConfigSettingsHelper/Tag
struct Tag_tF98827947FA5E3148A566C444B306A969C5E371A
{
public:
// System.Int32 UnityEngine.RemoteConfigSettingsHelper/Tag::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Tag_tF98827947FA5E3148A566C444B306A969C5E371A, ___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.SpatialHashingInterestManagement/CheckMethod
struct CheckMethod_t6698F53126A5E7D171968189F856A4D2E73F8930
{
public:
// System.Int32 Mirror.SpatialHashingInterestManagement/CheckMethod::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CheckMethod_t6698F53126A5E7D171968189F856A4D2E73F8930, ___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.InputSystem.Utilities.StringHelpers/<Tokenize>d__8
struct U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Tokenize>d__8::<>1__state
int32_t ___U3CU3E1__state_0;
// UnityEngine.InputSystem.Utilities.Substring UnityEngine.InputSystem.Utilities.StringHelpers/<Tokenize>d__8::<>2__current
Substring_t67485753F4F24B456382D330F071E9A152C4E473 ___U3CU3E2__current_1;
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Tokenize>d__8::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.String UnityEngine.InputSystem.Utilities.StringHelpers/<Tokenize>d__8::str
String_t* ___str_3;
// System.String UnityEngine.InputSystem.Utilities.StringHelpers/<Tokenize>d__8::<>3__str
String_t* ___U3CU3E3__str_4;
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Tokenize>d__8::<length>5__2
int32_t ___U3ClengthU3E5__2_5;
// System.Int32 UnityEngine.InputSystem.Utilities.StringHelpers/<Tokenize>d__8::<endPos>5__3
int32_t ___U3CendPosU3E5__3_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753, ___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(U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753, ___U3CU3E2__current_1)); }
inline Substring_t67485753F4F24B456382D330F071E9A152C4E473 get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline Substring_t67485753F4F24B456382D330F071E9A152C4E473 * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(Substring_t67485753F4F24B456382D330F071E9A152C4E473 value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___m_String_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_str_3() { return static_cast<int32_t>(offsetof(U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753, ___str_3)); }
inline String_t* get_str_3() const { return ___str_3; }
inline String_t** get_address_of_str_3() { return &___str_3; }
inline void set_str_3(String_t* value)
{
___str_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___str_3), (void*)value);
}
inline static int32_t get_offset_of_U3CU3E3__str_4() { return static_cast<int32_t>(offsetof(U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753, ___U3CU3E3__str_4)); }
inline String_t* get_U3CU3E3__str_4() const { return ___U3CU3E3__str_4; }
inline String_t** get_address_of_U3CU3E3__str_4() { return &___U3CU3E3__str_4; }
inline void set_U3CU3E3__str_4(String_t* value)
{
___U3CU3E3__str_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E3__str_4), (void*)value);
}
inline static int32_t get_offset_of_U3ClengthU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753, ___U3ClengthU3E5__2_5)); }
inline int32_t get_U3ClengthU3E5__2_5() const { return ___U3ClengthU3E5__2_5; }
inline int32_t* get_address_of_U3ClengthU3E5__2_5() { return &___U3ClengthU3E5__2_5; }
inline void set_U3ClengthU3E5__2_5(int32_t value)
{
___U3ClengthU3E5__2_5 = value;
}
inline static int32_t get_offset_of_U3CendPosU3E5__3_6() { return static_cast<int32_t>(offsetof(U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753, ___U3CendPosU3E5__3_6)); }
inline int32_t get_U3CendPosU3E5__3_6() const { return ___U3CendPosU3E5__3_6; }
inline int32_t* get_address_of_U3CendPosU3E5__3_6() { return &___U3CendPosU3E5__3_6; }
inline void set_U3CendPosU3E5__3_6(int32_t value)
{
___U3CendPosU3E5__3_6 = value;
}
};
// UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState/Button
struct Button_t7B7E9C4E9B39CBC9F6476AB00B4D11928F69DCDC
{
public:
// System.Int32 UnityEngine.InputSystem.Switch.LowLevel.SwitchProControllerHIDInputState/Button::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Button_t7B7E9C4E9B39CBC9F6476AB00B4D11928F69DCDC, ___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.TerrainData/BoundaryValueType
struct BoundaryValueType_t5B5317FD7A95A68B0FA9B3DD30EB5CF9E3E6883D
{
public:
// System.Int32 UnityEngine.TerrainData/BoundaryValueType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BoundaryValueType_t5B5317FD7A95A68B0FA9B3DD30EB5CF9E3E6883D, ___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.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState
struct ExtraDataPerTouchState_t7FF50463670E6181F4A2C0E2E69E04C723E777D4
{
public:
// UnityEngine.Vector2 UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState::accumulatedDelta
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___accumulatedDelta_0;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState::updateStepCount
uint32_t ___updateStepCount_1;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch/ExtraDataPerTouchState::uniqueId
uint32_t ___uniqueId_2;
public:
inline static int32_t get_offset_of_accumulatedDelta_0() { return static_cast<int32_t>(offsetof(ExtraDataPerTouchState_t7FF50463670E6181F4A2C0E2E69E04C723E777D4, ___accumulatedDelta_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_accumulatedDelta_0() const { return ___accumulatedDelta_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_accumulatedDelta_0() { return &___accumulatedDelta_0; }
inline void set_accumulatedDelta_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___accumulatedDelta_0 = value;
}
inline static int32_t get_offset_of_updateStepCount_1() { return static_cast<int32_t>(offsetof(ExtraDataPerTouchState_t7FF50463670E6181F4A2C0E2E69E04C723E777D4, ___updateStepCount_1)); }
inline uint32_t get_updateStepCount_1() const { return ___updateStepCount_1; }
inline uint32_t* get_address_of_updateStepCount_1() { return &___updateStepCount_1; }
inline void set_updateStepCount_1(uint32_t value)
{
___updateStepCount_1 = value;
}
inline static int32_t get_offset_of_uniqueId_2() { return static_cast<int32_t>(offsetof(ExtraDataPerTouchState_t7FF50463670E6181F4A2C0E2E69E04C723E777D4, ___uniqueId_2)); }
inline uint32_t get_uniqueId_2() const { return ___uniqueId_2; }
inline uint32_t* get_address_of_uniqueId_2() { return &___uniqueId_2; }
inline void set_uniqueId_2(uint32_t value)
{
___uniqueId_2 = value;
}
};
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator
struct Enumerator_tC6C4D7C3C654077A7E2618DF6B3C95EF0F5E32A2 : public RuntimeObject
{
public:
// UnityEngine.InputSystem.EnhancedTouch.TouchHistory UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::m_Owner
TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0 ___m_Owner_0;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchHistory/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Owner_0() { return static_cast<int32_t>(offsetof(Enumerator_tC6C4D7C3C654077A7E2618DF6B3C95EF0F5E32A2, ___m_Owner_0)); }
inline TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0 get_m_Owner_0() const { return ___m_Owner_0; }
inline TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0 * get_address_of_m_Owner_0() { return &___m_Owner_0; }
inline void set_m_Owner_0(TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0 value)
{
___m_Owner_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Owner_0))->___m_History_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Owner_0))->___m_Finger_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC6C4D7C3C654077A7E2618DF6B3C95EF0F5E32A2, ___m_Index_1)); }
inline int32_t get_m_Index_1() const { return ___m_Index_1; }
inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; }
inline void set_m_Index_1(int32_t value)
{
___m_Index_1 = value;
}
};
// UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData
struct RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E
{
public:
// UnityEngine.UI.Graphic UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData::<graphic>k__BackingField
Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___U3CgraphicU3Ek__BackingField_0;
// UnityEngine.Vector3 UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData::<worldHitPosition>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CworldHitPositionU3Ek__BackingField_1;
// UnityEngine.Vector2 UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData::<screenPosition>k__BackingField
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CscreenPositionU3Ek__BackingField_2;
// System.Single UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData::<distance>k__BackingField
float ___U3CdistanceU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CgraphicU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E, ___U3CgraphicU3Ek__BackingField_0)); }
inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * get_U3CgraphicU3Ek__BackingField_0() const { return ___U3CgraphicU3Ek__BackingField_0; }
inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 ** get_address_of_U3CgraphicU3Ek__BackingField_0() { return &___U3CgraphicU3Ek__BackingField_0; }
inline void set_U3CgraphicU3Ek__BackingField_0(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * value)
{
___U3CgraphicU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgraphicU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CworldHitPositionU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E, ___U3CworldHitPositionU3Ek__BackingField_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CworldHitPositionU3Ek__BackingField_1() const { return ___U3CworldHitPositionU3Ek__BackingField_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CworldHitPositionU3Ek__BackingField_1() { return &___U3CworldHitPositionU3Ek__BackingField_1; }
inline void set_U3CworldHitPositionU3Ek__BackingField_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CworldHitPositionU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CscreenPositionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E, ___U3CscreenPositionU3Ek__BackingField_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_U3CscreenPositionU3Ek__BackingField_2() const { return ___U3CscreenPositionU3Ek__BackingField_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_U3CscreenPositionU3Ek__BackingField_2() { return &___U3CscreenPositionU3Ek__BackingField_2; }
inline void set_U3CscreenPositionU3Ek__BackingField_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___U3CscreenPositionU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CdistanceU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E, ___U3CdistanceU3Ek__BackingField_3)); }
inline float get_U3CdistanceU3Ek__BackingField_3() const { return ___U3CdistanceU3Ek__BackingField_3; }
inline float* get_address_of_U3CdistanceU3Ek__BackingField_3() { return &___U3CdistanceU3Ek__BackingField_3; }
inline void set_U3CdistanceU3Ek__BackingField_3(float value)
{
___U3CdistanceU3Ek__BackingField_3 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData
struct RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E_marshaled_pinvoke
{
Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___U3CgraphicU3Ek__BackingField_0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CworldHitPositionU3Ek__BackingField_1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CscreenPositionU3Ek__BackingField_2;
float ___U3CdistanceU3Ek__BackingField_3;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData
struct RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E_marshaled_com
{
Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___U3CgraphicU3Ek__BackingField_0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CworldHitPositionU3Ek__BackingField_1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CscreenPositionU3Ek__BackingField_2;
float ___U3CdistanceU3Ek__BackingField_3;
};
// UnityEngine.InputSystem.XR.TrackedPoseDriver/TrackingType
struct TrackingType_t9669D7A30F2D34D70EDB7FDEDC8B11AA8B8D0F2A
{
public:
// System.Int32 UnityEngine.InputSystem.XR.TrackedPoseDriver/TrackingType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingType_t9669D7A30F2D34D70EDB7FDEDC8B11AA8B8D0F2A, ___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.InputSystem.XR.TrackedPoseDriver/UpdateType
struct UpdateType_t6800E301B17273814D84B729FC920444AA91B440
{
public:
// System.Int32 UnityEngine.InputSystem.XR.TrackedPoseDriver/UpdateType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UpdateType_t6800E301B17273814D84B729FC920444AA91B440, ___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.SpatialTracking.TrackedPoseDriver/DeviceType
struct DeviceType_tAE2B3246436F9B924A6284C9C0603322DD6D09E8
{
public:
// System.Int32 UnityEngine.SpatialTracking.TrackedPoseDriver/DeviceType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DeviceType_tAE2B3246436F9B924A6284C9C0603322DD6D09E8, ___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.SpatialTracking.TrackedPoseDriver/TrackedPose
struct TrackedPose_t1326EFD84D48C3339F652B2A072743C3189B581B
{
public:
// System.Int32 UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackedPose_t1326EFD84D48C3339F652B2A072743C3189B581B, ___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.SpatialTracking.TrackedPoseDriver/TrackingType
struct TrackingType_t6524BC8345E54C620E3557D2BD223CEAF7CA5EA9
{
public:
// System.Int32 UnityEngine.SpatialTracking.TrackedPoseDriver/TrackingType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingType_t6524BC8345E54C620E3557D2BD223CEAF7CA5EA9, ___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.SpatialTracking.TrackedPoseDriver/UpdateType
struct UpdateType_t4CA0C1D1034EEB2D3CB9C008009B2F4967CD658E
{
public:
// System.Int32 UnityEngine.SpatialTracking.TrackedPoseDriver/UpdateType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UpdateType_t4CA0C1D1034EEB2D3CB9C008009B2F4967CD658E, ___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.InputSystem.Composites.Vector2Composite/Mode
struct Mode_tE6ECF7C5C80334098C7427BC5F08D88808E7C309
{
public:
// System.Int32 UnityEngine.InputSystem.Composites.Vector2Composite/Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_tE6ECF7C5C80334098C7427BC5F08D88808E7C309, ___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.XR.WindowsMR.WindowsMRSettings/DepthBufferOption
struct DepthBufferOption_tAC9E22B0DD4E1FE942C6E0D77525A118FF7B6462
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.WindowsMRSettings/DepthBufferOption::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DepthBufferOption_tAC9E22B0DD4E1FE942C6E0D77525A118FF7B6462, ___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.InputSystem.XInput.XInputController/DeviceFlags
struct DeviceFlags_t884887EC0C502D363A7B6ABBECF97DD1E5330C98
{
public:
// System.Int32 UnityEngine.InputSystem.XInput.XInputController/DeviceFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DeviceFlags_t884887EC0C502D363A7B6ABBECF97DD1E5330C98, ___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.InputSystem.XInput.XInputController/DeviceSubType
struct DeviceSubType_t83425FF0D79811B5EEB97D007268E188FC96035F
{
public:
// System.Int32 UnityEngine.InputSystem.XInput.XInputController/DeviceSubType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DeviceSubType_t83425FF0D79811B5EEB97D007268E188FC96035F, ___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.InputSystem.XInput.XInputController/DeviceType
struct DeviceType_t1ACE8FEFA03D8CD73F8A4C3EF27BF4815F63A56C
{
public:
// System.Int32 UnityEngine.InputSystem.XInput.XInputController/DeviceType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DeviceType_t1ACE8FEFA03D8CD73F8A4C3EF27BF4815F63A56C, ___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.InputSystem.XInput.LowLevel.XInputControllerWindowsState/Button
struct Button_t55C4224F27F2FC12BCAE43DB315FF948A688BDF9
{
public:
// System.Int32 UnityEngine.InputSystem.XInput.LowLevel.XInputControllerWindowsState/Button::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Button_t55C4224F27F2FC12BCAE43DB315FF948A688BDF9, ___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.XR.ARSubsystems.XRAnchorSubsystem/Provider
struct Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 : public SubsystemProvider_1_t302358330269847780327C2298A4FFA7D79AF2BF
{
public:
public:
};
// UnityEngine.XR.Management.XRManagerSettings/<InitializeLoader>d__24
struct U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.XR.Management.XRManagerSettings/<InitializeLoader>d__24::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Object UnityEngine.XR.Management.XRManagerSettings/<InitializeLoader>d__24::<>2__current
RuntimeObject * ___U3CU3E2__current_1;
// UnityEngine.XR.Management.XRManagerSettings UnityEngine.XR.Management.XRManagerSettings/<InitializeLoader>d__24::<>4__this
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * ___U3CU3E4__this_2;
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.Management.XRLoader> UnityEngine.XR.Management.XRManagerSettings/<InitializeLoader>d__24::<>7__wrap1
Enumerator_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF ___U3CU3E7__wrap1_3;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08, ___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(U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08, ___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(U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08, ___U3CU3E4__this_2)); }
inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * 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(U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08, ___U3CU3E7__wrap1_3)); }
inline Enumerator_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF get_U3CU3E7__wrap1_3() const { return ___U3CU3E7__wrap1_3; }
inline Enumerator_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF * get_address_of_U3CU3E7__wrap1_3() { return &___U3CU3E7__wrap1_3; }
inline void set_U3CU3E7__wrap1_3(Enumerator_t5E925E051A8E0B9BEF75F1250A9B42E275E89FCF value)
{
___U3CU3E7__wrap1_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_3))->___list_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E7__wrap1_3))->___current_3), (void*)NULL);
#endif
}
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider
struct Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A : public SubsystemProvider_1_tFA56F133FD9BCE90A1C4C7D15FFE2571963D8DE4
{
public:
public:
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem/Flags
struct Flags_t49E4D39A26453F2C6C1E224F6A7D1437292625C1
{
public:
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem/Flags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t49E4D39A26453F2C6C1E224F6A7D1437292625C1, ___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.InputSystem.InputControlScheme/MatchResult/Result
struct Result_t787354D593EAD4821BDEB6933A9E453D3A8E7DA9
{
public:
// System.Int32 UnityEngine.InputSystem.InputControlScheme/MatchResult/Result::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Result_t787354D593EAD4821BDEB6933A9E453D3A8E7DA9, ___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.Experimental.TerrainAPI.TerrainUtility/TerrainMap/ErrorCode
struct ErrorCode_t5533C7D1F39FAA2C0E95C82A736DF461B0B2FCE6
{
public:
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/ErrorCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ErrorCode_t5533C7D1F39FAA2C0E95C82A736DF461B0B2FCE6, ___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;
}
};
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/FilterState
struct FilterState_tB319913F7A4549EF0E551A444DC36B1B9A459B35
{
public:
// System.Int32 Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/FilterState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FilterState_tB319913F7A4549EF0E551A444DC36B1B9A459B35, ___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;
}
};
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/ProcessorErrors
struct ProcessorErrors_t44EA2B031F52B8841B928A94DBB886E25AC899E8
{
public:
// System.Int32 Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/ProcessorErrors::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ProcessorErrors_t44EA2B031F52B8841B928A94DBB886E25AC899E8, ___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;
}
};
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/SampleRates
struct SampleRates_tED725CFE09CA08D8E9846E104CB806CCD17EE456
{
public:
// System.Int32 Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor/SampleRates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SampleRates_tED725CFE09CA08D8E9846E104CB806CCD17EE456, ___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.XR.WindowsMR.XRAnchorStore/NativeApi/Buffer
struct Buffer_tE85548C535C4363D0AC9663D95018F2504FF4CA1
{
public:
// System.Int32 UnityEngine.XR.WindowsMR.XRAnchorStore/NativeApi/Buffer::size
int32_t ___size_0;
// System.IntPtr UnityEngine.XR.WindowsMR.XRAnchorStore/NativeApi/Buffer::buffer
intptr_t ___buffer_1;
public:
inline static int32_t get_offset_of_size_0() { return static_cast<int32_t>(offsetof(Buffer_tE85548C535C4363D0AC9663D95018F2504FF4CA1, ___size_0)); }
inline int32_t get_size_0() const { return ___size_0; }
inline int32_t* get_address_of_size_0() { return &___size_0; }
inline void set_size_0(int32_t value)
{
___size_0 = value;
}
inline static int32_t get_offset_of_buffer_1() { return static_cast<int32_t>(offsetof(Buffer_tE85548C535C4363D0AC9663D95018F2504FF4CA1, ___buffer_1)); }
inline intptr_t get_buffer_1() const { return ___buffer_1; }
inline intptr_t* get_address_of_buffer_1() { return &___buffer_1; }
inline void set_buffer_1(intptr_t value)
{
___buffer_1 = value;
}
};
// UnityEngine.InputSystem.InputBindingComposite`1<System.Single>
struct InputBindingComposite_1_t394B25773CB0B48E0989FF9B82EE9FE5551B343B : public InputBindingComposite_t0C553FBD13F1BCC1196ED530ABC6E55EAD8907CE
{
public:
public:
};
// UnityEngine.InputSystem.InputBindingComposite`1<UnityEngine.Vector2>
struct InputBindingComposite_1_t33EF16A3C8CC58C2EABC255141B0D6AF183EC323 : public InputBindingComposite_t0C553FBD13F1BCC1196ED530ABC6E55EAD8907CE
{
public:
public:
};
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Quaternion>
struct InputProcessor_1_tAD36CCFAB97386AE002785AC2C2FD827D243874B : public InputProcessor_tA241F1712E640354F912A2E655EE22945CFF14A4
{
public:
public:
};
// UnityEngine.InputSystem.InputProcessor`1<System.Single>
struct InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224 : public InputProcessor_tA241F1712E640354F912A2E655EE22945CFF14A4
{
public:
public:
};
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector2>
struct InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257 : public InputProcessor_tA241F1712E640354F912A2E655EE22945CFF14A4
{
public:
public:
};
// UnityEngine.InputSystem.InputProcessor`1<UnityEngine.Vector3>
struct InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5 : public InputProcessor_tA241F1712E640354F912A2E655EE22945CFF14A4
{
public:
public:
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.InteractionSubsystems.ActivateGestureEvent>
struct NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Byte>
struct NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.UInt64>
struct NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRHoldGestureEvent>
struct NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent>
struct NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent>
struct NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent>
struct NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// System.Nullable`1<Dissonance.CommActivationMode>
struct Nullable_1_t04BECB249AA93D9676B1D8CDC288E0D6D758FA51
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t04BECB249AA93D9676B1D8CDC288E0D6D758FA51, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t04BECB249AA93D9676B1D8CDC288E0D6D758FA51, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<UnityEngine.InputSystem.LowLevel.InputUpdateType>
struct Nullable_1_t8627D52D59B750A3A0C89AD6C6018836092B2ABB
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t8627D52D59B750A3A0C89AD6C6018836092B2ABB, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t8627D52D59B750A3A0C89AD6C6018836092B2ABB, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<Dissonance.Audio.Playback.SpeechSession>
struct Nullable_1_t24997A7D6AF7F9674D48A29224E10A1E750510E6
{
public:
// T System.Nullable`1::value
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t24997A7D6AF7F9674D48A29224E10A1E750510E6, ___value_0)); }
inline SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF get_value_0() const { return ___value_0; }
inline SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF value)
{
___value_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____channels_7), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____pipeline_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___value_0))->____context_9))->___PlayerName_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_0))->____jitter_11), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t24997A7D6AF7F9674D48A29224E10A1E750510E6, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// UnityEngine.XR.InteractionSubsystems.ActivateGestureEvent
struct ActivateGestureEvent_tE62B374FD7C61FB39DBE074BAC40308F033D4337
{
public:
// UnityEngine.XR.InteractionSubsystems.GestureId UnityEngine.XR.InteractionSubsystems.ActivateGestureEvent::m_Id
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 ___m_Id_0;
// UnityEngine.XR.InteractionSubsystems.GestureState UnityEngine.XR.InteractionSubsystems.ActivateGestureEvent::m_State
int32_t ___m_State_1;
public:
inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(ActivateGestureEvent_tE62B374FD7C61FB39DBE074BAC40308F033D4337, ___m_Id_0)); }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 get_m_Id_0() const { return ___m_Id_0; }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 * get_address_of_m_Id_0() { return &___m_Id_0; }
inline void set_m_Id_0(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 value)
{
___m_Id_0 = value;
}
inline static int32_t get_offset_of_m_State_1() { return static_cast<int32_t>(offsetof(ActivateGestureEvent_tE62B374FD7C61FB39DBE074BAC40308F033D4337, ___m_State_1)); }
inline int32_t get_m_State_1() const { return ___m_State_1; }
inline int32_t* get_address_of_m_State_1() { return &___m_State_1; }
inline void set_m_State_1(int32_t value)
{
___m_State_1 = value;
}
};
// UnityEngine.AndroidJavaException
struct AndroidJavaException_tA371556A4C19FBFA201DD4939DFA781D109B243D : public Exception_t
{
public:
// System.String UnityEngine.AndroidJavaException::mJavaStackTrace
String_t* ___mJavaStackTrace_17;
public:
inline static int32_t get_offset_of_mJavaStackTrace_17() { return static_cast<int32_t>(offsetof(AndroidJavaException_tA371556A4C19FBFA201DD4939DFA781D109B243D, ___mJavaStackTrace_17)); }
inline String_t* get_mJavaStackTrace_17() const { return ___mJavaStackTrace_17; }
inline String_t** get_address_of_mJavaStackTrace_17() { return &___mJavaStackTrace_17; }
inline void set_mJavaStackTrace_17(String_t* value)
{
___mJavaStackTrace_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mJavaStackTrace_17), (void*)value);
}
};
// UnityEngine.AndroidJavaRunnableProxy
struct AndroidJavaRunnableProxy_t17D14B64AF448BEC13E64E394A2626B261ED3BEB : public AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF
{
public:
// UnityEngine.AndroidJavaRunnable UnityEngine.AndroidJavaRunnableProxy::mRunnable
AndroidJavaRunnable_tFA31E7D68EAAEB756F1B8F2EF8344C24042EDD60 * ___mRunnable_4;
public:
inline static int32_t get_offset_of_mRunnable_4() { return static_cast<int32_t>(offsetof(AndroidJavaRunnableProxy_t17D14B64AF448BEC13E64E394A2626B261ED3BEB, ___mRunnable_4)); }
inline AndroidJavaRunnable_tFA31E7D68EAAEB756F1B8F2EF8344C24042EDD60 * get_mRunnable_4() const { return ___mRunnable_4; }
inline AndroidJavaRunnable_tFA31E7D68EAAEB756F1B8F2EF8344C24042EDD60 ** get_address_of_mRunnable_4() { return &___mRunnable_4; }
inline void set_mRunnable_4(AndroidJavaRunnable_tFA31E7D68EAAEB756F1B8F2EF8344C24042EDD60 * value)
{
___mRunnable_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mRunnable_4), (void*)value);
}
};
// UnityEngine.AssetBundleCreateRequest
struct AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.AssetBundleCreateRequest
struct AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_pinvoke : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.AssetBundleCreateRequest
struct AssetBundleCreateRequest_t6AB0C8676D1DAA5F624663445F46FAB7D63EAA3A_marshaled_com : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com
{
};
// UnityEngine.AssetBundleRecompressOperation
struct AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31 : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.AssetBundleRecompressOperation
struct AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_pinvoke : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.AssetBundleRecompressOperation
struct AssetBundleRecompressOperation_t960AA4671D6EB0A10A041FA29B8C2A7D70C07D31_marshaled_com : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com
{
};
// UnityEngine.AudioClip
struct AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
// UnityEngine.AudioClip/PCMReaderCallback UnityEngine.AudioClip::m_PCMReaderCallback
PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * ___m_PCMReaderCallback_4;
// UnityEngine.AudioClip/PCMSetPositionCallback UnityEngine.AudioClip::m_PCMSetPositionCallback
PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C * ___m_PCMSetPositionCallback_5;
public:
inline static int32_t get_offset_of_m_PCMReaderCallback_4() { return static_cast<int32_t>(offsetof(AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE, ___m_PCMReaderCallback_4)); }
inline PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * get_m_PCMReaderCallback_4() const { return ___m_PCMReaderCallback_4; }
inline PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B ** get_address_of_m_PCMReaderCallback_4() { return &___m_PCMReaderCallback_4; }
inline void set_m_PCMReaderCallback_4(PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B * value)
{
___m_PCMReaderCallback_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PCMReaderCallback_4), (void*)value);
}
inline static int32_t get_offset_of_m_PCMSetPositionCallback_5() { return static_cast<int32_t>(offsetof(AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE, ___m_PCMSetPositionCallback_5)); }
inline PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C * get_m_PCMSetPositionCallback_5() const { return ___m_PCMSetPositionCallback_5; }
inline PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C ** get_address_of_m_PCMSetPositionCallback_5() { return &___m_PCMSetPositionCallback_5; }
inline void set_m_PCMSetPositionCallback_5(PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C * value)
{
___m_PCMSetPositionCallback_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PCMSetPositionCallback_5), (void*)value);
}
};
// UnityEngine.Audio.AudioClipPlayable
struct AudioClipPlayable_t3574B22284CE09FDEAD15BD18D66C4A21D59FA5F
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioClipPlayable::m_Handle
PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioClipPlayable_t3574B22284CE09FDEAD15BD18D66C4A21D59FA5F, ___m_Handle_0)); }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.AudioConfiguration
struct AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D
{
public:
// UnityEngine.AudioSpeakerMode UnityEngine.AudioConfiguration::speakerMode
int32_t ___speakerMode_0;
// System.Int32 UnityEngine.AudioConfiguration::dspBufferSize
int32_t ___dspBufferSize_1;
// System.Int32 UnityEngine.AudioConfiguration::sampleRate
int32_t ___sampleRate_2;
// System.Int32 UnityEngine.AudioConfiguration::numRealVoices
int32_t ___numRealVoices_3;
// System.Int32 UnityEngine.AudioConfiguration::numVirtualVoices
int32_t ___numVirtualVoices_4;
public:
inline static int32_t get_offset_of_speakerMode_0() { return static_cast<int32_t>(offsetof(AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D, ___speakerMode_0)); }
inline int32_t get_speakerMode_0() const { return ___speakerMode_0; }
inline int32_t* get_address_of_speakerMode_0() { return &___speakerMode_0; }
inline void set_speakerMode_0(int32_t value)
{
___speakerMode_0 = value;
}
inline static int32_t get_offset_of_dspBufferSize_1() { return static_cast<int32_t>(offsetof(AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D, ___dspBufferSize_1)); }
inline int32_t get_dspBufferSize_1() const { return ___dspBufferSize_1; }
inline int32_t* get_address_of_dspBufferSize_1() { return &___dspBufferSize_1; }
inline void set_dspBufferSize_1(int32_t value)
{
___dspBufferSize_1 = value;
}
inline static int32_t get_offset_of_sampleRate_2() { return static_cast<int32_t>(offsetof(AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D, ___sampleRate_2)); }
inline int32_t get_sampleRate_2() const { return ___sampleRate_2; }
inline int32_t* get_address_of_sampleRate_2() { return &___sampleRate_2; }
inline void set_sampleRate_2(int32_t value)
{
___sampleRate_2 = value;
}
inline static int32_t get_offset_of_numRealVoices_3() { return static_cast<int32_t>(offsetof(AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D, ___numRealVoices_3)); }
inline int32_t get_numRealVoices_3() const { return ___numRealVoices_3; }
inline int32_t* get_address_of_numRealVoices_3() { return &___numRealVoices_3; }
inline void set_numRealVoices_3(int32_t value)
{
___numRealVoices_3 = value;
}
inline static int32_t get_offset_of_numVirtualVoices_4() { return static_cast<int32_t>(offsetof(AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D, ___numVirtualVoices_4)); }
inline int32_t get_numVirtualVoices_4() const { return ___numVirtualVoices_4; }
inline int32_t* get_address_of_numVirtualVoices_4() { return &___numVirtualVoices_4; }
inline void set_numVirtualVoices_4(int32_t value)
{
___numVirtualVoices_4 = value;
}
};
// UnityEngine.Audio.AudioMixerPlayable
struct AudioMixerPlayable_t80531461F1E238E237D7BB2BAE7E031ABDE95C4A
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Audio.AudioMixerPlayable::m_Handle
PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioMixerPlayable_t80531461F1E238E237D7BB2BAE7E031ABDE95C4A, ___m_Handle_0)); }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.Audio.AudioPlayableOutput
struct AudioPlayableOutput_t9809407FDE5B55DD34088A665C8C53346AC76EE8
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Audio.AudioPlayableOutput::m_Handle
PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AudioPlayableOutput_t9809407FDE5B55DD34088A665C8C53346AC76EE8, ___m_Handle_0)); }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 value)
{
___m_Handle_0 = value;
}
};
// Dissonance.ChannelProperties
struct ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 : public RuntimeObject
{
public:
// Dissonance.Audio.Capture.IChannelPriorityProvider Dissonance.ChannelProperties::_defaultPriority
RuntimeObject* ____defaultPriority_0;
// System.UInt16 Dissonance.ChannelProperties::<Id>k__BackingField
uint16_t ___U3CIdU3Ek__BackingField_1;
// System.Boolean Dissonance.ChannelProperties::<Positional>k__BackingField
bool ___U3CPositionalU3Ek__BackingField_2;
// Dissonance.ChannelPriority Dissonance.ChannelProperties::<Priority>k__BackingField
int32_t ___U3CPriorityU3Ek__BackingField_3;
// System.Single Dissonance.ChannelProperties::_amplitudeMultiplier
float ____amplitudeMultiplier_4;
public:
inline static int32_t get_offset_of__defaultPriority_0() { return static_cast<int32_t>(offsetof(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8, ____defaultPriority_0)); }
inline RuntimeObject* get__defaultPriority_0() const { return ____defaultPriority_0; }
inline RuntimeObject** get_address_of__defaultPriority_0() { return &____defaultPriority_0; }
inline void set__defaultPriority_0(RuntimeObject* value)
{
____defaultPriority_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____defaultPriority_0), (void*)value);
}
inline static int32_t get_offset_of_U3CIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8, ___U3CIdU3Ek__BackingField_1)); }
inline uint16_t get_U3CIdU3Ek__BackingField_1() const { return ___U3CIdU3Ek__BackingField_1; }
inline uint16_t* get_address_of_U3CIdU3Ek__BackingField_1() { return &___U3CIdU3Ek__BackingField_1; }
inline void set_U3CIdU3Ek__BackingField_1(uint16_t value)
{
___U3CIdU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CPositionalU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8, ___U3CPositionalU3Ek__BackingField_2)); }
inline bool get_U3CPositionalU3Ek__BackingField_2() const { return ___U3CPositionalU3Ek__BackingField_2; }
inline bool* get_address_of_U3CPositionalU3Ek__BackingField_2() { return &___U3CPositionalU3Ek__BackingField_2; }
inline void set_U3CPositionalU3Ek__BackingField_2(bool value)
{
___U3CPositionalU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CPriorityU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8, ___U3CPriorityU3Ek__BackingField_3)); }
inline int32_t get_U3CPriorityU3Ek__BackingField_3() const { return ___U3CPriorityU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CPriorityU3Ek__BackingField_3() { return &___U3CPriorityU3Ek__BackingField_3; }
inline void set_U3CPriorityU3Ek__BackingField_3(int32_t value)
{
___U3CPriorityU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of__amplitudeMultiplier_4() { return static_cast<int32_t>(offsetof(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8, ____amplitudeMultiplier_4)); }
inline float get__amplitudeMultiplier_4() const { return ____amplitudeMultiplier_4; }
inline float* get_address_of__amplitudeMultiplier_4() { return &____amplitudeMultiplier_4; }
inline void set__amplitudeMultiplier_4(float value)
{
____amplitudeMultiplier_4 = value;
}
};
// Mirror.Examples.MultipleMatch.ClientMatchMessage
struct ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE
{
public:
// Mirror.Examples.MultipleMatch.ClientMatchOperation Mirror.Examples.MultipleMatch.ClientMatchMessage::clientMatchOperation
uint8_t ___clientMatchOperation_0;
// System.Guid Mirror.Examples.MultipleMatch.ClientMatchMessage::matchId
Guid_t ___matchId_1;
// Mirror.Examples.MultipleMatch.MatchInfo[] Mirror.Examples.MultipleMatch.ClientMatchMessage::matchInfos
MatchInfoU5BU5D_tE0CCFDB0A3251D86BDE9E129AC74744828045150* ___matchInfos_2;
// Mirror.Examples.MultipleMatch.PlayerInfo[] Mirror.Examples.MultipleMatch.ClientMatchMessage::playerInfos
PlayerInfoU5BU5D_t3D0A3C42EE97C97D72728BAA3654556B5A3C99D8* ___playerInfos_3;
public:
inline static int32_t get_offset_of_clientMatchOperation_0() { return static_cast<int32_t>(offsetof(ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE, ___clientMatchOperation_0)); }
inline uint8_t get_clientMatchOperation_0() const { return ___clientMatchOperation_0; }
inline uint8_t* get_address_of_clientMatchOperation_0() { return &___clientMatchOperation_0; }
inline void set_clientMatchOperation_0(uint8_t value)
{
___clientMatchOperation_0 = value;
}
inline static int32_t get_offset_of_matchId_1() { return static_cast<int32_t>(offsetof(ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE, ___matchId_1)); }
inline Guid_t get_matchId_1() const { return ___matchId_1; }
inline Guid_t * get_address_of_matchId_1() { return &___matchId_1; }
inline void set_matchId_1(Guid_t value)
{
___matchId_1 = value;
}
inline static int32_t get_offset_of_matchInfos_2() { return static_cast<int32_t>(offsetof(ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE, ___matchInfos_2)); }
inline MatchInfoU5BU5D_tE0CCFDB0A3251D86BDE9E129AC74744828045150* get_matchInfos_2() const { return ___matchInfos_2; }
inline MatchInfoU5BU5D_tE0CCFDB0A3251D86BDE9E129AC74744828045150** get_address_of_matchInfos_2() { return &___matchInfos_2; }
inline void set_matchInfos_2(MatchInfoU5BU5D_tE0CCFDB0A3251D86BDE9E129AC74744828045150* value)
{
___matchInfos_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchInfos_2), (void*)value);
}
inline static int32_t get_offset_of_playerInfos_3() { return static_cast<int32_t>(offsetof(ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE, ___playerInfos_3)); }
inline PlayerInfoU5BU5D_t3D0A3C42EE97C97D72728BAA3654556B5A3C99D8* get_playerInfos_3() const { return ___playerInfos_3; }
inline PlayerInfoU5BU5D_t3D0A3C42EE97C97D72728BAA3654556B5A3C99D8** get_address_of_playerInfos_3() { return &___playerInfos_3; }
inline void set_playerInfos_3(PlayerInfoU5BU5D_t3D0A3C42EE97C97D72728BAA3654556B5A3C99D8* value)
{
___playerInfos_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerInfos_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.Examples.MultipleMatch.ClientMatchMessage
struct ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE_marshaled_pinvoke
{
uint8_t ___clientMatchOperation_0;
Guid_t ___matchId_1;
MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574 * ___matchInfos_2;
PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6_marshaled_pinvoke* ___playerInfos_3;
};
// Native definition for COM marshalling of Mirror.Examples.MultipleMatch.ClientMatchMessage
struct ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE_marshaled_com
{
uint8_t ___clientMatchOperation_0;
Guid_t ___matchId_1;
MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574 * ___matchInfos_2;
PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6_marshaled_com* ___playerInfos_3;
};
// Dissonance.CodecSettings
struct CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131
{
public:
// Dissonance.Audio.Codecs.Codec Dissonance.CodecSettings::_codec
uint8_t ____codec_0;
// System.UInt32 Dissonance.CodecSettings::_frameSize
uint32_t ____frameSize_1;
// System.Int32 Dissonance.CodecSettings::_sampleRate
int32_t ____sampleRate_2;
public:
inline static int32_t get_offset_of__codec_0() { return static_cast<int32_t>(offsetof(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131, ____codec_0)); }
inline uint8_t get__codec_0() const { return ____codec_0; }
inline uint8_t* get_address_of__codec_0() { return &____codec_0; }
inline void set__codec_0(uint8_t value)
{
____codec_0 = value;
}
inline static int32_t get_offset_of__frameSize_1() { return static_cast<int32_t>(offsetof(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131, ____frameSize_1)); }
inline uint32_t get__frameSize_1() const { return ____frameSize_1; }
inline uint32_t* get_address_of__frameSize_1() { return &____frameSize_1; }
inline void set__frameSize_1(uint32_t value)
{
____frameSize_1 = value;
}
inline static int32_t get_offset_of__sampleRate_2() { return static_cast<int32_t>(offsetof(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131, ____sampleRate_2)); }
inline int32_t get__sampleRate_2() const { return ____sampleRate_2; }
inline int32_t* get_address_of__sampleRate_2() { return &____sampleRate_2; }
inline void set__sampleRate_2(int32_t value)
{
____sampleRate_2 = value;
}
};
// UnityEngine.Component
struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.ConfigurationDescriptor
struct ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Identifier
intptr_t ___m_Identifier_0;
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Capabilities
uint64_t ___m_Capabilities_1;
// System.Int32 UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Rank
int32_t ___m_Rank_2;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Identifier_0)); }
inline intptr_t get_m_Identifier_0() const { return ___m_Identifier_0; }
inline intptr_t* get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(intptr_t value)
{
___m_Identifier_0 = value;
}
inline static int32_t get_offset_of_m_Capabilities_1() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Capabilities_1)); }
inline uint64_t get_m_Capabilities_1() const { return ___m_Capabilities_1; }
inline uint64_t* get_address_of_m_Capabilities_1() { return &___m_Capabilities_1; }
inline void set_m_Capabilities_1(uint64_t value)
{
___m_Capabilities_1 = value;
}
inline static int32_t get_offset_of_m_Rank_2() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Rank_2)); }
inline int32_t get_m_Rank_2() const { return ___m_Rank_2; }
inline int32_t* get_address_of_m_Rank_2() { return &___m_Rank_2; }
inline void set_m_Rank_2(int32_t value)
{
___m_Rank_2 = value;
}
};
// Dissonance.Audio.Playback.DecoderPipeline
struct DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED : public RuntimeObject
{
public:
// System.Action`1<Dissonance.Audio.Playback.DecoderPipeline> Dissonance.Audio.Playback.DecoderPipeline::_completionHandler
Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C * ____completionHandler_1;
// Dissonance.Datastructures.TransferBuffer`1<Dissonance.Networking.VoicePacket> Dissonance.Audio.Playback.DecoderPipeline::_inputBuffer
TransferBuffer_1_tB145027F08C9ECAE887B4763DB580F67940D20D6 * ____inputBuffer_2;
// Dissonance.Datastructures.ConcurrentPool`1<System.Byte[]> Dissonance.Audio.Playback.DecoderPipeline::_bytePool
ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * ____bytePool_3;
// Dissonance.Datastructures.ConcurrentPool`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>> Dissonance.Audio.Playback.DecoderPipeline::_channelListPool
ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF * ____channelListPool_4;
// Dissonance.Audio.Playback.BufferedDecoder Dissonance.Audio.Playback.DecoderPipeline::_source
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB * ____source_5;
// Dissonance.Audio.Playback.SynchronizerSampleSource Dissonance.Audio.Playback.DecoderPipeline::_synchronizer
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C * ____synchronizer_6;
// Dissonance.Audio.Playback.ISampleSource Dissonance.Audio.Playback.DecoderPipeline::_output
RuntimeObject* ____output_7;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Playback.DecoderPipeline::_prepared
bool ____prepared_8;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Playback.DecoderPipeline::_complete
bool ____complete_9;
// System.Boolean Dissonance.Audio.Playback.DecoderPipeline::_sourceClosed
bool ____sourceClosed_10;
// System.TimeSpan Dissonance.Audio.Playback.DecoderPipeline::_frameDuration
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ____frameDuration_11;
// System.Nullable`1<System.DateTime> Dissonance.Audio.Playback.DecoderPipeline::_firstFrameArrival
Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D ____firstFrameArrival_12;
// System.UInt32 Dissonance.Audio.Playback.DecoderPipeline::_firstFrameSeq
uint32_t ____firstFrameSeq_13;
// System.String Dissonance.Audio.Playback.DecoderPipeline::_id
String_t* ____id_14;
// Dissonance.Audio.Playback.IVolumeProvider Dissonance.Audio.Playback.DecoderPipeline::<VolumeProvider>k__BackingField
RuntimeObject* ___U3CVolumeProviderU3Ek__BackingField_15;
public:
inline static int32_t get_offset_of__completionHandler_1() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____completionHandler_1)); }
inline Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C * get__completionHandler_1() const { return ____completionHandler_1; }
inline Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C ** get_address_of__completionHandler_1() { return &____completionHandler_1; }
inline void set__completionHandler_1(Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C * value)
{
____completionHandler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____completionHandler_1), (void*)value);
}
inline static int32_t get_offset_of__inputBuffer_2() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____inputBuffer_2)); }
inline TransferBuffer_1_tB145027F08C9ECAE887B4763DB580F67940D20D6 * get__inputBuffer_2() const { return ____inputBuffer_2; }
inline TransferBuffer_1_tB145027F08C9ECAE887B4763DB580F67940D20D6 ** get_address_of__inputBuffer_2() { return &____inputBuffer_2; }
inline void set__inputBuffer_2(TransferBuffer_1_tB145027F08C9ECAE887B4763DB580F67940D20D6 * value)
{
____inputBuffer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inputBuffer_2), (void*)value);
}
inline static int32_t get_offset_of__bytePool_3() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____bytePool_3)); }
inline ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * get__bytePool_3() const { return ____bytePool_3; }
inline ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 ** get_address_of__bytePool_3() { return &____bytePool_3; }
inline void set__bytePool_3(ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * value)
{
____bytePool_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____bytePool_3), (void*)value);
}
inline static int32_t get_offset_of__channelListPool_4() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____channelListPool_4)); }
inline ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF * get__channelListPool_4() const { return ____channelListPool_4; }
inline ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF ** get_address_of__channelListPool_4() { return &____channelListPool_4; }
inline void set__channelListPool_4(ConcurrentPool_1_tF705643DFA30743EE52D6A35C48C863A1A0B4BAF * value)
{
____channelListPool_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channelListPool_4), (void*)value);
}
inline static int32_t get_offset_of__source_5() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____source_5)); }
inline BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB * get__source_5() const { return ____source_5; }
inline BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB ** get_address_of__source_5() { return &____source_5; }
inline void set__source_5(BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB * value)
{
____source_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_5), (void*)value);
}
inline static int32_t get_offset_of__synchronizer_6() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____synchronizer_6)); }
inline SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C * get__synchronizer_6() const { return ____synchronizer_6; }
inline SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C ** get_address_of__synchronizer_6() { return &____synchronizer_6; }
inline void set__synchronizer_6(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C * value)
{
____synchronizer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____synchronizer_6), (void*)value);
}
inline static int32_t get_offset_of__output_7() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____output_7)); }
inline RuntimeObject* get__output_7() const { return ____output_7; }
inline RuntimeObject** get_address_of__output_7() { return &____output_7; }
inline void set__output_7(RuntimeObject* value)
{
____output_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____output_7), (void*)value);
}
inline static int32_t get_offset_of__prepared_8() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____prepared_8)); }
inline bool get__prepared_8() const { return ____prepared_8; }
inline bool* get_address_of__prepared_8() { return &____prepared_8; }
inline void set__prepared_8(bool value)
{
____prepared_8 = value;
}
inline static int32_t get_offset_of__complete_9() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____complete_9)); }
inline bool get__complete_9() const { return ____complete_9; }
inline bool* get_address_of__complete_9() { return &____complete_9; }
inline void set__complete_9(bool value)
{
____complete_9 = value;
}
inline static int32_t get_offset_of__sourceClosed_10() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____sourceClosed_10)); }
inline bool get__sourceClosed_10() const { return ____sourceClosed_10; }
inline bool* get_address_of__sourceClosed_10() { return &____sourceClosed_10; }
inline void set__sourceClosed_10(bool value)
{
____sourceClosed_10 = value;
}
inline static int32_t get_offset_of__frameDuration_11() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____frameDuration_11)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get__frameDuration_11() const { return ____frameDuration_11; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of__frameDuration_11() { return &____frameDuration_11; }
inline void set__frameDuration_11(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
____frameDuration_11 = value;
}
inline static int32_t get_offset_of__firstFrameArrival_12() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____firstFrameArrival_12)); }
inline Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D get__firstFrameArrival_12() const { return ____firstFrameArrival_12; }
inline Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D * get_address_of__firstFrameArrival_12() { return &____firstFrameArrival_12; }
inline void set__firstFrameArrival_12(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D value)
{
____firstFrameArrival_12 = value;
}
inline static int32_t get_offset_of__firstFrameSeq_13() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____firstFrameSeq_13)); }
inline uint32_t get__firstFrameSeq_13() const { return ____firstFrameSeq_13; }
inline uint32_t* get_address_of__firstFrameSeq_13() { return &____firstFrameSeq_13; }
inline void set__firstFrameSeq_13(uint32_t value)
{
____firstFrameSeq_13 = value;
}
inline static int32_t get_offset_of__id_14() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ____id_14)); }
inline String_t* get__id_14() const { return ____id_14; }
inline String_t** get_address_of__id_14() { return &____id_14; }
inline void set__id_14(String_t* value)
{
____id_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____id_14), (void*)value);
}
inline static int32_t get_offset_of_U3CVolumeProviderU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED, ___U3CVolumeProviderU3Ek__BackingField_15)); }
inline RuntimeObject* get_U3CVolumeProviderU3Ek__BackingField_15() const { return ___U3CVolumeProviderU3Ek__BackingField_15; }
inline RuntimeObject** get_address_of_U3CVolumeProviderU3Ek__BackingField_15() { return &___U3CVolumeProviderU3Ek__BackingField_15; }
inline void set_U3CVolumeProviderU3Ek__BackingField_15(RuntimeObject* value)
{
___U3CVolumeProviderU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CVolumeProviderU3Ek__BackingField_15), (void*)value);
}
};
struct DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.DecoderPipeline::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.DisableDeviceCommand
struct DisableDeviceCommand_t96BE1137A3F34A2DF8411B1BCA90EA5ED7635183
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.DisableDeviceCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t DisableDeviceCommand_t96BE1137A3F34A2DF8411B1BCA90EA5ED7635183__padding[8];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(DisableDeviceCommand_t96BE1137A3F34A2DF8411B1BCA90EA5ED7635183, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
};
// Dissonance.DissonanceException
struct DissonanceException_tF9BEB05611C6DE25C6FF282DBF70C321BCE25282 : public Exception_t
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand
struct DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lowFrequencyMotorSpeed_2_OffsetPadding[8];
// System.Single UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::lowFrequencyMotorSpeed
float ___lowFrequencyMotorSpeed_2;
};
#pragma pack(pop, tp)
struct
{
char ___lowFrequencyMotorSpeed_2_OffsetPadding_forAlignmentOnly[8];
float ___lowFrequencyMotorSpeed_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___highFrequencyMotorSpeed_3_OffsetPadding[12];
// System.Single UnityEngine.InputSystem.LowLevel.DualMotorRumbleCommand::highFrequencyMotorSpeed
float ___highFrequencyMotorSpeed_3;
};
#pragma pack(pop, tp)
struct
{
char ___highFrequencyMotorSpeed_3_OffsetPadding_forAlignmentOnly[12];
float ___highFrequencyMotorSpeed_3_forAlignmentOnly;
};
};
};
uint8_t DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03__padding[16];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_lowFrequencyMotorSpeed_2() { return static_cast<int32_t>(offsetof(DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03, ___lowFrequencyMotorSpeed_2)); }
inline float get_lowFrequencyMotorSpeed_2() const { return ___lowFrequencyMotorSpeed_2; }
inline float* get_address_of_lowFrequencyMotorSpeed_2() { return &___lowFrequencyMotorSpeed_2; }
inline void set_lowFrequencyMotorSpeed_2(float value)
{
___lowFrequencyMotorSpeed_2 = value;
}
inline static int32_t get_offset_of_highFrequencyMotorSpeed_3() { return static_cast<int32_t>(offsetof(DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03, ___highFrequencyMotorSpeed_3)); }
inline float get_highFrequencyMotorSpeed_3() const { return ___highFrequencyMotorSpeed_3; }
inline float* get_address_of_highFrequencyMotorSpeed_3() { return &___highFrequencyMotorSpeed_3; }
inline void set_highFrequencyMotorSpeed_3(float value)
{
___highFrequencyMotorSpeed_3 = value;
}
};
// UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport
struct DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___reportId_3_OffsetPadding[8];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::reportId
uint8_t ___reportId_3;
};
#pragma pack(pop, tp)
struct
{
char ___reportId_3_OffsetPadding_forAlignmentOnly[8];
uint8_t ___reportId_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___flags_4_OffsetPadding[9];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::flags
uint8_t ___flags_4;
};
#pragma pack(pop, tp)
struct
{
char ___flags_4_OffsetPadding_forAlignmentOnly[9];
uint8_t ___flags_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___unknown1_5_OffsetPadding[10];
// UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/<unknown1>e__FixedBuffer UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::unknown1
U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE ___unknown1_5;
};
#pragma pack(pop, tp)
struct
{
char ___unknown1_5_OffsetPadding_forAlignmentOnly[10];
U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE ___unknown1_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___highFrequencyMotorSpeed_6_OffsetPadding[12];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::highFrequencyMotorSpeed
uint8_t ___highFrequencyMotorSpeed_6;
};
#pragma pack(pop, tp)
struct
{
char ___highFrequencyMotorSpeed_6_OffsetPadding_forAlignmentOnly[12];
uint8_t ___highFrequencyMotorSpeed_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lowFrequencyMotorSpeed_7_OffsetPadding[13];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::lowFrequencyMotorSpeed
uint8_t ___lowFrequencyMotorSpeed_7;
};
#pragma pack(pop, tp)
struct
{
char ___lowFrequencyMotorSpeed_7_OffsetPadding_forAlignmentOnly[13];
uint8_t ___lowFrequencyMotorSpeed_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___redColor_8_OffsetPadding[14];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::redColor
uint8_t ___redColor_8;
};
#pragma pack(pop, tp)
struct
{
char ___redColor_8_OffsetPadding_forAlignmentOnly[14];
uint8_t ___redColor_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___greenColor_9_OffsetPadding[15];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::greenColor
uint8_t ___greenColor_9;
};
#pragma pack(pop, tp)
struct
{
char ___greenColor_9_OffsetPadding_forAlignmentOnly[15];
uint8_t ___greenColor_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___blueColor_10_OffsetPadding[16];
// System.Byte UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::blueColor
uint8_t ___blueColor_10;
};
#pragma pack(pop, tp)
struct
{
char ___blueColor_10_OffsetPadding_forAlignmentOnly[16];
uint8_t ___blueColor_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___unknown2_11_OffsetPadding[17];
// UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport/<unknown2>e__FixedBuffer UnityEngine.InputSystem.DualShock.LowLevel.DualShockHIDOutputReport::unknown2
U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A ___unknown2_11;
};
#pragma pack(pop, tp)
struct
{
char ___unknown2_11_OffsetPadding_forAlignmentOnly[17];
U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A ___unknown2_11_forAlignmentOnly;
};
};
};
uint8_t DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5__padding[40];
};
public:
inline static int32_t get_offset_of_baseCommand_2() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___baseCommand_2)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_2() const { return ___baseCommand_2; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_2() { return &___baseCommand_2; }
inline void set_baseCommand_2(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_2 = value;
}
inline static int32_t get_offset_of_reportId_3() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___reportId_3)); }
inline uint8_t get_reportId_3() const { return ___reportId_3; }
inline uint8_t* get_address_of_reportId_3() { return &___reportId_3; }
inline void set_reportId_3(uint8_t value)
{
___reportId_3 = value;
}
inline static int32_t get_offset_of_flags_4() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___flags_4)); }
inline uint8_t get_flags_4() const { return ___flags_4; }
inline uint8_t* get_address_of_flags_4() { return &___flags_4; }
inline void set_flags_4(uint8_t value)
{
___flags_4 = value;
}
inline static int32_t get_offset_of_unknown1_5() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___unknown1_5)); }
inline U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE get_unknown1_5() const { return ___unknown1_5; }
inline U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE * get_address_of_unknown1_5() { return &___unknown1_5; }
inline void set_unknown1_5(U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE value)
{
___unknown1_5 = value;
}
inline static int32_t get_offset_of_highFrequencyMotorSpeed_6() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___highFrequencyMotorSpeed_6)); }
inline uint8_t get_highFrequencyMotorSpeed_6() const { return ___highFrequencyMotorSpeed_6; }
inline uint8_t* get_address_of_highFrequencyMotorSpeed_6() { return &___highFrequencyMotorSpeed_6; }
inline void set_highFrequencyMotorSpeed_6(uint8_t value)
{
___highFrequencyMotorSpeed_6 = value;
}
inline static int32_t get_offset_of_lowFrequencyMotorSpeed_7() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___lowFrequencyMotorSpeed_7)); }
inline uint8_t get_lowFrequencyMotorSpeed_7() const { return ___lowFrequencyMotorSpeed_7; }
inline uint8_t* get_address_of_lowFrequencyMotorSpeed_7() { return &___lowFrequencyMotorSpeed_7; }
inline void set_lowFrequencyMotorSpeed_7(uint8_t value)
{
___lowFrequencyMotorSpeed_7 = value;
}
inline static int32_t get_offset_of_redColor_8() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___redColor_8)); }
inline uint8_t get_redColor_8() const { return ___redColor_8; }
inline uint8_t* get_address_of_redColor_8() { return &___redColor_8; }
inline void set_redColor_8(uint8_t value)
{
___redColor_8 = value;
}
inline static int32_t get_offset_of_greenColor_9() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___greenColor_9)); }
inline uint8_t get_greenColor_9() const { return ___greenColor_9; }
inline uint8_t* get_address_of_greenColor_9() { return &___greenColor_9; }
inline void set_greenColor_9(uint8_t value)
{
___greenColor_9 = value;
}
inline static int32_t get_offset_of_blueColor_10() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___blueColor_10)); }
inline uint8_t get_blueColor_10() const { return ___blueColor_10; }
inline uint8_t* get_address_of_blueColor_10() { return &___blueColor_10; }
inline void set_blueColor_10(uint8_t value)
{
___blueColor_10 = value;
}
inline static int32_t get_offset_of_unknown2_11() { return static_cast<int32_t>(offsetof(DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5, ___unknown2_11)); }
inline U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A get_unknown2_11() const { return ___unknown2_11; }
inline U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A * get_address_of_unknown2_11() { return &___unknown2_11; }
inline void set_unknown2_11(U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A value)
{
___unknown2_11 = value;
}
};
// Dissonance.Audio.Capture.EmptyPreprocessingPipeline
struct EmptyPreprocessingPipeline_t9BFBA94FA6C93525484C61657A44845037C31515 : public BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.EnableDeviceCommand
struct EnableDeviceCommand_t3FD5A01AF615C22D2758900C3E6ACE1BDEF4CA43
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.EnableDeviceCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t EnableDeviceCommand_t3FD5A01AF615C22D2758900C3E6ACE1BDEF4CA43__padding[8];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(EnableDeviceCommand_t3FD5A01AF615C22D2758900C3E6ACE1BDEF4CA43, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand
struct EnableIMECompositionCommand_tE827DDF322750637D10FBF4AD66E9862A6F0FDC8
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ImeEnabled_2_OffsetPadding[8];
// System.Byte UnityEngine.InputSystem.LowLevel.EnableIMECompositionCommand::m_ImeEnabled
uint8_t ___m_ImeEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_ImeEnabled_2_OffsetPadding_forAlignmentOnly[8];
uint8_t ___m_ImeEnabled_2_forAlignmentOnly;
};
};
};
uint8_t EnableIMECompositionCommand_tE827DDF322750637D10FBF4AD66E9862A6F0FDC8__padding[9];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(EnableIMECompositionCommand_tE827DDF322750637D10FBF4AD66E9862A6F0FDC8, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_m_ImeEnabled_2() { return static_cast<int32_t>(offsetof(EnableIMECompositionCommand_tE827DDF322750637D10FBF4AD66E9862A6F0FDC8, ___m_ImeEnabled_2)); }
inline uint8_t get_m_ImeEnabled_2() const { return ___m_ImeEnabled_2; }
inline uint8_t* get_address_of_m_ImeEnabled_2() { return &___m_ImeEnabled_2; }
inline void set_m_ImeEnabled_2(uint8_t value)
{
___m_ImeEnabled_2 = value;
}
};
// Dissonance.Audio.Codecs.EncodedBuffer
struct EncodedBuffer_tA421FE937D9CF3F6591FB73D7FD53E9905720157
{
public:
// System.Nullable`1<System.ArraySegment`1<System.Byte>> Dissonance.Audio.Codecs.EncodedBuffer::Encoded
Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4 ___Encoded_0;
// System.Boolean Dissonance.Audio.Codecs.EncodedBuffer::PacketLost
bool ___PacketLost_1;
public:
inline static int32_t get_offset_of_Encoded_0() { return static_cast<int32_t>(offsetof(EncodedBuffer_tA421FE937D9CF3F6591FB73D7FD53E9905720157, ___Encoded_0)); }
inline Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4 get_Encoded_0() const { return ___Encoded_0; }
inline Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4 * get_address_of_Encoded_0() { return &___Encoded_0; }
inline void set_Encoded_0(Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4 value)
{
___Encoded_0 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___Encoded_0))->___value_0))->____array_0), (void*)NULL);
}
inline static int32_t get_offset_of_PacketLost_1() { return static_cast<int32_t>(offsetof(EncodedBuffer_tA421FE937D9CF3F6591FB73D7FD53E9905720157, ___PacketLost_1)); }
inline bool get_PacketLost_1() const { return ___PacketLost_1; }
inline bool* get_address_of_PacketLost_1() { return &___PacketLost_1; }
inline void set_PacketLost_1(bool value)
{
___PacketLost_1 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Audio.Codecs.EncodedBuffer
struct EncodedBuffer_tA421FE937D9CF3F6591FB73D7FD53E9905720157_marshaled_pinvoke
{
Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4 ___Encoded_0;
int32_t ___PacketLost_1;
};
// Native definition for COM marshalling of Dissonance.Audio.Codecs.EncodedBuffer
struct EncodedBuffer_tA421FE937D9CF3F6591FB73D7FD53E9905720157_marshaled_com
{
Nullable_1_t7A4FF613B5A608EA17F834BFF58114A8EF6A8CD4 ___Encoded_0;
int32_t ___PacketLost_1;
};
// UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport
struct EnhancedTouchSupport_t75A6C0561539A82990093AF61BE73C4BEE6E555E : public RuntimeObject
{
public:
public:
};
struct EnhancedTouchSupport_t75A6C0561539A82990093AF61BE73C4BEE6E555E_StaticFields
{
public:
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::s_Enabled
int32_t ___s_Enabled_0;
// UnityEngine.InputSystem.InputSettings/UpdateMode UnityEngine.InputSystem.EnhancedTouch.EnhancedTouchSupport::s_UpdateMode
int32_t ___s_UpdateMode_1;
public:
inline static int32_t get_offset_of_s_Enabled_0() { return static_cast<int32_t>(offsetof(EnhancedTouchSupport_t75A6C0561539A82990093AF61BE73C4BEE6E555E_StaticFields, ___s_Enabled_0)); }
inline int32_t get_s_Enabled_0() const { return ___s_Enabled_0; }
inline int32_t* get_address_of_s_Enabled_0() { return &___s_Enabled_0; }
inline void set_s_Enabled_0(int32_t value)
{
___s_Enabled_0 = value;
}
inline static int32_t get_offset_of_s_UpdateMode_1() { return static_cast<int32_t>(offsetof(EnhancedTouchSupport_t75A6C0561539A82990093AF61BE73C4BEE6E555E_StaticFields, ___s_UpdateMode_1)); }
inline int32_t get_s_UpdateMode_1() const { return ___s_UpdateMode_1; }
inline int32_t* get_address_of_s_UpdateMode_1() { return &___s_UpdateMode_1; }
inline void set_s_UpdateMode_1(int32_t value)
{
___s_UpdateMode_1 = value;
}
};
// Dissonance.Networking.Client.EventQueue
struct EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3 : public RuntimeObject
{
public:
// Dissonance.Threading.ReadonlyLockedValue`1<System.Collections.Generic.List`1<Dissonance.Networking.Client.EventQueue/NetworkEvent>> Dissonance.Networking.Client.EventQueue::_queuedEvents
ReadonlyLockedValue_1_tD465C7F8735FD73FA413FC29534FCB0D61FD237E * ____queuedEvents_1;
// Dissonance.Threading.ReadonlyLockedValue`1<Dissonance.Datastructures.Pool`1<System.Byte[]>> Dissonance.Networking.Client.EventQueue::_byteArrayPool
ReadonlyLockedValue_1_t8390FC2C35847E0732A73548E8E21CBAAA51F038 * ____byteArrayPool_2;
// Dissonance.Datastructures.IRecycler`1<System.Collections.Generic.List`1<Dissonance.RemoteChannel>> Dissonance.Networking.Client.EventQueue::_channelsListPool
RuntimeObject* ____channelsListPool_3;
// System.Action`2<System.String,Dissonance.CodecSettings> Dissonance.Networking.Client.EventQueue::PlayerJoined
Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F * ___PlayerJoined_4;
// System.Action`1<System.String> Dissonance.Networking.Client.EventQueue::PlayerLeft
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___PlayerLeft_5;
// System.Action`1<Dissonance.Networking.RoomEvent> Dissonance.Networking.Client.EventQueue::PlayerEnteredRoom
Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * ___PlayerEnteredRoom_6;
// System.Action`1<Dissonance.Networking.RoomEvent> Dissonance.Networking.Client.EventQueue::PlayerExitedRoom
Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * ___PlayerExitedRoom_7;
// System.Action`1<Dissonance.Networking.VoicePacket> Dissonance.Networking.Client.EventQueue::VoicePacketReceived
Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * ___VoicePacketReceived_8;
// System.Action`1<Dissonance.Networking.TextMessage> Dissonance.Networking.Client.EventQueue::TextMessageReceived
Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * ___TextMessageReceived_9;
// System.Action`1<System.String> Dissonance.Networking.Client.EventQueue::PlayerStartedSpeaking
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___PlayerStartedSpeaking_10;
// System.Action`1<System.String> Dissonance.Networking.Client.EventQueue::PlayerStoppedSpeaking
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___PlayerStoppedSpeaking_11;
// System.Action`1<System.String> Dissonance.Networking.Client.EventQueue::OnEnqueuePlayerLeft
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___OnEnqueuePlayerLeft_12;
// System.Int32 Dissonance.Networking.Client.EventQueue::_voicePacketWarnThreshold
int32_t ____voicePacketWarnThreshold_15;
// System.Int32 Dissonance.Networking.Client.EventQueue::_pendingVoicePackets
int32_t ____pendingVoicePackets_16;
// System.DateTime Dissonance.Networking.Client.EventQueue::_previousFlush
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ____previousFlush_17;
public:
inline static int32_t get_offset_of__queuedEvents_1() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ____queuedEvents_1)); }
inline ReadonlyLockedValue_1_tD465C7F8735FD73FA413FC29534FCB0D61FD237E * get__queuedEvents_1() const { return ____queuedEvents_1; }
inline ReadonlyLockedValue_1_tD465C7F8735FD73FA413FC29534FCB0D61FD237E ** get_address_of__queuedEvents_1() { return &____queuedEvents_1; }
inline void set__queuedEvents_1(ReadonlyLockedValue_1_tD465C7F8735FD73FA413FC29534FCB0D61FD237E * value)
{
____queuedEvents_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____queuedEvents_1), (void*)value);
}
inline static int32_t get_offset_of__byteArrayPool_2() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ____byteArrayPool_2)); }
inline ReadonlyLockedValue_1_t8390FC2C35847E0732A73548E8E21CBAAA51F038 * get__byteArrayPool_2() const { return ____byteArrayPool_2; }
inline ReadonlyLockedValue_1_t8390FC2C35847E0732A73548E8E21CBAAA51F038 ** get_address_of__byteArrayPool_2() { return &____byteArrayPool_2; }
inline void set__byteArrayPool_2(ReadonlyLockedValue_1_t8390FC2C35847E0732A73548E8E21CBAAA51F038 * value)
{
____byteArrayPool_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byteArrayPool_2), (void*)value);
}
inline static int32_t get_offset_of__channelsListPool_3() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ____channelsListPool_3)); }
inline RuntimeObject* get__channelsListPool_3() const { return ____channelsListPool_3; }
inline RuntimeObject** get_address_of__channelsListPool_3() { return &____channelsListPool_3; }
inline void set__channelsListPool_3(RuntimeObject* value)
{
____channelsListPool_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channelsListPool_3), (void*)value);
}
inline static int32_t get_offset_of_PlayerJoined_4() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___PlayerJoined_4)); }
inline Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F * get_PlayerJoined_4() const { return ___PlayerJoined_4; }
inline Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F ** get_address_of_PlayerJoined_4() { return &___PlayerJoined_4; }
inline void set_PlayerJoined_4(Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F * value)
{
___PlayerJoined_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerJoined_4), (void*)value);
}
inline static int32_t get_offset_of_PlayerLeft_5() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___PlayerLeft_5)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_PlayerLeft_5() const { return ___PlayerLeft_5; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_PlayerLeft_5() { return &___PlayerLeft_5; }
inline void set_PlayerLeft_5(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___PlayerLeft_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerLeft_5), (void*)value);
}
inline static int32_t get_offset_of_PlayerEnteredRoom_6() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___PlayerEnteredRoom_6)); }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * get_PlayerEnteredRoom_6() const { return ___PlayerEnteredRoom_6; }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B ** get_address_of_PlayerEnteredRoom_6() { return &___PlayerEnteredRoom_6; }
inline void set_PlayerEnteredRoom_6(Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * value)
{
___PlayerEnteredRoom_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerEnteredRoom_6), (void*)value);
}
inline static int32_t get_offset_of_PlayerExitedRoom_7() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___PlayerExitedRoom_7)); }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * get_PlayerExitedRoom_7() const { return ___PlayerExitedRoom_7; }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B ** get_address_of_PlayerExitedRoom_7() { return &___PlayerExitedRoom_7; }
inline void set_PlayerExitedRoom_7(Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * value)
{
___PlayerExitedRoom_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerExitedRoom_7), (void*)value);
}
inline static int32_t get_offset_of_VoicePacketReceived_8() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___VoicePacketReceived_8)); }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * get_VoicePacketReceived_8() const { return ___VoicePacketReceived_8; }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 ** get_address_of_VoicePacketReceived_8() { return &___VoicePacketReceived_8; }
inline void set_VoicePacketReceived_8(Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * value)
{
___VoicePacketReceived_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___VoicePacketReceived_8), (void*)value);
}
inline static int32_t get_offset_of_TextMessageReceived_9() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___TextMessageReceived_9)); }
inline Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * get_TextMessageReceived_9() const { return ___TextMessageReceived_9; }
inline Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 ** get_address_of_TextMessageReceived_9() { return &___TextMessageReceived_9; }
inline void set_TextMessageReceived_9(Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * value)
{
___TextMessageReceived_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TextMessageReceived_9), (void*)value);
}
inline static int32_t get_offset_of_PlayerStartedSpeaking_10() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___PlayerStartedSpeaking_10)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_PlayerStartedSpeaking_10() const { return ___PlayerStartedSpeaking_10; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_PlayerStartedSpeaking_10() { return &___PlayerStartedSpeaking_10; }
inline void set_PlayerStartedSpeaking_10(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___PlayerStartedSpeaking_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerStartedSpeaking_10), (void*)value);
}
inline static int32_t get_offset_of_PlayerStoppedSpeaking_11() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___PlayerStoppedSpeaking_11)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_PlayerStoppedSpeaking_11() const { return ___PlayerStoppedSpeaking_11; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_PlayerStoppedSpeaking_11() { return &___PlayerStoppedSpeaking_11; }
inline void set_PlayerStoppedSpeaking_11(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___PlayerStoppedSpeaking_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerStoppedSpeaking_11), (void*)value);
}
inline static int32_t get_offset_of_OnEnqueuePlayerLeft_12() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ___OnEnqueuePlayerLeft_12)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_OnEnqueuePlayerLeft_12() const { return ___OnEnqueuePlayerLeft_12; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_OnEnqueuePlayerLeft_12() { return &___OnEnqueuePlayerLeft_12; }
inline void set_OnEnqueuePlayerLeft_12(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___OnEnqueuePlayerLeft_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnEnqueuePlayerLeft_12), (void*)value);
}
inline static int32_t get_offset_of__voicePacketWarnThreshold_15() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ____voicePacketWarnThreshold_15)); }
inline int32_t get__voicePacketWarnThreshold_15() const { return ____voicePacketWarnThreshold_15; }
inline int32_t* get_address_of__voicePacketWarnThreshold_15() { return &____voicePacketWarnThreshold_15; }
inline void set__voicePacketWarnThreshold_15(int32_t value)
{
____voicePacketWarnThreshold_15 = value;
}
inline static int32_t get_offset_of__pendingVoicePackets_16() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ____pendingVoicePackets_16)); }
inline int32_t get__pendingVoicePackets_16() const { return ____pendingVoicePackets_16; }
inline int32_t* get_address_of__pendingVoicePackets_16() { return &____pendingVoicePackets_16; }
inline void set__pendingVoicePackets_16(int32_t value)
{
____pendingVoicePackets_16 = value;
}
inline static int32_t get_offset_of__previousFlush_17() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3, ____previousFlush_17)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get__previousFlush_17() const { return ____previousFlush_17; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of__previousFlush_17() { return &____previousFlush_17; }
inline void set__previousFlush_17(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
____previousFlush_17 = value;
}
};
struct EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3_StaticFields
{
public:
// Dissonance.Log Dissonance.Networking.Client.EventQueue::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.TimeSpan Dissonance.Networking.Client.EventQueue::MinWarnDispatchTimeThreshold
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinWarnDispatchTimeThreshold_14;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of_MinWarnDispatchTimeThreshold_14() { return static_cast<int32_t>(offsetof(EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3_StaticFields, ___MinWarnDispatchTimeThreshold_14)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinWarnDispatchTimeThreshold_14() const { return ___MinWarnDispatchTimeThreshold_14; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinWarnDispatchTimeThreshold_14() { return &___MinWarnDispatchTimeThreshold_14; }
inline void set_MinWarnDispatchTimeThreshold_14(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinWarnDispatchTimeThreshold_14 = value;
}
};
// Dissonance.Audio.Playback.FrameFormat
struct FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226
{
public:
// Dissonance.Audio.Codecs.Codec Dissonance.Audio.Playback.FrameFormat::Codec
uint8_t ___Codec_0;
// NAudio.Wave.WaveFormat Dissonance.Audio.Playback.FrameFormat::WaveFormat
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ___WaveFormat_1;
// System.UInt32 Dissonance.Audio.Playback.FrameFormat::FrameSize
uint32_t ___FrameSize_2;
public:
inline static int32_t get_offset_of_Codec_0() { return static_cast<int32_t>(offsetof(FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226, ___Codec_0)); }
inline uint8_t get_Codec_0() const { return ___Codec_0; }
inline uint8_t* get_address_of_Codec_0() { return &___Codec_0; }
inline void set_Codec_0(uint8_t value)
{
___Codec_0 = value;
}
inline static int32_t get_offset_of_WaveFormat_1() { return static_cast<int32_t>(offsetof(FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226, ___WaveFormat_1)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get_WaveFormat_1() const { return ___WaveFormat_1; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of_WaveFormat_1() { return &___WaveFormat_1; }
inline void set_WaveFormat_1(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
___WaveFormat_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___WaveFormat_1), (void*)value);
}
inline static int32_t get_offset_of_FrameSize_2() { return static_cast<int32_t>(offsetof(FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226, ___FrameSize_2)); }
inline uint32_t get_FrameSize_2() const { return ___FrameSize_2; }
inline uint32_t* get_address_of_FrameSize_2() { return &___FrameSize_2; }
inline void set_FrameSize_2(uint32_t value)
{
___FrameSize_2 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Audio.Playback.FrameFormat
struct FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226_marshaled_pinvoke
{
uint8_t ___Codec_0;
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ___WaveFormat_1;
uint32_t ___FrameSize_2;
};
// Native definition for COM marshalling of Dissonance.Audio.Playback.FrameFormat
struct FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226_marshaled_com
{
uint8_t ___Codec_0;
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ___WaveFormat_1;
uint32_t ___FrameSize_2;
};
// UnityEngine.InputSystem.XR.Haptics.GetCurrentHapticStateCommand
struct GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.XR.Haptics.GetCurrentHapticStateCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___samplesQueued_2_OffsetPadding[8];
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.GetCurrentHapticStateCommand::samplesQueued
uint32_t ___samplesQueued_2;
};
#pragma pack(pop, tp)
struct
{
char ___samplesQueued_2_OffsetPadding_forAlignmentOnly[8];
uint32_t ___samplesQueued_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___samplesAvailable_3_OffsetPadding[12];
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.GetCurrentHapticStateCommand::samplesAvailable
uint32_t ___samplesAvailable_3;
};
#pragma pack(pop, tp)
struct
{
char ___samplesAvailable_3_OffsetPadding_forAlignmentOnly[12];
uint32_t ___samplesAvailable_3_forAlignmentOnly;
};
};
};
uint8_t GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3__padding[16];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_samplesQueued_2() { return static_cast<int32_t>(offsetof(GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3, ___samplesQueued_2)); }
inline uint32_t get_samplesQueued_2() const { return ___samplesQueued_2; }
inline uint32_t* get_address_of_samplesQueued_2() { return &___samplesQueued_2; }
inline void set_samplesQueued_2(uint32_t value)
{
___samplesQueued_2 = value;
}
inline static int32_t get_offset_of_samplesAvailable_3() { return static_cast<int32_t>(offsetof(GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3, ___samplesAvailable_3)); }
inline uint32_t get_samplesAvailable_3() const { return ___samplesAvailable_3; }
inline uint32_t* get_address_of_samplesAvailable_3() { return &___samplesAvailable_3; }
inline void set_samplesAvailable_3(uint32_t value)
{
___samplesAvailable_3 = value;
}
};
// UnityEngine.InputSystem.XR.Haptics.GetHapticCapabilitiesCommand
struct GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.XR.Haptics.GetHapticCapabilitiesCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___numChannels_2_OffsetPadding[8];
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.GetHapticCapabilitiesCommand::numChannels
uint32_t ___numChannels_2;
};
#pragma pack(pop, tp)
struct
{
char ___numChannels_2_OffsetPadding_forAlignmentOnly[8];
uint32_t ___numChannels_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___frequencyHz_3_OffsetPadding[12];
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.GetHapticCapabilitiesCommand::frequencyHz
uint32_t ___frequencyHz_3;
};
#pragma pack(pop, tp)
struct
{
char ___frequencyHz_3_OffsetPadding_forAlignmentOnly[12];
uint32_t ___frequencyHz_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___maxBufferSize_4_OffsetPadding[16];
// System.UInt32 UnityEngine.InputSystem.XR.Haptics.GetHapticCapabilitiesCommand::maxBufferSize
uint32_t ___maxBufferSize_4;
};
#pragma pack(pop, tp)
struct
{
char ___maxBufferSize_4_OffsetPadding_forAlignmentOnly[16];
uint32_t ___maxBufferSize_4_forAlignmentOnly;
};
};
};
uint8_t GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C__padding[20];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_numChannels_2() { return static_cast<int32_t>(offsetof(GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C, ___numChannels_2)); }
inline uint32_t get_numChannels_2() const { return ___numChannels_2; }
inline uint32_t* get_address_of_numChannels_2() { return &___numChannels_2; }
inline void set_numChannels_2(uint32_t value)
{
___numChannels_2 = value;
}
inline static int32_t get_offset_of_frequencyHz_3() { return static_cast<int32_t>(offsetof(GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C, ___frequencyHz_3)); }
inline uint32_t get_frequencyHz_3() const { return ___frequencyHz_3; }
inline uint32_t* get_address_of_frequencyHz_3() { return &___frequencyHz_3; }
inline void set_frequencyHz_3(uint32_t value)
{
___frequencyHz_3 = value;
}
inline static int32_t get_offset_of_maxBufferSize_4() { return static_cast<int32_t>(offsetof(GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C, ___maxBufferSize_4)); }
inline uint32_t get_maxBufferSize_4() const { return ___maxBufferSize_4; }
inline uint32_t* get_address_of_maxBufferSize_4() { return &___maxBufferSize_4; }
inline void set_maxBufferSize_4(uint32_t value)
{
___maxBufferSize_4 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand
struct InitiateUserAccountPairingCommand_t28FA5884EF6EBE626E1463E9FEF54EEC57CF4822
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.InitiateUserAccountPairingCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t InitiateUserAccountPairingCommand_t28FA5884EF6EBE626E1463E9FEF54EEC57CF4822__padding[8];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(InitiateUserAccountPairingCommand_t28FA5884EF6EBE626E1463E9FEF54EEC57CF4822, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout
struct InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B : public RuntimeObject
{
public:
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::m_Name
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___m_Name_2;
// System.Type UnityEngine.InputSystem.Layouts.InputControlLayout::m_Type
Type_t * ___m_Type_3;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::m_Variants
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___m_Variants_4;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Layouts.InputControlLayout::m_StateFormat
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___m_StateFormat_5;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout::m_StateSizeInBytes
int32_t ___m_StateSizeInBytes_6;
// System.Nullable`1<System.Boolean> UnityEngine.InputSystem.Layouts.InputControlLayout::m_UpdateBeforeRender
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___m_UpdateBeforeRender_7;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout::m_BaseLayouts
InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 ___m_BaseLayouts_8;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout::m_AppliedOverrides
InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 ___m_AppliedOverrides_9;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.Layouts.InputControlLayout::m_CommonUsages
InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* ___m_CommonUsages_10;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem[] UnityEngine.InputSystem.Layouts.InputControlLayout::m_Controls
ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE* ___m_Controls_11;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout::m_DisplayName
String_t* ___m_DisplayName_12;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout::m_Description
String_t* ___m_Description_13;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Flags UnityEngine.InputSystem.Layouts.InputControlLayout::m_Flags
int32_t ___m_Flags_14;
public:
inline static int32_t get_offset_of_m_Name_2() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_Name_2)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_m_Name_2() const { return ___m_Name_2; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_m_Name_2() { return &___m_Name_2; }
inline void set_m_Name_2(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___m_Name_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_2))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_2))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Type_3() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_Type_3)); }
inline Type_t * get_m_Type_3() const { return ___m_Type_3; }
inline Type_t ** get_address_of_m_Type_3() { return &___m_Type_3; }
inline void set_m_Type_3(Type_t * value)
{
___m_Type_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Type_3), (void*)value);
}
inline static int32_t get_offset_of_m_Variants_4() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_Variants_4)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_m_Variants_4() const { return ___m_Variants_4; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_m_Variants_4() { return &___m_Variants_4; }
inline void set_m_Variants_4(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___m_Variants_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_4))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_4))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_StateFormat_5() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_StateFormat_5)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_m_StateFormat_5() const { return ___m_StateFormat_5; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_m_StateFormat_5() { return &___m_StateFormat_5; }
inline void set_m_StateFormat_5(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___m_StateFormat_5 = value;
}
inline static int32_t get_offset_of_m_StateSizeInBytes_6() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_StateSizeInBytes_6)); }
inline int32_t get_m_StateSizeInBytes_6() const { return ___m_StateSizeInBytes_6; }
inline int32_t* get_address_of_m_StateSizeInBytes_6() { return &___m_StateSizeInBytes_6; }
inline void set_m_StateSizeInBytes_6(int32_t value)
{
___m_StateSizeInBytes_6 = value;
}
inline static int32_t get_offset_of_m_UpdateBeforeRender_7() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_UpdateBeforeRender_7)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_m_UpdateBeforeRender_7() const { return ___m_UpdateBeforeRender_7; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_m_UpdateBeforeRender_7() { return &___m_UpdateBeforeRender_7; }
inline void set_m_UpdateBeforeRender_7(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___m_UpdateBeforeRender_7 = value;
}
inline static int32_t get_offset_of_m_BaseLayouts_8() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_BaseLayouts_8)); }
inline InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 get_m_BaseLayouts_8() const { return ___m_BaseLayouts_8; }
inline InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 * get_address_of_m_BaseLayouts_8() { return &___m_BaseLayouts_8; }
inline void set_m_BaseLayouts_8(InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 value)
{
___m_BaseLayouts_8 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BaseLayouts_8))->___firstValue_1))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_BaseLayouts_8))->___firstValue_1))->___m_StringLowerCase_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_BaseLayouts_8))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_AppliedOverrides_9() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_AppliedOverrides_9)); }
inline InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 get_m_AppliedOverrides_9() const { return ___m_AppliedOverrides_9; }
inline InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 * get_address_of_m_AppliedOverrides_9() { return &___m_AppliedOverrides_9; }
inline void set_m_AppliedOverrides_9(InlinedArray_1_t0744526DF131C5468CDB93F65515C431AB07BC95 value)
{
___m_AppliedOverrides_9 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AppliedOverrides_9))->___firstValue_1))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_AppliedOverrides_9))->___firstValue_1))->___m_StringLowerCase_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_AppliedOverrides_9))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_CommonUsages_10() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_CommonUsages_10)); }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* get_m_CommonUsages_10() const { return ___m_CommonUsages_10; }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95** get_address_of_m_CommonUsages_10() { return &___m_CommonUsages_10; }
inline void set_m_CommonUsages_10(InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* value)
{
___m_CommonUsages_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CommonUsages_10), (void*)value);
}
inline static int32_t get_offset_of_m_Controls_11() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_Controls_11)); }
inline ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE* get_m_Controls_11() const { return ___m_Controls_11; }
inline ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE** get_address_of_m_Controls_11() { return &___m_Controls_11; }
inline void set_m_Controls_11(ControlItemU5BU5D_t6BC3240CF063BF384A677F269267D31BC5C9A0DE* value)
{
___m_Controls_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Controls_11), (void*)value);
}
inline static int32_t get_offset_of_m_DisplayName_12() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_DisplayName_12)); }
inline String_t* get_m_DisplayName_12() const { return ___m_DisplayName_12; }
inline String_t** get_address_of_m_DisplayName_12() { return &___m_DisplayName_12; }
inline void set_m_DisplayName_12(String_t* value)
{
___m_DisplayName_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisplayName_12), (void*)value);
}
inline static int32_t get_offset_of_m_Description_13() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_Description_13)); }
inline String_t* get_m_Description_13() const { return ___m_Description_13; }
inline String_t** get_address_of_m_Description_13() { return &___m_Description_13; }
inline void set_m_Description_13(String_t* value)
{
___m_Description_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Description_13), (void*)value);
}
inline static int32_t get_offset_of_m_Flags_14() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B, ___m_Flags_14)); }
inline int32_t get_m_Flags_14() const { return ___m_Flags_14; }
inline int32_t* get_address_of_m_Flags_14() { return &___m_Flags_14; }
inline void set_m_Flags_14(int32_t value)
{
___m_Flags_14 = value;
}
};
struct InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout::s_DefaultVariant
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___s_DefaultVariant_0;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Collection UnityEngine.InputSystem.Layouts.InputControlLayout::s_Layouts
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09 ___s_Layouts_15;
// UnityEngine.InputSystem.Layouts.InputControlLayout/Cache UnityEngine.InputSystem.Layouts.InputControlLayout::s_CacheInstance
Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01 ___s_CacheInstance_16;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout::s_CacheInstanceRef
int32_t ___s_CacheInstanceRef_17;
public:
inline static int32_t get_offset_of_s_DefaultVariant_0() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields, ___s_DefaultVariant_0)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_s_DefaultVariant_0() const { return ___s_DefaultVariant_0; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_s_DefaultVariant_0() { return &___s_DefaultVariant_0; }
inline void set_s_DefaultVariant_0(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___s_DefaultVariant_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_DefaultVariant_0))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_DefaultVariant_0))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_Layouts_15() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields, ___s_Layouts_15)); }
inline Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09 get_s_Layouts_15() const { return ___s_Layouts_15; }
inline Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09 * get_address_of_s_Layouts_15() { return &___s_Layouts_15; }
inline void set_s_Layouts_15(Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09 value)
{
___s_Layouts_15 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutTypes_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutStrings_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutBuilders_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___baseLayoutTable_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutOverrides_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutOverrideNames_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Layouts_15))->___layoutMatchers_7), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_CacheInstance_16() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields, ___s_CacheInstance_16)); }
inline Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01 get_s_CacheInstance_16() const { return ___s_CacheInstance_16; }
inline Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01 * get_address_of_s_CacheInstance_16() { return &___s_CacheInstance_16; }
inline void set_s_CacheInstance_16(Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01 value)
{
___s_CacheInstance_16 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_CacheInstance_16))->___table_0), (void*)NULL);
}
inline static int32_t get_offset_of_s_CacheInstanceRef_17() { return static_cast<int32_t>(offsetof(InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields, ___s_CacheInstanceRef_17)); }
inline int32_t get_s_CacheInstanceRef_17() const { return ___s_CacheInstanceRef_17; }
inline int32_t* get_address_of_s_CacheInstanceRef_17() { return &___s_CacheInstanceRef_17; }
inline void set_s_CacheInstanceRef_17(int32_t value)
{
___s_CacheInstanceRef_17 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputUpdate
struct InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E : public RuntimeObject
{
public:
public:
};
struct InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields
{
public:
// UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.LowLevel.InputUpdate::s_LastUpdateType
int32_t ___s_LastUpdateType_0;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate::s_UpdateStepCount
uint32_t ___s_UpdateStepCount_1;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate::s_LastUpdateRetainedEventBytes
uint32_t ___s_LastUpdateRetainedEventBytes_2;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate::s_LastUpdateRetainedEventCount
uint32_t ___s_LastUpdateRetainedEventCount_3;
public:
inline static int32_t get_offset_of_s_LastUpdateType_0() { return static_cast<int32_t>(offsetof(InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields, ___s_LastUpdateType_0)); }
inline int32_t get_s_LastUpdateType_0() const { return ___s_LastUpdateType_0; }
inline int32_t* get_address_of_s_LastUpdateType_0() { return &___s_LastUpdateType_0; }
inline void set_s_LastUpdateType_0(int32_t value)
{
___s_LastUpdateType_0 = value;
}
inline static int32_t get_offset_of_s_UpdateStepCount_1() { return static_cast<int32_t>(offsetof(InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields, ___s_UpdateStepCount_1)); }
inline uint32_t get_s_UpdateStepCount_1() const { return ___s_UpdateStepCount_1; }
inline uint32_t* get_address_of_s_UpdateStepCount_1() { return &___s_UpdateStepCount_1; }
inline void set_s_UpdateStepCount_1(uint32_t value)
{
___s_UpdateStepCount_1 = value;
}
inline static int32_t get_offset_of_s_LastUpdateRetainedEventBytes_2() { return static_cast<int32_t>(offsetof(InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields, ___s_LastUpdateRetainedEventBytes_2)); }
inline uint32_t get_s_LastUpdateRetainedEventBytes_2() const { return ___s_LastUpdateRetainedEventBytes_2; }
inline uint32_t* get_address_of_s_LastUpdateRetainedEventBytes_2() { return &___s_LastUpdateRetainedEventBytes_2; }
inline void set_s_LastUpdateRetainedEventBytes_2(uint32_t value)
{
___s_LastUpdateRetainedEventBytes_2 = value;
}
inline static int32_t get_offset_of_s_LastUpdateRetainedEventCount_3() { return static_cast<int32_t>(offsetof(InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields, ___s_LastUpdateRetainedEventCount_3)); }
inline uint32_t get_s_LastUpdateRetainedEventCount_3() const { return ___s_LastUpdateRetainedEventCount_3; }
inline uint32_t* get_address_of_s_LastUpdateRetainedEventCount_3() { return &___s_LastUpdateRetainedEventCount_3; }
inline void set_s_LastUpdateRetainedEventCount_3(uint32_t value)
{
___s_LastUpdateRetainedEventCount_3 = value;
}
};
// UnityEngine.InputSystem.Users.InputUser
struct InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17
{
public:
// System.UInt32 UnityEngine.InputSystem.Users.InputUser::m_Id
uint32_t ___m_Id_1;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17, ___m_Id_1)); }
inline uint32_t get_m_Id_1() const { return ___m_Id_1; }
inline uint32_t* get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(uint32_t value)
{
___m_Id_1 = value;
}
};
struct InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields
{
public:
// System.Int32 UnityEngine.InputSystem.Users.InputUser::s_PairingStateVersion
int32_t ___s_PairingStateVersion_2;
// System.UInt32 UnityEngine.InputSystem.Users.InputUser::s_LastUserId
uint32_t ___s_LastUserId_3;
// System.Int32 UnityEngine.InputSystem.Users.InputUser::s_AllUserCount
int32_t ___s_AllUserCount_4;
// System.Int32 UnityEngine.InputSystem.Users.InputUser::s_AllPairedDeviceCount
int32_t ___s_AllPairedDeviceCount_5;
// System.Int32 UnityEngine.InputSystem.Users.InputUser::s_AllLostDeviceCount
int32_t ___s_AllLostDeviceCount_6;
// UnityEngine.InputSystem.Users.InputUser[] UnityEngine.InputSystem.Users.InputUser::s_AllUsers
InputUserU5BU5D_t2ECAB832F3121C09778A45471474155A3D1359E8* ___s_AllUsers_7;
// UnityEngine.InputSystem.Users.InputUser/UserData[] UnityEngine.InputSystem.Users.InputUser::s_AllUserData
UserDataU5BU5D_t5E059C5F41EE12689E296EE5EB6AFF369E81DA8F* ___s_AllUserData_8;
// UnityEngine.InputSystem.InputDevice[] UnityEngine.InputSystem.Users.InputUser::s_AllPairedDevices
InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* ___s_AllPairedDevices_9;
// UnityEngine.InputSystem.InputDevice[] UnityEngine.InputSystem.Users.InputUser::s_AllLostDevices
InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* ___s_AllLostDevices_10;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Users.InputUser/OngoingAccountSelection> UnityEngine.InputSystem.Users.InputUser::s_OngoingAccountSelections
InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4 ___s_OngoingAccountSelections_11;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`3<UnityEngine.InputSystem.Users.InputUser,UnityEngine.InputSystem.Users.InputUserChange,UnityEngine.InputSystem.InputDevice>> UnityEngine.InputSystem.Users.InputUser::s_OnChange
InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600 ___s_OnChange_12;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`2<UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr>> UnityEngine.InputSystem.Users.InputUser::s_OnUnpairedDeviceUsed
InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7 ___s_OnUnpairedDeviceUsed_13;
// System.Action`2<System.Object,UnityEngine.InputSystem.InputActionChange> UnityEngine.InputSystem.Users.InputUser::s_ActionChangeDelegate
Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 * ___s_ActionChangeDelegate_14;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange> UnityEngine.InputSystem.Users.InputUser::s_OnDeviceChangeDelegate
Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F * ___s_OnDeviceChangeDelegate_15;
// System.Action`2<UnityEngine.InputSystem.LowLevel.InputEventPtr,UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.Users.InputUser::s_OnEventDelegate
Action_2_t4EA3B785FF965DC7089CB1E9267F42935A19E5F1 * ___s_OnEventDelegate_16;
// System.Boolean UnityEngine.InputSystem.Users.InputUser::s_OnActionChangeHooked
bool ___s_OnActionChangeHooked_17;
// System.Boolean UnityEngine.InputSystem.Users.InputUser::s_OnDeviceChangeHooked
bool ___s_OnDeviceChangeHooked_18;
// System.Boolean UnityEngine.InputSystem.Users.InputUser::s_OnEventHooked
bool ___s_OnEventHooked_19;
// System.Int32 UnityEngine.InputSystem.Users.InputUser::s_ListenForUnpairedDeviceActivity
int32_t ___s_ListenForUnpairedDeviceActivity_20;
public:
inline static int32_t get_offset_of_s_PairingStateVersion_2() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_PairingStateVersion_2)); }
inline int32_t get_s_PairingStateVersion_2() const { return ___s_PairingStateVersion_2; }
inline int32_t* get_address_of_s_PairingStateVersion_2() { return &___s_PairingStateVersion_2; }
inline void set_s_PairingStateVersion_2(int32_t value)
{
___s_PairingStateVersion_2 = value;
}
inline static int32_t get_offset_of_s_LastUserId_3() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_LastUserId_3)); }
inline uint32_t get_s_LastUserId_3() const { return ___s_LastUserId_3; }
inline uint32_t* get_address_of_s_LastUserId_3() { return &___s_LastUserId_3; }
inline void set_s_LastUserId_3(uint32_t value)
{
___s_LastUserId_3 = value;
}
inline static int32_t get_offset_of_s_AllUserCount_4() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_AllUserCount_4)); }
inline int32_t get_s_AllUserCount_4() const { return ___s_AllUserCount_4; }
inline int32_t* get_address_of_s_AllUserCount_4() { return &___s_AllUserCount_4; }
inline void set_s_AllUserCount_4(int32_t value)
{
___s_AllUserCount_4 = value;
}
inline static int32_t get_offset_of_s_AllPairedDeviceCount_5() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_AllPairedDeviceCount_5)); }
inline int32_t get_s_AllPairedDeviceCount_5() const { return ___s_AllPairedDeviceCount_5; }
inline int32_t* get_address_of_s_AllPairedDeviceCount_5() { return &___s_AllPairedDeviceCount_5; }
inline void set_s_AllPairedDeviceCount_5(int32_t value)
{
___s_AllPairedDeviceCount_5 = value;
}
inline static int32_t get_offset_of_s_AllLostDeviceCount_6() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_AllLostDeviceCount_6)); }
inline int32_t get_s_AllLostDeviceCount_6() const { return ___s_AllLostDeviceCount_6; }
inline int32_t* get_address_of_s_AllLostDeviceCount_6() { return &___s_AllLostDeviceCount_6; }
inline void set_s_AllLostDeviceCount_6(int32_t value)
{
___s_AllLostDeviceCount_6 = value;
}
inline static int32_t get_offset_of_s_AllUsers_7() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_AllUsers_7)); }
inline InputUserU5BU5D_t2ECAB832F3121C09778A45471474155A3D1359E8* get_s_AllUsers_7() const { return ___s_AllUsers_7; }
inline InputUserU5BU5D_t2ECAB832F3121C09778A45471474155A3D1359E8** get_address_of_s_AllUsers_7() { return &___s_AllUsers_7; }
inline void set_s_AllUsers_7(InputUserU5BU5D_t2ECAB832F3121C09778A45471474155A3D1359E8* value)
{
___s_AllUsers_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_AllUsers_7), (void*)value);
}
inline static int32_t get_offset_of_s_AllUserData_8() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_AllUserData_8)); }
inline UserDataU5BU5D_t5E059C5F41EE12689E296EE5EB6AFF369E81DA8F* get_s_AllUserData_8() const { return ___s_AllUserData_8; }
inline UserDataU5BU5D_t5E059C5F41EE12689E296EE5EB6AFF369E81DA8F** get_address_of_s_AllUserData_8() { return &___s_AllUserData_8; }
inline void set_s_AllUserData_8(UserDataU5BU5D_t5E059C5F41EE12689E296EE5EB6AFF369E81DA8F* value)
{
___s_AllUserData_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_AllUserData_8), (void*)value);
}
inline static int32_t get_offset_of_s_AllPairedDevices_9() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_AllPairedDevices_9)); }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* get_s_AllPairedDevices_9() const { return ___s_AllPairedDevices_9; }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24** get_address_of_s_AllPairedDevices_9() { return &___s_AllPairedDevices_9; }
inline void set_s_AllPairedDevices_9(InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* value)
{
___s_AllPairedDevices_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_AllPairedDevices_9), (void*)value);
}
inline static int32_t get_offset_of_s_AllLostDevices_10() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_AllLostDevices_10)); }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* get_s_AllLostDevices_10() const { return ___s_AllLostDevices_10; }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24** get_address_of_s_AllLostDevices_10() { return &___s_AllLostDevices_10; }
inline void set_s_AllLostDevices_10(InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* value)
{
___s_AllLostDevices_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_AllLostDevices_10), (void*)value);
}
inline static int32_t get_offset_of_s_OngoingAccountSelections_11() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OngoingAccountSelections_11)); }
inline InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4 get_s_OngoingAccountSelections_11() const { return ___s_OngoingAccountSelections_11; }
inline InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4 * get_address_of_s_OngoingAccountSelections_11() { return &___s_OngoingAccountSelections_11; }
inline void set_s_OngoingAccountSelections_11(InlinedArray_1_t4213DEBCC0024A1179B6A08CB9499D8A4A8A68B4 value)
{
___s_OngoingAccountSelections_11 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___s_OngoingAccountSelections_11))->___firstValue_1))->___device_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OngoingAccountSelections_11))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_OnChange_12() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OnChange_12)); }
inline InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600 get_s_OnChange_12() const { return ___s_OnChange_12; }
inline InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600 * get_address_of_s_OnChange_12() { return &___s_OnChange_12; }
inline void set_s_OnChange_12(InlinedArray_1_tF51048BE04B6B6F5CDB39F06F772BAB0CA183600 value)
{
___s_OnChange_12 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnChange_12))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnChange_12))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_OnUnpairedDeviceUsed_13() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OnUnpairedDeviceUsed_13)); }
inline InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7 get_s_OnUnpairedDeviceUsed_13() const { return ___s_OnUnpairedDeviceUsed_13; }
inline InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7 * get_address_of_s_OnUnpairedDeviceUsed_13() { return &___s_OnUnpairedDeviceUsed_13; }
inline void set_s_OnUnpairedDeviceUsed_13(InlinedArray_1_t8B8083220BBAFFCEBB7A36DEAA2D075EDC4A06C7 value)
{
___s_OnUnpairedDeviceUsed_13 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnUnpairedDeviceUsed_13))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnUnpairedDeviceUsed_13))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_ActionChangeDelegate_14() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_ActionChangeDelegate_14)); }
inline Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 * get_s_ActionChangeDelegate_14() const { return ___s_ActionChangeDelegate_14; }
inline Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 ** get_address_of_s_ActionChangeDelegate_14() { return &___s_ActionChangeDelegate_14; }
inline void set_s_ActionChangeDelegate_14(Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 * value)
{
___s_ActionChangeDelegate_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ActionChangeDelegate_14), (void*)value);
}
inline static int32_t get_offset_of_s_OnDeviceChangeDelegate_15() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OnDeviceChangeDelegate_15)); }
inline Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F * get_s_OnDeviceChangeDelegate_15() const { return ___s_OnDeviceChangeDelegate_15; }
inline Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F ** get_address_of_s_OnDeviceChangeDelegate_15() { return &___s_OnDeviceChangeDelegate_15; }
inline void set_s_OnDeviceChangeDelegate_15(Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F * value)
{
___s_OnDeviceChangeDelegate_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_OnDeviceChangeDelegate_15), (void*)value);
}
inline static int32_t get_offset_of_s_OnEventDelegate_16() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OnEventDelegate_16)); }
inline Action_2_t4EA3B785FF965DC7089CB1E9267F42935A19E5F1 * get_s_OnEventDelegate_16() const { return ___s_OnEventDelegate_16; }
inline Action_2_t4EA3B785FF965DC7089CB1E9267F42935A19E5F1 ** get_address_of_s_OnEventDelegate_16() { return &___s_OnEventDelegate_16; }
inline void set_s_OnEventDelegate_16(Action_2_t4EA3B785FF965DC7089CB1E9267F42935A19E5F1 * value)
{
___s_OnEventDelegate_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_OnEventDelegate_16), (void*)value);
}
inline static int32_t get_offset_of_s_OnActionChangeHooked_17() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OnActionChangeHooked_17)); }
inline bool get_s_OnActionChangeHooked_17() const { return ___s_OnActionChangeHooked_17; }
inline bool* get_address_of_s_OnActionChangeHooked_17() { return &___s_OnActionChangeHooked_17; }
inline void set_s_OnActionChangeHooked_17(bool value)
{
___s_OnActionChangeHooked_17 = value;
}
inline static int32_t get_offset_of_s_OnDeviceChangeHooked_18() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OnDeviceChangeHooked_18)); }
inline bool get_s_OnDeviceChangeHooked_18() const { return ___s_OnDeviceChangeHooked_18; }
inline bool* get_address_of_s_OnDeviceChangeHooked_18() { return &___s_OnDeviceChangeHooked_18; }
inline void set_s_OnDeviceChangeHooked_18(bool value)
{
___s_OnDeviceChangeHooked_18 = value;
}
inline static int32_t get_offset_of_s_OnEventHooked_19() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_OnEventHooked_19)); }
inline bool get_s_OnEventHooked_19() const { return ___s_OnEventHooked_19; }
inline bool* get_address_of_s_OnEventHooked_19() { return &___s_OnEventHooked_19; }
inline void set_s_OnEventHooked_19(bool value)
{
___s_OnEventHooked_19 = value;
}
inline static int32_t get_offset_of_s_ListenForUnpairedDeviceActivity_20() { return static_cast<int32_t>(offsetof(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields, ___s_ListenForUnpairedDeviceActivity_20)); }
inline int32_t get_s_ListenForUnpairedDeviceActivity_20() const { return ___s_ListenForUnpairedDeviceActivity_20; }
inline int32_t* get_address_of_s_ListenForUnpairedDeviceActivity_20() { return &___s_ListenForUnpairedDeviceActivity_20; }
inline void set_s_ListenForUnpairedDeviceActivity_20(int32_t value)
{
___s_ListenForUnpairedDeviceActivity_20 = value;
}
};
// Mirror.SimpleWeb.Log
struct Log_t2BB16EE7D82D3737B035856E876EA4B7B36CDC5F : public RuntimeObject
{
public:
public:
};
struct Log_t2BB16EE7D82D3737B035856E876EA4B7B36CDC5F_StaticFields
{
public:
// Mirror.SimpleWeb.Log/Levels Mirror.SimpleWeb.Log::level
int32_t ___level_2;
public:
inline static int32_t get_offset_of_level_2() { return static_cast<int32_t>(offsetof(Log_t2BB16EE7D82D3737B035856E876EA4B7B36CDC5F_StaticFields, ___level_2)); }
inline int32_t get_level_2() const { return ___level_2; }
inline int32_t* get_address_of_level_2() { return &___level_2; }
inline void set_level_2(int32_t value)
{
___level_2 = value;
}
};
// LogEntry
struct LogEntry_tEBF9516CB311C9A223C7E1D748A977379251D9A8
{
public:
// System.String LogEntry::message
String_t* ___message_0;
// UnityEngine.LogType LogEntry::type
int32_t ___type_1;
public:
inline static int32_t get_offset_of_message_0() { return static_cast<int32_t>(offsetof(LogEntry_tEBF9516CB311C9A223C7E1D748A977379251D9A8, ___message_0)); }
inline String_t* get_message_0() const { return ___message_0; }
inline String_t** get_address_of_message_0() { return &___message_0; }
inline void set_message_0(String_t* value)
{
___message_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___message_0), (void*)value);
}
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(LogEntry_tEBF9516CB311C9A223C7E1D748A977379251D9A8, ___type_1)); }
inline int32_t get_type_1() const { return ___type_1; }
inline int32_t* get_address_of_type_1() { return &___type_1; }
inline void set_type_1(int32_t value)
{
___type_1 = value;
}
};
// Native definition for P/Invoke marshalling of LogEntry
struct LogEntry_tEBF9516CB311C9A223C7E1D748A977379251D9A8_marshaled_pinvoke
{
char* ___message_0;
int32_t ___type_1;
};
// Native definition for COM marshalling of LogEntry
struct LogEntry_tEBF9516CB311C9A223C7E1D748A977379251D9A8_marshaled_com
{
Il2CppChar* ___message_0;
int32_t ___type_1;
};
// Mirror.Examples.MultipleMatch.MatchPlayerData
struct MatchPlayerData_t1318630045729D1E5327B91BADA13406910E1392
{
public:
// System.Int32 Mirror.Examples.MultipleMatch.MatchPlayerData::playerIndex
int32_t ___playerIndex_0;
// System.Int32 Mirror.Examples.MultipleMatch.MatchPlayerData::wins
int32_t ___wins_1;
// Mirror.Examples.MultipleMatch.CellValue Mirror.Examples.MultipleMatch.MatchPlayerData::currentScore
uint16_t ___currentScore_2;
public:
inline static int32_t get_offset_of_playerIndex_0() { return static_cast<int32_t>(offsetof(MatchPlayerData_t1318630045729D1E5327B91BADA13406910E1392, ___playerIndex_0)); }
inline int32_t get_playerIndex_0() const { return ___playerIndex_0; }
inline int32_t* get_address_of_playerIndex_0() { return &___playerIndex_0; }
inline void set_playerIndex_0(int32_t value)
{
___playerIndex_0 = value;
}
inline static int32_t get_offset_of_wins_1() { return static_cast<int32_t>(offsetof(MatchPlayerData_t1318630045729D1E5327B91BADA13406910E1392, ___wins_1)); }
inline int32_t get_wins_1() const { return ___wins_1; }
inline int32_t* get_address_of_wins_1() { return &___wins_1; }
inline void set_wins_1(int32_t value)
{
___wins_1 = value;
}
inline static int32_t get_offset_of_currentScore_2() { return static_cast<int32_t>(offsetof(MatchPlayerData_t1318630045729D1E5327B91BADA13406910E1392, ___currentScore_2)); }
inline uint16_t get_currentScore_2() const { return ___currentScore_2; }
inline uint16_t* get_address_of_currentScore_2() { return &___currentScore_2; }
inline void set_currentScore_2(uint16_t value)
{
___currentScore_2 = value;
}
};
// Mirror.SimpleWeb.Message
struct Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347
{
public:
// System.Int32 Mirror.SimpleWeb.Message::connId
int32_t ___connId_0;
// Mirror.SimpleWeb.EventType Mirror.SimpleWeb.Message::type
int32_t ___type_1;
// Mirror.SimpleWeb.ArrayBuffer Mirror.SimpleWeb.Message::data
ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A * ___data_2;
// System.Exception Mirror.SimpleWeb.Message::exception
Exception_t * ___exception_3;
public:
inline static int32_t get_offset_of_connId_0() { return static_cast<int32_t>(offsetof(Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347, ___connId_0)); }
inline int32_t get_connId_0() const { return ___connId_0; }
inline int32_t* get_address_of_connId_0() { return &___connId_0; }
inline void set_connId_0(int32_t value)
{
___connId_0 = value;
}
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347, ___type_1)); }
inline int32_t get_type_1() const { return ___type_1; }
inline int32_t* get_address_of_type_1() { return &___type_1; }
inline void set_type_1(int32_t value)
{
___type_1 = value;
}
inline static int32_t get_offset_of_data_2() { return static_cast<int32_t>(offsetof(Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347, ___data_2)); }
inline ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A * get_data_2() const { return ___data_2; }
inline ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A ** get_address_of_data_2() { return &___data_2; }
inline void set_data_2(ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A * value)
{
___data_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_2), (void*)value);
}
inline static int32_t get_offset_of_exception_3() { return static_cast<int32_t>(offsetof(Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347, ___exception_3)); }
inline Exception_t * get_exception_3() const { return ___exception_3; }
inline Exception_t ** get_address_of_exception_3() { return &___exception_3; }
inline void set_exception_3(Exception_t * value)
{
___exception_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___exception_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mirror.SimpleWeb.Message
struct Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347_marshaled_pinvoke
{
int32_t ___connId_0;
int32_t ___type_1;
ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A * ___data_2;
Exception_t_marshaled_pinvoke* ___exception_3;
};
// Native definition for COM marshalling of Mirror.SimpleWeb.Message
struct Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347_marshaled_com
{
int32_t ___connId_0;
int32_t ___type_1;
ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A * ___data_2;
Exception_t_marshaled_com* ___exception_3;
};
// UnityEngine.InputSystem.Interactions.MultiTapInteraction
struct MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375 : public RuntimeObject
{
public:
// System.Single UnityEngine.InputSystem.Interactions.MultiTapInteraction::tapTime
float ___tapTime_0;
// System.Single UnityEngine.InputSystem.Interactions.MultiTapInteraction::tapDelay
float ___tapDelay_1;
// System.Int32 UnityEngine.InputSystem.Interactions.MultiTapInteraction::tapCount
int32_t ___tapCount_2;
// System.Single UnityEngine.InputSystem.Interactions.MultiTapInteraction::pressPoint
float ___pressPoint_3;
// UnityEngine.InputSystem.Interactions.MultiTapInteraction/TapPhase UnityEngine.InputSystem.Interactions.MultiTapInteraction::m_CurrentTapPhase
int32_t ___m_CurrentTapPhase_4;
// System.Int32 UnityEngine.InputSystem.Interactions.MultiTapInteraction::m_CurrentTapCount
int32_t ___m_CurrentTapCount_5;
// System.Double UnityEngine.InputSystem.Interactions.MultiTapInteraction::m_CurrentTapStartTime
double ___m_CurrentTapStartTime_6;
// System.Double UnityEngine.InputSystem.Interactions.MultiTapInteraction::m_LastTapReleaseTime
double ___m_LastTapReleaseTime_7;
public:
inline static int32_t get_offset_of_tapTime_0() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___tapTime_0)); }
inline float get_tapTime_0() const { return ___tapTime_0; }
inline float* get_address_of_tapTime_0() { return &___tapTime_0; }
inline void set_tapTime_0(float value)
{
___tapTime_0 = value;
}
inline static int32_t get_offset_of_tapDelay_1() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___tapDelay_1)); }
inline float get_tapDelay_1() const { return ___tapDelay_1; }
inline float* get_address_of_tapDelay_1() { return &___tapDelay_1; }
inline void set_tapDelay_1(float value)
{
___tapDelay_1 = value;
}
inline static int32_t get_offset_of_tapCount_2() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___tapCount_2)); }
inline int32_t get_tapCount_2() const { return ___tapCount_2; }
inline int32_t* get_address_of_tapCount_2() { return &___tapCount_2; }
inline void set_tapCount_2(int32_t value)
{
___tapCount_2 = value;
}
inline static int32_t get_offset_of_pressPoint_3() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___pressPoint_3)); }
inline float get_pressPoint_3() const { return ___pressPoint_3; }
inline float* get_address_of_pressPoint_3() { return &___pressPoint_3; }
inline void set_pressPoint_3(float value)
{
___pressPoint_3 = value;
}
inline static int32_t get_offset_of_m_CurrentTapPhase_4() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___m_CurrentTapPhase_4)); }
inline int32_t get_m_CurrentTapPhase_4() const { return ___m_CurrentTapPhase_4; }
inline int32_t* get_address_of_m_CurrentTapPhase_4() { return &___m_CurrentTapPhase_4; }
inline void set_m_CurrentTapPhase_4(int32_t value)
{
___m_CurrentTapPhase_4 = value;
}
inline static int32_t get_offset_of_m_CurrentTapCount_5() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___m_CurrentTapCount_5)); }
inline int32_t get_m_CurrentTapCount_5() const { return ___m_CurrentTapCount_5; }
inline int32_t* get_address_of_m_CurrentTapCount_5() { return &___m_CurrentTapCount_5; }
inline void set_m_CurrentTapCount_5(int32_t value)
{
___m_CurrentTapCount_5 = value;
}
inline static int32_t get_offset_of_m_CurrentTapStartTime_6() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___m_CurrentTapStartTime_6)); }
inline double get_m_CurrentTapStartTime_6() const { return ___m_CurrentTapStartTime_6; }
inline double* get_address_of_m_CurrentTapStartTime_6() { return &___m_CurrentTapStartTime_6; }
inline void set_m_CurrentTapStartTime_6(double value)
{
___m_CurrentTapStartTime_6 = value;
}
inline static int32_t get_offset_of_m_LastTapReleaseTime_7() { return static_cast<int32_t>(offsetof(MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375, ___m_LastTapReleaseTime_7)); }
inline double get_m_LastTapReleaseTime_7() const { return ___m_LastTapReleaseTime_7; }
inline double* get_address_of_m_LastTapReleaseTime_7() { return &___m_LastTapReleaseTime_7; }
inline void set_m_LastTapReleaseTime_7(double value)
{
___m_LastTapReleaseTime_7 = value;
}
};
// 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;
};
// UnityEngineInternal.Input.NativeInputEvent
struct NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngineInternal.Input.NativeInputEventType UnityEngineInternal.Input.NativeInputEvent::type
int32_t ___type_1;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
int32_t ___type_1_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_2_OffsetPadding[4];
// System.UInt16 UnityEngineInternal.Input.NativeInputEvent::sizeInBytes
uint16_t ___sizeInBytes_2;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___sizeInBytes_2_OffsetPadding_forAlignmentOnly[4];
uint16_t ___sizeInBytes_2_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___deviceId_3_OffsetPadding[6];
// System.UInt16 UnityEngineInternal.Input.NativeInputEvent::deviceId
uint16_t ___deviceId_3;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___deviceId_3_OffsetPadding_forAlignmentOnly[6];
uint16_t ___deviceId_3_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___time_4_OffsetPadding[8];
// System.Double UnityEngineInternal.Input.NativeInputEvent::time
double ___time_4;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___time_4_OffsetPadding_forAlignmentOnly[8];
double ___time_4_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___eventId_5_OffsetPadding[16];
// System.Int32 UnityEngineInternal.Input.NativeInputEvent::eventId
int32_t ___eventId_5;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___eventId_5_OffsetPadding_forAlignmentOnly[16];
int32_t ___eventId_5_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD__padding[20];
};
public:
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___type_1)); }
inline int32_t get_type_1() const { return ___type_1; }
inline int32_t* get_address_of_type_1() { return &___type_1; }
inline void set_type_1(int32_t value)
{
___type_1 = value;
}
inline static int32_t get_offset_of_sizeInBytes_2() { return static_cast<int32_t>(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___sizeInBytes_2)); }
inline uint16_t get_sizeInBytes_2() const { return ___sizeInBytes_2; }
inline uint16_t* get_address_of_sizeInBytes_2() { return &___sizeInBytes_2; }
inline void set_sizeInBytes_2(uint16_t value)
{
___sizeInBytes_2 = value;
}
inline static int32_t get_offset_of_deviceId_3() { return static_cast<int32_t>(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___deviceId_3)); }
inline uint16_t get_deviceId_3() const { return ___deviceId_3; }
inline uint16_t* get_address_of_deviceId_3() { return &___deviceId_3; }
inline void set_deviceId_3(uint16_t value)
{
___deviceId_3 = value;
}
inline static int32_t get_offset_of_time_4() { return static_cast<int32_t>(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___time_4)); }
inline double get_time_4() const { return ___time_4; }
inline double* get_address_of_time_4() { return &___time_4; }
inline void set_time_4(double value)
{
___time_4 = value;
}
inline static int32_t get_offset_of_eventId_5() { return static_cast<int32_t>(offsetof(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD, ___eventId_5)); }
inline int32_t get_eventId_5() const { return ___eventId_5; }
inline int32_t* get_address_of_eventId_5() { return &___eventId_5; }
inline void set_eventId_5(int32_t value)
{
___eventId_5 = value;
}
};
// Dissonance.Networking.Client.OpenChannel
struct OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7
{
public:
// Dissonance.ChannelProperties Dissonance.Networking.Client.OpenChannel::_config
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____config_1;
// Dissonance.ChannelType Dissonance.Networking.Client.OpenChannel::_type
int32_t ____type_2;
// System.UInt16 Dissonance.Networking.Client.OpenChannel::_recipient
uint16_t ____recipient_3;
// System.String Dissonance.Networking.Client.OpenChannel::_name
String_t* ____name_4;
// System.Boolean Dissonance.Networking.Client.OpenChannel::_isClosing
bool ____isClosing_5;
// System.UInt16 Dissonance.Networking.Client.OpenChannel::_sessionId
uint16_t ____sessionId_6;
// System.Boolean Dissonance.Networking.Client.OpenChannel::_sent
bool ____sent_7;
public:
inline static int32_t get_offset_of__config_1() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7, ____config_1)); }
inline ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * get__config_1() const { return ____config_1; }
inline ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 ** get_address_of__config_1() { return &____config_1; }
inline void set__config_1(ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * value)
{
____config_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____config_1), (void*)value);
}
inline static int32_t get_offset_of__type_2() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7, ____type_2)); }
inline int32_t get__type_2() const { return ____type_2; }
inline int32_t* get_address_of__type_2() { return &____type_2; }
inline void set__type_2(int32_t value)
{
____type_2 = value;
}
inline static int32_t get_offset_of__recipient_3() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7, ____recipient_3)); }
inline uint16_t get__recipient_3() const { return ____recipient_3; }
inline uint16_t* get_address_of__recipient_3() { return &____recipient_3; }
inline void set__recipient_3(uint16_t value)
{
____recipient_3 = value;
}
inline static int32_t get_offset_of__name_4() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7, ____name_4)); }
inline String_t* get__name_4() const { return ____name_4; }
inline String_t** get_address_of__name_4() { return &____name_4; }
inline void set__name_4(String_t* value)
{
____name_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____name_4), (void*)value);
}
inline static int32_t get_offset_of__isClosing_5() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7, ____isClosing_5)); }
inline bool get__isClosing_5() const { return ____isClosing_5; }
inline bool* get_address_of__isClosing_5() { return &____isClosing_5; }
inline void set__isClosing_5(bool value)
{
____isClosing_5 = value;
}
inline static int32_t get_offset_of__sessionId_6() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7, ____sessionId_6)); }
inline uint16_t get__sessionId_6() const { return ____sessionId_6; }
inline uint16_t* get_address_of__sessionId_6() { return &____sessionId_6; }
inline void set__sessionId_6(uint16_t value)
{
____sessionId_6 = value;
}
inline static int32_t get_offset_of__sent_7() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7, ____sent_7)); }
inline bool get__sent_7() const { return ____sent_7; }
inline bool* get_address_of__sent_7() { return &____sent_7; }
inline void set__sent_7(bool value)
{
____sent_7 = value;
}
};
struct OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7_StaticFields
{
public:
// Dissonance.Log Dissonance.Networking.Client.OpenChannel::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.Client.OpenChannel
struct OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7_marshaled_pinvoke
{
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____config_1;
int32_t ____type_2;
uint16_t ____recipient_3;
char* ____name_4;
int32_t ____isClosing_5;
uint16_t ____sessionId_6;
int32_t ____sent_7;
};
// Native definition for COM marshalling of Dissonance.Networking.Client.OpenChannel
struct OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7_marshaled_com
{
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8 * ____config_1;
int32_t ____type_2;
uint16_t ____recipient_3;
Il2CppChar* ____name_4;
int32_t ____isClosing_5;
uint16_t ____sessionId_6;
int32_t ____sent_7;
};
// Dissonance.Audio.Codecs.Opus.OpusNative
struct OpusNative_t0C97DD318C6004C4827B10B215DF89B1DE7B8D77 : public RuntimeObject
{
public:
public:
};
// Dissonance.Audio.Playback.PlaybackOptions
struct PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E
{
public:
// System.Boolean Dissonance.Audio.Playback.PlaybackOptions::_isPositional
bool ____isPositional_0;
// System.Single Dissonance.Audio.Playback.PlaybackOptions::_amplitudeMultiplier
float ____amplitudeMultiplier_1;
// Dissonance.ChannelPriority Dissonance.Audio.Playback.PlaybackOptions::_priority
int32_t ____priority_2;
public:
inline static int32_t get_offset_of__isPositional_0() { return static_cast<int32_t>(offsetof(PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E, ____isPositional_0)); }
inline bool get__isPositional_0() const { return ____isPositional_0; }
inline bool* get_address_of__isPositional_0() { return &____isPositional_0; }
inline void set__isPositional_0(bool value)
{
____isPositional_0 = value;
}
inline static int32_t get_offset_of__amplitudeMultiplier_1() { return static_cast<int32_t>(offsetof(PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E, ____amplitudeMultiplier_1)); }
inline float get__amplitudeMultiplier_1() const { return ____amplitudeMultiplier_1; }
inline float* get_address_of__amplitudeMultiplier_1() { return &____amplitudeMultiplier_1; }
inline void set__amplitudeMultiplier_1(float value)
{
____amplitudeMultiplier_1 = value;
}
inline static int32_t get_offset_of__priority_2() { return static_cast<int32_t>(offsetof(PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E, ____priority_2)); }
inline int32_t get__priority_2() const { return ____priority_2; }
inline int32_t* get_address_of__priority_2() { return &____priority_2; }
inline void set__priority_2(int32_t value)
{
____priority_2 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Audio.Playback.PlaybackOptions
struct PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E_marshaled_pinvoke
{
int32_t ____isPositional_0;
float ____amplitudeMultiplier_1;
int32_t ____priority_2;
};
// Native definition for COM marshalling of Dissonance.Audio.Playback.PlaybackOptions
struct PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E_marshaled_com
{
int32_t ____isPositional_0;
float ____amplitudeMultiplier_1;
int32_t ____priority_2;
};
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954 : public BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerEnter>k__BackingField
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CpointerEnterU3Ek__BackingField_2;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::m_PointerPress
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_PointerPress_3;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<lastPress>k__BackingField
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3ClastPressU3Ek__BackingField_4;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<rawPointerPress>k__BackingField
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CrawPointerPressU3Ek__BackingField_5;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerDrag>k__BackingField
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CpointerDragU3Ek__BackingField_6;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerClick>k__BackingField
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___U3CpointerClickU3Ek__BackingField_7;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerCurrentRaycast>k__BackingField
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___U3CpointerCurrentRaycastU3Ek__BackingField_8;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerPressRaycast>k__BackingField
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___U3CpointerPressRaycastU3Ek__BackingField_9;
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.EventSystems.PointerEventData::hovered
List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * ___hovered_10;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<eligibleForClick>k__BackingField
bool ___U3CeligibleForClickU3Ek__BackingField_11;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<pointerId>k__BackingField
int32_t ___U3CpointerIdU3Ek__BackingField_12;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<position>k__BackingField
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CpositionU3Ek__BackingField_13;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<delta>k__BackingField
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CdeltaU3Ek__BackingField_14;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<pressPosition>k__BackingField
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CpressPositionU3Ek__BackingField_15;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldPosition>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CworldPositionU3Ek__BackingField_16;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldNormal>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CworldNormalU3Ek__BackingField_17;
// System.Single UnityEngine.EventSystems.PointerEventData::<clickTime>k__BackingField
float ___U3CclickTimeU3Ek__BackingField_18;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<clickCount>k__BackingField
int32_t ___U3CclickCountU3Ek__BackingField_19;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<scrollDelta>k__BackingField
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___U3CscrollDeltaU3Ek__BackingField_20;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<useDragThreshold>k__BackingField
bool ___U3CuseDragThresholdU3Ek__BackingField_21;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<dragging>k__BackingField
bool ___U3CdraggingU3Ek__BackingField_22;
// UnityEngine.EventSystems.PointerEventData/InputButton UnityEngine.EventSystems.PointerEventData::<button>k__BackingField
int32_t ___U3CbuttonU3Ek__BackingField_23;
public:
inline static int32_t get_offset_of_U3CpointerEnterU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpointerEnterU3Ek__BackingField_2)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_U3CpointerEnterU3Ek__BackingField_2() const { return ___U3CpointerEnterU3Ek__BackingField_2; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_U3CpointerEnterU3Ek__BackingField_2() { return &___U3CpointerEnterU3Ek__BackingField_2; }
inline void set_U3CpointerEnterU3Ek__BackingField_2(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___U3CpointerEnterU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerEnterU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_m_PointerPress_3() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___m_PointerPress_3)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_PointerPress_3() const { return ___m_PointerPress_3; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_PointerPress_3() { return &___m_PointerPress_3; }
inline void set_m_PointerPress_3(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_PointerPress_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointerPress_3), (void*)value);
}
inline static int32_t get_offset_of_U3ClastPressU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3ClastPressU3Ek__BackingField_4)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_U3ClastPressU3Ek__BackingField_4() const { return ___U3ClastPressU3Ek__BackingField_4; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_U3ClastPressU3Ek__BackingField_4() { return &___U3ClastPressU3Ek__BackingField_4; }
inline void set_U3ClastPressU3Ek__BackingField_4(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___U3ClastPressU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3ClastPressU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CrawPointerPressU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CrawPointerPressU3Ek__BackingField_5)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_U3CrawPointerPressU3Ek__BackingField_5() const { return ___U3CrawPointerPressU3Ek__BackingField_5; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_U3CrawPointerPressU3Ek__BackingField_5() { return &___U3CrawPointerPressU3Ek__BackingField_5; }
inline void set_U3CrawPointerPressU3Ek__BackingField_5(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___U3CrawPointerPressU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrawPointerPressU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerDragU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpointerDragU3Ek__BackingField_6)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_U3CpointerDragU3Ek__BackingField_6() const { return ___U3CpointerDragU3Ek__BackingField_6; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_U3CpointerDragU3Ek__BackingField_6() { return &___U3CpointerDragU3Ek__BackingField_6; }
inline void set_U3CpointerDragU3Ek__BackingField_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___U3CpointerDragU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerDragU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerClickU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpointerClickU3Ek__BackingField_7)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_U3CpointerClickU3Ek__BackingField_7() const { return ___U3CpointerClickU3Ek__BackingField_7; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_U3CpointerClickU3Ek__BackingField_7() { return &___U3CpointerClickU3Ek__BackingField_7; }
inline void set_U3CpointerClickU3Ek__BackingField_7(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___U3CpointerClickU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerClickU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerCurrentRaycastU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpointerCurrentRaycastU3Ek__BackingField_8)); }
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE get_U3CpointerCurrentRaycastU3Ek__BackingField_8() const { return ___U3CpointerCurrentRaycastU3Ek__BackingField_8; }
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE * get_address_of_U3CpointerCurrentRaycastU3Ek__BackingField_8() { return &___U3CpointerCurrentRaycastU3Ek__BackingField_8; }
inline void set_U3CpointerCurrentRaycastU3Ek__BackingField_8(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE value)
{
___U3CpointerCurrentRaycastU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerCurrentRaycastU3Ek__BackingField_8))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerCurrentRaycastU3Ek__BackingField_8))->___module_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CpointerPressRaycastU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpointerPressRaycastU3Ek__BackingField_9)); }
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE get_U3CpointerPressRaycastU3Ek__BackingField_9() const { return ___U3CpointerPressRaycastU3Ek__BackingField_9; }
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE * get_address_of_U3CpointerPressRaycastU3Ek__BackingField_9() { return &___U3CpointerPressRaycastU3Ek__BackingField_9; }
inline void set_U3CpointerPressRaycastU3Ek__BackingField_9(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE value)
{
___U3CpointerPressRaycastU3Ek__BackingField_9 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerPressRaycastU3Ek__BackingField_9))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerPressRaycastU3Ek__BackingField_9))->___module_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_hovered_10() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___hovered_10)); }
inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * get_hovered_10() const { return ___hovered_10; }
inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 ** get_address_of_hovered_10() { return &___hovered_10; }
inline void set_hovered_10(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * value)
{
___hovered_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hovered_10), (void*)value);
}
inline static int32_t get_offset_of_U3CeligibleForClickU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CeligibleForClickU3Ek__BackingField_11)); }
inline bool get_U3CeligibleForClickU3Ek__BackingField_11() const { return ___U3CeligibleForClickU3Ek__BackingField_11; }
inline bool* get_address_of_U3CeligibleForClickU3Ek__BackingField_11() { return &___U3CeligibleForClickU3Ek__BackingField_11; }
inline void set_U3CeligibleForClickU3Ek__BackingField_11(bool value)
{
___U3CeligibleForClickU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CpointerIdU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpointerIdU3Ek__BackingField_12)); }
inline int32_t get_U3CpointerIdU3Ek__BackingField_12() const { return ___U3CpointerIdU3Ek__BackingField_12; }
inline int32_t* get_address_of_U3CpointerIdU3Ek__BackingField_12() { return &___U3CpointerIdU3Ek__BackingField_12; }
inline void set_U3CpointerIdU3Ek__BackingField_12(int32_t value)
{
___U3CpointerIdU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpositionU3Ek__BackingField_13)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_U3CpositionU3Ek__BackingField_13() const { return ___U3CpositionU3Ek__BackingField_13; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_U3CpositionU3Ek__BackingField_13() { return &___U3CpositionU3Ek__BackingField_13; }
inline void set_U3CpositionU3Ek__BackingField_13(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___U3CpositionU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CdeltaU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CdeltaU3Ek__BackingField_14)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_U3CdeltaU3Ek__BackingField_14() const { return ___U3CdeltaU3Ek__BackingField_14; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_U3CdeltaU3Ek__BackingField_14() { return &___U3CdeltaU3Ek__BackingField_14; }
inline void set_U3CdeltaU3Ek__BackingField_14(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___U3CdeltaU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CpressPositionU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CpressPositionU3Ek__BackingField_15)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_U3CpressPositionU3Ek__BackingField_15() const { return ___U3CpressPositionU3Ek__BackingField_15; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_U3CpressPositionU3Ek__BackingField_15() { return &___U3CpressPositionU3Ek__BackingField_15; }
inline void set_U3CpressPositionU3Ek__BackingField_15(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___U3CpressPositionU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CworldPositionU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CworldPositionU3Ek__BackingField_16)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CworldPositionU3Ek__BackingField_16() const { return ___U3CworldPositionU3Ek__BackingField_16; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CworldPositionU3Ek__BackingField_16() { return &___U3CworldPositionU3Ek__BackingField_16; }
inline void set_U3CworldPositionU3Ek__BackingField_16(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CworldPositionU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CworldNormalU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CworldNormalU3Ek__BackingField_17)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CworldNormalU3Ek__BackingField_17() const { return ___U3CworldNormalU3Ek__BackingField_17; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CworldNormalU3Ek__BackingField_17() { return &___U3CworldNormalU3Ek__BackingField_17; }
inline void set_U3CworldNormalU3Ek__BackingField_17(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CworldNormalU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CclickTimeU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CclickTimeU3Ek__BackingField_18)); }
inline float get_U3CclickTimeU3Ek__BackingField_18() const { return ___U3CclickTimeU3Ek__BackingField_18; }
inline float* get_address_of_U3CclickTimeU3Ek__BackingField_18() { return &___U3CclickTimeU3Ek__BackingField_18; }
inline void set_U3CclickTimeU3Ek__BackingField_18(float value)
{
___U3CclickTimeU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CclickCountU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CclickCountU3Ek__BackingField_19)); }
inline int32_t get_U3CclickCountU3Ek__BackingField_19() const { return ___U3CclickCountU3Ek__BackingField_19; }
inline int32_t* get_address_of_U3CclickCountU3Ek__BackingField_19() { return &___U3CclickCountU3Ek__BackingField_19; }
inline void set_U3CclickCountU3Ek__BackingField_19(int32_t value)
{
___U3CclickCountU3Ek__BackingField_19 = value;
}
inline static int32_t get_offset_of_U3CscrollDeltaU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CscrollDeltaU3Ek__BackingField_20)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_U3CscrollDeltaU3Ek__BackingField_20() const { return ___U3CscrollDeltaU3Ek__BackingField_20; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_U3CscrollDeltaU3Ek__BackingField_20() { return &___U3CscrollDeltaU3Ek__BackingField_20; }
inline void set_U3CscrollDeltaU3Ek__BackingField_20(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___U3CscrollDeltaU3Ek__BackingField_20 = value;
}
inline static int32_t get_offset_of_U3CuseDragThresholdU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CuseDragThresholdU3Ek__BackingField_21)); }
inline bool get_U3CuseDragThresholdU3Ek__BackingField_21() const { return ___U3CuseDragThresholdU3Ek__BackingField_21; }
inline bool* get_address_of_U3CuseDragThresholdU3Ek__BackingField_21() { return &___U3CuseDragThresholdU3Ek__BackingField_21; }
inline void set_U3CuseDragThresholdU3Ek__BackingField_21(bool value)
{
___U3CuseDragThresholdU3Ek__BackingField_21 = value;
}
inline static int32_t get_offset_of_U3CdraggingU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CdraggingU3Ek__BackingField_22)); }
inline bool get_U3CdraggingU3Ek__BackingField_22() const { return ___U3CdraggingU3Ek__BackingField_22; }
inline bool* get_address_of_U3CdraggingU3Ek__BackingField_22() { return &___U3CdraggingU3Ek__BackingField_22; }
inline void set_U3CdraggingU3Ek__BackingField_22(bool value)
{
___U3CdraggingU3Ek__BackingField_22 = value;
}
inline static int32_t get_offset_of_U3CbuttonU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954, ___U3CbuttonU3Ek__BackingField_23)); }
inline int32_t get_U3CbuttonU3Ek__BackingField_23() const { return ___U3CbuttonU3Ek__BackingField_23; }
inline int32_t* get_address_of_U3CbuttonU3Ek__BackingField_23() { return &___U3CbuttonU3Ek__BackingField_23; }
inline void set_U3CbuttonU3Ek__BackingField_23(int32_t value)
{
___U3CbuttonU3Ek__BackingField_23 = value;
}
};
// UnityEngine.XR.Tango.PoseData
struct PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E
{
public:
// System.Double UnityEngine.XR.Tango.PoseData::orientation_x
double ___orientation_x_0;
// System.Double UnityEngine.XR.Tango.PoseData::orientation_y
double ___orientation_y_1;
// System.Double UnityEngine.XR.Tango.PoseData::orientation_z
double ___orientation_z_2;
// System.Double UnityEngine.XR.Tango.PoseData::orientation_w
double ___orientation_w_3;
// System.Double UnityEngine.XR.Tango.PoseData::translation_x
double ___translation_x_4;
// System.Double UnityEngine.XR.Tango.PoseData::translation_y
double ___translation_y_5;
// System.Double UnityEngine.XR.Tango.PoseData::translation_z
double ___translation_z_6;
// UnityEngine.XR.Tango.PoseStatus UnityEngine.XR.Tango.PoseData::statusCode
int32_t ___statusCode_7;
public:
inline static int32_t get_offset_of_orientation_x_0() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___orientation_x_0)); }
inline double get_orientation_x_0() const { return ___orientation_x_0; }
inline double* get_address_of_orientation_x_0() { return &___orientation_x_0; }
inline void set_orientation_x_0(double value)
{
___orientation_x_0 = value;
}
inline static int32_t get_offset_of_orientation_y_1() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___orientation_y_1)); }
inline double get_orientation_y_1() const { return ___orientation_y_1; }
inline double* get_address_of_orientation_y_1() { return &___orientation_y_1; }
inline void set_orientation_y_1(double value)
{
___orientation_y_1 = value;
}
inline static int32_t get_offset_of_orientation_z_2() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___orientation_z_2)); }
inline double get_orientation_z_2() const { return ___orientation_z_2; }
inline double* get_address_of_orientation_z_2() { return &___orientation_z_2; }
inline void set_orientation_z_2(double value)
{
___orientation_z_2 = value;
}
inline static int32_t get_offset_of_orientation_w_3() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___orientation_w_3)); }
inline double get_orientation_w_3() const { return ___orientation_w_3; }
inline double* get_address_of_orientation_w_3() { return &___orientation_w_3; }
inline void set_orientation_w_3(double value)
{
___orientation_w_3 = value;
}
inline static int32_t get_offset_of_translation_x_4() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___translation_x_4)); }
inline double get_translation_x_4() const { return ___translation_x_4; }
inline double* get_address_of_translation_x_4() { return &___translation_x_4; }
inline void set_translation_x_4(double value)
{
___translation_x_4 = value;
}
inline static int32_t get_offset_of_translation_y_5() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___translation_y_5)); }
inline double get_translation_y_5() const { return ___translation_y_5; }
inline double* get_address_of_translation_y_5() { return &___translation_y_5; }
inline void set_translation_y_5(double value)
{
___translation_y_5 = value;
}
inline static int32_t get_offset_of_translation_z_6() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___translation_z_6)); }
inline double get_translation_z_6() const { return ___translation_z_6; }
inline double* get_address_of_translation_z_6() { return &___translation_z_6; }
inline void set_translation_z_6(double value)
{
___translation_z_6 = value;
}
inline static int32_t get_offset_of_statusCode_7() { return static_cast<int32_t>(offsetof(PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E, ___statusCode_7)); }
inline int32_t get_statusCode_7() const { return ___statusCode_7; }
inline int32_t* get_address_of_statusCode_7() { return &___statusCode_7; }
inline void set_statusCode_7(int32_t value)
{
___statusCode_7 = value;
}
};
// UnityEngine.InputSystem.Interactions.PressInteraction
struct PressInteraction_t5E1384771E1F4D5B233F5BE176EF5A4C1EA2B1C3 : public RuntimeObject
{
public:
// System.Single UnityEngine.InputSystem.Interactions.PressInteraction::pressPoint
float ___pressPoint_0;
// UnityEngine.InputSystem.Interactions.PressBehavior UnityEngine.InputSystem.Interactions.PressInteraction::behavior
int32_t ___behavior_1;
// System.Boolean UnityEngine.InputSystem.Interactions.PressInteraction::m_WaitingForRelease
bool ___m_WaitingForRelease_2;
public:
inline static int32_t get_offset_of_pressPoint_0() { return static_cast<int32_t>(offsetof(PressInteraction_t5E1384771E1F4D5B233F5BE176EF5A4C1EA2B1C3, ___pressPoint_0)); }
inline float get_pressPoint_0() const { return ___pressPoint_0; }
inline float* get_address_of_pressPoint_0() { return &___pressPoint_0; }
inline void set_pressPoint_0(float value)
{
___pressPoint_0 = value;
}
inline static int32_t get_offset_of_behavior_1() { return static_cast<int32_t>(offsetof(PressInteraction_t5E1384771E1F4D5B233F5BE176EF5A4C1EA2B1C3, ___behavior_1)); }
inline int32_t get_behavior_1() const { return ___behavior_1; }
inline int32_t* get_address_of_behavior_1() { return &___behavior_1; }
inline void set_behavior_1(int32_t value)
{
___behavior_1 = value;
}
inline static int32_t get_offset_of_m_WaitingForRelease_2() { return static_cast<int32_t>(offsetof(PressInteraction_t5E1384771E1F4D5B233F5BE176EF5A4C1EA2B1C3, ___m_WaitingForRelease_2)); }
inline bool get_m_WaitingForRelease_2() const { return ___m_WaitingForRelease_2; }
inline bool* get_address_of_m_WaitingForRelease_2() { return &___m_WaitingForRelease_2; }
inline void set_m_WaitingForRelease_2(bool value)
{
___m_WaitingForRelease_2 = value;
}
};
// UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.TypeCode UnityEngine.InputSystem.Utilities.PrimitiveValue::m_Type
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
// System.Boolean UnityEngine.InputSystem.Utilities.PrimitiveValue::m_BoolValue
bool ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
bool ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
// System.Char UnityEngine.InputSystem.Utilities.PrimitiveValue::m_CharValue
Il2CppChar ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
Il2CppChar ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
// System.Byte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ByteValue
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
// System.SByte UnityEngine.InputSystem.Utilities.PrimitiveValue::m_SByteValue
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
// System.Int16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ShortValue
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
// System.UInt16 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UShortValue
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
// System.Int32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_IntValue
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
// System.UInt32 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_UIntValue
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
// System.Int64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_LongValue
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
// System.UInt64 UnityEngine.InputSystem.Utilities.PrimitiveValue::m_ULongValue
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
// System.Single UnityEngine.InputSystem.Utilities.PrimitiveValue::m_FloatValue
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
// System.Double UnityEngine.InputSystem.Utilities.PrimitiveValue::m_DoubleValue
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_BoolValue_1() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_BoolValue_1)); }
inline bool get_m_BoolValue_1() const { return ___m_BoolValue_1; }
inline bool* get_address_of_m_BoolValue_1() { return &___m_BoolValue_1; }
inline void set_m_BoolValue_1(bool value)
{
___m_BoolValue_1 = value;
}
inline static int32_t get_offset_of_m_CharValue_2() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_CharValue_2)); }
inline Il2CppChar get_m_CharValue_2() const { return ___m_CharValue_2; }
inline Il2CppChar* get_address_of_m_CharValue_2() { return &___m_CharValue_2; }
inline void set_m_CharValue_2(Il2CppChar value)
{
___m_CharValue_2 = value;
}
inline static int32_t get_offset_of_m_ByteValue_3() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_ByteValue_3)); }
inline uint8_t get_m_ByteValue_3() const { return ___m_ByteValue_3; }
inline uint8_t* get_address_of_m_ByteValue_3() { return &___m_ByteValue_3; }
inline void set_m_ByteValue_3(uint8_t value)
{
___m_ByteValue_3 = value;
}
inline static int32_t get_offset_of_m_SByteValue_4() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_SByteValue_4)); }
inline int8_t get_m_SByteValue_4() const { return ___m_SByteValue_4; }
inline int8_t* get_address_of_m_SByteValue_4() { return &___m_SByteValue_4; }
inline void set_m_SByteValue_4(int8_t value)
{
___m_SByteValue_4 = value;
}
inline static int32_t get_offset_of_m_ShortValue_5() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_ShortValue_5)); }
inline int16_t get_m_ShortValue_5() const { return ___m_ShortValue_5; }
inline int16_t* get_address_of_m_ShortValue_5() { return &___m_ShortValue_5; }
inline void set_m_ShortValue_5(int16_t value)
{
___m_ShortValue_5 = value;
}
inline static int32_t get_offset_of_m_UShortValue_6() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_UShortValue_6)); }
inline uint16_t get_m_UShortValue_6() const { return ___m_UShortValue_6; }
inline uint16_t* get_address_of_m_UShortValue_6() { return &___m_UShortValue_6; }
inline void set_m_UShortValue_6(uint16_t value)
{
___m_UShortValue_6 = value;
}
inline static int32_t get_offset_of_m_IntValue_7() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_IntValue_7)); }
inline int32_t get_m_IntValue_7() const { return ___m_IntValue_7; }
inline int32_t* get_address_of_m_IntValue_7() { return &___m_IntValue_7; }
inline void set_m_IntValue_7(int32_t value)
{
___m_IntValue_7 = value;
}
inline static int32_t get_offset_of_m_UIntValue_8() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_UIntValue_8)); }
inline uint32_t get_m_UIntValue_8() const { return ___m_UIntValue_8; }
inline uint32_t* get_address_of_m_UIntValue_8() { return &___m_UIntValue_8; }
inline void set_m_UIntValue_8(uint32_t value)
{
___m_UIntValue_8 = value;
}
inline static int32_t get_offset_of_m_LongValue_9() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_LongValue_9)); }
inline int64_t get_m_LongValue_9() const { return ___m_LongValue_9; }
inline int64_t* get_address_of_m_LongValue_9() { return &___m_LongValue_9; }
inline void set_m_LongValue_9(int64_t value)
{
___m_LongValue_9 = value;
}
inline static int32_t get_offset_of_m_ULongValue_10() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_ULongValue_10)); }
inline uint64_t get_m_ULongValue_10() const { return ___m_ULongValue_10; }
inline uint64_t* get_address_of_m_ULongValue_10() { return &___m_ULongValue_10; }
inline void set_m_ULongValue_10(uint64_t value)
{
___m_ULongValue_10 = value;
}
inline static int32_t get_offset_of_m_FloatValue_11() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_FloatValue_11)); }
inline float get_m_FloatValue_11() const { return ___m_FloatValue_11; }
inline float* get_address_of_m_FloatValue_11() { return &___m_FloatValue_11; }
inline void set_m_FloatValue_11(float value)
{
___m_FloatValue_11 = value;
}
inline static int32_t get_offset_of_m_DoubleValue_12() { return static_cast<int32_t>(offsetof(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3, ___m_DoubleValue_12)); }
inline double get_m_DoubleValue_12() const { return ___m_DoubleValue_12; }
inline double* get_address_of_m_DoubleValue_12() { return &___m_DoubleValue_12; }
inline void set_m_DoubleValue_12(double value)
{
___m_DoubleValue_12 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
int32_t ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
uint8_t ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.PrimitiveValue
struct PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___m_Type_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_Type_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BoolValue_1_OffsetPadding[4];
int32_t ___m_BoolValue_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_BoolValue_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_BoolValue_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_CharValue_2_OffsetPadding[4];
uint8_t ___m_CharValue_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_CharValue_2_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_CharValue_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ByteValue_3_OffsetPadding[4];
uint8_t ___m_ByteValue_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_ByteValue_3_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_ByteValue_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_SByteValue_4_OffsetPadding[4];
int8_t ___m_SByteValue_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_SByteValue_4_OffsetPadding_forAlignmentOnly[4];
int8_t ___m_SByteValue_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ShortValue_5_OffsetPadding[4];
int16_t ___m_ShortValue_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_ShortValue_5_OffsetPadding_forAlignmentOnly[4];
int16_t ___m_ShortValue_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UShortValue_6_OffsetPadding[4];
uint16_t ___m_UShortValue_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_UShortValue_6_OffsetPadding_forAlignmentOnly[4];
uint16_t ___m_UShortValue_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_IntValue_7_OffsetPadding[4];
int32_t ___m_IntValue_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_IntValue_7_OffsetPadding_forAlignmentOnly[4];
int32_t ___m_IntValue_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_UIntValue_8_OffsetPadding[4];
uint32_t ___m_UIntValue_8;
};
#pragma pack(pop, tp)
struct
{
char ___m_UIntValue_8_OffsetPadding_forAlignmentOnly[4];
uint32_t ___m_UIntValue_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_LongValue_9_OffsetPadding[4];
int64_t ___m_LongValue_9;
};
#pragma pack(pop, tp)
struct
{
char ___m_LongValue_9_OffsetPadding_forAlignmentOnly[4];
int64_t ___m_LongValue_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ULongValue_10_OffsetPadding[4];
uint64_t ___m_ULongValue_10;
};
#pragma pack(pop, tp)
struct
{
char ___m_ULongValue_10_OffsetPadding_forAlignmentOnly[4];
uint64_t ___m_ULongValue_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_FloatValue_11_OffsetPadding[4];
float ___m_FloatValue_11;
};
#pragma pack(pop, tp)
struct
{
char ___m_FloatValue_11_OffsetPadding_forAlignmentOnly[4];
float ___m_FloatValue_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_DoubleValue_12_OffsetPadding[4];
double ___m_DoubleValue_12;
};
#pragma pack(pop, tp)
struct
{
char ___m_DoubleValue_12_OffsetPadding_forAlignmentOnly[4];
double ___m_DoubleValue_12_forAlignmentOnly;
};
};
};
// Dissonance.Audio.Playback.PriorityManager
struct PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB : public RuntimeObject
{
public:
// Dissonance.PlayerCollection Dissonance.Audio.Playback.PriorityManager::_players
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * ____players_1;
// Dissonance.ChannelPriority Dissonance.Audio.Playback.PriorityManager::<TopPriority>k__BackingField
int32_t ___U3CTopPriorityU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of__players_1() { return static_cast<int32_t>(offsetof(PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB, ____players_1)); }
inline PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * get__players_1() const { return ____players_1; }
inline PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 ** get_address_of__players_1() { return &____players_1; }
inline void set__players_1(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * value)
{
____players_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____players_1), (void*)value);
}
inline static int32_t get_offset_of_U3CTopPriorityU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB, ___U3CTopPriorityU3Ek__BackingField_2)); }
inline int32_t get_U3CTopPriorityU3Ek__BackingField_2() const { return ___U3CTopPriorityU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CTopPriorityU3Ek__BackingField_2() { return &___U3CTopPriorityU3Ek__BackingField_2; }
inline void set_U3CTopPriorityU3Ek__BackingField_2(int32_t value)
{
___U3CTopPriorityU3Ek__BackingField_2 = value;
}
};
struct PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.PriorityManager::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
struct QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___canRunInBackground_2_OffsetPadding[8];
// System.Boolean UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground::canRunInBackground
bool ___canRunInBackground_2;
};
#pragma pack(pop, tp)
struct
{
char ___canRunInBackground_2_OffsetPadding_forAlignmentOnly[8];
bool ___canRunInBackground_2_forAlignmentOnly;
};
};
};
uint8_t QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72__padding[9];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_canRunInBackground_2() { return static_cast<int32_t>(offsetof(QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72, ___canRunInBackground_2)); }
inline bool get_canRunInBackground_2() const { return ___canRunInBackground_2; }
inline bool* get_address_of_canRunInBackground_2() { return &___canRunInBackground_2; }
inline void set_canRunInBackground_2(bool value)
{
___canRunInBackground_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
struct QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___canRunInBackground_2_OffsetPadding[8];
int32_t ___canRunInBackground_2;
};
#pragma pack(pop, tp)
struct
{
char ___canRunInBackground_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___canRunInBackground_2_forAlignmentOnly;
};
};
};
uint8_t QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72__padding[9];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.QueryCanRunInBackground
struct QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___canRunInBackground_2_OffsetPadding[8];
int32_t ___canRunInBackground_2;
};
#pragma pack(pop, tp)
struct
{
char ___canRunInBackground_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___canRunInBackground_2_forAlignmentOnly;
};
};
};
uint8_t QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72__padding[9];
};
};
// UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand
struct QueryDimensionsCommand_t0E031DEECEEF59B1C5507AC481A3E6DC8FBC3A5E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___outDimensions_2_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.QueryDimensionsCommand::outDimensions
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___outDimensions_2;
};
#pragma pack(pop, tp)
struct
{
char ___outDimensions_2_OffsetPadding_forAlignmentOnly[8];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___outDimensions_2_forAlignmentOnly;
};
};
};
uint8_t QueryDimensionsCommand_t0E031DEECEEF59B1C5507AC481A3E6DC8FBC3A5E__padding[16];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(QueryDimensionsCommand_t0E031DEECEEF59B1C5507AC481A3E6DC8FBC3A5E, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_outDimensions_2() { return static_cast<int32_t>(offsetof(QueryDimensionsCommand_t0E031DEECEEF59B1C5507AC481A3E6DC8FBC3A5E, ___outDimensions_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_outDimensions_2() const { return ___outDimensions_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_outDimensions_2() { return &___outDimensions_2; }
inline void set_outDimensions_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___outDimensions_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
struct QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___isEnabled_2_OffsetPadding[8];
// System.Boolean UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand::isEnabled
bool ___isEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___isEnabled_2_OffsetPadding_forAlignmentOnly[8];
bool ___isEnabled_2_forAlignmentOnly;
};
};
};
uint8_t QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E__padding[9];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_isEnabled_2() { return static_cast<int32_t>(offsetof(QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E, ___isEnabled_2)); }
inline bool get_isEnabled_2() const { return ___isEnabled_2; }
inline bool* get_address_of_isEnabled_2() { return &___isEnabled_2; }
inline void set_isEnabled_2(bool value)
{
___isEnabled_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
struct QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___isEnabled_2_OffsetPadding[8];
int32_t ___isEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___isEnabled_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___isEnabled_2_forAlignmentOnly;
};
};
};
uint8_t QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E__padding[9];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.QueryEnabledStateCommand
struct QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___isEnabled_2_OffsetPadding[8];
int32_t ___isEnabled_2;
};
#pragma pack(pop, tp)
struct
{
char ___isEnabled_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___isEnabled_2_forAlignmentOnly;
};
};
};
uint8_t QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E__padding[9];
};
};
// UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand
struct QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___scanOrKeyCode_3_OffsetPadding[8];
// System.Int32 UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::scanOrKeyCode
int32_t ___scanOrKeyCode_3;
};
#pragma pack(pop, tp)
struct
{
char ___scanOrKeyCode_3_OffsetPadding_forAlignmentOnly[8];
int32_t ___scanOrKeyCode_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___nameBuffer_4_OffsetPadding[12];
// UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand/<nameBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryKeyNameCommand::nameBuffer
U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339 ___nameBuffer_4;
};
#pragma pack(pop, tp)
struct
{
char ___nameBuffer_4_OffsetPadding_forAlignmentOnly[12];
U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339 ___nameBuffer_4_forAlignmentOnly;
};
};
};
uint8_t QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4__padding[268];
};
public:
inline static int32_t get_offset_of_baseCommand_2() { return static_cast<int32_t>(offsetof(QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4, ___baseCommand_2)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_2() const { return ___baseCommand_2; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_2() { return &___baseCommand_2; }
inline void set_baseCommand_2(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_2 = value;
}
inline static int32_t get_offset_of_scanOrKeyCode_3() { return static_cast<int32_t>(offsetof(QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4, ___scanOrKeyCode_3)); }
inline int32_t get_scanOrKeyCode_3() const { return ___scanOrKeyCode_3; }
inline int32_t* get_address_of_scanOrKeyCode_3() { return &___scanOrKeyCode_3; }
inline void set_scanOrKeyCode_3(int32_t value)
{
___scanOrKeyCode_3 = value;
}
inline static int32_t get_offset_of_nameBuffer_4() { return static_cast<int32_t>(offsetof(QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4, ___nameBuffer_4)); }
inline U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339 get_nameBuffer_4() const { return ___nameBuffer_4; }
inline U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339 * get_address_of_nameBuffer_4() { return &___nameBuffer_4; }
inline void set_nameBuffer_4(U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339 value)
{
___nameBuffer_4 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand
struct QueryKeyboardLayoutCommand_tF1DBDF759561BEEFAAD77F75DDC33AF53D42432E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___nameBuffer_2_OffsetPadding[8];
// UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand/<nameBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryKeyboardLayoutCommand::nameBuffer
U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5 ___nameBuffer_2;
};
#pragma pack(pop, tp)
struct
{
char ___nameBuffer_2_OffsetPadding_forAlignmentOnly[8];
U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5 ___nameBuffer_2_forAlignmentOnly;
};
};
};
uint8_t QueryKeyboardLayoutCommand_tF1DBDF759561BEEFAAD77F75DDC33AF53D42432E__padding[264];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(QueryKeyboardLayoutCommand_tF1DBDF759561BEEFAAD77F75DDC33AF53D42432E, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_nameBuffer_2() { return static_cast<int32_t>(offsetof(QueryKeyboardLayoutCommand_tF1DBDF759561BEEFAAD77F75DDC33AF53D42432E, ___nameBuffer_2)); }
inline U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5 get_nameBuffer_2() const { return ___nameBuffer_2; }
inline U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5 * get_address_of_nameBuffer_2() { return &___nameBuffer_2; }
inline void set_nameBuffer_2(U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5 value)
{
___nameBuffer_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand
struct QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_3;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___handle_4_OffsetPadding[8];
// System.UInt64 UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::handle
uint64_t ___handle_4;
};
#pragma pack(pop, tp)
struct
{
char ___handle_4_OffsetPadding_forAlignmentOnly[8];
uint64_t ___handle_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___nameBuffer_5_OffsetPadding[16];
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<nameBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::nameBuffer
U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC ___nameBuffer_5;
};
#pragma pack(pop, tp)
struct
{
char ___nameBuffer_5_OffsetPadding_forAlignmentOnly[16];
U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC ___nameBuffer_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___idBuffer_6_OffsetPadding[528];
// UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand/<idBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryPairedUserAccountCommand::idBuffer
U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24 ___idBuffer_6;
};
#pragma pack(pop, tp)
struct
{
char ___idBuffer_6_OffsetPadding_forAlignmentOnly[528];
U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24 ___idBuffer_6_forAlignmentOnly;
};
};
};
uint8_t QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C__padding[1040];
};
public:
inline static int32_t get_offset_of_baseCommand_3() { return static_cast<int32_t>(offsetof(QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C, ___baseCommand_3)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_3() const { return ___baseCommand_3; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_3() { return &___baseCommand_3; }
inline void set_baseCommand_3(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_3 = value;
}
inline static int32_t get_offset_of_handle_4() { return static_cast<int32_t>(offsetof(QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C, ___handle_4)); }
inline uint64_t get_handle_4() const { return ___handle_4; }
inline uint64_t* get_address_of_handle_4() { return &___handle_4; }
inline void set_handle_4(uint64_t value)
{
___handle_4 = value;
}
inline static int32_t get_offset_of_nameBuffer_5() { return static_cast<int32_t>(offsetof(QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C, ___nameBuffer_5)); }
inline U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC get_nameBuffer_5() const { return ___nameBuffer_5; }
inline U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC * get_address_of_nameBuffer_5() { return &___nameBuffer_5; }
inline void set_nameBuffer_5(U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC value)
{
___nameBuffer_5 = value;
}
inline static int32_t get_offset_of_idBuffer_6() { return static_cast<int32_t>(offsetof(QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C, ___idBuffer_6)); }
inline U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24 get_idBuffer_6() const { return ___idBuffer_6; }
inline U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24 * get_address_of_idBuffer_6() { return &___idBuffer_6; }
inline void set_idBuffer_6(U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24 value)
{
___idBuffer_6 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand
struct QuerySamplingFrequencyCommand_t52483AF4CD9878F5A6635204A6F379A086E6ED5E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___frequency_2_OffsetPadding[8];
// System.Single UnityEngine.InputSystem.LowLevel.QuerySamplingFrequencyCommand::frequency
float ___frequency_2;
};
#pragma pack(pop, tp)
struct
{
char ___frequency_2_OffsetPadding_forAlignmentOnly[8];
float ___frequency_2_forAlignmentOnly;
};
};
};
uint8_t QuerySamplingFrequencyCommand_t52483AF4CD9878F5A6635204A6F379A086E6ED5E__padding[12];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(QuerySamplingFrequencyCommand_t52483AF4CD9878F5A6635204A6F379A086E6ED5E, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_frequency_2() { return static_cast<int32_t>(offsetof(QuerySamplingFrequencyCommand_t52483AF4CD9878F5A6635204A6F379A086E6ED5E, ___frequency_2)); }
inline float get_frequency_2() const { return ___frequency_2; }
inline float* get_address_of_frequency_2() { return &___frequency_2; }
inline void set_frequency_2(float value)
{
___frequency_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.QueryUserIdCommand
struct QueryUserIdCommand_t234F6EA495581CC8C20FADDD7740E780BDAD5AF4
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___idBuffer_3_OffsetPadding[8];
// UnityEngine.InputSystem.LowLevel.QueryUserIdCommand/<idBuffer>e__FixedBuffer UnityEngine.InputSystem.LowLevel.QueryUserIdCommand::idBuffer
U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186 ___idBuffer_3;
};
#pragma pack(pop, tp)
struct
{
char ___idBuffer_3_OffsetPadding_forAlignmentOnly[8];
U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186 ___idBuffer_3_forAlignmentOnly;
};
};
};
uint8_t QueryUserIdCommand_t234F6EA495581CC8C20FADDD7740E780BDAD5AF4__padding[520];
};
public:
inline static int32_t get_offset_of_baseCommand_2() { return static_cast<int32_t>(offsetof(QueryUserIdCommand_t234F6EA495581CC8C20FADDD7740E780BDAD5AF4, ___baseCommand_2)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_2() const { return ___baseCommand_2; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_2() { return &___baseCommand_2; }
inline void set_baseCommand_2(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_2 = value;
}
inline static int32_t get_offset_of_idBuffer_3() { return static_cast<int32_t>(offsetof(QueryUserIdCommand_t234F6EA495581CC8C20FADDD7740E780BDAD5AF4, ___idBuffer_3)); }
inline U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186 get_idBuffer_3() const { return ___idBuffer_3; }
inline U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186 * get_address_of_idBuffer_3() { return &___idBuffer_3; }
inline void set_idBuffer_3(U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186 value)
{
___idBuffer_3 = value;
}
};
// Mirror.SimpleWeb.ReadHelperException
struct ReadHelperException_t0ACF1C6924296838E5556F424D82F18E24316814 : public Exception_t
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.RequestResetCommand
struct RequestResetCommand_tD32E7197FD26E2F444C93AA53128E38397742AFE
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.RequestResetCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t RequestResetCommand_tD32E7197FD26E2F444C93AA53128E38397742AFE__padding[8];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(RequestResetCommand_tD32E7197FD26E2F444C93AA53128E38397742AFE, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.RequestSyncCommand
struct RequestSyncCommand_tA04ABF377971AB379657465B5322119DEA4D2417
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.RequestSyncCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
};
};
uint8_t RequestSyncCommand_tA04ABF377971AB379657465B5322119DEA4D2417__padding[8];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(RequestSyncCommand_tA04ABF377971AB379657465B5322119DEA4D2417, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
};
// UnityEngine.ResourceRequest
struct ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86
{
public:
// System.String UnityEngine.ResourceRequest::m_Path
String_t* ___m_Path_2;
// System.Type UnityEngine.ResourceRequest::m_Type
Type_t * ___m_Type_3;
public:
inline static int32_t get_offset_of_m_Path_2() { return static_cast<int32_t>(offsetof(ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD, ___m_Path_2)); }
inline String_t* get_m_Path_2() const { return ___m_Path_2; }
inline String_t** get_address_of_m_Path_2() { return &___m_Path_2; }
inline void set_m_Path_2(String_t* value)
{
___m_Path_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Path_2), (void*)value);
}
inline static int32_t get_offset_of_m_Type_3() { return static_cast<int32_t>(offsetof(ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD, ___m_Type_3)); }
inline Type_t * get_m_Type_3() const { return ___m_Type_3; }
inline Type_t ** get_address_of_m_Type_3() { return &___m_Type_3; }
inline void set_m_Type_3(Type_t * value)
{
___m_Type_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Type_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.ResourceRequest
struct ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_pinvoke : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke
{
char* ___m_Path_2;
Type_t * ___m_Type_3;
};
// Native definition for COM marshalling of UnityEngine.ResourceRequest
struct ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_com : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com
{
Il2CppChar* ___m_Path_2;
Type_t * ___m_Type_3;
};
// UnityEngine.ScriptableObject
struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_pinvoke : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_com : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
};
// UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand
struct SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___channel_3_OffsetPadding[8];
// System.Int32 UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand::channel
int32_t ___channel_3;
};
#pragma pack(pop, tp)
struct
{
char ___channel_3_OffsetPadding_forAlignmentOnly[8];
int32_t ___channel_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___bufferSize_4_OffsetPadding[12];
// System.Int32 UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand::bufferSize
int32_t ___bufferSize_4;
};
#pragma pack(pop, tp)
struct
{
char ___bufferSize_4_OffsetPadding_forAlignmentOnly[12];
int32_t ___bufferSize_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___buffer_5_OffsetPadding[16];
// UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand/<buffer>e__FixedBuffer UnityEngine.InputSystem.XR.Haptics.SendBufferedHapticCommand::buffer
U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02 ___buffer_5;
};
#pragma pack(pop, tp)
struct
{
char ___buffer_5_OffsetPadding_forAlignmentOnly[16];
U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02 ___buffer_5_forAlignmentOnly;
};
};
};
uint8_t SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018__padding[1040];
};
public:
inline static int32_t get_offset_of_baseCommand_2() { return static_cast<int32_t>(offsetof(SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018, ___baseCommand_2)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_2() const { return ___baseCommand_2; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_2() { return &___baseCommand_2; }
inline void set_baseCommand_2(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_2 = value;
}
inline static int32_t get_offset_of_channel_3() { return static_cast<int32_t>(offsetof(SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018, ___channel_3)); }
inline int32_t get_channel_3() const { return ___channel_3; }
inline int32_t* get_address_of_channel_3() { return &___channel_3; }
inline void set_channel_3(int32_t value)
{
___channel_3 = value;
}
inline static int32_t get_offset_of_bufferSize_4() { return static_cast<int32_t>(offsetof(SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018, ___bufferSize_4)); }
inline int32_t get_bufferSize_4() const { return ___bufferSize_4; }
inline int32_t* get_address_of_bufferSize_4() { return &___bufferSize_4; }
inline void set_bufferSize_4(int32_t value)
{
___bufferSize_4 = value;
}
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018, ___buffer_5)); }
inline U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02 get_buffer_5() const { return ___buffer_5; }
inline U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02 * get_address_of_buffer_5() { return &___buffer_5; }
inline void set_buffer_5(U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02 value)
{
___buffer_5 = value;
}
};
// UnityEngine.InputSystem.XR.Haptics.SendHapticImpulseCommand
struct SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.XR.Haptics.SendHapticImpulseCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___channel_2_OffsetPadding[8];
// System.Int32 UnityEngine.InputSystem.XR.Haptics.SendHapticImpulseCommand::channel
int32_t ___channel_2;
};
#pragma pack(pop, tp)
struct
{
char ___channel_2_OffsetPadding_forAlignmentOnly[8];
int32_t ___channel_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___amplitude_3_OffsetPadding[12];
// System.Single UnityEngine.InputSystem.XR.Haptics.SendHapticImpulseCommand::amplitude
float ___amplitude_3;
};
#pragma pack(pop, tp)
struct
{
char ___amplitude_3_OffsetPadding_forAlignmentOnly[12];
float ___amplitude_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___duration_4_OffsetPadding[16];
// System.Single UnityEngine.InputSystem.XR.Haptics.SendHapticImpulseCommand::duration
float ___duration_4;
};
#pragma pack(pop, tp)
struct
{
char ___duration_4_OffsetPadding_forAlignmentOnly[16];
float ___duration_4_forAlignmentOnly;
};
};
};
uint8_t SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275__padding[20];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_channel_2() { return static_cast<int32_t>(offsetof(SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275, ___channel_2)); }
inline int32_t get_channel_2() const { return ___channel_2; }
inline int32_t* get_address_of_channel_2() { return &___channel_2; }
inline void set_channel_2(int32_t value)
{
___channel_2 = value;
}
inline static int32_t get_offset_of_amplitude_3() { return static_cast<int32_t>(offsetof(SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275, ___amplitude_3)); }
inline float get_amplitude_3() const { return ___amplitude_3; }
inline float* get_address_of_amplitude_3() { return &___amplitude_3; }
inline void set_amplitude_3(float value)
{
___amplitude_3 = value;
}
inline static int32_t get_offset_of_duration_4() { return static_cast<int32_t>(offsetof(SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275, ___duration_4)); }
inline float get_duration_4() const { return ___duration_4; }
inline float* get_address_of_duration_4() { return &___duration_4; }
inline void set_duration_4(float value)
{
___duration_4 = value;
}
};
// Mirror.Examples.MultipleMatch.ServerMatchMessage
struct ServerMatchMessage_t9F524EE548A10ED55842D0A3479FF61AAFE8D0AF
{
public:
// Mirror.Examples.MultipleMatch.ServerMatchOperation Mirror.Examples.MultipleMatch.ServerMatchMessage::serverMatchOperation
uint8_t ___serverMatchOperation_0;
// System.Guid Mirror.Examples.MultipleMatch.ServerMatchMessage::matchId
Guid_t ___matchId_1;
public:
inline static int32_t get_offset_of_serverMatchOperation_0() { return static_cast<int32_t>(offsetof(ServerMatchMessage_t9F524EE548A10ED55842D0A3479FF61AAFE8D0AF, ___serverMatchOperation_0)); }
inline uint8_t get_serverMatchOperation_0() const { return ___serverMatchOperation_0; }
inline uint8_t* get_address_of_serverMatchOperation_0() { return &___serverMatchOperation_0; }
inline void set_serverMatchOperation_0(uint8_t value)
{
___serverMatchOperation_0 = value;
}
inline static int32_t get_offset_of_matchId_1() { return static_cast<int32_t>(offsetof(ServerMatchMessage_t9F524EE548A10ED55842D0A3479FF61AAFE8D0AF, ___matchId_1)); }
inline Guid_t get_matchId_1() const { return ___matchId_1; }
inline Guid_t * get_address_of_matchId_1() { return &___matchId_1; }
inline void set_matchId_1(Guid_t value)
{
___matchId_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand
struct SetIMECursorPositionCommand_tA62B5AA0BD68C41DEE62967C4C1EBFB8DB5D089E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_Position_2_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.SetIMECursorPositionCommand::m_Position
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Position_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_Position_2_OffsetPadding_forAlignmentOnly[8];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Position_2_forAlignmentOnly;
};
};
};
uint8_t SetIMECursorPositionCommand_tA62B5AA0BD68C41DEE62967C4C1EBFB8DB5D089E__padding[16];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(SetIMECursorPositionCommand_tA62B5AA0BD68C41DEE62967C4C1EBFB8DB5D089E, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(SetIMECursorPositionCommand_tA62B5AA0BD68C41DEE62967C4C1EBFB8DB5D089E, ___m_Position_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Position_2() const { return ___m_Position_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Position_2 = value;
}
};
// UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand
struct SetSamplingFrequencyCommand_tA3035562D90638A0F24D50E91310CD6D3A930255
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___frequency_2_OffsetPadding[8];
// System.Single UnityEngine.InputSystem.LowLevel.SetSamplingFrequencyCommand::frequency
float ___frequency_2;
};
#pragma pack(pop, tp)
struct
{
char ___frequency_2_OffsetPadding_forAlignmentOnly[8];
float ___frequency_2_forAlignmentOnly;
};
};
};
uint8_t SetSamplingFrequencyCommand_tA3035562D90638A0F24D50E91310CD6D3A930255__padding[12];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(SetSamplingFrequencyCommand_tA3035562D90638A0F24D50E91310CD6D3A930255, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_frequency_2() { return static_cast<int32_t>(offsetof(SetSamplingFrequencyCommand_tA3035562D90638A0F24D50E91310CD6D3A930255, ___frequency_2)); }
inline float get_frequency_2() const { return ___frequency_2; }
inline float* get_address_of_frequency_2() { return &___frequency_2; }
inline void set_frequency_2(float value)
{
___frequency_2 = value;
}
};
// Mirror.SimpleWeb.SimpleWebClient
struct SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0 : public RuntimeObject
{
public:
// System.Int32 Mirror.SimpleWeb.SimpleWebClient::maxMessagesPerTick
int32_t ___maxMessagesPerTick_0;
// System.Int32 Mirror.SimpleWeb.SimpleWebClient::maxMessageSize
int32_t ___maxMessageSize_1;
// System.Collections.Concurrent.ConcurrentQueue`1<Mirror.SimpleWeb.Message> Mirror.SimpleWeb.SimpleWebClient::receiveQueue
ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * ___receiveQueue_2;
// Mirror.SimpleWeb.BufferPool Mirror.SimpleWeb.SimpleWebClient::bufferPool
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * ___bufferPool_3;
// Mirror.SimpleWeb.ClientState Mirror.SimpleWeb.SimpleWebClient::state
int32_t ___state_4;
// System.Action Mirror.SimpleWeb.SimpleWebClient::onConnect
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onConnect_5;
// System.Action Mirror.SimpleWeb.SimpleWebClient::onDisconnect
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onDisconnect_6;
// System.Action`1<System.ArraySegment`1<System.Byte>> Mirror.SimpleWeb.SimpleWebClient::onData
Action_1_tC4A1932C3BAC3AB12474910E0F61464B28376DDC * ___onData_7;
// System.Action`1<System.Exception> Mirror.SimpleWeb.SimpleWebClient::onError
Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 * ___onError_8;
public:
inline static int32_t get_offset_of_maxMessagesPerTick_0() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___maxMessagesPerTick_0)); }
inline int32_t get_maxMessagesPerTick_0() const { return ___maxMessagesPerTick_0; }
inline int32_t* get_address_of_maxMessagesPerTick_0() { return &___maxMessagesPerTick_0; }
inline void set_maxMessagesPerTick_0(int32_t value)
{
___maxMessagesPerTick_0 = value;
}
inline static int32_t get_offset_of_maxMessageSize_1() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___maxMessageSize_1)); }
inline int32_t get_maxMessageSize_1() const { return ___maxMessageSize_1; }
inline int32_t* get_address_of_maxMessageSize_1() { return &___maxMessageSize_1; }
inline void set_maxMessageSize_1(int32_t value)
{
___maxMessageSize_1 = value;
}
inline static int32_t get_offset_of_receiveQueue_2() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___receiveQueue_2)); }
inline ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * get_receiveQueue_2() const { return ___receiveQueue_2; }
inline ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 ** get_address_of_receiveQueue_2() { return &___receiveQueue_2; }
inline void set_receiveQueue_2(ConcurrentQueue_1_tEDC75BAA6E83EDE96EADF4C7492D448F717C62E3 * value)
{
___receiveQueue_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___receiveQueue_2), (void*)value);
}
inline static int32_t get_offset_of_bufferPool_3() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___bufferPool_3)); }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * get_bufferPool_3() const { return ___bufferPool_3; }
inline BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC ** get_address_of_bufferPool_3() { return &___bufferPool_3; }
inline void set_bufferPool_3(BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC * value)
{
___bufferPool_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bufferPool_3), (void*)value);
}
inline static int32_t get_offset_of_state_4() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___state_4)); }
inline int32_t get_state_4() const { return ___state_4; }
inline int32_t* get_address_of_state_4() { return &___state_4; }
inline void set_state_4(int32_t value)
{
___state_4 = value;
}
inline static int32_t get_offset_of_onConnect_5() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___onConnect_5)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onConnect_5() const { return ___onConnect_5; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onConnect_5() { return &___onConnect_5; }
inline void set_onConnect_5(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___onConnect_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onConnect_5), (void*)value);
}
inline static int32_t get_offset_of_onDisconnect_6() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___onDisconnect_6)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onDisconnect_6() const { return ___onDisconnect_6; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onDisconnect_6() { return &___onDisconnect_6; }
inline void set_onDisconnect_6(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___onDisconnect_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onDisconnect_6), (void*)value);
}
inline static int32_t get_offset_of_onData_7() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___onData_7)); }
inline Action_1_tC4A1932C3BAC3AB12474910E0F61464B28376DDC * get_onData_7() const { return ___onData_7; }
inline Action_1_tC4A1932C3BAC3AB12474910E0F61464B28376DDC ** get_address_of_onData_7() { return &___onData_7; }
inline void set_onData_7(Action_1_tC4A1932C3BAC3AB12474910E0F61464B28376DDC * value)
{
___onData_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onData_7), (void*)value);
}
inline static int32_t get_offset_of_onError_8() { return static_cast<int32_t>(offsetof(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0, ___onError_8)); }
inline Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 * get_onError_8() const { return ___onError_8; }
inline Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 ** get_address_of_onError_8() { return &___onError_8; }
inline void set_onError_8(Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 * value)
{
___onError_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onError_8), (void*)value);
}
};
// Dissonance.Audio.Playback.SpeechSessionStream
struct SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C : public RuntimeObject
{
public:
// System.String Dissonance.Audio.Playback.SpeechSessionStream::_metricArrivalDelay
String_t* ____metricArrivalDelay_1;
// System.Collections.Generic.Queue`1<Dissonance.Audio.Playback.SpeechSession> Dissonance.Audio.Playback.SpeechSessionStream::_awaitingActivation
Queue_1_t639714B43606F2231F81C8D78C34EFDB9944A8D9 * ____awaitingActivation_2;
// Dissonance.Audio.Playback.IVolumeProvider Dissonance.Audio.Playback.SpeechSessionStream::_volumeProvider
RuntimeObject* ____volumeProvider_3;
// System.Nullable`1<System.DateTime> Dissonance.Audio.Playback.SpeechSessionStream::_queueHeadFirstDequeueAttempt
Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D ____queueHeadFirstDequeueAttempt_4;
// Dissonance.Audio.Playback.DecoderPipeline Dissonance.Audio.Playback.SpeechSessionStream::_active
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED * ____active_5;
// System.UInt32 Dissonance.Audio.Playback.SpeechSessionStream::_currentId
uint32_t ____currentId_6;
// System.String Dissonance.Audio.Playback.SpeechSessionStream::_playerName
String_t* ____playerName_7;
// Dissonance.Datastructures.WindowDeviationCalculator Dissonance.Audio.Playback.SpeechSessionStream::_arrivalJitterMeter
WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F * ____arrivalJitterMeter_8;
public:
inline static int32_t get_offset_of__metricArrivalDelay_1() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____metricArrivalDelay_1)); }
inline String_t* get__metricArrivalDelay_1() const { return ____metricArrivalDelay_1; }
inline String_t** get_address_of__metricArrivalDelay_1() { return &____metricArrivalDelay_1; }
inline void set__metricArrivalDelay_1(String_t* value)
{
____metricArrivalDelay_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____metricArrivalDelay_1), (void*)value);
}
inline static int32_t get_offset_of__awaitingActivation_2() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____awaitingActivation_2)); }
inline Queue_1_t639714B43606F2231F81C8D78C34EFDB9944A8D9 * get__awaitingActivation_2() const { return ____awaitingActivation_2; }
inline Queue_1_t639714B43606F2231F81C8D78C34EFDB9944A8D9 ** get_address_of__awaitingActivation_2() { return &____awaitingActivation_2; }
inline void set__awaitingActivation_2(Queue_1_t639714B43606F2231F81C8D78C34EFDB9944A8D9 * value)
{
____awaitingActivation_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____awaitingActivation_2), (void*)value);
}
inline static int32_t get_offset_of__volumeProvider_3() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____volumeProvider_3)); }
inline RuntimeObject* get__volumeProvider_3() const { return ____volumeProvider_3; }
inline RuntimeObject** get_address_of__volumeProvider_3() { return &____volumeProvider_3; }
inline void set__volumeProvider_3(RuntimeObject* value)
{
____volumeProvider_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____volumeProvider_3), (void*)value);
}
inline static int32_t get_offset_of__queueHeadFirstDequeueAttempt_4() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____queueHeadFirstDequeueAttempt_4)); }
inline Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D get__queueHeadFirstDequeueAttempt_4() const { return ____queueHeadFirstDequeueAttempt_4; }
inline Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D * get_address_of__queueHeadFirstDequeueAttempt_4() { return &____queueHeadFirstDequeueAttempt_4; }
inline void set__queueHeadFirstDequeueAttempt_4(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D value)
{
____queueHeadFirstDequeueAttempt_4 = value;
}
inline static int32_t get_offset_of__active_5() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____active_5)); }
inline DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED * get__active_5() const { return ____active_5; }
inline DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED ** get_address_of__active_5() { return &____active_5; }
inline void set__active_5(DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED * value)
{
____active_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____active_5), (void*)value);
}
inline static int32_t get_offset_of__currentId_6() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____currentId_6)); }
inline uint32_t get__currentId_6() const { return ____currentId_6; }
inline uint32_t* get_address_of__currentId_6() { return &____currentId_6; }
inline void set__currentId_6(uint32_t value)
{
____currentId_6 = value;
}
inline static int32_t get_offset_of__playerName_7() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____playerName_7)); }
inline String_t* get__playerName_7() const { return ____playerName_7; }
inline String_t** get_address_of__playerName_7() { return &____playerName_7; }
inline void set__playerName_7(String_t* value)
{
____playerName_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerName_7), (void*)value);
}
inline static int32_t get_offset_of__arrivalJitterMeter_8() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C, ____arrivalJitterMeter_8)); }
inline WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F * get__arrivalJitterMeter_8() const { return ____arrivalJitterMeter_8; }
inline WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F ** get_address_of__arrivalJitterMeter_8() { return &____arrivalJitterMeter_8; }
inline void set__arrivalJitterMeter_8(WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F * value)
{
____arrivalJitterMeter_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____arrivalJitterMeter_8), (void*)value);
}
};
struct SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.SpeechSessionStream::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// Mirror.SimpleWeb.SslConfig
struct SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90
{
public:
// System.Boolean Mirror.SimpleWeb.SslConfig::enabled
bool ___enabled_0;
// System.String Mirror.SimpleWeb.SslConfig::certPath
String_t* ___certPath_1;
// System.String Mirror.SimpleWeb.SslConfig::certPassword
String_t* ___certPassword_2;
// System.Security.Authentication.SslProtocols Mirror.SimpleWeb.SslConfig::sslProtocols
int32_t ___sslProtocols_3;
public:
inline static int32_t get_offset_of_enabled_0() { return static_cast<int32_t>(offsetof(SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90, ___enabled_0)); }
inline bool get_enabled_0() const { return ___enabled_0; }
inline bool* get_address_of_enabled_0() { return &___enabled_0; }
inline void set_enabled_0(bool value)
{
___enabled_0 = value;
}
inline static int32_t get_offset_of_certPath_1() { return static_cast<int32_t>(offsetof(SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90, ___certPath_1)); }
inline String_t* get_certPath_1() const { return ___certPath_1; }
inline String_t** get_address_of_certPath_1() { return &___certPath_1; }
inline void set_certPath_1(String_t* value)
{
___certPath_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___certPath_1), (void*)value);
}
inline static int32_t get_offset_of_certPassword_2() { return static_cast<int32_t>(offsetof(SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90, ___certPassword_2)); }
inline String_t* get_certPassword_2() const { return ___certPassword_2; }
inline String_t** get_address_of_certPassword_2() { return &___certPassword_2; }
inline void set_certPassword_2(String_t* value)
{
___certPassword_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___certPassword_2), (void*)value);
}
inline static int32_t get_offset_of_sslProtocols_3() { return static_cast<int32_t>(offsetof(SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90, ___sslProtocols_3)); }
inline int32_t get_sslProtocols_3() const { return ___sslProtocols_3; }
inline int32_t* get_address_of_sslProtocols_3() { return &___sslProtocols_3; }
inline void set_sslProtocols_3(int32_t value)
{
___sslProtocols_3 = value;
}
};
// Native definition for P/Invoke marshalling of Mirror.SimpleWeb.SslConfig
struct SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90_marshaled_pinvoke
{
int32_t ___enabled_0;
char* ___certPath_1;
char* ___certPassword_2;
int32_t ___sslProtocols_3;
};
// Native definition for COM marshalling of Mirror.SimpleWeb.SslConfig
struct SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90_marshaled_com
{
int32_t ___enabled_0;
Il2CppChar* ___certPath_1;
Il2CppChar* ___certPassword_2;
int32_t ___sslProtocols_3;
};
// Dissonance.Audio.Playback.SyncState
struct SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12
{
public:
// System.TimeSpan Dissonance.Audio.Playback.SyncState::ActualPlaybackPosition
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___ActualPlaybackPosition_0;
// System.TimeSpan Dissonance.Audio.Playback.SyncState::IdealPlaybackPosition
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___IdealPlaybackPosition_1;
// System.TimeSpan Dissonance.Audio.Playback.SyncState::Desync
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Desync_2;
// System.Single Dissonance.Audio.Playback.SyncState::CompensatedPlaybackSpeed
float ___CompensatedPlaybackSpeed_3;
// System.Boolean Dissonance.Audio.Playback.SyncState::Enabled
bool ___Enabled_4;
public:
inline static int32_t get_offset_of_ActualPlaybackPosition_0() { return static_cast<int32_t>(offsetof(SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12, ___ActualPlaybackPosition_0)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_ActualPlaybackPosition_0() const { return ___ActualPlaybackPosition_0; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_ActualPlaybackPosition_0() { return &___ActualPlaybackPosition_0; }
inline void set_ActualPlaybackPosition_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___ActualPlaybackPosition_0 = value;
}
inline static int32_t get_offset_of_IdealPlaybackPosition_1() { return static_cast<int32_t>(offsetof(SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12, ___IdealPlaybackPosition_1)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_IdealPlaybackPosition_1() const { return ___IdealPlaybackPosition_1; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_IdealPlaybackPosition_1() { return &___IdealPlaybackPosition_1; }
inline void set_IdealPlaybackPosition_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___IdealPlaybackPosition_1 = value;
}
inline static int32_t get_offset_of_Desync_2() { return static_cast<int32_t>(offsetof(SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12, ___Desync_2)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Desync_2() const { return ___Desync_2; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Desync_2() { return &___Desync_2; }
inline void set_Desync_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Desync_2 = value;
}
inline static int32_t get_offset_of_CompensatedPlaybackSpeed_3() { return static_cast<int32_t>(offsetof(SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12, ___CompensatedPlaybackSpeed_3)); }
inline float get_CompensatedPlaybackSpeed_3() const { return ___CompensatedPlaybackSpeed_3; }
inline float* get_address_of_CompensatedPlaybackSpeed_3() { return &___CompensatedPlaybackSpeed_3; }
inline void set_CompensatedPlaybackSpeed_3(float value)
{
___CompensatedPlaybackSpeed_3 = value;
}
inline static int32_t get_offset_of_Enabled_4() { return static_cast<int32_t>(offsetof(SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12, ___Enabled_4)); }
inline bool get_Enabled_4() const { return ___Enabled_4; }
inline bool* get_address_of_Enabled_4() { return &___Enabled_4; }
inline void set_Enabled_4(bool value)
{
___Enabled_4 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Audio.Playback.SyncState
struct SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12_marshaled_pinvoke
{
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___ActualPlaybackPosition_0;
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___IdealPlaybackPosition_1;
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Desync_2;
float ___CompensatedPlaybackSpeed_3;
int32_t ___Enabled_4;
};
// Native definition for COM marshalling of Dissonance.Audio.Playback.SyncState
struct SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12_marshaled_com
{
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___ActualPlaybackPosition_0;
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___IdealPlaybackPosition_1;
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Desync_2;
float ___CompensatedPlaybackSpeed_3;
int32_t ___Enabled_4;
};
// Dissonance.Audio.Playback.SynchronizerSampleSource
struct SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C : public RuntimeObject
{
public:
// Dissonance.Audio.Playback.ISampleSource Dissonance.Audio.Playback.SynchronizerSampleSource::_upstream
RuntimeObject* ____upstream_2;
// System.TimeSpan Dissonance.Audio.Playback.SynchronizerSampleSource::_resetDesyncTime
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ____resetDesyncTime_3;
// System.Diagnostics.Stopwatch Dissonance.Audio.Playback.SynchronizerSampleSource::_timer
Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * ____timer_4;
// System.Boolean Dissonance.Audio.Playback.SynchronizerSampleSource::_enabled
bool ____enabled_5;
// System.TimeSpan Dissonance.Audio.Playback.SynchronizerSampleSource::_aheadWarningLastSent
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ____aheadWarningLastSent_6;
// System.Int64 Dissonance.Audio.Playback.SynchronizerSampleSource::_totalSamplesRead
int64_t ____totalSamplesRead_7;
// Dissonance.Audio.Playback.DesyncCalculator Dissonance.Audio.Playback.SynchronizerSampleSource::_desync
DesyncCalculator_t7E3967F1C184C0B336D03D29617725A51F053CF1 ____desync_8;
// System.Single Dissonance.Audio.Playback.SynchronizerSampleSource::<PlaybackRate>k__BackingField
float ___U3CPlaybackRateU3Ek__BackingField_9;
public:
inline static int32_t get_offset_of__upstream_2() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ____upstream_2)); }
inline RuntimeObject* get__upstream_2() const { return ____upstream_2; }
inline RuntimeObject** get_address_of__upstream_2() { return &____upstream_2; }
inline void set__upstream_2(RuntimeObject* value)
{
____upstream_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____upstream_2), (void*)value);
}
inline static int32_t get_offset_of__resetDesyncTime_3() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ____resetDesyncTime_3)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get__resetDesyncTime_3() const { return ____resetDesyncTime_3; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of__resetDesyncTime_3() { return &____resetDesyncTime_3; }
inline void set__resetDesyncTime_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
____resetDesyncTime_3 = value;
}
inline static int32_t get_offset_of__timer_4() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ____timer_4)); }
inline Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * get__timer_4() const { return ____timer_4; }
inline Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 ** get_address_of__timer_4() { return &____timer_4; }
inline void set__timer_4(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * value)
{
____timer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____timer_4), (void*)value);
}
inline static int32_t get_offset_of__enabled_5() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ____enabled_5)); }
inline bool get__enabled_5() const { return ____enabled_5; }
inline bool* get_address_of__enabled_5() { return &____enabled_5; }
inline void set__enabled_5(bool value)
{
____enabled_5 = value;
}
inline static int32_t get_offset_of__aheadWarningLastSent_6() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ____aheadWarningLastSent_6)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get__aheadWarningLastSent_6() const { return ____aheadWarningLastSent_6; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of__aheadWarningLastSent_6() { return &____aheadWarningLastSent_6; }
inline void set__aheadWarningLastSent_6(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
____aheadWarningLastSent_6 = value;
}
inline static int32_t get_offset_of__totalSamplesRead_7() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ____totalSamplesRead_7)); }
inline int64_t get__totalSamplesRead_7() const { return ____totalSamplesRead_7; }
inline int64_t* get_address_of__totalSamplesRead_7() { return &____totalSamplesRead_7; }
inline void set__totalSamplesRead_7(int64_t value)
{
____totalSamplesRead_7 = value;
}
inline static int32_t get_offset_of__desync_8() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ____desync_8)); }
inline DesyncCalculator_t7E3967F1C184C0B336D03D29617725A51F053CF1 get__desync_8() const { return ____desync_8; }
inline DesyncCalculator_t7E3967F1C184C0B336D03D29617725A51F053CF1 * get_address_of__desync_8() { return &____desync_8; }
inline void set__desync_8(DesyncCalculator_t7E3967F1C184C0B336D03D29617725A51F053CF1 value)
{
____desync_8 = value;
}
inline static int32_t get_offset_of_U3CPlaybackRateU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C, ___U3CPlaybackRateU3Ek__BackingField_9)); }
inline float get_U3CPlaybackRateU3Ek__BackingField_9() const { return ___U3CPlaybackRateU3Ek__BackingField_9; }
inline float* get_address_of_U3CPlaybackRateU3Ek__BackingField_9() { return &___U3CPlaybackRateU3Ek__BackingField_9; }
inline void set_U3CPlaybackRateU3Ek__BackingField_9(float value)
{
___U3CPlaybackRateU3Ek__BackingField_9 = value;
}
};
struct SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.SynchronizerSampleSource::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
// System.Single[] Dissonance.Audio.Playback.SynchronizerSampleSource::DesyncFixBuffer
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___DesyncFixBuffer_1;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
inline static int32_t get_offset_of_DesyncFixBuffer_1() { return static_cast<int32_t>(offsetof(SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C_StaticFields, ___DesyncFixBuffer_1)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_DesyncFixBuffer_1() const { return ___DesyncFixBuffer_1; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_DesyncFixBuffer_1() { return &___DesyncFixBuffer_1; }
inline void set_DesyncFixBuffer_1(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
___DesyncFixBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DesyncFixBuffer_1), (void*)value);
}
};
// UnityEngine.TerrainData
struct TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
struct TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields
{
public:
// System.Int32 UnityEngine.TerrainData::k_MaximumResolution
int32_t ___k_MaximumResolution_4;
// System.Int32 UnityEngine.TerrainData::k_MinimumDetailResolutionPerPatch
int32_t ___k_MinimumDetailResolutionPerPatch_5;
// System.Int32 UnityEngine.TerrainData::k_MaximumDetailResolutionPerPatch
int32_t ___k_MaximumDetailResolutionPerPatch_6;
// System.Int32 UnityEngine.TerrainData::k_MaximumDetailPatchCount
int32_t ___k_MaximumDetailPatchCount_7;
// System.Int32 UnityEngine.TerrainData::k_MaximumDetailsPerRes
int32_t ___k_MaximumDetailsPerRes_8;
// System.Int32 UnityEngine.TerrainData::k_MinimumAlphamapResolution
int32_t ___k_MinimumAlphamapResolution_9;
// System.Int32 UnityEngine.TerrainData::k_MaximumAlphamapResolution
int32_t ___k_MaximumAlphamapResolution_10;
// System.Int32 UnityEngine.TerrainData::k_MinimumBaseMapResolution
int32_t ___k_MinimumBaseMapResolution_11;
// System.Int32 UnityEngine.TerrainData::k_MaximumBaseMapResolution
int32_t ___k_MaximumBaseMapResolution_12;
public:
inline static int32_t get_offset_of_k_MaximumResolution_4() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MaximumResolution_4)); }
inline int32_t get_k_MaximumResolution_4() const { return ___k_MaximumResolution_4; }
inline int32_t* get_address_of_k_MaximumResolution_4() { return &___k_MaximumResolution_4; }
inline void set_k_MaximumResolution_4(int32_t value)
{
___k_MaximumResolution_4 = value;
}
inline static int32_t get_offset_of_k_MinimumDetailResolutionPerPatch_5() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MinimumDetailResolutionPerPatch_5)); }
inline int32_t get_k_MinimumDetailResolutionPerPatch_5() const { return ___k_MinimumDetailResolutionPerPatch_5; }
inline int32_t* get_address_of_k_MinimumDetailResolutionPerPatch_5() { return &___k_MinimumDetailResolutionPerPatch_5; }
inline void set_k_MinimumDetailResolutionPerPatch_5(int32_t value)
{
___k_MinimumDetailResolutionPerPatch_5 = value;
}
inline static int32_t get_offset_of_k_MaximumDetailResolutionPerPatch_6() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MaximumDetailResolutionPerPatch_6)); }
inline int32_t get_k_MaximumDetailResolutionPerPatch_6() const { return ___k_MaximumDetailResolutionPerPatch_6; }
inline int32_t* get_address_of_k_MaximumDetailResolutionPerPatch_6() { return &___k_MaximumDetailResolutionPerPatch_6; }
inline void set_k_MaximumDetailResolutionPerPatch_6(int32_t value)
{
___k_MaximumDetailResolutionPerPatch_6 = value;
}
inline static int32_t get_offset_of_k_MaximumDetailPatchCount_7() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MaximumDetailPatchCount_7)); }
inline int32_t get_k_MaximumDetailPatchCount_7() const { return ___k_MaximumDetailPatchCount_7; }
inline int32_t* get_address_of_k_MaximumDetailPatchCount_7() { return &___k_MaximumDetailPatchCount_7; }
inline void set_k_MaximumDetailPatchCount_7(int32_t value)
{
___k_MaximumDetailPatchCount_7 = value;
}
inline static int32_t get_offset_of_k_MaximumDetailsPerRes_8() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MaximumDetailsPerRes_8)); }
inline int32_t get_k_MaximumDetailsPerRes_8() const { return ___k_MaximumDetailsPerRes_8; }
inline int32_t* get_address_of_k_MaximumDetailsPerRes_8() { return &___k_MaximumDetailsPerRes_8; }
inline void set_k_MaximumDetailsPerRes_8(int32_t value)
{
___k_MaximumDetailsPerRes_8 = value;
}
inline static int32_t get_offset_of_k_MinimumAlphamapResolution_9() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MinimumAlphamapResolution_9)); }
inline int32_t get_k_MinimumAlphamapResolution_9() const { return ___k_MinimumAlphamapResolution_9; }
inline int32_t* get_address_of_k_MinimumAlphamapResolution_9() { return &___k_MinimumAlphamapResolution_9; }
inline void set_k_MinimumAlphamapResolution_9(int32_t value)
{
___k_MinimumAlphamapResolution_9 = value;
}
inline static int32_t get_offset_of_k_MaximumAlphamapResolution_10() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MaximumAlphamapResolution_10)); }
inline int32_t get_k_MaximumAlphamapResolution_10() const { return ___k_MaximumAlphamapResolution_10; }
inline int32_t* get_address_of_k_MaximumAlphamapResolution_10() { return &___k_MaximumAlphamapResolution_10; }
inline void set_k_MaximumAlphamapResolution_10(int32_t value)
{
___k_MaximumAlphamapResolution_10 = value;
}
inline static int32_t get_offset_of_k_MinimumBaseMapResolution_11() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MinimumBaseMapResolution_11)); }
inline int32_t get_k_MinimumBaseMapResolution_11() const { return ___k_MinimumBaseMapResolution_11; }
inline int32_t* get_address_of_k_MinimumBaseMapResolution_11() { return &___k_MinimumBaseMapResolution_11; }
inline void set_k_MinimumBaseMapResolution_11(int32_t value)
{
___k_MinimumBaseMapResolution_11 = value;
}
inline static int32_t get_offset_of_k_MaximumBaseMapResolution_12() { return static_cast<int32_t>(offsetof(TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields, ___k_MaximumBaseMapResolution_12)); }
inline int32_t get_k_MaximumBaseMapResolution_12() const { return ___k_MaximumBaseMapResolution_12; }
inline int32_t* get_address_of_k_MaximumBaseMapResolution_12() { return &___k_MaximumBaseMapResolution_12; }
inline void set_k_MaximumBaseMapResolution_12(int32_t value)
{
___k_MaximumBaseMapResolution_12 = value;
}
};
// Dissonance.Networking.TextMessage
struct TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138
{
public:
// System.String Dissonance.Networking.TextMessage::Sender
String_t* ___Sender_0;
// Dissonance.ChannelType Dissonance.Networking.TextMessage::RecipientType
int32_t ___RecipientType_1;
// System.String Dissonance.Networking.TextMessage::Recipient
String_t* ___Recipient_2;
// System.String Dissonance.Networking.TextMessage::Message
String_t* ___Message_3;
public:
inline static int32_t get_offset_of_Sender_0() { return static_cast<int32_t>(offsetof(TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138, ___Sender_0)); }
inline String_t* get_Sender_0() const { return ___Sender_0; }
inline String_t** get_address_of_Sender_0() { return &___Sender_0; }
inline void set_Sender_0(String_t* value)
{
___Sender_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Sender_0), (void*)value);
}
inline static int32_t get_offset_of_RecipientType_1() { return static_cast<int32_t>(offsetof(TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138, ___RecipientType_1)); }
inline int32_t get_RecipientType_1() const { return ___RecipientType_1; }
inline int32_t* get_address_of_RecipientType_1() { return &___RecipientType_1; }
inline void set_RecipientType_1(int32_t value)
{
___RecipientType_1 = value;
}
inline static int32_t get_offset_of_Recipient_2() { return static_cast<int32_t>(offsetof(TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138, ___Recipient_2)); }
inline String_t* get_Recipient_2() const { return ___Recipient_2; }
inline String_t** get_address_of_Recipient_2() { return &___Recipient_2; }
inline void set_Recipient_2(String_t* value)
{
___Recipient_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Recipient_2), (void*)value);
}
inline static int32_t get_offset_of_Message_3() { return static_cast<int32_t>(offsetof(TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138, ___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);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.TextMessage
struct TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138_marshaled_pinvoke
{
char* ___Sender_0;
int32_t ___RecipientType_1;
char* ___Recipient_2;
char* ___Message_3;
};
// Native definition for COM marshalling of Dissonance.Networking.TextMessage
struct TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138_marshaled_com
{
Il2CppChar* ___Sender_0;
int32_t ___RecipientType_1;
Il2CppChar* ___Recipient_2;
Il2CppChar* ___Message_3;
};
// Dissonance.Networking.TextPacket
struct TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9
{
public:
// System.UInt16 Dissonance.Networking.TextPacket::Sender
uint16_t ___Sender_0;
// Dissonance.ChannelType Dissonance.Networking.TextPacket::RecipientType
int32_t ___RecipientType_1;
// System.UInt16 Dissonance.Networking.TextPacket::Recipient
uint16_t ___Recipient_2;
// System.String Dissonance.Networking.TextPacket::Text
String_t* ___Text_3;
public:
inline static int32_t get_offset_of_Sender_0() { return static_cast<int32_t>(offsetof(TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9, ___Sender_0)); }
inline uint16_t get_Sender_0() const { return ___Sender_0; }
inline uint16_t* get_address_of_Sender_0() { return &___Sender_0; }
inline void set_Sender_0(uint16_t value)
{
___Sender_0 = value;
}
inline static int32_t get_offset_of_RecipientType_1() { return static_cast<int32_t>(offsetof(TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9, ___RecipientType_1)); }
inline int32_t get_RecipientType_1() const { return ___RecipientType_1; }
inline int32_t* get_address_of_RecipientType_1() { return &___RecipientType_1; }
inline void set_RecipientType_1(int32_t value)
{
___RecipientType_1 = value;
}
inline static int32_t get_offset_of_Recipient_2() { return static_cast<int32_t>(offsetof(TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9, ___Recipient_2)); }
inline uint16_t get_Recipient_2() const { return ___Recipient_2; }
inline uint16_t* get_address_of_Recipient_2() { return &___Recipient_2; }
inline void set_Recipient_2(uint16_t value)
{
___Recipient_2 = value;
}
inline static int32_t get_offset_of_Text_3() { return static_cast<int32_t>(offsetof(TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9, ___Text_3)); }
inline String_t* get_Text_3() const { return ___Text_3; }
inline String_t** get_address_of_Text_3() { return &___Text_3; }
inline void set_Text_3(String_t* value)
{
___Text_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Text_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.TextPacket
struct TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9_marshaled_pinvoke
{
uint16_t ___Sender_0;
int32_t ___RecipientType_1;
uint16_t ___Recipient_2;
char* ___Text_3;
};
// Native definition for COM marshalling of Dissonance.Networking.TextPacket
struct TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9_marshaled_com
{
uint16_t ___Sender_0;
int32_t ___RecipientType_1;
uint16_t ___Recipient_2;
Il2CppChar* ___Text_3;
};
// UnityEngine.UIElements.UIR.Utility
struct Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D : public RuntimeObject
{
public:
public:
};
struct Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields
{
public:
// System.Action`1<System.Boolean> UnityEngine.UIElements.UIR.Utility::GraphicsResourcesRecreate
Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * ___GraphicsResourcesRecreate_0;
// System.Action UnityEngine.UIElements.UIR.Utility::EngineUpdate
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___EngineUpdate_1;
// System.Action UnityEngine.UIElements.UIR.Utility::FlushPendingResources
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___FlushPendingResources_2;
// System.Action`1<UnityEngine.Camera> UnityEngine.UIElements.UIR.Utility::RegisterIntermediateRenderers
Action_1_tF542A16B67D2A30E5C824E6EF0DD0ED4A065680B * ___RegisterIntermediateRenderers_3;
// System.Action`1<System.IntPtr> UnityEngine.UIElements.UIR.Utility::RenderNodeAdd
Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * ___RenderNodeAdd_4;
// System.Action`1<System.IntPtr> UnityEngine.UIElements.UIR.Utility::RenderNodeExecute
Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * ___RenderNodeExecute_5;
// System.Action`1<System.IntPtr> UnityEngine.UIElements.UIR.Utility::RenderNodeCleanup
Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * ___RenderNodeCleanup_6;
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIR.Utility::s_MarkerRaiseEngineUpdate
ProfilerMarker_tAE86534C80C5D67768DB3B244D8D139A2E6495E1 ___s_MarkerRaiseEngineUpdate_7;
public:
inline static int32_t get_offset_of_GraphicsResourcesRecreate_0() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___GraphicsResourcesRecreate_0)); }
inline Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * get_GraphicsResourcesRecreate_0() const { return ___GraphicsResourcesRecreate_0; }
inline Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 ** get_address_of_GraphicsResourcesRecreate_0() { return &___GraphicsResourcesRecreate_0; }
inline void set_GraphicsResourcesRecreate_0(Action_1_tCE2D770918A65CAD277C08C4E8C05385EA267E83 * value)
{
___GraphicsResourcesRecreate_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___GraphicsResourcesRecreate_0), (void*)value);
}
inline static int32_t get_offset_of_EngineUpdate_1() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___EngineUpdate_1)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_EngineUpdate_1() const { return ___EngineUpdate_1; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_EngineUpdate_1() { return &___EngineUpdate_1; }
inline void set_EngineUpdate_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___EngineUpdate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EngineUpdate_1), (void*)value);
}
inline static int32_t get_offset_of_FlushPendingResources_2() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___FlushPendingResources_2)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_FlushPendingResources_2() const { return ___FlushPendingResources_2; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_FlushPendingResources_2() { return &___FlushPendingResources_2; }
inline void set_FlushPendingResources_2(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___FlushPendingResources_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FlushPendingResources_2), (void*)value);
}
inline static int32_t get_offset_of_RegisterIntermediateRenderers_3() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___RegisterIntermediateRenderers_3)); }
inline Action_1_tF542A16B67D2A30E5C824E6EF0DD0ED4A065680B * get_RegisterIntermediateRenderers_3() const { return ___RegisterIntermediateRenderers_3; }
inline Action_1_tF542A16B67D2A30E5C824E6EF0DD0ED4A065680B ** get_address_of_RegisterIntermediateRenderers_3() { return &___RegisterIntermediateRenderers_3; }
inline void set_RegisterIntermediateRenderers_3(Action_1_tF542A16B67D2A30E5C824E6EF0DD0ED4A065680B * value)
{
___RegisterIntermediateRenderers_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___RegisterIntermediateRenderers_3), (void*)value);
}
inline static int32_t get_offset_of_RenderNodeAdd_4() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___RenderNodeAdd_4)); }
inline Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * get_RenderNodeAdd_4() const { return ___RenderNodeAdd_4; }
inline Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 ** get_address_of_RenderNodeAdd_4() { return &___RenderNodeAdd_4; }
inline void set_RenderNodeAdd_4(Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * value)
{
___RenderNodeAdd_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___RenderNodeAdd_4), (void*)value);
}
inline static int32_t get_offset_of_RenderNodeExecute_5() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___RenderNodeExecute_5)); }
inline Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * get_RenderNodeExecute_5() const { return ___RenderNodeExecute_5; }
inline Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 ** get_address_of_RenderNodeExecute_5() { return &___RenderNodeExecute_5; }
inline void set_RenderNodeExecute_5(Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * value)
{
___RenderNodeExecute_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___RenderNodeExecute_5), (void*)value);
}
inline static int32_t get_offset_of_RenderNodeCleanup_6() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___RenderNodeCleanup_6)); }
inline Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * get_RenderNodeCleanup_6() const { return ___RenderNodeCleanup_6; }
inline Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 ** get_address_of_RenderNodeCleanup_6() { return &___RenderNodeCleanup_6; }
inline void set_RenderNodeCleanup_6(Action_1_t35A46FAEE6B0A26D311444DF75B6EAFC59EBD914 * value)
{
___RenderNodeCleanup_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___RenderNodeCleanup_6), (void*)value);
}
inline static int32_t get_offset_of_s_MarkerRaiseEngineUpdate_7() { return static_cast<int32_t>(offsetof(Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields, ___s_MarkerRaiseEngineUpdate_7)); }
inline ProfilerMarker_tAE86534C80C5D67768DB3B244D8D139A2E6495E1 get_s_MarkerRaiseEngineUpdate_7() const { return ___s_MarkerRaiseEngineUpdate_7; }
inline ProfilerMarker_tAE86534C80C5D67768DB3B244D8D139A2E6495E1 * get_address_of_s_MarkerRaiseEngineUpdate_7() { return &___s_MarkerRaiseEngineUpdate_7; }
inline void set_s_MarkerRaiseEngineUpdate_7(ProfilerMarker_tAE86534C80C5D67768DB3B244D8D139A2E6495E1 value)
{
___s_MarkerRaiseEngineUpdate_7 = value;
}
};
// UnityEngine.Video.VideoClip
struct VideoClip_tA8C2507553BEE394C46B7A876D6F56DD09F6C90F : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.Experimental.Video.VideoClipPlayable
struct VideoClipPlayable_tC49201F6C8E1AB1CC8F4E31EFC12C7E1C03BC2E1
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Video.VideoClipPlayable::m_Handle
PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(VideoClipPlayable_tC49201F6C8E1AB1CC8F4E31EFC12C7E1C03BC2E1, ___m_Handle_0)); }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.VFX.VisualEffectObject
struct VisualEffectObject_tC7804AFDC2B4F2F0CE6833AC467ABC177A1617DB : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand
struct WarpMousePositionCommand_tBE1DF0C052CA59FF569BAA581F68D3D2C2BAE242
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputDeviceCommand UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::baseCommand
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1;
};
#pragma pack(pop, tp)
struct
{
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 ___baseCommand_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___warpPositionInPlayerDisplaySpace_2_OffsetPadding[8];
// UnityEngine.Vector2 UnityEngine.InputSystem.LowLevel.WarpMousePositionCommand::warpPositionInPlayerDisplaySpace
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___warpPositionInPlayerDisplaySpace_2;
};
#pragma pack(pop, tp)
struct
{
char ___warpPositionInPlayerDisplaySpace_2_OffsetPadding_forAlignmentOnly[8];
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___warpPositionInPlayerDisplaySpace_2_forAlignmentOnly;
};
};
};
uint8_t WarpMousePositionCommand_tBE1DF0C052CA59FF569BAA581F68D3D2C2BAE242__padding[16];
};
public:
inline static int32_t get_offset_of_baseCommand_1() { return static_cast<int32_t>(offsetof(WarpMousePositionCommand_tBE1DF0C052CA59FF569BAA581F68D3D2C2BAE242, ___baseCommand_1)); }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 get_baseCommand_1() const { return ___baseCommand_1; }
inline InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 * get_address_of_baseCommand_1() { return &___baseCommand_1; }
inline void set_baseCommand_1(InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854 value)
{
___baseCommand_1 = value;
}
inline static int32_t get_offset_of_warpPositionInPlayerDisplaySpace_2() { return static_cast<int32_t>(offsetof(WarpMousePositionCommand_tBE1DF0C052CA59FF569BAA581F68D3D2C2BAE242, ___warpPositionInPlayerDisplaySpace_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_warpPositionInPlayerDisplaySpace_2() const { return ___warpPositionInPlayerDisplaySpace_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_warpPositionInPlayerDisplaySpace_2() { return &___warpPositionInPlayerDisplaySpace_2; }
inline void set_warpPositionInPlayerDisplaySpace_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___warpPositionInPlayerDisplaySpace_2 = value;
}
};
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline
struct WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33 : public BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777
{
public:
// System.Boolean Dissonance.Audio.Capture.WebRtcPreprocessingPipeline::_isVadDetectingSpeech
bool ____isVadDetectingSpeech_23;
// System.Boolean Dissonance.Audio.Capture.WebRtcPreprocessingPipeline::_isMobilePlatform
bool ____isMobilePlatform_24;
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor Dissonance.Audio.Capture.WebRtcPreprocessingPipeline::_preprocessor
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020 * ____preprocessor_25;
// System.Boolean Dissonance.Audio.Capture.WebRtcPreprocessingPipeline::_isOutputMuted
bool ____isOutputMuted_26;
public:
inline static int32_t get_offset_of__isVadDetectingSpeech_23() { return static_cast<int32_t>(offsetof(WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33, ____isVadDetectingSpeech_23)); }
inline bool get__isVadDetectingSpeech_23() const { return ____isVadDetectingSpeech_23; }
inline bool* get_address_of__isVadDetectingSpeech_23() { return &____isVadDetectingSpeech_23; }
inline void set__isVadDetectingSpeech_23(bool value)
{
____isVadDetectingSpeech_23 = value;
}
inline static int32_t get_offset_of__isMobilePlatform_24() { return static_cast<int32_t>(offsetof(WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33, ____isMobilePlatform_24)); }
inline bool get__isMobilePlatform_24() const { return ____isMobilePlatform_24; }
inline bool* get_address_of__isMobilePlatform_24() { return &____isMobilePlatform_24; }
inline void set__isMobilePlatform_24(bool value)
{
____isMobilePlatform_24 = value;
}
inline static int32_t get_offset_of__preprocessor_25() { return static_cast<int32_t>(offsetof(WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33, ____preprocessor_25)); }
inline WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020 * get__preprocessor_25() const { return ____preprocessor_25; }
inline WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020 ** get_address_of__preprocessor_25() { return &____preprocessor_25; }
inline void set__preprocessor_25(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020 * value)
{
____preprocessor_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&____preprocessor_25), (void*)value);
}
inline static int32_t get_offset_of__isOutputMuted_26() { return static_cast<int32_t>(offsetof(WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33, ____isOutputMuted_26)); }
inline bool get__isOutputMuted_26() const { return ____isOutputMuted_26; }
inline bool* get_address_of__isOutputMuted_26() { return &____isOutputMuted_26; }
inline void set__isOutputMuted_26(bool value)
{
____isOutputMuted_26 = value;
}
};
struct WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Capture.WebRtcPreprocessingPipeline::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_22;
public:
inline static int32_t get_offset_of_Log_22() { return static_cast<int32_t>(offsetof(WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33_StaticFields, ___Log_22)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_22() const { return ___Log_22; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_22() { return &___Log_22; }
inline void set_Log_22(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_22), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem
struct WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 : public XRGestureSubsystem_t9CE9DF7141C4363F8917D3F006EBB9FAE322AF02
{
public:
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem::m_WindowsMRProvider
WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB * ___m_WindowsMRProvider_4;
public:
inline static int32_t get_offset_of_m_WindowsMRProvider_4() { return static_cast<int32_t>(offsetof(WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60, ___m_WindowsMRProvider_4)); }
inline WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB * get_m_WindowsMRProvider_4() const { return ___m_WindowsMRProvider_4; }
inline WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB ** get_address_of_m_WindowsMRProvider_4() { return &___m_WindowsMRProvider_4; }
inline void set_m_WindowsMRProvider_4(WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB * value)
{
___m_WindowsMRProvider_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WindowsMRProvider_4), (void*)value);
}
};
struct WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60_StaticFields
{
public:
// UnityEngine.XR.InteractionSubsystems.GestureId UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem::s_NextGUID
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 ___s_NextGUID_3;
public:
inline static int32_t get_offset_of_s_NextGUID_3() { return static_cast<int32_t>(offsetof(WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60_StaticFields, ___s_NextGUID_3)); }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 get_s_NextGUID_3() const { return ___s_NextGUID_3; }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 * get_address_of_s_NextGUID_3() { return &___s_NextGUID_3; }
inline void set_s_NextGUID_3(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 value)
{
___s_NextGUID_3 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRHoldGestureEvent
struct WindowsMRHoldGestureEvent_tB7F4D8EC255D30FC4F840E070817CDF731B0320C
{
public:
// UnityEngine.XR.InteractionSubsystems.GestureId UnityEngine.XR.WindowsMR.WindowsMRHoldGestureEvent::m_Id
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 ___m_Id_0;
// UnityEngine.XR.InteractionSubsystems.GestureState UnityEngine.XR.WindowsMR.WindowsMRHoldGestureEvent::m_State
int32_t ___m_State_1;
public:
inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(WindowsMRHoldGestureEvent_tB7F4D8EC255D30FC4F840E070817CDF731B0320C, ___m_Id_0)); }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 get_m_Id_0() const { return ___m_Id_0; }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 * get_address_of_m_Id_0() { return &___m_Id_0; }
inline void set_m_Id_0(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 value)
{
___m_Id_0 = value;
}
inline static int32_t get_offset_of_m_State_1() { return static_cast<int32_t>(offsetof(WindowsMRHoldGestureEvent_tB7F4D8EC255D30FC4F840E070817CDF731B0320C, ___m_State_1)); }
inline int32_t get_m_State_1() const { return ___m_State_1; }
inline int32_t* get_address_of_m_State_1() { return &___m_State_1; }
inline void set_m_State_1(int32_t value)
{
___m_State_1 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent
struct WindowsMRManipulationGestureEvent_tBE7CECB1CE9CBC755847F544867A3FD16AAC08CD
{
public:
// UnityEngine.XR.InteractionSubsystems.GestureId UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent::m_Id
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 ___m_Id_0;
// UnityEngine.XR.InteractionSubsystems.GestureState UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent::m_State
int32_t ___m_State_1;
// UnityEngine.Vector3 UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent::m_CumulativeDelta
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_CumulativeDelta_2;
public:
inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(WindowsMRManipulationGestureEvent_tBE7CECB1CE9CBC755847F544867A3FD16AAC08CD, ___m_Id_0)); }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 get_m_Id_0() const { return ___m_Id_0; }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 * get_address_of_m_Id_0() { return &___m_Id_0; }
inline void set_m_Id_0(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 value)
{
___m_Id_0 = value;
}
inline static int32_t get_offset_of_m_State_1() { return static_cast<int32_t>(offsetof(WindowsMRManipulationGestureEvent_tBE7CECB1CE9CBC755847F544867A3FD16AAC08CD, ___m_State_1)); }
inline int32_t get_m_State_1() const { return ___m_State_1; }
inline int32_t* get_address_of_m_State_1() { return &___m_State_1; }
inline void set_m_State_1(int32_t value)
{
___m_State_1 = value;
}
inline static int32_t get_offset_of_m_CumulativeDelta_2() { return static_cast<int32_t>(offsetof(WindowsMRManipulationGestureEvent_tBE7CECB1CE9CBC755847F544867A3FD16AAC08CD, ___m_CumulativeDelta_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_CumulativeDelta_2() const { return ___m_CumulativeDelta_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_CumulativeDelta_2() { return &___m_CumulativeDelta_2; }
inline void set_m_CumulativeDelta_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_CumulativeDelta_2 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent
struct WindowsMRNavigationGestureEvent_t2EC0C04378BBDBD7D4CD89065DAA531E0387B9E9
{
public:
// UnityEngine.XR.InteractionSubsystems.GestureId UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent::m_Id
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 ___m_Id_0;
// UnityEngine.XR.InteractionSubsystems.GestureState UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent::m_State
int32_t ___m_State_1;
// UnityEngine.Vector3 UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent::m_NormalizedOffset
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_NormalizedOffset_2;
public:
inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(WindowsMRNavigationGestureEvent_t2EC0C04378BBDBD7D4CD89065DAA531E0387B9E9, ___m_Id_0)); }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 get_m_Id_0() const { return ___m_Id_0; }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 * get_address_of_m_Id_0() { return &___m_Id_0; }
inline void set_m_Id_0(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 value)
{
___m_Id_0 = value;
}
inline static int32_t get_offset_of_m_State_1() { return static_cast<int32_t>(offsetof(WindowsMRNavigationGestureEvent_t2EC0C04378BBDBD7D4CD89065DAA531E0387B9E9, ___m_State_1)); }
inline int32_t get_m_State_1() const { return ___m_State_1; }
inline int32_t* get_address_of_m_State_1() { return &___m_State_1; }
inline void set_m_State_1(int32_t value)
{
___m_State_1 = value;
}
inline static int32_t get_offset_of_m_NormalizedOffset_2() { return static_cast<int32_t>(offsetof(WindowsMRNavigationGestureEvent_t2EC0C04378BBDBD7D4CD89065DAA531E0387B9E9, ___m_NormalizedOffset_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_NormalizedOffset_2() const { return ___m_NormalizedOffset_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_NormalizedOffset_2() { return &___m_NormalizedOffset_2; }
inline void set_m_NormalizedOffset_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_NormalizedOffset_2 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRSessionSubsystem
struct WindowsMRSessionSubsystem_t0DC9CB38AEA08D13E9FD29331BC3C4F38522FFB6 : public XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent
struct WindowsMRTappedGestureEvent_t6D7C9A5011BB7905FA7D06115A0CDF686D258E90
{
public:
// UnityEngine.XR.InteractionSubsystems.GestureId UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent::m_Id
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 ___m_Id_0;
// UnityEngine.XR.InteractionSubsystems.GestureState UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent::m_State
int32_t ___m_State_1;
// System.Int32 UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent::m_TappedCount
int32_t ___m_TappedCount_2;
public:
inline static int32_t get_offset_of_m_Id_0() { return static_cast<int32_t>(offsetof(WindowsMRTappedGestureEvent_t6D7C9A5011BB7905FA7D06115A0CDF686D258E90, ___m_Id_0)); }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 get_m_Id_0() const { return ___m_Id_0; }
inline GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 * get_address_of_m_Id_0() { return &___m_Id_0; }
inline void set_m_Id_0(GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7 value)
{
___m_Id_0 = value;
}
inline static int32_t get_offset_of_m_State_1() { return static_cast<int32_t>(offsetof(WindowsMRTappedGestureEvent_t6D7C9A5011BB7905FA7D06115A0CDF686D258E90, ___m_State_1)); }
inline int32_t get_m_State_1() const { return ___m_State_1; }
inline int32_t* get_address_of_m_State_1() { return &___m_State_1; }
inline void set_m_State_1(int32_t value)
{
___m_State_1 = value;
}
inline static int32_t get_offset_of_m_TappedCount_2() { return static_cast<int32_t>(offsetof(WindowsMRTappedGestureEvent_t6D7C9A5011BB7905FA7D06115A0CDF686D258E90, ___m_TappedCount_2)); }
inline int32_t get_m_TappedCount_2() const { return ___m_TappedCount_2; }
inline int32_t* get_address_of_m_TappedCount_2() { return &___m_TappedCount_2; }
inline void set_m_TappedCount_2(int32_t value)
{
___m_TappedCount_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchor
struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::m_Id
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRAnchor::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRAnchor::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRAnchor::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Guid UnityEngine.XR.ARSubsystems.XRAnchor::m_SessionId
Guid_t ___m_SessionId_5;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Id_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_SessionId_5)); }
inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; }
inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; }
inline void set_m_SessionId_5(Guid_t value)
{
___m_SessionId_5 = value;
}
};
struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRAnchor UnityEngine.XR.ARSubsystems.XRAnchor::s_Default
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields, ___s_Default_0)); }
inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C get_s_Default_0() const { return ___s_Default_0; }
inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystem
struct XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7 : public TrackingSubsystem_4_t5C7E2B8B7A9943DF8B9FF5B46FB5AFA71E9826F1
{
public:
public:
};
// UnityEngine.InputSystem.XR.XRDeviceDescriptor
struct XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D : public RuntimeObject
{
public:
// System.String UnityEngine.InputSystem.XR.XRDeviceDescriptor::deviceName
String_t* ___deviceName_0;
// System.String UnityEngine.InputSystem.XR.XRDeviceDescriptor::manufacturer
String_t* ___manufacturer_1;
// System.String UnityEngine.InputSystem.XR.XRDeviceDescriptor::serialNumber
String_t* ___serialNumber_2;
// UnityEngine.XR.InputDeviceCharacteristics UnityEngine.InputSystem.XR.XRDeviceDescriptor::characteristics
uint32_t ___characteristics_3;
// System.Int32 UnityEngine.InputSystem.XR.XRDeviceDescriptor::deviceId
int32_t ___deviceId_4;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.XR.XRFeatureDescriptor> UnityEngine.InputSystem.XR.XRDeviceDescriptor::inputFeatures
List_1_tDF217C044E63C826CDD699480A5CDC6DC952D0BA * ___inputFeatures_5;
public:
inline static int32_t get_offset_of_deviceName_0() { return static_cast<int32_t>(offsetof(XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D, ___deviceName_0)); }
inline String_t* get_deviceName_0() const { return ___deviceName_0; }
inline String_t** get_address_of_deviceName_0() { return &___deviceName_0; }
inline void set_deviceName_0(String_t* value)
{
___deviceName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceName_0), (void*)value);
}
inline static int32_t get_offset_of_manufacturer_1() { return static_cast<int32_t>(offsetof(XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D, ___manufacturer_1)); }
inline String_t* get_manufacturer_1() const { return ___manufacturer_1; }
inline String_t** get_address_of_manufacturer_1() { return &___manufacturer_1; }
inline void set_manufacturer_1(String_t* value)
{
___manufacturer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___manufacturer_1), (void*)value);
}
inline static int32_t get_offset_of_serialNumber_2() { return static_cast<int32_t>(offsetof(XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D, ___serialNumber_2)); }
inline String_t* get_serialNumber_2() const { return ___serialNumber_2; }
inline String_t** get_address_of_serialNumber_2() { return &___serialNumber_2; }
inline void set_serialNumber_2(String_t* value)
{
___serialNumber_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_2), (void*)value);
}
inline static int32_t get_offset_of_characteristics_3() { return static_cast<int32_t>(offsetof(XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D, ___characteristics_3)); }
inline uint32_t get_characteristics_3() const { return ___characteristics_3; }
inline uint32_t* get_address_of_characteristics_3() { return &___characteristics_3; }
inline void set_characteristics_3(uint32_t value)
{
___characteristics_3 = value;
}
inline static int32_t get_offset_of_deviceId_4() { return static_cast<int32_t>(offsetof(XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D, ___deviceId_4)); }
inline int32_t get_deviceId_4() const { return ___deviceId_4; }
inline int32_t* get_address_of_deviceId_4() { return &___deviceId_4; }
inline void set_deviceId_4(int32_t value)
{
___deviceId_4 = value;
}
inline static int32_t get_offset_of_inputFeatures_5() { return static_cast<int32_t>(offsetof(XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D, ___inputFeatures_5)); }
inline List_1_tDF217C044E63C826CDD699480A5CDC6DC952D0BA * get_inputFeatures_5() const { return ___inputFeatures_5; }
inline List_1_tDF217C044E63C826CDD699480A5CDC6DC952D0BA ** get_address_of_inputFeatures_5() { return &___inputFeatures_5; }
inline void set_inputFeatures_5(List_1_tDF217C044E63C826CDD699480A5CDC6DC952D0BA * value)
{
___inputFeatures_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___inputFeatures_5), (void*)value);
}
};
// UnityEngine.InputSystem.XR.XRFeatureDescriptor
struct XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861
{
public:
// System.String UnityEngine.InputSystem.XR.XRFeatureDescriptor::name
String_t* ___name_0;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.XR.UsageHint> UnityEngine.InputSystem.XR.XRFeatureDescriptor::usageHints
List_1_t571FC509DE86251A12DF4812CF4AB2577D9D9C94 * ___usageHints_1;
// UnityEngine.InputSystem.XR.FeatureType UnityEngine.InputSystem.XR.XRFeatureDescriptor::featureType
int32_t ___featureType_2;
// System.UInt32 UnityEngine.InputSystem.XR.XRFeatureDescriptor::customSize
uint32_t ___customSize_3;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861, ___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);
}
inline static int32_t get_offset_of_usageHints_1() { return static_cast<int32_t>(offsetof(XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861, ___usageHints_1)); }
inline List_1_t571FC509DE86251A12DF4812CF4AB2577D9D9C94 * get_usageHints_1() const { return ___usageHints_1; }
inline List_1_t571FC509DE86251A12DF4812CF4AB2577D9D9C94 ** get_address_of_usageHints_1() { return &___usageHints_1; }
inline void set_usageHints_1(List_1_t571FC509DE86251A12DF4812CF4AB2577D9D9C94 * value)
{
___usageHints_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___usageHints_1), (void*)value);
}
inline static int32_t get_offset_of_featureType_2() { return static_cast<int32_t>(offsetof(XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861, ___featureType_2)); }
inline int32_t get_featureType_2() const { return ___featureType_2; }
inline int32_t* get_address_of_featureType_2() { return &___featureType_2; }
inline void set_featureType_2(int32_t value)
{
___featureType_2 = value;
}
inline static int32_t get_offset_of_customSize_3() { return static_cast<int32_t>(offsetof(XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861, ___customSize_3)); }
inline uint32_t get_customSize_3() const { return ___customSize_3; }
inline uint32_t* get_address_of_customSize_3() { return &___customSize_3; }
inline void set_customSize_3(uint32_t value)
{
___customSize_3 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.XR.XRFeatureDescriptor
struct XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861_marshaled_pinvoke
{
char* ___name_0;
List_1_t571FC509DE86251A12DF4812CF4AB2577D9D9C94 * ___usageHints_1;
int32_t ___featureType_2;
uint32_t ___customSize_3;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.XR.XRFeatureDescriptor
struct XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861_marshaled_com
{
Il2CppChar* ___name_0;
List_1_t571FC509DE86251A12DF4812CF4AB2577D9D9C94 * ___usageHints_1;
int32_t ___featureType_2;
uint32_t ___customSize_3;
};
// UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor
struct HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756
{
public:
// UnityEngine.InputSystem.HID.HID/HIDCollectionType UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::type
int32_t ___type_0;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::usage
int32_t ___usage_1;
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::usagePage
int32_t ___usagePage_2;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::parent
int32_t ___parent_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::childCount
int32_t ___childCount_4;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor::firstChild
int32_t ___firstChild_5;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756, ___type_0)); }
inline int32_t get_type_0() const { return ___type_0; }
inline int32_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int32_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_usage_1() { return static_cast<int32_t>(offsetof(HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756, ___usage_1)); }
inline int32_t get_usage_1() const { return ___usage_1; }
inline int32_t* get_address_of_usage_1() { return &___usage_1; }
inline void set_usage_1(int32_t value)
{
___usage_1 = value;
}
inline static int32_t get_offset_of_usagePage_2() { return static_cast<int32_t>(offsetof(HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756, ___usagePage_2)); }
inline int32_t get_usagePage_2() const { return ___usagePage_2; }
inline int32_t* get_address_of_usagePage_2() { return &___usagePage_2; }
inline void set_usagePage_2(int32_t value)
{
___usagePage_2 = value;
}
inline static int32_t get_offset_of_parent_3() { return static_cast<int32_t>(offsetof(HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756, ___parent_3)); }
inline int32_t get_parent_3() const { return ___parent_3; }
inline int32_t* get_address_of_parent_3() { return &___parent_3; }
inline void set_parent_3(int32_t value)
{
___parent_3 = value;
}
inline static int32_t get_offset_of_childCount_4() { return static_cast<int32_t>(offsetof(HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756, ___childCount_4)); }
inline int32_t get_childCount_4() const { return ___childCount_4; }
inline int32_t* get_address_of_childCount_4() { return &___childCount_4; }
inline void set_childCount_4(int32_t value)
{
___childCount_4 = value;
}
inline static int32_t get_offset_of_firstChild_5() { return static_cast<int32_t>(offsetof(HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756, ___firstChild_5)); }
inline int32_t get_firstChild_5() const { return ___firstChild_5; }
inline int32_t* get_address_of_firstChild_5() { return &___firstChild_5; }
inline void set_firstChild_5(int32_t value)
{
___firstChild_5 = value;
}
};
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
struct HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::vendorId
int32_t ___vendorId_0;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::productId
int32_t ___productId_1;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::usage
int32_t ___usage_2;
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::usagePage
int32_t ___usagePage_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::inputReportSize
int32_t ___inputReportSize_4;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::outputReportSize
int32_t ___outputReportSize_5;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::featureReportSize
int32_t ___featureReportSize_6;
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor[] UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::elements
HIDElementDescriptorU5BU5D_t26190AF45F71BF4163B4E5DB6A9F424B2E9E0471* ___elements_7;
// UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor[] UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor::collections
HIDCollectionDescriptorU5BU5D_tED5DE85471097AA3625D7CE7A3C0AE1450E644D2* ___collections_8;
public:
inline static int32_t get_offset_of_vendorId_0() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___vendorId_0)); }
inline int32_t get_vendorId_0() const { return ___vendorId_0; }
inline int32_t* get_address_of_vendorId_0() { return &___vendorId_0; }
inline void set_vendorId_0(int32_t value)
{
___vendorId_0 = value;
}
inline static int32_t get_offset_of_productId_1() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___productId_1)); }
inline int32_t get_productId_1() const { return ___productId_1; }
inline int32_t* get_address_of_productId_1() { return &___productId_1; }
inline void set_productId_1(int32_t value)
{
___productId_1 = value;
}
inline static int32_t get_offset_of_usage_2() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___usage_2)); }
inline int32_t get_usage_2() const { return ___usage_2; }
inline int32_t* get_address_of_usage_2() { return &___usage_2; }
inline void set_usage_2(int32_t value)
{
___usage_2 = value;
}
inline static int32_t get_offset_of_usagePage_3() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___usagePage_3)); }
inline int32_t get_usagePage_3() const { return ___usagePage_3; }
inline int32_t* get_address_of_usagePage_3() { return &___usagePage_3; }
inline void set_usagePage_3(int32_t value)
{
___usagePage_3 = value;
}
inline static int32_t get_offset_of_inputReportSize_4() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___inputReportSize_4)); }
inline int32_t get_inputReportSize_4() const { return ___inputReportSize_4; }
inline int32_t* get_address_of_inputReportSize_4() { return &___inputReportSize_4; }
inline void set_inputReportSize_4(int32_t value)
{
___inputReportSize_4 = value;
}
inline static int32_t get_offset_of_outputReportSize_5() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___outputReportSize_5)); }
inline int32_t get_outputReportSize_5() const { return ___outputReportSize_5; }
inline int32_t* get_address_of_outputReportSize_5() { return &___outputReportSize_5; }
inline void set_outputReportSize_5(int32_t value)
{
___outputReportSize_5 = value;
}
inline static int32_t get_offset_of_featureReportSize_6() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___featureReportSize_6)); }
inline int32_t get_featureReportSize_6() const { return ___featureReportSize_6; }
inline int32_t* get_address_of_featureReportSize_6() { return &___featureReportSize_6; }
inline void set_featureReportSize_6(int32_t value)
{
___featureReportSize_6 = value;
}
inline static int32_t get_offset_of_elements_7() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___elements_7)); }
inline HIDElementDescriptorU5BU5D_t26190AF45F71BF4163B4E5DB6A9F424B2E9E0471* get_elements_7() const { return ___elements_7; }
inline HIDElementDescriptorU5BU5D_t26190AF45F71BF4163B4E5DB6A9F424B2E9E0471** get_address_of_elements_7() { return &___elements_7; }
inline void set_elements_7(HIDElementDescriptorU5BU5D_t26190AF45F71BF4163B4E5DB6A9F424B2E9E0471* value)
{
___elements_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___elements_7), (void*)value);
}
inline static int32_t get_offset_of_collections_8() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E, ___collections_8)); }
inline HIDCollectionDescriptorU5BU5D_tED5DE85471097AA3625D7CE7A3C0AE1450E644D2* get_collections_8() const { return ___collections_8; }
inline HIDCollectionDescriptorU5BU5D_tED5DE85471097AA3625D7CE7A3C0AE1450E644D2** get_address_of_collections_8() { return &___collections_8; }
inline void set_collections_8(HIDCollectionDescriptorU5BU5D_tED5DE85471097AA3625D7CE7A3C0AE1450E644D2* value)
{
___collections_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___collections_8), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
struct HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E_marshaled_pinvoke
{
int32_t ___vendorId_0;
int32_t ___productId_1;
int32_t ___usage_2;
int32_t ___usagePage_3;
int32_t ___inputReportSize_4;
int32_t ___outputReportSize_5;
int32_t ___featureReportSize_6;
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B_marshaled_pinvoke* ___elements_7;
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756 * ___collections_8;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor
struct HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E_marshaled_com
{
int32_t ___vendorId_0;
int32_t ___productId_1;
int32_t ___usage_2;
int32_t ___usagePage_3;
int32_t ___inputReportSize_4;
int32_t ___outputReportSize_5;
int32_t ___featureReportSize_6;
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B_marshaled_com* ___elements_7;
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756 * ___collections_8;
};
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
struct HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A
{
public:
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::usagePage
int32_t ___usagePage_0;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::usage
int32_t ___usage_1;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_CurrentReportId
int32_t ___m_CurrentReportId_2;
// UnityEngine.InputSystem.HID.HID/HIDReportType UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_CurrentReportType
int32_t ___m_CurrentReportType_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_CurrentReportOffsetInBits
int32_t ___m_CurrentReportOffsetInBits_4;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDElementDescriptor> UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_Elements
List_1_t5268E05431CC1AEF3E23C0EDE5B33E2160D57A44 * ___m_Elements_5;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.HID.HID/HIDCollectionDescriptor> UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_Collections
List_1_t4A0E7C5254B1CFED3739E96929DB17DE511CEA1C * ___m_Collections_6;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_InputReportSize
int32_t ___m_InputReportSize_7;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_OutputReportSize
int32_t ___m_OutputReportSize_8;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder::m_FeatureReportSize
int32_t ___m_FeatureReportSize_9;
public:
inline static int32_t get_offset_of_usagePage_0() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___usagePage_0)); }
inline int32_t get_usagePage_0() const { return ___usagePage_0; }
inline int32_t* get_address_of_usagePage_0() { return &___usagePage_0; }
inline void set_usagePage_0(int32_t value)
{
___usagePage_0 = value;
}
inline static int32_t get_offset_of_usage_1() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___usage_1)); }
inline int32_t get_usage_1() const { return ___usage_1; }
inline int32_t* get_address_of_usage_1() { return &___usage_1; }
inline void set_usage_1(int32_t value)
{
___usage_1 = value;
}
inline static int32_t get_offset_of_m_CurrentReportId_2() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_CurrentReportId_2)); }
inline int32_t get_m_CurrentReportId_2() const { return ___m_CurrentReportId_2; }
inline int32_t* get_address_of_m_CurrentReportId_2() { return &___m_CurrentReportId_2; }
inline void set_m_CurrentReportId_2(int32_t value)
{
___m_CurrentReportId_2 = value;
}
inline static int32_t get_offset_of_m_CurrentReportType_3() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_CurrentReportType_3)); }
inline int32_t get_m_CurrentReportType_3() const { return ___m_CurrentReportType_3; }
inline int32_t* get_address_of_m_CurrentReportType_3() { return &___m_CurrentReportType_3; }
inline void set_m_CurrentReportType_3(int32_t value)
{
___m_CurrentReportType_3 = value;
}
inline static int32_t get_offset_of_m_CurrentReportOffsetInBits_4() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_CurrentReportOffsetInBits_4)); }
inline int32_t get_m_CurrentReportOffsetInBits_4() const { return ___m_CurrentReportOffsetInBits_4; }
inline int32_t* get_address_of_m_CurrentReportOffsetInBits_4() { return &___m_CurrentReportOffsetInBits_4; }
inline void set_m_CurrentReportOffsetInBits_4(int32_t value)
{
___m_CurrentReportOffsetInBits_4 = value;
}
inline static int32_t get_offset_of_m_Elements_5() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_Elements_5)); }
inline List_1_t5268E05431CC1AEF3E23C0EDE5B33E2160D57A44 * get_m_Elements_5() const { return ___m_Elements_5; }
inline List_1_t5268E05431CC1AEF3E23C0EDE5B33E2160D57A44 ** get_address_of_m_Elements_5() { return &___m_Elements_5; }
inline void set_m_Elements_5(List_1_t5268E05431CC1AEF3E23C0EDE5B33E2160D57A44 * value)
{
___m_Elements_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Elements_5), (void*)value);
}
inline static int32_t get_offset_of_m_Collections_6() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_Collections_6)); }
inline List_1_t4A0E7C5254B1CFED3739E96929DB17DE511CEA1C * get_m_Collections_6() const { return ___m_Collections_6; }
inline List_1_t4A0E7C5254B1CFED3739E96929DB17DE511CEA1C ** get_address_of_m_Collections_6() { return &___m_Collections_6; }
inline void set_m_Collections_6(List_1_t4A0E7C5254B1CFED3739E96929DB17DE511CEA1C * value)
{
___m_Collections_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Collections_6), (void*)value);
}
inline static int32_t get_offset_of_m_InputReportSize_7() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_InputReportSize_7)); }
inline int32_t get_m_InputReportSize_7() const { return ___m_InputReportSize_7; }
inline int32_t* get_address_of_m_InputReportSize_7() { return &___m_InputReportSize_7; }
inline void set_m_InputReportSize_7(int32_t value)
{
___m_InputReportSize_7 = value;
}
inline static int32_t get_offset_of_m_OutputReportSize_8() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_OutputReportSize_8)); }
inline int32_t get_m_OutputReportSize_8() const { return ___m_OutputReportSize_8; }
inline int32_t* get_address_of_m_OutputReportSize_8() { return &___m_OutputReportSize_8; }
inline void set_m_OutputReportSize_8(int32_t value)
{
___m_OutputReportSize_8 = value;
}
inline static int32_t get_offset_of_m_FeatureReportSize_9() { return static_cast<int32_t>(offsetof(HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A, ___m_FeatureReportSize_9)); }
inline int32_t get_m_FeatureReportSize_9() const { return ___m_FeatureReportSize_9; }
inline int32_t* get_address_of_m_FeatureReportSize_9() { return &___m_FeatureReportSize_9; }
inline void set_m_FeatureReportSize_9(int32_t value)
{
___m_FeatureReportSize_9 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
struct HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A_marshaled_pinvoke
{
int32_t ___usagePage_0;
int32_t ___usage_1;
int32_t ___m_CurrentReportId_2;
int32_t ___m_CurrentReportType_3;
int32_t ___m_CurrentReportOffsetInBits_4;
List_1_t5268E05431CC1AEF3E23C0EDE5B33E2160D57A44 * ___m_Elements_5;
List_1_t4A0E7C5254B1CFED3739E96929DB17DE511CEA1C * ___m_Collections_6;
int32_t ___m_InputReportSize_7;
int32_t ___m_OutputReportSize_8;
int32_t ___m_FeatureReportSize_9;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptorBuilder
struct HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A_marshaled_com
{
int32_t ___usagePage_0;
int32_t ___usage_1;
int32_t ___m_CurrentReportId_2;
int32_t ___m_CurrentReportType_3;
int32_t ___m_CurrentReportOffsetInBits_4;
List_1_t5268E05431CC1AEF3E23C0EDE5B33E2160D57A44 * ___m_Elements_5;
List_1_t4A0E7C5254B1CFED3739E96929DB17DE511CEA1C * ___m_Collections_6;
int32_t ___m_InputReportSize_7;
int32_t ___m_OutputReportSize_8;
int32_t ___m_FeatureReportSize_9;
};
// UnityEngine.InputSystem.HID.HID/HIDElementDescriptor
struct HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usage
int32_t ___usage_0;
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usagePage
int32_t ___usagePage_1;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::unit
int32_t ___unit_2;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::unitExponent
int32_t ___unitExponent_3;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::logicalMin
int32_t ___logicalMin_4;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::logicalMax
int32_t ___logicalMax_5;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::physicalMin
int32_t ___physicalMin_6;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::physicalMax
int32_t ___physicalMax_7;
// UnityEngine.InputSystem.HID.HID/HIDReportType UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportType
int32_t ___reportType_8;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::collectionIndex
int32_t ___collectionIndex_9;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportId
int32_t ___reportId_10;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportSizeInBits
int32_t ___reportSizeInBits_11;
// System.Int32 UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::reportOffsetInBits
int32_t ___reportOffsetInBits_12;
// UnityEngine.InputSystem.HID.HID/HIDElementFlags UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::flags
int32_t ___flags_13;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usageMin
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMin_14;
// System.Nullable`1<System.Int32> UnityEngine.InputSystem.HID.HID/HIDElementDescriptor::usageMax
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMax_15;
public:
inline static int32_t get_offset_of_usage_0() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___usage_0)); }
inline int32_t get_usage_0() const { return ___usage_0; }
inline int32_t* get_address_of_usage_0() { return &___usage_0; }
inline void set_usage_0(int32_t value)
{
___usage_0 = value;
}
inline static int32_t get_offset_of_usagePage_1() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___usagePage_1)); }
inline int32_t get_usagePage_1() const { return ___usagePage_1; }
inline int32_t* get_address_of_usagePage_1() { return &___usagePage_1; }
inline void set_usagePage_1(int32_t value)
{
___usagePage_1 = value;
}
inline static int32_t get_offset_of_unit_2() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___unit_2)); }
inline int32_t get_unit_2() const { return ___unit_2; }
inline int32_t* get_address_of_unit_2() { return &___unit_2; }
inline void set_unit_2(int32_t value)
{
___unit_2 = value;
}
inline static int32_t get_offset_of_unitExponent_3() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___unitExponent_3)); }
inline int32_t get_unitExponent_3() const { return ___unitExponent_3; }
inline int32_t* get_address_of_unitExponent_3() { return &___unitExponent_3; }
inline void set_unitExponent_3(int32_t value)
{
___unitExponent_3 = value;
}
inline static int32_t get_offset_of_logicalMin_4() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___logicalMin_4)); }
inline int32_t get_logicalMin_4() const { return ___logicalMin_4; }
inline int32_t* get_address_of_logicalMin_4() { return &___logicalMin_4; }
inline void set_logicalMin_4(int32_t value)
{
___logicalMin_4 = value;
}
inline static int32_t get_offset_of_logicalMax_5() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___logicalMax_5)); }
inline int32_t get_logicalMax_5() const { return ___logicalMax_5; }
inline int32_t* get_address_of_logicalMax_5() { return &___logicalMax_5; }
inline void set_logicalMax_5(int32_t value)
{
___logicalMax_5 = value;
}
inline static int32_t get_offset_of_physicalMin_6() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___physicalMin_6)); }
inline int32_t get_physicalMin_6() const { return ___physicalMin_6; }
inline int32_t* get_address_of_physicalMin_6() { return &___physicalMin_6; }
inline void set_physicalMin_6(int32_t value)
{
___physicalMin_6 = value;
}
inline static int32_t get_offset_of_physicalMax_7() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___physicalMax_7)); }
inline int32_t get_physicalMax_7() const { return ___physicalMax_7; }
inline int32_t* get_address_of_physicalMax_7() { return &___physicalMax_7; }
inline void set_physicalMax_7(int32_t value)
{
___physicalMax_7 = value;
}
inline static int32_t get_offset_of_reportType_8() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___reportType_8)); }
inline int32_t get_reportType_8() const { return ___reportType_8; }
inline int32_t* get_address_of_reportType_8() { return &___reportType_8; }
inline void set_reportType_8(int32_t value)
{
___reportType_8 = value;
}
inline static int32_t get_offset_of_collectionIndex_9() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___collectionIndex_9)); }
inline int32_t get_collectionIndex_9() const { return ___collectionIndex_9; }
inline int32_t* get_address_of_collectionIndex_9() { return &___collectionIndex_9; }
inline void set_collectionIndex_9(int32_t value)
{
___collectionIndex_9 = value;
}
inline static int32_t get_offset_of_reportId_10() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___reportId_10)); }
inline int32_t get_reportId_10() const { return ___reportId_10; }
inline int32_t* get_address_of_reportId_10() { return &___reportId_10; }
inline void set_reportId_10(int32_t value)
{
___reportId_10 = value;
}
inline static int32_t get_offset_of_reportSizeInBits_11() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___reportSizeInBits_11)); }
inline int32_t get_reportSizeInBits_11() const { return ___reportSizeInBits_11; }
inline int32_t* get_address_of_reportSizeInBits_11() { return &___reportSizeInBits_11; }
inline void set_reportSizeInBits_11(int32_t value)
{
___reportSizeInBits_11 = value;
}
inline static int32_t get_offset_of_reportOffsetInBits_12() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___reportOffsetInBits_12)); }
inline int32_t get_reportOffsetInBits_12() const { return ___reportOffsetInBits_12; }
inline int32_t* get_address_of_reportOffsetInBits_12() { return &___reportOffsetInBits_12; }
inline void set_reportOffsetInBits_12(int32_t value)
{
___reportOffsetInBits_12 = value;
}
inline static int32_t get_offset_of_flags_13() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___flags_13)); }
inline int32_t get_flags_13() const { return ___flags_13; }
inline int32_t* get_address_of_flags_13() { return &___flags_13; }
inline void set_flags_13(int32_t value)
{
___flags_13 = value;
}
inline static int32_t get_offset_of_usageMin_14() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___usageMin_14)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_usageMin_14() const { return ___usageMin_14; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_usageMin_14() { return &___usageMin_14; }
inline void set_usageMin_14(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___usageMin_14 = value;
}
inline static int32_t get_offset_of_usageMax_15() { return static_cast<int32_t>(offsetof(HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B, ___usageMax_15)); }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 get_usageMax_15() const { return ___usageMax_15; }
inline Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * get_address_of_usageMax_15() { return &___usageMax_15; }
inline void set_usageMax_15(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 value)
{
___usageMax_15 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.HID.HID/HIDElementDescriptor
struct HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B_marshaled_pinvoke
{
int32_t ___usage_0;
int32_t ___usagePage_1;
int32_t ___unit_2;
int32_t ___unitExponent_3;
int32_t ___logicalMin_4;
int32_t ___logicalMax_5;
int32_t ___physicalMin_6;
int32_t ___physicalMax_7;
int32_t ___reportType_8;
int32_t ___collectionIndex_9;
int32_t ___reportId_10;
int32_t ___reportSizeInBits_11;
int32_t ___reportOffsetInBits_12;
int32_t ___flags_13;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMin_14;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMax_15;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.HID.HID/HIDElementDescriptor
struct HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B_marshaled_com
{
int32_t ___usage_0;
int32_t ___usagePage_1;
int32_t ___unit_2;
int32_t ___unitExponent_3;
int32_t ___logicalMin_4;
int32_t ___logicalMax_5;
int32_t ___physicalMin_6;
int32_t ___physicalMax_7;
int32_t ___reportType_8;
int32_t ___collectionIndex_9;
int32_t ___reportId_10;
int32_t ___reportSizeInBits_11;
int32_t ___reportOffsetInBits_12;
int32_t ___flags_13;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMin_14;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ___usageMax_15;
};
// UnityEngine.InputSystem.HID.HIDParser/HIDReportData
struct HIDReportData_tAA452F70F96A0349D99B1A4876F7A33F8BDFAFD1
{
public:
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDReportData::reportId
int32_t ___reportId_0;
// UnityEngine.InputSystem.HID.HID/HIDReportType UnityEngine.InputSystem.HID.HIDParser/HIDReportData::reportType
int32_t ___reportType_1;
// System.Int32 UnityEngine.InputSystem.HID.HIDParser/HIDReportData::currentBitOffset
int32_t ___currentBitOffset_2;
public:
inline static int32_t get_offset_of_reportId_0() { return static_cast<int32_t>(offsetof(HIDReportData_tAA452F70F96A0349D99B1A4876F7A33F8BDFAFD1, ___reportId_0)); }
inline int32_t get_reportId_0() const { return ___reportId_0; }
inline int32_t* get_address_of_reportId_0() { return &___reportId_0; }
inline void set_reportId_0(int32_t value)
{
___reportId_0 = value;
}
inline static int32_t get_offset_of_reportType_1() { return static_cast<int32_t>(offsetof(HIDReportData_tAA452F70F96A0349D99B1A4876F7A33F8BDFAFD1, ___reportType_1)); }
inline int32_t get_reportType_1() const { return ___reportType_1; }
inline int32_t* get_address_of_reportType_1() { return &___reportType_1; }
inline void set_reportType_1(int32_t value)
{
___reportType_1 = value;
}
inline static int32_t get_offset_of_currentBitOffset_2() { return static_cast<int32_t>(offsetof(HIDReportData_tAA452F70F96A0349D99B1A4876F7A33F8BDFAFD1, ___currentBitOffset_2)); }
inline int32_t get_currentBitOffset_2() const { return ___currentBitOffset_2; }
inline int32_t* get_address_of_currentBitOffset_2() { return &___currentBitOffset_2; }
inline void set_currentBitOffset_2(int32_t value)
{
___currentBitOffset_2 = value;
}
};
// UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage
struct HIDPageUsage_t554CE7F941C1DEB107742F1B2702369AAC7CDA26
{
public:
// UnityEngine.InputSystem.HID.HID/UsagePage UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::page
int32_t ___page_0;
// System.Int32 UnityEngine.InputSystem.HID.HIDSupport/HIDPageUsage::usage
int32_t ___usage_1;
public:
inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(HIDPageUsage_t554CE7F941C1DEB107742F1B2702369AAC7CDA26, ___page_0)); }
inline int32_t get_page_0() const { return ___page_0; }
inline int32_t* get_address_of_page_0() { return &___page_0; }
inline void set_page_0(int32_t value)
{
___page_0 = value;
}
inline static int32_t get_offset_of_usage_1() { return static_cast<int32_t>(offsetof(HIDPageUsage_t554CE7F941C1DEB107742F1B2702369AAC7CDA26, ___usage_1)); }
inline int32_t get_usage_1() const { return ___usage_1; }
inline int32_t* get_address_of_usage_1() { return &___usage_1; }
inline void set_usage_1(int32_t value)
{
___usage_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
struct Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457
{
public:
// UnityEngine.InputSystem.LowLevel.IMECompositionString UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::m_CompositionString
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D ___m_CompositionString_0;
// System.Char UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::m_CurrentCharacter
Il2CppChar ___m_CurrentCharacter_1;
// System.Int32 UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator::m_CurrentIndex
int32_t ___m_CurrentIndex_2;
public:
inline static int32_t get_offset_of_m_CompositionString_0() { return static_cast<int32_t>(offsetof(Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457, ___m_CompositionString_0)); }
inline IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D get_m_CompositionString_0() const { return ___m_CompositionString_0; }
inline IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D * get_address_of_m_CompositionString_0() { return &___m_CompositionString_0; }
inline void set_m_CompositionString_0(IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D value)
{
___m_CompositionString_0 = value;
}
inline static int32_t get_offset_of_m_CurrentCharacter_1() { return static_cast<int32_t>(offsetof(Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457, ___m_CurrentCharacter_1)); }
inline Il2CppChar get_m_CurrentCharacter_1() const { return ___m_CurrentCharacter_1; }
inline Il2CppChar* get_address_of_m_CurrentCharacter_1() { return &___m_CurrentCharacter_1; }
inline void set_m_CurrentCharacter_1(Il2CppChar value)
{
___m_CurrentCharacter_1 = value;
}
inline static int32_t get_offset_of_m_CurrentIndex_2() { return static_cast<int32_t>(offsetof(Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457, ___m_CurrentIndex_2)); }
inline int32_t get_m_CurrentIndex_2() const { return ___m_CurrentIndex_2; }
inline int32_t* get_address_of_m_CurrentIndex_2() { return &___m_CurrentIndex_2; }
inline void set_m_CurrentIndex_2(int32_t value)
{
___m_CurrentIndex_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
struct Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457_marshaled_pinvoke
{
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_pinvoke ___m_CompositionString_0;
uint8_t ___m_CurrentCharacter_1;
int32_t ___m_CurrentIndex_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionString/Enumerator
struct Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457_marshaled_com
{
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_com ___m_CompositionString_0;
uint8_t ___m_CurrentCharacter_1;
int32_t ___m_CurrentIndex_2;
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutNotFoundException
struct LayoutNotFoundException_t3880CDEF7D5713570D1782DFA4BF91464E1CC481 : public Exception_t
{
public:
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/LayoutNotFoundException::<layout>k__BackingField
String_t* ___U3ClayoutU3Ek__BackingField_17;
public:
inline static int32_t get_offset_of_U3ClayoutU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(LayoutNotFoundException_t3880CDEF7D5713570D1782DFA4BF91464E1CC481, ___U3ClayoutU3Ek__BackingField_17)); }
inline String_t* get_U3ClayoutU3Ek__BackingField_17() const { return ___U3ClayoutU3Ek__BackingField_17; }
inline String_t** get_address_of_U3ClayoutU3Ek__BackingField_17() { return &___U3ClayoutU3Ek__BackingField_17; }
inline void set_U3ClayoutU3Ek__BackingField_17(String_t* value)
{
___U3ClayoutU3Ek__BackingField_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3ClayoutU3Ek__BackingField_17), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4
struct U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Collections.Generic.KeyValuePair`2<System.String,System.Object> UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4::<>2__current
KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE ___U3CU3E2__current_1;
// System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4::<>4__this
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 ___U3CU3E4__this_3;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4::<>3__<>4__this
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 ___U3CU3E3__U3CU3E4__this_4;
// System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4::<count>5__2
int32_t ___U3CcountU3E5__2_5;
// System.Int32 UnityEngine.InputSystem.Layouts.InputDeviceMatcher/<get_patterns>d__4::<i>5__3
int32_t ___U3CiU3E5__3_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016, ___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(U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016, ___U3CU3E2__current_1)); }
inline KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(KeyValuePair_2_tD6E57B7EAC6134DCA97F39E5E598EB43B44A5EAE value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CU3El__initialThreadId_2() { return static_cast<int32_t>(offsetof(U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016, ___U3CU3El__initialThreadId_2)); }
inline int32_t get_U3CU3El__initialThreadId_2() const { return ___U3CU3El__initialThreadId_2; }
inline int32_t* get_address_of_U3CU3El__initialThreadId_2() { return &___U3CU3El__initialThreadId_2; }
inline void set_U3CU3El__initialThreadId_2(int32_t value)
{
___U3CU3El__initialThreadId_2 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016, ___U3CU3E4__this_3)); }
inline InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 * get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E4__this_3))->___m_Patterns_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CU3E3__U3CU3E4__this_4() { return static_cast<int32_t>(offsetof(U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016, ___U3CU3E3__U3CU3E4__this_4)); }
inline InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 get_U3CU3E3__U3CU3E4__this_4() const { return ___U3CU3E3__U3CU3E4__this_4; }
inline InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 * get_address_of_U3CU3E3__U3CU3E4__this_4() { return &___U3CU3E3__U3CU3E4__this_4; }
inline void set_U3CU3E3__U3CU3E4__this_4(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 value)
{
___U3CU3E3__U3CU3E4__this_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E3__U3CU3E4__this_4))->___m_Patterns_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CcountU3E5__2_5() { return static_cast<int32_t>(offsetof(U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016, ___U3CcountU3E5__2_5)); }
inline int32_t get_U3CcountU3E5__2_5() const { return ___U3CcountU3E5__2_5; }
inline int32_t* get_address_of_U3CcountU3E5__2_5() { return &___U3CcountU3E5__2_5; }
inline void set_U3CcountU3E5__2_5(int32_t value)
{
___U3CcountU3E5__2_5 = value;
}
inline static int32_t get_offset_of_U3CiU3E5__3_6() { return static_cast<int32_t>(offsetof(U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016, ___U3CiU3E5__3_6)); }
inline int32_t get_U3CiU3E5__3_6() const { return ___U3CiU3E5__3_6; }
inline int32_t* get_address_of_U3CiU3E5__3_6() { return &___U3CiU3E5__3_6; }
inline void set_U3CiU3E5__3_6(int32_t value)
{
___U3CiU3E5__3_6 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController
struct ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::<finished>k__BackingField
bool ___U3CfinishedU3Ek__BackingField_0;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::<paused>k__BackingField
bool ___U3CpausedU3Ek__BackingField_1;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::<position>k__BackingField
int32_t ___U3CpositionU3Ek__BackingField_2;
// UnityEngine.InputSystem.LowLevel.InputEventTrace UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_EventTrace
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 * ___m_EventTrace_3;
// UnityEngine.InputSystem.LowLevel.InputEventTrace/Enumerator UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_Enumerator
Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF * ___m_Enumerator_4;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_DeviceIDMappings
InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B ___m_DeviceIDMappings_5;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_CreateNewDevices
bool ___m_CreateNewDevices_6;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_CreatedDevices
InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723 ___m_CreatedDevices_7;
// System.Action UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_OnFinished
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___m_OnFinished_8;
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_OnEvent
Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A * ___m_OnEvent_9;
// System.Double UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_StartTimeAsPerFirstEvent
double ___m_StartTimeAsPerFirstEvent_10;
// System.Double UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_StartTimeAsPerRuntime
double ___m_StartTimeAsPerRuntime_11;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_AllEventsByTimeIndex
int32_t ___m_AllEventsByTimeIndex_12;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.LowLevel.InputEventTrace/ReplayController::m_AllEventsByTime
List_1_t5CF69F3C4DB94B482FE2B3DB5E0587D062A31D4C * ___m_AllEventsByTime_13;
public:
inline static int32_t get_offset_of_U3CfinishedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___U3CfinishedU3Ek__BackingField_0)); }
inline bool get_U3CfinishedU3Ek__BackingField_0() const { return ___U3CfinishedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CfinishedU3Ek__BackingField_0() { return &___U3CfinishedU3Ek__BackingField_0; }
inline void set_U3CfinishedU3Ek__BackingField_0(bool value)
{
___U3CfinishedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CpausedU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___U3CpausedU3Ek__BackingField_1)); }
inline bool get_U3CpausedU3Ek__BackingField_1() const { return ___U3CpausedU3Ek__BackingField_1; }
inline bool* get_address_of_U3CpausedU3Ek__BackingField_1() { return &___U3CpausedU3Ek__BackingField_1; }
inline void set_U3CpausedU3Ek__BackingField_1(bool value)
{
___U3CpausedU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___U3CpositionU3Ek__BackingField_2)); }
inline int32_t get_U3CpositionU3Ek__BackingField_2() const { return ___U3CpositionU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CpositionU3Ek__BackingField_2() { return &___U3CpositionU3Ek__BackingField_2; }
inline void set_U3CpositionU3Ek__BackingField_2(int32_t value)
{
___U3CpositionU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_m_EventTrace_3() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_EventTrace_3)); }
inline InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 * get_m_EventTrace_3() const { return ___m_EventTrace_3; }
inline InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 ** get_address_of_m_EventTrace_3() { return &___m_EventTrace_3; }
inline void set_m_EventTrace_3(InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2 * value)
{
___m_EventTrace_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventTrace_3), (void*)value);
}
inline static int32_t get_offset_of_m_Enumerator_4() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_Enumerator_4)); }
inline Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF * get_m_Enumerator_4() const { return ___m_Enumerator_4; }
inline Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF ** get_address_of_m_Enumerator_4() { return &___m_Enumerator_4; }
inline void set_m_Enumerator_4(Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF * value)
{
___m_Enumerator_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Enumerator_4), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceIDMappings_5() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_DeviceIDMappings_5)); }
inline InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B get_m_DeviceIDMappings_5() const { return ___m_DeviceIDMappings_5; }
inline InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B * get_address_of_m_DeviceIDMappings_5() { return &___m_DeviceIDMappings_5; }
inline void set_m_DeviceIDMappings_5(InlinedArray_1_t095D13365C7BF724F8555C8ADF3251D164FAC10B value)
{
___m_DeviceIDMappings_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DeviceIDMappings_5))->___additionalValues_2), (void*)NULL);
}
inline static int32_t get_offset_of_m_CreateNewDevices_6() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_CreateNewDevices_6)); }
inline bool get_m_CreateNewDevices_6() const { return ___m_CreateNewDevices_6; }
inline bool* get_address_of_m_CreateNewDevices_6() { return &___m_CreateNewDevices_6; }
inline void set_m_CreateNewDevices_6(bool value)
{
___m_CreateNewDevices_6 = value;
}
inline static int32_t get_offset_of_m_CreatedDevices_7() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_CreatedDevices_7)); }
inline InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723 get_m_CreatedDevices_7() const { return ___m_CreatedDevices_7; }
inline InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723 * get_address_of_m_CreatedDevices_7() { return &___m_CreatedDevices_7; }
inline void set_m_CreatedDevices_7(InlinedArray_1_t62E8793BC0DD3E5F86F88C040EC59DAA6CAFF723 value)
{
___m_CreatedDevices_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_CreatedDevices_7))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_CreatedDevices_7))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_OnFinished_8() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_OnFinished_8)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_m_OnFinished_8() const { return ___m_OnFinished_8; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_m_OnFinished_8() { return &___m_OnFinished_8; }
inline void set_m_OnFinished_8(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___m_OnFinished_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnFinished_8), (void*)value);
}
inline static int32_t get_offset_of_m_OnEvent_9() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_OnEvent_9)); }
inline Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A * get_m_OnEvent_9() const { return ___m_OnEvent_9; }
inline Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A ** get_address_of_m_OnEvent_9() { return &___m_OnEvent_9; }
inline void set_m_OnEvent_9(Action_1_tF3DF206A2AAD0DC017CD9804CC690B178586EF8A * value)
{
___m_OnEvent_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnEvent_9), (void*)value);
}
inline static int32_t get_offset_of_m_StartTimeAsPerFirstEvent_10() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_StartTimeAsPerFirstEvent_10)); }
inline double get_m_StartTimeAsPerFirstEvent_10() const { return ___m_StartTimeAsPerFirstEvent_10; }
inline double* get_address_of_m_StartTimeAsPerFirstEvent_10() { return &___m_StartTimeAsPerFirstEvent_10; }
inline void set_m_StartTimeAsPerFirstEvent_10(double value)
{
___m_StartTimeAsPerFirstEvent_10 = value;
}
inline static int32_t get_offset_of_m_StartTimeAsPerRuntime_11() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_StartTimeAsPerRuntime_11)); }
inline double get_m_StartTimeAsPerRuntime_11() const { return ___m_StartTimeAsPerRuntime_11; }
inline double* get_address_of_m_StartTimeAsPerRuntime_11() { return &___m_StartTimeAsPerRuntime_11; }
inline void set_m_StartTimeAsPerRuntime_11(double value)
{
___m_StartTimeAsPerRuntime_11 = value;
}
inline static int32_t get_offset_of_m_AllEventsByTimeIndex_12() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_AllEventsByTimeIndex_12)); }
inline int32_t get_m_AllEventsByTimeIndex_12() const { return ___m_AllEventsByTimeIndex_12; }
inline int32_t* get_address_of_m_AllEventsByTimeIndex_12() { return &___m_AllEventsByTimeIndex_12; }
inline void set_m_AllEventsByTimeIndex_12(int32_t value)
{
___m_AllEventsByTimeIndex_12 = value;
}
inline static int32_t get_offset_of_m_AllEventsByTime_13() { return static_cast<int32_t>(offsetof(ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41, ___m_AllEventsByTime_13)); }
inline List_1_t5CF69F3C4DB94B482FE2B3DB5E0587D062A31D4C * get_m_AllEventsByTime_13() const { return ___m_AllEventsByTime_13; }
inline List_1_t5CF69F3C4DB94B482FE2B3DB5E0587D062A31D4C ** get_address_of_m_AllEventsByTime_13() { return &___m_AllEventsByTime_13; }
inline void set_m_AllEventsByTime_13(List_1_t5CF69F3C4DB94B482FE2B3DB5E0587D062A31D4C * value)
{
___m_AllEventsByTime_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AllEventsByTime_13), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState
struct SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A
{
public:
// UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState::lastUpdateType
int32_t ___lastUpdateType_0;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState::updateStepCount
uint32_t ___updateStepCount_1;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState::lastUpdateRetainedEventBytes
uint32_t ___lastUpdateRetainedEventBytes_2;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputUpdate/SerializedState::lastUpdateRetainedEventCount
uint32_t ___lastUpdateRetainedEventCount_3;
public:
inline static int32_t get_offset_of_lastUpdateType_0() { return static_cast<int32_t>(offsetof(SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A, ___lastUpdateType_0)); }
inline int32_t get_lastUpdateType_0() const { return ___lastUpdateType_0; }
inline int32_t* get_address_of_lastUpdateType_0() { return &___lastUpdateType_0; }
inline void set_lastUpdateType_0(int32_t value)
{
___lastUpdateType_0 = value;
}
inline static int32_t get_offset_of_updateStepCount_1() { return static_cast<int32_t>(offsetof(SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A, ___updateStepCount_1)); }
inline uint32_t get_updateStepCount_1() const { return ___updateStepCount_1; }
inline uint32_t* get_address_of_updateStepCount_1() { return &___updateStepCount_1; }
inline void set_updateStepCount_1(uint32_t value)
{
___updateStepCount_1 = value;
}
inline static int32_t get_offset_of_lastUpdateRetainedEventBytes_2() { return static_cast<int32_t>(offsetof(SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A, ___lastUpdateRetainedEventBytes_2)); }
inline uint32_t get_lastUpdateRetainedEventBytes_2() const { return ___lastUpdateRetainedEventBytes_2; }
inline uint32_t* get_address_of_lastUpdateRetainedEventBytes_2() { return &___lastUpdateRetainedEventBytes_2; }
inline void set_lastUpdateRetainedEventBytes_2(uint32_t value)
{
___lastUpdateRetainedEventBytes_2 = value;
}
inline static int32_t get_offset_of_lastUpdateRetainedEventCount_3() { return static_cast<int32_t>(offsetof(SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A, ___lastUpdateRetainedEventCount_3)); }
inline uint32_t get_lastUpdateRetainedEventCount_3() const { return ___lastUpdateRetainedEventCount_3; }
inline uint32_t* get_address_of_lastUpdateRetainedEventCount_3() { return &___lastUpdateRetainedEventCount_3; }
inline void set_lastUpdateRetainedEventCount_3(uint32_t value)
{
___lastUpdateRetainedEventCount_3 = value;
}
};
// UnityEngine.InputSystem.Utilities.JsonParser/JsonValue
struct JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B
{
public:
// UnityEngine.InputSystem.Utilities.JsonParser/JsonValueType UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::type
int32_t ___type_0;
// System.Boolean UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::boolValue
bool ___boolValue_1;
// System.Double UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::realValue
double ___realValue_2;
// System.Int64 UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::integerValue
int64_t ___integerValue_3;
// UnityEngine.InputSystem.Utilities.JsonParser/JsonString UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::stringValue
JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80 ___stringValue_4;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.Utilities.JsonParser/JsonValue> UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::arrayValue
List_1_tE21CDEF5093DAE74219FD3CA75E81EA9E5DA8574 * ___arrayValue_5;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.InputSystem.Utilities.JsonParser/JsonValue> UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::objectValue
Dictionary_2_t2657880C905B3E6D65E01EF276D9A2058BC4E986 * ___objectValue_6;
// System.Object UnityEngine.InputSystem.Utilities.JsonParser/JsonValue::anyValue
RuntimeObject * ___anyValue_7;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___type_0)); }
inline int32_t get_type_0() const { return ___type_0; }
inline int32_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int32_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_boolValue_1() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___boolValue_1)); }
inline bool get_boolValue_1() const { return ___boolValue_1; }
inline bool* get_address_of_boolValue_1() { return &___boolValue_1; }
inline void set_boolValue_1(bool value)
{
___boolValue_1 = value;
}
inline static int32_t get_offset_of_realValue_2() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___realValue_2)); }
inline double get_realValue_2() const { return ___realValue_2; }
inline double* get_address_of_realValue_2() { return &___realValue_2; }
inline void set_realValue_2(double value)
{
___realValue_2 = value;
}
inline static int32_t get_offset_of_integerValue_3() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___integerValue_3)); }
inline int64_t get_integerValue_3() const { return ___integerValue_3; }
inline int64_t* get_address_of_integerValue_3() { return &___integerValue_3; }
inline void set_integerValue_3(int64_t value)
{
___integerValue_3 = value;
}
inline static int32_t get_offset_of_stringValue_4() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___stringValue_4)); }
inline JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80 get_stringValue_4() const { return ___stringValue_4; }
inline JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80 * get_address_of_stringValue_4() { return &___stringValue_4; }
inline void set_stringValue_4(JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80 value)
{
___stringValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___stringValue_4))->___text_0))->___m_String_0), (void*)NULL);
}
inline static int32_t get_offset_of_arrayValue_5() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___arrayValue_5)); }
inline List_1_tE21CDEF5093DAE74219FD3CA75E81EA9E5DA8574 * get_arrayValue_5() const { return ___arrayValue_5; }
inline List_1_tE21CDEF5093DAE74219FD3CA75E81EA9E5DA8574 ** get_address_of_arrayValue_5() { return &___arrayValue_5; }
inline void set_arrayValue_5(List_1_tE21CDEF5093DAE74219FD3CA75E81EA9E5DA8574 * value)
{
___arrayValue_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arrayValue_5), (void*)value);
}
inline static int32_t get_offset_of_objectValue_6() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___objectValue_6)); }
inline Dictionary_2_t2657880C905B3E6D65E01EF276D9A2058BC4E986 * get_objectValue_6() const { return ___objectValue_6; }
inline Dictionary_2_t2657880C905B3E6D65E01EF276D9A2058BC4E986 ** get_address_of_objectValue_6() { return &___objectValue_6; }
inline void set_objectValue_6(Dictionary_2_t2657880C905B3E6D65E01EF276D9A2058BC4E986 * value)
{
___objectValue_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectValue_6), (void*)value);
}
inline static int32_t get_offset_of_anyValue_7() { return static_cast<int32_t>(offsetof(JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B, ___anyValue_7)); }
inline RuntimeObject * get_anyValue_7() const { return ___anyValue_7; }
inline RuntimeObject ** get_address_of_anyValue_7() { return &___anyValue_7; }
inline void set_anyValue_7(RuntimeObject * value)
{
___anyValue_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___anyValue_7), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonValue
struct JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B_marshaled_pinvoke
{
int32_t ___type_0;
int32_t ___boolValue_1;
double ___realValue_2;
int64_t ___integerValue_3;
JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80_marshaled_pinvoke ___stringValue_4;
List_1_tE21CDEF5093DAE74219FD3CA75E81EA9E5DA8574 * ___arrayValue_5;
Dictionary_2_t2657880C905B3E6D65E01EF276D9A2058BC4E986 * ___objectValue_6;
Il2CppIUnknown* ___anyValue_7;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.JsonParser/JsonValue
struct JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B_marshaled_com
{
int32_t ___type_0;
int32_t ___boolValue_1;
double ___realValue_2;
int64_t ___integerValue_3;
JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80_marshaled_com ___stringValue_4;
List_1_tE21CDEF5093DAE74219FD3CA75E81EA9E5DA8574 * ___arrayValue_5;
Dictionary_2_t2657880C905B3E6D65E01EF276D9A2058BC4E986 * ___objectValue_6;
Il2CppIUnknown* ___anyValue_7;
};
// Dissonance.Logs/LogMessage
struct LogMessage_t149D86E6C0C01B6167C04F1BAF1C68AE14BD3569
{
public:
// Dissonance.LogLevel Dissonance.Logs/LogMessage::_level
int32_t ____level_0;
// System.String Dissonance.Logs/LogMessage::_message
String_t* ____message_1;
public:
inline static int32_t get_offset_of__level_0() { return static_cast<int32_t>(offsetof(LogMessage_t149D86E6C0C01B6167C04F1BAF1C68AE14BD3569, ____level_0)); }
inline int32_t get__level_0() const { return ____level_0; }
inline int32_t* get_address_of__level_0() { return &____level_0; }
inline void set__level_0(int32_t value)
{
____level_0 = value;
}
inline static int32_t get_offset_of__message_1() { return static_cast<int32_t>(offsetof(LogMessage_t149D86E6C0C01B6167C04F1BAF1C68AE14BD3569, ____message_1)); }
inline String_t* get__message_1() const { return ____message_1; }
inline String_t** get_address_of__message_1() { return &____message_1; }
inline void set__message_1(String_t* value)
{
____message_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Dissonance.Logs/LogMessage
struct LogMessage_t149D86E6C0C01B6167C04F1BAF1C68AE14BD3569_marshaled_pinvoke
{
int32_t ____level_0;
char* ____message_1;
};
// Native definition for COM marshalling of Dissonance.Logs/LogMessage
struct LogMessage_t149D86E6C0C01B6167C04F1BAF1C68AE14BD3569_marshaled_com
{
int32_t ____level_0;
Il2CppChar* ____message_1;
};
// UnityEngine.InputSystem.UI.NavigationModel/ButtonState
struct ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC
{
public:
// System.Boolean UnityEngine.InputSystem.UI.NavigationModel/ButtonState::m_IsPressed
bool ___m_IsPressed_0;
// UnityEngine.EventSystems.PointerEventData/FramePressState UnityEngine.InputSystem.UI.NavigationModel/ButtonState::m_FramePressState
int32_t ___m_FramePressState_1;
public:
inline static int32_t get_offset_of_m_IsPressed_0() { return static_cast<int32_t>(offsetof(ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC, ___m_IsPressed_0)); }
inline bool get_m_IsPressed_0() const { return ___m_IsPressed_0; }
inline bool* get_address_of_m_IsPressed_0() { return &___m_IsPressed_0; }
inline void set_m_IsPressed_0(bool value)
{
___m_IsPressed_0 = value;
}
inline static int32_t get_offset_of_m_FramePressState_1() { return static_cast<int32_t>(offsetof(ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC, ___m_FramePressState_1)); }
inline int32_t get_m_FramePressState_1() const { return ___m_FramePressState_1; }
inline int32_t* get_address_of_m_FramePressState_1() { return &___m_FramePressState_1; }
inline void set_m_FramePressState_1(int32_t value)
{
___m_FramePressState_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.UI.NavigationModel/ButtonState
struct ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC_marshaled_pinvoke
{
int32_t ___m_IsPressed_0;
int32_t ___m_FramePressState_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.UI.NavigationModel/ButtonState
struct ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC_marshaled_com
{
int32_t ___m_IsPressed_0;
int32_t ___m_FramePressState_1;
};
// Dissonance.Audio.Codecs.Opus.OpusNative/OpusException
struct OpusException_tB3D19DB172998BF8872487ACE2B1E9814EB371CB : public Exception_t
{
public:
public:
};
// UnityEngine.ParticleSystem/EmitParams
struct EmitParams_t4F6429654653488A5D430701CD0743D011807CCC
{
public:
// UnityEngine.ParticleSystem/Particle UnityEngine.ParticleSystem/EmitParams::m_Particle
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 ___m_Particle_0;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_PositionSet
bool ___m_PositionSet_1;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_VelocitySet
bool ___m_VelocitySet_2;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_AxisOfRotationSet
bool ___m_AxisOfRotationSet_3;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_RotationSet
bool ___m_RotationSet_4;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_AngularVelocitySet
bool ___m_AngularVelocitySet_5;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_StartSizeSet
bool ___m_StartSizeSet_6;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_StartColorSet
bool ___m_StartColorSet_7;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_RandomSeedSet
bool ___m_RandomSeedSet_8;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_StartLifetimeSet
bool ___m_StartLifetimeSet_9;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_MeshIndexSet
bool ___m_MeshIndexSet_10;
// System.Boolean UnityEngine.ParticleSystem/EmitParams::m_ApplyShapeToPosition
bool ___m_ApplyShapeToPosition_11;
public:
inline static int32_t get_offset_of_m_Particle_0() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_Particle_0)); }
inline Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 get_m_Particle_0() const { return ___m_Particle_0; }
inline Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 * get_address_of_m_Particle_0() { return &___m_Particle_0; }
inline void set_m_Particle_0(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 value)
{
___m_Particle_0 = value;
}
inline static int32_t get_offset_of_m_PositionSet_1() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_PositionSet_1)); }
inline bool get_m_PositionSet_1() const { return ___m_PositionSet_1; }
inline bool* get_address_of_m_PositionSet_1() { return &___m_PositionSet_1; }
inline void set_m_PositionSet_1(bool value)
{
___m_PositionSet_1 = value;
}
inline static int32_t get_offset_of_m_VelocitySet_2() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_VelocitySet_2)); }
inline bool get_m_VelocitySet_2() const { return ___m_VelocitySet_2; }
inline bool* get_address_of_m_VelocitySet_2() { return &___m_VelocitySet_2; }
inline void set_m_VelocitySet_2(bool value)
{
___m_VelocitySet_2 = value;
}
inline static int32_t get_offset_of_m_AxisOfRotationSet_3() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_AxisOfRotationSet_3)); }
inline bool get_m_AxisOfRotationSet_3() const { return ___m_AxisOfRotationSet_3; }
inline bool* get_address_of_m_AxisOfRotationSet_3() { return &___m_AxisOfRotationSet_3; }
inline void set_m_AxisOfRotationSet_3(bool value)
{
___m_AxisOfRotationSet_3 = value;
}
inline static int32_t get_offset_of_m_RotationSet_4() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_RotationSet_4)); }
inline bool get_m_RotationSet_4() const { return ___m_RotationSet_4; }
inline bool* get_address_of_m_RotationSet_4() { return &___m_RotationSet_4; }
inline void set_m_RotationSet_4(bool value)
{
___m_RotationSet_4 = value;
}
inline static int32_t get_offset_of_m_AngularVelocitySet_5() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_AngularVelocitySet_5)); }
inline bool get_m_AngularVelocitySet_5() const { return ___m_AngularVelocitySet_5; }
inline bool* get_address_of_m_AngularVelocitySet_5() { return &___m_AngularVelocitySet_5; }
inline void set_m_AngularVelocitySet_5(bool value)
{
___m_AngularVelocitySet_5 = value;
}
inline static int32_t get_offset_of_m_StartSizeSet_6() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_StartSizeSet_6)); }
inline bool get_m_StartSizeSet_6() const { return ___m_StartSizeSet_6; }
inline bool* get_address_of_m_StartSizeSet_6() { return &___m_StartSizeSet_6; }
inline void set_m_StartSizeSet_6(bool value)
{
___m_StartSizeSet_6 = value;
}
inline static int32_t get_offset_of_m_StartColorSet_7() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_StartColorSet_7)); }
inline bool get_m_StartColorSet_7() const { return ___m_StartColorSet_7; }
inline bool* get_address_of_m_StartColorSet_7() { return &___m_StartColorSet_7; }
inline void set_m_StartColorSet_7(bool value)
{
___m_StartColorSet_7 = value;
}
inline static int32_t get_offset_of_m_RandomSeedSet_8() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_RandomSeedSet_8)); }
inline bool get_m_RandomSeedSet_8() const { return ___m_RandomSeedSet_8; }
inline bool* get_address_of_m_RandomSeedSet_8() { return &___m_RandomSeedSet_8; }
inline void set_m_RandomSeedSet_8(bool value)
{
___m_RandomSeedSet_8 = value;
}
inline static int32_t get_offset_of_m_StartLifetimeSet_9() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_StartLifetimeSet_9)); }
inline bool get_m_StartLifetimeSet_9() const { return ___m_StartLifetimeSet_9; }
inline bool* get_address_of_m_StartLifetimeSet_9() { return &___m_StartLifetimeSet_9; }
inline void set_m_StartLifetimeSet_9(bool value)
{
___m_StartLifetimeSet_9 = value;
}
inline static int32_t get_offset_of_m_MeshIndexSet_10() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_MeshIndexSet_10)); }
inline bool get_m_MeshIndexSet_10() const { return ___m_MeshIndexSet_10; }
inline bool* get_address_of_m_MeshIndexSet_10() { return &___m_MeshIndexSet_10; }
inline void set_m_MeshIndexSet_10(bool value)
{
___m_MeshIndexSet_10 = value;
}
inline static int32_t get_offset_of_m_ApplyShapeToPosition_11() { return static_cast<int32_t>(offsetof(EmitParams_t4F6429654653488A5D430701CD0743D011807CCC, ___m_ApplyShapeToPosition_11)); }
inline bool get_m_ApplyShapeToPosition_11() const { return ___m_ApplyShapeToPosition_11; }
inline bool* get_address_of_m_ApplyShapeToPosition_11() { return &___m_ApplyShapeToPosition_11; }
inline void set_m_ApplyShapeToPosition_11(bool value)
{
___m_ApplyShapeToPosition_11 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/EmitParams
struct EmitParams_t4F6429654653488A5D430701CD0743D011807CCC_marshaled_pinvoke
{
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 ___m_Particle_0;
int32_t ___m_PositionSet_1;
int32_t ___m_VelocitySet_2;
int32_t ___m_AxisOfRotationSet_3;
int32_t ___m_RotationSet_4;
int32_t ___m_AngularVelocitySet_5;
int32_t ___m_StartSizeSet_6;
int32_t ___m_StartColorSet_7;
int32_t ___m_RandomSeedSet_8;
int32_t ___m_StartLifetimeSet_9;
int32_t ___m_MeshIndexSet_10;
int32_t ___m_ApplyShapeToPosition_11;
};
// Native definition for COM marshalling of UnityEngine.ParticleSystem/EmitParams
struct EmitParams_t4F6429654653488A5D430701CD0743D011807CCC_marshaled_com
{
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 ___m_Particle_0;
int32_t ___m_PositionSet_1;
int32_t ___m_VelocitySet_2;
int32_t ___m_AxisOfRotationSet_3;
int32_t ___m_RotationSet_4;
int32_t ___m_AngularVelocitySet_5;
int32_t ___m_StartSizeSet_6;
int32_t ___m_StartColorSet_7;
int32_t ___m_RandomSeedSet_8;
int32_t ___m_StartLifetimeSet_9;
int32_t ___m_MeshIndexSet_10;
int32_t ___m_ApplyShapeToPosition_11;
};
// Dissonance.Networking.Client.PeerVoiceReceiver/ChannelsMetadata
struct ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321
{
public:
// System.Boolean Dissonance.Networking.Client.PeerVoiceReceiver/ChannelsMetadata::IsPositional
bool ___IsPositional_0;
// System.Single Dissonance.Networking.Client.PeerVoiceReceiver/ChannelsMetadata::AmplitudeMultiplier
float ___AmplitudeMultiplier_1;
// Dissonance.ChannelPriority Dissonance.Networking.Client.PeerVoiceReceiver/ChannelsMetadata::Priority
int32_t ___Priority_2;
public:
inline static int32_t get_offset_of_IsPositional_0() { return static_cast<int32_t>(offsetof(ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321, ___IsPositional_0)); }
inline bool get_IsPositional_0() const { return ___IsPositional_0; }
inline bool* get_address_of_IsPositional_0() { return &___IsPositional_0; }
inline void set_IsPositional_0(bool value)
{
___IsPositional_0 = value;
}
inline static int32_t get_offset_of_AmplitudeMultiplier_1() { return static_cast<int32_t>(offsetof(ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321, ___AmplitudeMultiplier_1)); }
inline float get_AmplitudeMultiplier_1() const { return ___AmplitudeMultiplier_1; }
inline float* get_address_of_AmplitudeMultiplier_1() { return &___AmplitudeMultiplier_1; }
inline void set_AmplitudeMultiplier_1(float value)
{
___AmplitudeMultiplier_1 = value;
}
inline static int32_t get_offset_of_Priority_2() { return static_cast<int32_t>(offsetof(ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321, ___Priority_2)); }
inline int32_t get_Priority_2() const { return ___Priority_2; }
inline int32_t* get_address_of_Priority_2() { return &___Priority_2; }
inline void set_Priority_2(int32_t value)
{
___Priority_2 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.Client.PeerVoiceReceiver/ChannelsMetadata
struct ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321_marshaled_pinvoke
{
int32_t ___IsPositional_0;
float ___AmplitudeMultiplier_1;
int32_t ___Priority_2;
};
// Native definition for COM marshalling of Dissonance.Networking.Client.PeerVoiceReceiver/ChannelsMetadata
struct ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321_marshaled_com
{
int32_t ___IsPositional_0;
float ___AmplitudeMultiplier_1;
int32_t ___Priority_2;
};
// UnityEngine.InputSystem.UI.PointerModel/ButtonState
struct ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073
{
public:
// System.Boolean UnityEngine.InputSystem.UI.PointerModel/ButtonState::m_IsPressed
bool ___m_IsPressed_0;
// UnityEngine.EventSystems.PointerEventData/FramePressState UnityEngine.InputSystem.UI.PointerModel/ButtonState::m_FramePressState
int32_t ___m_FramePressState_1;
// UnityEngine.EventSystems.RaycastResult UnityEngine.InputSystem.UI.PointerModel/ButtonState::pressRaycast
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE ___pressRaycast_2;
// UnityEngine.GameObject UnityEngine.InputSystem.UI.PointerModel/ButtonState::pressObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___pressObject_3;
// UnityEngine.GameObject UnityEngine.InputSystem.UI.PointerModel/ButtonState::rawPressObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rawPressObject_4;
// UnityEngine.GameObject UnityEngine.InputSystem.UI.PointerModel/ButtonState::lastPressObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___lastPressObject_5;
// UnityEngine.GameObject UnityEngine.InputSystem.UI.PointerModel/ButtonState::dragObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___dragObject_6;
// UnityEngine.Vector2 UnityEngine.InputSystem.UI.PointerModel/ButtonState::pressPosition
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___pressPosition_7;
// System.Single UnityEngine.InputSystem.UI.PointerModel/ButtonState::clickTime
float ___clickTime_8;
// System.Int32 UnityEngine.InputSystem.UI.PointerModel/ButtonState::clickCount
int32_t ___clickCount_9;
// System.Boolean UnityEngine.InputSystem.UI.PointerModel/ButtonState::dragging
bool ___dragging_10;
public:
inline static int32_t get_offset_of_m_IsPressed_0() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___m_IsPressed_0)); }
inline bool get_m_IsPressed_0() const { return ___m_IsPressed_0; }
inline bool* get_address_of_m_IsPressed_0() { return &___m_IsPressed_0; }
inline void set_m_IsPressed_0(bool value)
{
___m_IsPressed_0 = value;
}
inline static int32_t get_offset_of_m_FramePressState_1() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___m_FramePressState_1)); }
inline int32_t get_m_FramePressState_1() const { return ___m_FramePressState_1; }
inline int32_t* get_address_of_m_FramePressState_1() { return &___m_FramePressState_1; }
inline void set_m_FramePressState_1(int32_t value)
{
___m_FramePressState_1 = value;
}
inline static int32_t get_offset_of_pressRaycast_2() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___pressRaycast_2)); }
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE get_pressRaycast_2() const { return ___pressRaycast_2; }
inline RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE * get_address_of_pressRaycast_2() { return &___pressRaycast_2; }
inline void set_pressRaycast_2(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE value)
{
___pressRaycast_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___pressRaycast_2))->___module_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_pressObject_3() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___pressObject_3)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_pressObject_3() const { return ___pressObject_3; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_pressObject_3() { return &___pressObject_3; }
inline void set_pressObject_3(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___pressObject_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pressObject_3), (void*)value);
}
inline static int32_t get_offset_of_rawPressObject_4() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___rawPressObject_4)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_rawPressObject_4() const { return ___rawPressObject_4; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_rawPressObject_4() { return &___rawPressObject_4; }
inline void set_rawPressObject_4(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___rawPressObject_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rawPressObject_4), (void*)value);
}
inline static int32_t get_offset_of_lastPressObject_5() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___lastPressObject_5)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_lastPressObject_5() const { return ___lastPressObject_5; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_lastPressObject_5() { return &___lastPressObject_5; }
inline void set_lastPressObject_5(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___lastPressObject_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lastPressObject_5), (void*)value);
}
inline static int32_t get_offset_of_dragObject_6() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___dragObject_6)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_dragObject_6() const { return ___dragObject_6; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_dragObject_6() { return &___dragObject_6; }
inline void set_dragObject_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___dragObject_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dragObject_6), (void*)value);
}
inline static int32_t get_offset_of_pressPosition_7() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___pressPosition_7)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_pressPosition_7() const { return ___pressPosition_7; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_pressPosition_7() { return &___pressPosition_7; }
inline void set_pressPosition_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___pressPosition_7 = value;
}
inline static int32_t get_offset_of_clickTime_8() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___clickTime_8)); }
inline float get_clickTime_8() const { return ___clickTime_8; }
inline float* get_address_of_clickTime_8() { return &___clickTime_8; }
inline void set_clickTime_8(float value)
{
___clickTime_8 = value;
}
inline static int32_t get_offset_of_clickCount_9() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___clickCount_9)); }
inline int32_t get_clickCount_9() const { return ___clickCount_9; }
inline int32_t* get_address_of_clickCount_9() { return &___clickCount_9; }
inline void set_clickCount_9(int32_t value)
{
___clickCount_9 = value;
}
inline static int32_t get_offset_of_dragging_10() { return static_cast<int32_t>(offsetof(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073, ___dragging_10)); }
inline bool get_dragging_10() const { return ___dragging_10; }
inline bool* get_address_of_dragging_10() { return &___dragging_10; }
inline void set_dragging_10(bool value)
{
___dragging_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.UI.PointerModel/ButtonState
struct ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_pinvoke
{
int32_t ___m_IsPressed_0;
int32_t ___m_FramePressState_1;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_pinvoke ___pressRaycast_2;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___pressObject_3;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rawPressObject_4;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___lastPressObject_5;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___dragObject_6;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___pressPosition_7;
float ___clickTime_8;
int32_t ___clickCount_9;
int32_t ___dragging_10;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.UI.PointerModel/ButtonState
struct ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_com
{
int32_t ___m_IsPressed_0;
int32_t ___m_FramePressState_1;
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_com ___pressRaycast_2;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___pressObject_3;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rawPressObject_4;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___lastPressObject_5;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___dragObject_6;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___pressPosition_7;
float ___clickTime_8;
int32_t ___clickCount_9;
int32_t ___dragging_10;
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap
struct TerrainMap_tDD61065279F906812F404E67C65CB7F40CA49453 : public RuntimeObject
{
public:
// UnityEngine.Vector3 UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap::m_patchSize
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_patchSize_0;
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/ErrorCode UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap::m_errorCode
int32_t ___m_errorCode_1;
// System.Collections.Generic.Dictionary`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,UnityEngine.Terrain> UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap::m_terrainTiles
Dictionary_2_t4990FF96A726883A9DEEF78473DD04BB3125158C * ___m_terrainTiles_2;
public:
inline static int32_t get_offset_of_m_patchSize_0() { return static_cast<int32_t>(offsetof(TerrainMap_tDD61065279F906812F404E67C65CB7F40CA49453, ___m_patchSize_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_patchSize_0() const { return ___m_patchSize_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_patchSize_0() { return &___m_patchSize_0; }
inline void set_m_patchSize_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_patchSize_0 = value;
}
inline static int32_t get_offset_of_m_errorCode_1() { return static_cast<int32_t>(offsetof(TerrainMap_tDD61065279F906812F404E67C65CB7F40CA49453, ___m_errorCode_1)); }
inline int32_t get_m_errorCode_1() const { return ___m_errorCode_1; }
inline int32_t* get_address_of_m_errorCode_1() { return &___m_errorCode_1; }
inline void set_m_errorCode_1(int32_t value)
{
___m_errorCode_1 = value;
}
inline static int32_t get_offset_of_m_terrainTiles_2() { return static_cast<int32_t>(offsetof(TerrainMap_tDD61065279F906812F404E67C65CB7F40CA49453, ___m_terrainTiles_2)); }
inline Dictionary_2_t4990FF96A726883A9DEEF78473DD04BB3125158C * get_m_terrainTiles_2() const { return ___m_terrainTiles_2; }
inline Dictionary_2_t4990FF96A726883A9DEEF78473DD04BB3125158C ** get_address_of_m_terrainTiles_2() { return &___m_terrainTiles_2; }
inline void set_m_terrainTiles_2(Dictionary_2_t4990FF96A726883A9DEEF78473DD04BB3125158C * value)
{
___m_terrainTiles_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_terrainTiles_2), (void*)value);
}
};
// UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
struct FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63
{
public:
// UnityEngine.InputSystem.LowLevel.InputUpdateType UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::updateMask
int32_t ___updateMask_0;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::updateStepCount
uint32_t ___updateStepCount_1;
// UnityEngine.InputSystem.EnhancedTouch.Finger[] UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::fingers
FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* ___fingers_2;
// UnityEngine.InputSystem.EnhancedTouch.Finger[] UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeFingers
FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* ___activeFingers_3;
// UnityEngine.InputSystem.EnhancedTouch.Touch[] UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeTouches
TouchU5BU5D_tD0D34FBC901C4753544349F768BE6F9840B43A4F* ___activeTouches_4;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeFingerCount
int32_t ___activeFingerCount_5;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeTouchCount
int32_t ___activeTouchCount_6;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::totalFingerCount
int32_t ___totalFingerCount_7;
// System.UInt32 UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::lastId
uint32_t ___lastId_8;
// System.Boolean UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::haveBuiltActiveTouches
bool ___haveBuiltActiveTouches_9;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState::activeTouchState
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___activeTouchState_10;
public:
inline static int32_t get_offset_of_updateMask_0() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___updateMask_0)); }
inline int32_t get_updateMask_0() const { return ___updateMask_0; }
inline int32_t* get_address_of_updateMask_0() { return &___updateMask_0; }
inline void set_updateMask_0(int32_t value)
{
___updateMask_0 = value;
}
inline static int32_t get_offset_of_updateStepCount_1() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___updateStepCount_1)); }
inline uint32_t get_updateStepCount_1() const { return ___updateStepCount_1; }
inline uint32_t* get_address_of_updateStepCount_1() { return &___updateStepCount_1; }
inline void set_updateStepCount_1(uint32_t value)
{
___updateStepCount_1 = value;
}
inline static int32_t get_offset_of_fingers_2() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___fingers_2)); }
inline FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* get_fingers_2() const { return ___fingers_2; }
inline FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0** get_address_of_fingers_2() { return &___fingers_2; }
inline void set_fingers_2(FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* value)
{
___fingers_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fingers_2), (void*)value);
}
inline static int32_t get_offset_of_activeFingers_3() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___activeFingers_3)); }
inline FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* get_activeFingers_3() const { return ___activeFingers_3; }
inline FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0** get_address_of_activeFingers_3() { return &___activeFingers_3; }
inline void set_activeFingers_3(FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* value)
{
___activeFingers_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activeFingers_3), (void*)value);
}
inline static int32_t get_offset_of_activeTouches_4() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___activeTouches_4)); }
inline TouchU5BU5D_tD0D34FBC901C4753544349F768BE6F9840B43A4F* get_activeTouches_4() const { return ___activeTouches_4; }
inline TouchU5BU5D_tD0D34FBC901C4753544349F768BE6F9840B43A4F** get_address_of_activeTouches_4() { return &___activeTouches_4; }
inline void set_activeTouches_4(TouchU5BU5D_tD0D34FBC901C4753544349F768BE6F9840B43A4F* value)
{
___activeTouches_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activeTouches_4), (void*)value);
}
inline static int32_t get_offset_of_activeFingerCount_5() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___activeFingerCount_5)); }
inline int32_t get_activeFingerCount_5() const { return ___activeFingerCount_5; }
inline int32_t* get_address_of_activeFingerCount_5() { return &___activeFingerCount_5; }
inline void set_activeFingerCount_5(int32_t value)
{
___activeFingerCount_5 = value;
}
inline static int32_t get_offset_of_activeTouchCount_6() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___activeTouchCount_6)); }
inline int32_t get_activeTouchCount_6() const { return ___activeTouchCount_6; }
inline int32_t* get_address_of_activeTouchCount_6() { return &___activeTouchCount_6; }
inline void set_activeTouchCount_6(int32_t value)
{
___activeTouchCount_6 = value;
}
inline static int32_t get_offset_of_totalFingerCount_7() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___totalFingerCount_7)); }
inline int32_t get_totalFingerCount_7() const { return ___totalFingerCount_7; }
inline int32_t* get_address_of_totalFingerCount_7() { return &___totalFingerCount_7; }
inline void set_totalFingerCount_7(int32_t value)
{
___totalFingerCount_7 = value;
}
inline static int32_t get_offset_of_lastId_8() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___lastId_8)); }
inline uint32_t get_lastId_8() const { return ___lastId_8; }
inline uint32_t* get_address_of_lastId_8() { return &___lastId_8; }
inline void set_lastId_8(uint32_t value)
{
___lastId_8 = value;
}
inline static int32_t get_offset_of_haveBuiltActiveTouches_9() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___haveBuiltActiveTouches_9)); }
inline bool get_haveBuiltActiveTouches_9() const { return ___haveBuiltActiveTouches_9; }
inline bool* get_address_of_haveBuiltActiveTouches_9() { return &___haveBuiltActiveTouches_9; }
inline void set_haveBuiltActiveTouches_9(bool value)
{
___haveBuiltActiveTouches_9 = value;
}
inline static int32_t get_offset_of_activeTouchState_10() { return static_cast<int32_t>(offsetof(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63, ___activeTouchState_10)); }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * get_activeTouchState_10() const { return ___activeTouchState_10; }
inline InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 ** get_address_of_activeTouchState_10() { return &___activeTouchState_10; }
inline void set_activeTouchState_10(InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * value)
{
___activeTouchState_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activeTouchState_10), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
struct FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63_marshaled_pinvoke
{
int32_t ___updateMask_0;
uint32_t ___updateStepCount_1;
FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* ___fingers_2;
FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* ___activeFingers_3;
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_marshaled_pinvoke* ___activeTouches_4;
int32_t ___activeFingerCount_5;
int32_t ___activeTouchCount_6;
int32_t ___totalFingerCount_7;
uint32_t ___lastId_8;
int32_t ___haveBuiltActiveTouches_9;
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___activeTouchState_10;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState
struct FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63_marshaled_com
{
int32_t ___updateMask_0;
uint32_t ___updateStepCount_1;
FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* ___fingers_2;
FingerU5BU5D_t7F1443B290552ABD51E36CAF197C7C17B56B82F0* ___activeFingers_3;
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_marshaled_com* ___activeTouches_4;
int32_t ___activeFingerCount_5;
int32_t ___activeTouchCount_6;
int32_t ___totalFingerCount_7;
uint32_t ___lastId_8;
int32_t ___haveBuiltActiveTouches_9;
InputStateHistory_1_tDBC13FFBC2E4020E58E6C0C1ADF265AB71791275 * ___activeTouchState_10;
};
// Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor
struct WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020 : public RuntimeObject
{
public:
// Dissonance.Threading.LockedValue`1<System.IntPtr> Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor::_handle
LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * ____handle_2;
// System.Collections.Generic.List`1<System.ComponentModel.PropertyChangedEventHandler> Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor::_subscribed
List_1_tB6945C4024192C43286A9102644AACC8A59C1002 * ____subscribed_3;
// System.Boolean Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor::_useMobileAec
bool ____useMobileAec_4;
// Dissonance.Audio.Capture.NoiseSuppressionLevels Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor::_nsLevel
int32_t ____nsLevel_5;
// Dissonance.Audio.Capture.VadSensitivityLevels Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor::_vadlevel
int32_t ____vadlevel_6;
// Dissonance.Audio.Capture.AecSuppressionLevels Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor::_aecLevel
int32_t ____aecLevel_7;
// Dissonance.Audio.Capture.AecmRoutingMode Dissonance.Audio.Capture.WebRtcPreprocessingPipeline/WebRtcPreprocessor::_aecmLevel
int32_t ____aecmLevel_8;
public:
inline static int32_t get_offset_of__handle_2() { return static_cast<int32_t>(offsetof(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020, ____handle_2)); }
inline LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * get__handle_2() const { return ____handle_2; }
inline LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E ** get_address_of__handle_2() { return &____handle_2; }
inline void set__handle_2(LockedValue_1_tEA698E5869729ED9DAB976A9A848CD30A077423E * value)
{
____handle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____handle_2), (void*)value);
}
inline static int32_t get_offset_of__subscribed_3() { return static_cast<int32_t>(offsetof(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020, ____subscribed_3)); }
inline List_1_tB6945C4024192C43286A9102644AACC8A59C1002 * get__subscribed_3() const { return ____subscribed_3; }
inline List_1_tB6945C4024192C43286A9102644AACC8A59C1002 ** get_address_of__subscribed_3() { return &____subscribed_3; }
inline void set__subscribed_3(List_1_tB6945C4024192C43286A9102644AACC8A59C1002 * value)
{
____subscribed_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____subscribed_3), (void*)value);
}
inline static int32_t get_offset_of__useMobileAec_4() { return static_cast<int32_t>(offsetof(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020, ____useMobileAec_4)); }
inline bool get__useMobileAec_4() const { return ____useMobileAec_4; }
inline bool* get_address_of__useMobileAec_4() { return &____useMobileAec_4; }
inline void set__useMobileAec_4(bool value)
{
____useMobileAec_4 = value;
}
inline static int32_t get_offset_of__nsLevel_5() { return static_cast<int32_t>(offsetof(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020, ____nsLevel_5)); }
inline int32_t get__nsLevel_5() const { return ____nsLevel_5; }
inline int32_t* get_address_of__nsLevel_5() { return &____nsLevel_5; }
inline void set__nsLevel_5(int32_t value)
{
____nsLevel_5 = value;
}
inline static int32_t get_offset_of__vadlevel_6() { return static_cast<int32_t>(offsetof(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020, ____vadlevel_6)); }
inline int32_t get__vadlevel_6() const { return ____vadlevel_6; }
inline int32_t* get_address_of__vadlevel_6() { return &____vadlevel_6; }
inline void set__vadlevel_6(int32_t value)
{
____vadlevel_6 = value;
}
inline static int32_t get_offset_of__aecLevel_7() { return static_cast<int32_t>(offsetof(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020, ____aecLevel_7)); }
inline int32_t get__aecLevel_7() const { return ____aecLevel_7; }
inline int32_t* get_address_of__aecLevel_7() { return &____aecLevel_7; }
inline void set__aecLevel_7(int32_t value)
{
____aecLevel_7 = value;
}
inline static int32_t get_offset_of__aecmLevel_8() { return static_cast<int32_t>(offsetof(WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020, ____aecmLevel_8)); }
inline int32_t get__aecmLevel_8() const { return ____aecmLevel_8; }
inline int32_t* get_address_of__aecmLevel_8() { return &____aecmLevel_8; }
inline void set__aecmLevel_8(int32_t value)
{
____aecmLevel_8 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRAnchorSubsystem/WindowsMRProvider
struct WindowsMRProvider_t0708C0E005C51441383DEEC382BA5427FFDB3623 : public Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRSessionSubsystem/WindowsMRProvider
struct WindowsMRProvider_t12F88C5F666DCD9EEED65B9C0CA6C3755F673372 : public Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A
{
public:
public:
};
// UnityEngine.InputSystem.XInput.XInputController/Capabilities
struct Capabilities_tDDC2BC698C43106900EACA2DB3310A3B64158BB9
{
public:
// UnityEngine.InputSystem.XInput.XInputController/DeviceType UnityEngine.InputSystem.XInput.XInputController/Capabilities::type
int32_t ___type_0;
// UnityEngine.InputSystem.XInput.XInputController/DeviceSubType UnityEngine.InputSystem.XInput.XInputController/Capabilities::subType
int32_t ___subType_1;
// UnityEngine.InputSystem.XInput.XInputController/DeviceFlags UnityEngine.InputSystem.XInput.XInputController/Capabilities::flags
int32_t ___flags_2;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(Capabilities_tDDC2BC698C43106900EACA2DB3310A3B64158BB9, ___type_0)); }
inline int32_t get_type_0() const { return ___type_0; }
inline int32_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int32_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_subType_1() { return static_cast<int32_t>(offsetof(Capabilities_tDDC2BC698C43106900EACA2DB3310A3B64158BB9, ___subType_1)); }
inline int32_t get_subType_1() const { return ___subType_1; }
inline int32_t* get_address_of_subType_1() { return &___subType_1; }
inline void set_subType_1(int32_t value)
{
___subType_1 = value;
}
inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(Capabilities_tDDC2BC698C43106900EACA2DB3310A3B64158BB9, ___flags_2)); }
inline int32_t get_flags_2() const { return ___flags_2; }
inline int32_t* get_address_of_flags_2() { return &___flags_2; }
inline void set_flags_2(int32_t value)
{
___flags_2 = value;
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher
struct LayoutMatcher_tAB5FBA3B3CFEFA6C5CA20F2AE53C3F563573136B
{
public:
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher::layoutName
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___layoutName_0;
// UnityEngine.InputSystem.Layouts.InputDeviceMatcher UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher::deviceMatcher
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 ___deviceMatcher_1;
public:
inline static int32_t get_offset_of_layoutName_0() { return static_cast<int32_t>(offsetof(LayoutMatcher_tAB5FBA3B3CFEFA6C5CA20F2AE53C3F563573136B, ___layoutName_0)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_layoutName_0() const { return ___layoutName_0; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_layoutName_0() { return &___layoutName_0; }
inline void set_layoutName_0(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___layoutName_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___layoutName_0))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___layoutName_0))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_deviceMatcher_1() { return static_cast<int32_t>(offsetof(LayoutMatcher_tAB5FBA3B3CFEFA6C5CA20F2AE53C3F563573136B, ___deviceMatcher_1)); }
inline InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 get_deviceMatcher_1() const { return ___deviceMatcher_1; }
inline InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 * get_address_of_deviceMatcher_1() { return &___deviceMatcher_1; }
inline void set_deviceMatcher_1(InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0 value)
{
___deviceMatcher_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___deviceMatcher_1))->___m_Patterns_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher
struct LayoutMatcher_tAB5FBA3B3CFEFA6C5CA20F2AE53C3F563573136B_marshaled_pinvoke
{
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_pinvoke ___layoutName_0;
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_marshaled_pinvoke ___deviceMatcher_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/Collection/LayoutMatcher
struct LayoutMatcher_tAB5FBA3B3CFEFA6C5CA20F2AE53C3F563573136B_marshaled_com
{
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_com ___layoutName_0;
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_marshaled_com ___deviceMatcher_1;
};
// UnityEngine.InputSystem.InputControlList`1<UnityEngine.InputSystem.InputControl>
struct InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C
{
public:
// System.Int32 UnityEngine.InputSystem.InputControlList`1::m_Count
int32_t ___m_Count_0;
// Unity.Collections.NativeArray`1<System.UInt64> UnityEngine.InputSystem.InputControlList`1::m_Indices
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___m_Indices_1;
// Unity.Collections.Allocator UnityEngine.InputSystem.InputControlList`1::m_Allocator
int32_t ___m_Allocator_2;
public:
inline static int32_t get_offset_of_m_Count_0() { return static_cast<int32_t>(offsetof(InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C, ___m_Count_0)); }
inline int32_t get_m_Count_0() const { return ___m_Count_0; }
inline int32_t* get_address_of_m_Count_0() { return &___m_Count_0; }
inline void set_m_Count_0(int32_t value)
{
___m_Count_0 = value;
}
inline static int32_t get_offset_of_m_Indices_1() { return static_cast<int32_t>(offsetof(InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C, ___m_Indices_1)); }
inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B get_m_Indices_1() const { return ___m_Indices_1; }
inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * get_address_of_m_Indices_1() { return &___m_Indices_1; }
inline void set_m_Indices_1(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B value)
{
___m_Indices_1 = value;
}
inline static int32_t get_offset_of_m_Allocator_2() { return static_cast<int32_t>(offsetof(InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C, ___m_Allocator_2)); }
inline int32_t get_m_Allocator_2() const { return ___m_Allocator_2; }
inline int32_t* get_address_of_m_Allocator_2() { return &___m_Allocator_2; }
inline void set_m_Allocator_2(int32_t value)
{
___m_Allocator_2 = value;
}
};
// UnityEngine.InputSystem.InputControlList`1<UnityEngine.InputSystem.InputDevice>
struct InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F
{
public:
// System.Int32 UnityEngine.InputSystem.InputControlList`1::m_Count
int32_t ___m_Count_0;
// Unity.Collections.NativeArray`1<System.UInt64> UnityEngine.InputSystem.InputControlList`1::m_Indices
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___m_Indices_1;
// Unity.Collections.Allocator UnityEngine.InputSystem.InputControlList`1::m_Allocator
int32_t ___m_Allocator_2;
public:
inline static int32_t get_offset_of_m_Count_0() { return static_cast<int32_t>(offsetof(InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F, ___m_Count_0)); }
inline int32_t get_m_Count_0() const { return ___m_Count_0; }
inline int32_t* get_address_of_m_Count_0() { return &___m_Count_0; }
inline void set_m_Count_0(int32_t value)
{
___m_Count_0 = value;
}
inline static int32_t get_offset_of_m_Indices_1() { return static_cast<int32_t>(offsetof(InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F, ___m_Indices_1)); }
inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B get_m_Indices_1() const { return ___m_Indices_1; }
inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * get_address_of_m_Indices_1() { return &___m_Indices_1; }
inline void set_m_Indices_1(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B value)
{
___m_Indices_1 = value;
}
inline static int32_t get_offset_of_m_Allocator_2() { return static_cast<int32_t>(offsetof(InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F, ___m_Allocator_2)); }
inline int32_t get_m_Allocator_2() const { return ___m_Allocator_2; }
inline int32_t* get_address_of_m_Allocator_2() { return &___m_Allocator_2; }
inline void set_m_Allocator_2(int32_t value)
{
___m_Allocator_2 = value;
}
};
// UnityEngine.AndroidJavaRunnable
struct AndroidJavaRunnable_tFA31E7D68EAAEB756F1B8F2EF8344C24042EDD60 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AssetBundleRequest
struct AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A : public ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.AssetBundleRequest
struct AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_pinvoke : public ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.AssetBundleRequest
struct AssetBundleRequest_tBCF59D1FD408125E4C2C937EC23AB0ABB7E4051A_marshaled_com : public ResourceRequest_tD2D09E98C844087E6AB0F04532B7AA139558CBAD_marshaled_com
{
};
// Dissonance.Audio.AudioSettingsWatcher
struct AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075 : public RuntimeObject
{
public:
// System.Object Dissonance.Audio.AudioSettingsWatcher::_lock
RuntimeObject * ____lock_1;
// System.Boolean Dissonance.Audio.AudioSettingsWatcher::_started
bool ____started_2;
// UnityEngine.AudioConfiguration Dissonance.Audio.AudioSettingsWatcher::_config
AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D ____config_3;
public:
inline static int32_t get_offset_of__lock_1() { return static_cast<int32_t>(offsetof(AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075, ____lock_1)); }
inline RuntimeObject * get__lock_1() const { return ____lock_1; }
inline RuntimeObject ** get_address_of__lock_1() { return &____lock_1; }
inline void set__lock_1(RuntimeObject * value)
{
____lock_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lock_1), (void*)value);
}
inline static int32_t get_offset_of__started_2() { return static_cast<int32_t>(offsetof(AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075, ____started_2)); }
inline bool get__started_2() const { return ____started_2; }
inline bool* get_address_of__started_2() { return &____started_2; }
inline void set__started_2(bool value)
{
____started_2 = value;
}
inline static int32_t get_offset_of__config_3() { return static_cast<int32_t>(offsetof(AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075, ____config_3)); }
inline AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D get__config_3() const { return ____config_3; }
inline AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D * get_address_of__config_3() { return &____config_3; }
inline void set__config_3(AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D value)
{
____config_3 = value;
}
};
struct AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075_StaticFields
{
public:
// Dissonance.Audio.AudioSettingsWatcher Dissonance.Audio.AudioSettingsWatcher::Singleton
AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075 * ___Singleton_0;
public:
inline static int32_t get_offset_of_Singleton_0() { return static_cast<int32_t>(offsetof(AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075_StaticFields, ___Singleton_0)); }
inline AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075 * get_Singleton_0() const { return ___Singleton_0; }
inline AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075 ** get_address_of_Singleton_0() { return &___Singleton_0; }
inline void set_Singleton_0(AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075 * value)
{
___Singleton_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Singleton_0), (void*)value);
}
};
// UnityEngine.InputSystem.Composites.AxisComposite
struct AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A : public InputBindingComposite_1_t394B25773CB0B48E0989FF9B82EE9FE5551B343B
{
public:
// System.Int32 UnityEngine.InputSystem.Composites.AxisComposite::negative
int32_t ___negative_1;
// System.Int32 UnityEngine.InputSystem.Composites.AxisComposite::positive
int32_t ___positive_2;
// System.Single UnityEngine.InputSystem.Composites.AxisComposite::minValue
float ___minValue_3;
// System.Single UnityEngine.InputSystem.Composites.AxisComposite::maxValue
float ___maxValue_4;
// UnityEngine.InputSystem.Composites.AxisComposite/WhichSideWins UnityEngine.InputSystem.Composites.AxisComposite::whichSideWins
int32_t ___whichSideWins_5;
public:
inline static int32_t get_offset_of_negative_1() { return static_cast<int32_t>(offsetof(AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A, ___negative_1)); }
inline int32_t get_negative_1() const { return ___negative_1; }
inline int32_t* get_address_of_negative_1() { return &___negative_1; }
inline void set_negative_1(int32_t value)
{
___negative_1 = value;
}
inline static int32_t get_offset_of_positive_2() { return static_cast<int32_t>(offsetof(AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A, ___positive_2)); }
inline int32_t get_positive_2() const { return ___positive_2; }
inline int32_t* get_address_of_positive_2() { return &___positive_2; }
inline void set_positive_2(int32_t value)
{
___positive_2 = value;
}
inline static int32_t get_offset_of_minValue_3() { return static_cast<int32_t>(offsetof(AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A, ___minValue_3)); }
inline float get_minValue_3() const { return ___minValue_3; }
inline float* get_address_of_minValue_3() { return &___minValue_3; }
inline void set_minValue_3(float value)
{
___minValue_3 = value;
}
inline static int32_t get_offset_of_maxValue_4() { return static_cast<int32_t>(offsetof(AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A, ___maxValue_4)); }
inline float get_maxValue_4() const { return ___maxValue_4; }
inline float* get_address_of_maxValue_4() { return &___maxValue_4; }
inline void set_maxValue_4(float value)
{
___maxValue_4 = value;
}
inline static int32_t get_offset_of_whichSideWins_5() { return static_cast<int32_t>(offsetof(AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A, ___whichSideWins_5)); }
inline int32_t get_whichSideWins_5() const { return ___whichSideWins_5; }
inline int32_t* get_address_of_whichSideWins_5() { return &___whichSideWins_5; }
inline void set_whichSideWins_5(int32_t value)
{
___whichSideWins_5 = value;
}
};
// UnityEngine.InputSystem.Processors.AxisDeadzoneProcessor
struct AxisDeadzoneProcessor_t5B5BE075AD08CE2C90D75FAA9A6067B60FDB05FA : public InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224
{
public:
// System.Single UnityEngine.InputSystem.Processors.AxisDeadzoneProcessor::min
float ___min_1;
// System.Single UnityEngine.InputSystem.Processors.AxisDeadzoneProcessor::max
float ___max_2;
public:
inline static int32_t get_offset_of_min_1() { return static_cast<int32_t>(offsetof(AxisDeadzoneProcessor_t5B5BE075AD08CE2C90D75FAA9A6067B60FDB05FA, ___min_1)); }
inline float get_min_1() const { return ___min_1; }
inline float* get_address_of_min_1() { return &___min_1; }
inline void set_min_1(float value)
{
___min_1 = value;
}
inline static int32_t get_offset_of_max_2() { return static_cast<int32_t>(offsetof(AxisDeadzoneProcessor_t5B5BE075AD08CE2C90D75FAA9A6067B60FDB05FA, ___max_2)); }
inline float get_max_2() const { return ___max_2; }
inline float* get_address_of_max_2() { return &___max_2; }
inline void set_max_2(float value)
{
___max_2 = value;
}
};
// UnityEngine.Yoga.BaselineFunction
struct BaselineFunction_t7C180BD26F5C8850EEDDBEC2471D9A466EF0D24A : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.InputSystem.Composites.ButtonWithOneModifier
struct ButtonWithOneModifier_t4ED65CD0B2E81A82F229A9AF59BDB124B45FA816 : public InputBindingComposite_1_t394B25773CB0B48E0989FF9B82EE9FE5551B343B
{
public:
// System.Int32 UnityEngine.InputSystem.Composites.ButtonWithOneModifier::modifier
int32_t ___modifier_1;
// System.Int32 UnityEngine.InputSystem.Composites.ButtonWithOneModifier::button
int32_t ___button_2;
public:
inline static int32_t get_offset_of_modifier_1() { return static_cast<int32_t>(offsetof(ButtonWithOneModifier_t4ED65CD0B2E81A82F229A9AF59BDB124B45FA816, ___modifier_1)); }
inline int32_t get_modifier_1() const { return ___modifier_1; }
inline int32_t* get_address_of_modifier_1() { return &___modifier_1; }
inline void set_modifier_1(int32_t value)
{
___modifier_1 = value;
}
inline static int32_t get_offset_of_button_2() { return static_cast<int32_t>(offsetof(ButtonWithOneModifier_t4ED65CD0B2E81A82F229A9AF59BDB124B45FA816, ___button_2)); }
inline int32_t get_button_2() const { return ___button_2; }
inline int32_t* get_address_of_button_2() { return &___button_2; }
inline void set_button_2(int32_t value)
{
___button_2 = value;
}
};
// UnityEngine.InputSystem.Composites.ButtonWithTwoModifiers
struct ButtonWithTwoModifiers_tE76C5B06D579DA90A0615B0D9CFC79267CD5ECB7 : public InputBindingComposite_1_t394B25773CB0B48E0989FF9B82EE9FE5551B343B
{
public:
// System.Int32 UnityEngine.InputSystem.Composites.ButtonWithTwoModifiers::modifier1
int32_t ___modifier1_1;
// System.Int32 UnityEngine.InputSystem.Composites.ButtonWithTwoModifiers::modifier2
int32_t ___modifier2_2;
// System.Int32 UnityEngine.InputSystem.Composites.ButtonWithTwoModifiers::button
int32_t ___button_3;
public:
inline static int32_t get_offset_of_modifier1_1() { return static_cast<int32_t>(offsetof(ButtonWithTwoModifiers_tE76C5B06D579DA90A0615B0D9CFC79267CD5ECB7, ___modifier1_1)); }
inline int32_t get_modifier1_1() const { return ___modifier1_1; }
inline int32_t* get_address_of_modifier1_1() { return &___modifier1_1; }
inline void set_modifier1_1(int32_t value)
{
___modifier1_1 = value;
}
inline static int32_t get_offset_of_modifier2_2() { return static_cast<int32_t>(offsetof(ButtonWithTwoModifiers_tE76C5B06D579DA90A0615B0D9CFC79267CD5ECB7, ___modifier2_2)); }
inline int32_t get_modifier2_2() const { return ___modifier2_2; }
inline int32_t* get_address_of_modifier2_2() { return &___modifier2_2; }
inline void set_modifier2_2(int32_t value)
{
___modifier2_2 = value;
}
inline static int32_t get_offset_of_button_3() { return static_cast<int32_t>(offsetof(ButtonWithTwoModifiers_tE76C5B06D579DA90A0615B0D9CFC79267CD5ECB7, ___button_3)); }
inline int32_t get_button_3() const { return ___button_3; }
inline int32_t* get_address_of_button_3() { return &___button_3; }
inline void set_button_3(int32_t value)
{
___button_3 = value;
}
};
// Dissonance.Config.ChatRoomSettings
struct ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// System.Collections.Generic.List`1<System.String> Dissonance.Config.ChatRoomSettings::Names
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___Names_7;
// System.Collections.Generic.Dictionary`2<System.UInt16,System.String> Dissonance.Config.ChatRoomSettings::_nameLookup
Dictionary_2_t59EE317CA9A434D0722D0151A3A2FC7AC6492429 * ____nameLookup_8;
public:
inline static int32_t get_offset_of_Names_7() { return static_cast<int32_t>(offsetof(ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB, ___Names_7)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_Names_7() const { return ___Names_7; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_Names_7() { return &___Names_7; }
inline void set_Names_7(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___Names_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Names_7), (void*)value);
}
inline static int32_t get_offset_of__nameLookup_8() { return static_cast<int32_t>(offsetof(ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB, ____nameLookup_8)); }
inline Dictionary_2_t59EE317CA9A434D0722D0151A3A2FC7AC6492429 * get__nameLookup_8() const { return ____nameLookup_8; }
inline Dictionary_2_t59EE317CA9A434D0722D0151A3A2FC7AC6492429 ** get_address_of__nameLookup_8() { return &____nameLookup_8; }
inline void set__nameLookup_8(Dictionary_2_t59EE317CA9A434D0722D0151A3A2FC7AC6492429 * value)
{
____nameLookup_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nameLookup_8), (void*)value);
}
};
struct ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB_StaticFields
{
public:
// System.String Dissonance.Config.ChatRoomSettings::SettingsFilePath
String_t* ___SettingsFilePath_5;
// System.Collections.Generic.List`1<System.String> Dissonance.Config.ChatRoomSettings::DefaultRooms
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___DefaultRooms_6;
// Dissonance.Config.ChatRoomSettings Dissonance.Config.ChatRoomSettings::_instance
ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB * ____instance_9;
public:
inline static int32_t get_offset_of_SettingsFilePath_5() { return static_cast<int32_t>(offsetof(ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB_StaticFields, ___SettingsFilePath_5)); }
inline String_t* get_SettingsFilePath_5() const { return ___SettingsFilePath_5; }
inline String_t** get_address_of_SettingsFilePath_5() { return &___SettingsFilePath_5; }
inline void set_SettingsFilePath_5(String_t* value)
{
___SettingsFilePath_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SettingsFilePath_5), (void*)value);
}
inline static int32_t get_offset_of_DefaultRooms_6() { return static_cast<int32_t>(offsetof(ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB_StaticFields, ___DefaultRooms_6)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_DefaultRooms_6() const { return ___DefaultRooms_6; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_DefaultRooms_6() { return &___DefaultRooms_6; }
inline void set_DefaultRooms_6(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___DefaultRooms_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultRooms_6), (void*)value);
}
inline static int32_t get_offset_of__instance_9() { return static_cast<int32_t>(offsetof(ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB_StaticFields, ____instance_9)); }
inline ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB * get__instance_9() const { return ____instance_9; }
inline ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB ** get_address_of__instance_9() { return &____instance_9; }
inline void set__instance_9(ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB * value)
{
____instance_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____instance_9), (void*)value);
}
};
// UnityEngine.InputSystem.Processors.ClampProcessor
struct ClampProcessor_t5DDBEC6D936692C0819961A89618E64555F46D05 : public InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224
{
public:
// System.Single UnityEngine.InputSystem.Processors.ClampProcessor::min
float ___min_1;
// System.Single UnityEngine.InputSystem.Processors.ClampProcessor::max
float ___max_2;
public:
inline static int32_t get_offset_of_min_1() { return static_cast<int32_t>(offsetof(ClampProcessor_t5DDBEC6D936692C0819961A89618E64555F46D05, ___min_1)); }
inline float get_min_1() const { return ___min_1; }
inline float* get_address_of_min_1() { return &___min_1; }
inline void set_min_1(float value)
{
___min_1 = value;
}
inline static int32_t get_offset_of_max_2() { return static_cast<int32_t>(offsetof(ClampProcessor_t5DDBEC6D936692C0819961A89618E64555F46D05, ___max_2)); }
inline float get_max_2() const { return ___max_2; }
inline float* get_address_of_max_2() { return &___max_2; }
inline void set_max_2(float value)
{
___max_2 = value;
}
};
// Dissonance.Networking.ClientInfo
struct ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2
{
public:
// System.String Dissonance.Networking.ClientInfo::<PlayerName>k__BackingField
String_t* ___U3CPlayerNameU3Ek__BackingField_0;
// System.UInt16 Dissonance.Networking.ClientInfo::<PlayerId>k__BackingField
uint16_t ___U3CPlayerIdU3Ek__BackingField_1;
// Dissonance.CodecSettings Dissonance.Networking.ClientInfo::<CodecSettings>k__BackingField
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ___U3CCodecSettingsU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CPlayerNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2, ___U3CPlayerNameU3Ek__BackingField_0)); }
inline String_t* get_U3CPlayerNameU3Ek__BackingField_0() const { return ___U3CPlayerNameU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CPlayerNameU3Ek__BackingField_0() { return &___U3CPlayerNameU3Ek__BackingField_0; }
inline void set_U3CPlayerNameU3Ek__BackingField_0(String_t* value)
{
___U3CPlayerNameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPlayerNameU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CPlayerIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2, ___U3CPlayerIdU3Ek__BackingField_1)); }
inline uint16_t get_U3CPlayerIdU3Ek__BackingField_1() const { return ___U3CPlayerIdU3Ek__BackingField_1; }
inline uint16_t* get_address_of_U3CPlayerIdU3Ek__BackingField_1() { return &___U3CPlayerIdU3Ek__BackingField_1; }
inline void set_U3CPlayerIdU3Ek__BackingField_1(uint16_t value)
{
___U3CPlayerIdU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CCodecSettingsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2, ___U3CCodecSettingsU3Ek__BackingField_2)); }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 get_U3CCodecSettingsU3Ek__BackingField_2() const { return ___U3CCodecSettingsU3Ek__BackingField_2; }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 * get_address_of_U3CCodecSettingsU3Ek__BackingField_2() { return &___U3CCodecSettingsU3Ek__BackingField_2; }
inline void set_U3CCodecSettingsU3Ek__BackingField_2(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 value)
{
___U3CCodecSettingsU3Ek__BackingField_2 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.ClientInfo
struct ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2_marshaled_pinvoke
{
char* ___U3CPlayerNameU3Ek__BackingField_0;
uint16_t ___U3CPlayerIdU3Ek__BackingField_1;
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ___U3CCodecSettingsU3Ek__BackingField_2;
};
// Native definition for COM marshalling of Dissonance.Networking.ClientInfo
struct ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2_marshaled_com
{
Il2CppChar* ___U3CPlayerNameU3Ek__BackingField_0;
uint16_t ___U3CPlayerIdU3Ek__BackingField_1;
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ___U3CCodecSettingsU3Ek__BackingField_2;
};
// Dissonance.CodecSettingsLoader
struct CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 : public RuntimeObject
{
public:
// System.Boolean Dissonance.CodecSettingsLoader::_started
bool ____started_1;
// System.Boolean Dissonance.CodecSettingsLoader::_settingsReady
bool ____settingsReady_2;
// System.Object Dissonance.CodecSettingsLoader::_settingsWriteLock
RuntimeObject * ____settingsWriteLock_3;
// Dissonance.CodecSettings Dissonance.CodecSettingsLoader::_config
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ____config_4;
// Dissonance.AudioQuality Dissonance.CodecSettingsLoader::_encoderQuality
int32_t ____encoderQuality_5;
// Dissonance.FrameSize Dissonance.CodecSettingsLoader::_encoderFrameSize
int32_t ____encoderFrameSize_6;
// Dissonance.Audio.Codecs.Codec Dissonance.CodecSettingsLoader::_codec
uint8_t ____codec_7;
// System.Boolean Dissonance.CodecSettingsLoader::_encodeFec
bool ____encodeFec_8;
public:
inline static int32_t get_offset_of__started_1() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____started_1)); }
inline bool get__started_1() const { return ____started_1; }
inline bool* get_address_of__started_1() { return &____started_1; }
inline void set__started_1(bool value)
{
____started_1 = value;
}
inline static int32_t get_offset_of__settingsReady_2() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____settingsReady_2)); }
inline bool get__settingsReady_2() const { return ____settingsReady_2; }
inline bool* get_address_of__settingsReady_2() { return &____settingsReady_2; }
inline void set__settingsReady_2(bool value)
{
____settingsReady_2 = value;
}
inline static int32_t get_offset_of__settingsWriteLock_3() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____settingsWriteLock_3)); }
inline RuntimeObject * get__settingsWriteLock_3() const { return ____settingsWriteLock_3; }
inline RuntimeObject ** get_address_of__settingsWriteLock_3() { return &____settingsWriteLock_3; }
inline void set__settingsWriteLock_3(RuntimeObject * value)
{
____settingsWriteLock_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____settingsWriteLock_3), (void*)value);
}
inline static int32_t get_offset_of__config_4() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____config_4)); }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 get__config_4() const { return ____config_4; }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 * get_address_of__config_4() { return &____config_4; }
inline void set__config_4(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 value)
{
____config_4 = value;
}
inline static int32_t get_offset_of__encoderQuality_5() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____encoderQuality_5)); }
inline int32_t get__encoderQuality_5() const { return ____encoderQuality_5; }
inline int32_t* get_address_of__encoderQuality_5() { return &____encoderQuality_5; }
inline void set__encoderQuality_5(int32_t value)
{
____encoderQuality_5 = value;
}
inline static int32_t get_offset_of__encoderFrameSize_6() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____encoderFrameSize_6)); }
inline int32_t get__encoderFrameSize_6() const { return ____encoderFrameSize_6; }
inline int32_t* get_address_of__encoderFrameSize_6() { return &____encoderFrameSize_6; }
inline void set__encoderFrameSize_6(int32_t value)
{
____encoderFrameSize_6 = value;
}
inline static int32_t get_offset_of__codec_7() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____codec_7)); }
inline uint8_t get__codec_7() const { return ____codec_7; }
inline uint8_t* get_address_of__codec_7() { return &____codec_7; }
inline void set__codec_7(uint8_t value)
{
____codec_7 = value;
}
inline static int32_t get_offset_of__encodeFec_8() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619, ____encodeFec_8)); }
inline bool get__encodeFec_8() const { return ____encodeFec_8; }
inline bool* get_address_of__encodeFec_8() { return &____encodeFec_8; }
inline void set__encodeFec_8(bool value)
{
____encodeFec_8 = value;
}
};
struct CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619_StaticFields
{
public:
// Dissonance.Log Dissonance.CodecSettingsLoader::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_0;
public:
inline static int32_t get_offset_of_Log_0() { return static_cast<int32_t>(offsetof(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619_StaticFields, ___Log_0)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_0() const { return ___Log_0; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_0() { return &___Log_0; }
inline void set_Log_0(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_0), (void*)value);
}
};
// UnityEngine.InputSystem.Processors.CompensateDirectionProcessor
struct CompensateDirectionProcessor_t831A0F5607E573A2919D1DB6573A6602C8B5303E : public InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5
{
public:
public:
};
// UnityEngine.InputSystem.Processors.CompensateRotationProcessor
struct CompensateRotationProcessor_t60F28C78F442D50E0103EEA04AB4F061877177CA : public InputProcessor_1_tAD36CCFAB97386AE002785AC2C2FD827D243874B
{
public:
public:
};
// Dissonance.Config.DebugSettings
struct DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// System.Collections.Generic.List`1<Dissonance.LogLevel> Dissonance.Config.DebugSettings::_levels
List_1_tE4E393CEA3E9417EDFED1DA92029B804E91BC4FA * ____levels_7;
// System.Boolean Dissonance.Config.DebugSettings::EnableRecordingDiagnostics
bool ___EnableRecordingDiagnostics_8;
// System.Boolean Dissonance.Config.DebugSettings::RecordMicrophoneRawAudio
bool ___RecordMicrophoneRawAudio_9;
// System.Boolean Dissonance.Config.DebugSettings::RecordPreprocessorOutput
bool ___RecordPreprocessorOutput_10;
// System.Boolean Dissonance.Config.DebugSettings::EnablePlaybackDiagnostics
bool ___EnablePlaybackDiagnostics_11;
// System.Boolean Dissonance.Config.DebugSettings::RecordDecodedAudio
bool ___RecordDecodedAudio_12;
// System.Boolean Dissonance.Config.DebugSettings::RecordFinalAudio
bool ___RecordFinalAudio_13;
// System.Boolean Dissonance.Config.DebugSettings::EnableNetworkSimulation
bool ___EnableNetworkSimulation_14;
// System.Single Dissonance.Config.DebugSettings::PacketLoss
float ___PacketLoss_15;
public:
inline static int32_t get_offset_of__levels_7() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ____levels_7)); }
inline List_1_tE4E393CEA3E9417EDFED1DA92029B804E91BC4FA * get__levels_7() const { return ____levels_7; }
inline List_1_tE4E393CEA3E9417EDFED1DA92029B804E91BC4FA ** get_address_of__levels_7() { return &____levels_7; }
inline void set__levels_7(List_1_tE4E393CEA3E9417EDFED1DA92029B804E91BC4FA * value)
{
____levels_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____levels_7), (void*)value);
}
inline static int32_t get_offset_of_EnableRecordingDiagnostics_8() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___EnableRecordingDiagnostics_8)); }
inline bool get_EnableRecordingDiagnostics_8() const { return ___EnableRecordingDiagnostics_8; }
inline bool* get_address_of_EnableRecordingDiagnostics_8() { return &___EnableRecordingDiagnostics_8; }
inline void set_EnableRecordingDiagnostics_8(bool value)
{
___EnableRecordingDiagnostics_8 = value;
}
inline static int32_t get_offset_of_RecordMicrophoneRawAudio_9() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___RecordMicrophoneRawAudio_9)); }
inline bool get_RecordMicrophoneRawAudio_9() const { return ___RecordMicrophoneRawAudio_9; }
inline bool* get_address_of_RecordMicrophoneRawAudio_9() { return &___RecordMicrophoneRawAudio_9; }
inline void set_RecordMicrophoneRawAudio_9(bool value)
{
___RecordMicrophoneRawAudio_9 = value;
}
inline static int32_t get_offset_of_RecordPreprocessorOutput_10() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___RecordPreprocessorOutput_10)); }
inline bool get_RecordPreprocessorOutput_10() const { return ___RecordPreprocessorOutput_10; }
inline bool* get_address_of_RecordPreprocessorOutput_10() { return &___RecordPreprocessorOutput_10; }
inline void set_RecordPreprocessorOutput_10(bool value)
{
___RecordPreprocessorOutput_10 = value;
}
inline static int32_t get_offset_of_EnablePlaybackDiagnostics_11() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___EnablePlaybackDiagnostics_11)); }
inline bool get_EnablePlaybackDiagnostics_11() const { return ___EnablePlaybackDiagnostics_11; }
inline bool* get_address_of_EnablePlaybackDiagnostics_11() { return &___EnablePlaybackDiagnostics_11; }
inline void set_EnablePlaybackDiagnostics_11(bool value)
{
___EnablePlaybackDiagnostics_11 = value;
}
inline static int32_t get_offset_of_RecordDecodedAudio_12() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___RecordDecodedAudio_12)); }
inline bool get_RecordDecodedAudio_12() const { return ___RecordDecodedAudio_12; }
inline bool* get_address_of_RecordDecodedAudio_12() { return &___RecordDecodedAudio_12; }
inline void set_RecordDecodedAudio_12(bool value)
{
___RecordDecodedAudio_12 = value;
}
inline static int32_t get_offset_of_RecordFinalAudio_13() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___RecordFinalAudio_13)); }
inline bool get_RecordFinalAudio_13() const { return ___RecordFinalAudio_13; }
inline bool* get_address_of_RecordFinalAudio_13() { return &___RecordFinalAudio_13; }
inline void set_RecordFinalAudio_13(bool value)
{
___RecordFinalAudio_13 = value;
}
inline static int32_t get_offset_of_EnableNetworkSimulation_14() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___EnableNetworkSimulation_14)); }
inline bool get_EnableNetworkSimulation_14() const { return ___EnableNetworkSimulation_14; }
inline bool* get_address_of_EnableNetworkSimulation_14() { return &___EnableNetworkSimulation_14; }
inline void set_EnableNetworkSimulation_14(bool value)
{
___EnableNetworkSimulation_14 = value;
}
inline static int32_t get_offset_of_PacketLoss_15() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750, ___PacketLoss_15)); }
inline float get_PacketLoss_15() const { return ___PacketLoss_15; }
inline float* get_address_of_PacketLoss_15() { return &___PacketLoss_15; }
inline void set_PacketLoss_15(float value)
{
___PacketLoss_15 = value;
}
};
struct DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750_StaticFields
{
public:
// System.String Dissonance.Config.DebugSettings::SettingsFilePath
String_t* ___SettingsFilePath_5;
// Dissonance.Config.DebugSettings Dissonance.Config.DebugSettings::_instance
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750 * ____instance_16;
public:
inline static int32_t get_offset_of_SettingsFilePath_5() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750_StaticFields, ___SettingsFilePath_5)); }
inline String_t* get_SettingsFilePath_5() const { return ___SettingsFilePath_5; }
inline String_t** get_address_of_SettingsFilePath_5() { return &___SettingsFilePath_5; }
inline void set_SettingsFilePath_5(String_t* value)
{
___SettingsFilePath_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SettingsFilePath_5), (void*)value);
}
inline static int32_t get_offset_of__instance_16() { return static_cast<int32_t>(offsetof(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750_StaticFields, ____instance_16)); }
inline DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750 * get__instance_16() const { return ____instance_16; }
inline DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750 ** get_address_of__instance_16() { return &____instance_16; }
inline void set__instance_16(DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750 * value)
{
____instance_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____instance_16), (void*)value);
}
};
// UnityEngine.InputSystem.UI.ExtendedPointerEventData
struct ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F : public PointerEventData_tC6C1BEE9D4C8755A31DA7FC0C9A1F28A36456954
{
public:
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.UI.ExtendedPointerEventData::<device>k__BackingField
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___U3CdeviceU3Ek__BackingField_24;
// System.Int32 UnityEngine.InputSystem.UI.ExtendedPointerEventData::<touchId>k__BackingField
int32_t ___U3CtouchIdU3Ek__BackingField_25;
// UnityEngine.InputSystem.UI.UIPointerType UnityEngine.InputSystem.UI.ExtendedPointerEventData::<pointerType>k__BackingField
int32_t ___U3CpointerTypeU3Ek__BackingField_26;
// UnityEngine.Vector3 UnityEngine.InputSystem.UI.ExtendedPointerEventData::<trackedDevicePosition>k__BackingField
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___U3CtrackedDevicePositionU3Ek__BackingField_27;
// UnityEngine.Quaternion UnityEngine.InputSystem.UI.ExtendedPointerEventData::<trackedDeviceOrientation>k__BackingField
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___U3CtrackedDeviceOrientationU3Ek__BackingField_28;
public:
inline static int32_t get_offset_of_U3CdeviceU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F, ___U3CdeviceU3Ek__BackingField_24)); }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * get_U3CdeviceU3Ek__BackingField_24() const { return ___U3CdeviceU3Ek__BackingField_24; }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 ** get_address_of_U3CdeviceU3Ek__BackingField_24() { return &___U3CdeviceU3Ek__BackingField_24; }
inline void set_U3CdeviceU3Ek__BackingField_24(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * value)
{
___U3CdeviceU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceU3Ek__BackingField_24), (void*)value);
}
inline static int32_t get_offset_of_U3CtouchIdU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F, ___U3CtouchIdU3Ek__BackingField_25)); }
inline int32_t get_U3CtouchIdU3Ek__BackingField_25() const { return ___U3CtouchIdU3Ek__BackingField_25; }
inline int32_t* get_address_of_U3CtouchIdU3Ek__BackingField_25() { return &___U3CtouchIdU3Ek__BackingField_25; }
inline void set_U3CtouchIdU3Ek__BackingField_25(int32_t value)
{
___U3CtouchIdU3Ek__BackingField_25 = value;
}
inline static int32_t get_offset_of_U3CpointerTypeU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F, ___U3CpointerTypeU3Ek__BackingField_26)); }
inline int32_t get_U3CpointerTypeU3Ek__BackingField_26() const { return ___U3CpointerTypeU3Ek__BackingField_26; }
inline int32_t* get_address_of_U3CpointerTypeU3Ek__BackingField_26() { return &___U3CpointerTypeU3Ek__BackingField_26; }
inline void set_U3CpointerTypeU3Ek__BackingField_26(int32_t value)
{
___U3CpointerTypeU3Ek__BackingField_26 = value;
}
inline static int32_t get_offset_of_U3CtrackedDevicePositionU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F, ___U3CtrackedDevicePositionU3Ek__BackingField_27)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_U3CtrackedDevicePositionU3Ek__BackingField_27() const { return ___U3CtrackedDevicePositionU3Ek__BackingField_27; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_U3CtrackedDevicePositionU3Ek__BackingField_27() { return &___U3CtrackedDevicePositionU3Ek__BackingField_27; }
inline void set_U3CtrackedDevicePositionU3Ek__BackingField_27(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___U3CtrackedDevicePositionU3Ek__BackingField_27 = value;
}
inline static int32_t get_offset_of_U3CtrackedDeviceOrientationU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F, ___U3CtrackedDeviceOrientationU3Ek__BackingField_28)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_U3CtrackedDeviceOrientationU3Ek__BackingField_28() const { return ___U3CtrackedDeviceOrientationU3Ek__BackingField_28; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_U3CtrackedDeviceOrientationU3Ek__BackingField_28() { return &___U3CtrackedDeviceOrientationU3Ek__BackingField_28; }
inline void set_U3CtrackedDeviceOrientationU3Ek__BackingField_28(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___U3CtrackedDeviceOrientationU3Ek__BackingField_28 = value;
}
};
// UnityEngine.InputSystem.InputControl
struct InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 : public RuntimeObject
{
public:
// UnityEngine.InputSystem.LowLevel.InputStateBlock UnityEngine.InputSystem.InputControl::m_StateBlock
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42 ___m_StateBlock_0;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Name
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___m_Name_1;
// System.String UnityEngine.InputSystem.InputControl::m_Path
String_t* ___m_Path_2;
// System.String UnityEngine.InputSystem.InputControl::m_DisplayName
String_t* ___m_DisplayName_3;
// System.String UnityEngine.InputSystem.InputControl::m_DisplayNameFromLayout
String_t* ___m_DisplayNameFromLayout_4;
// System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayName
String_t* ___m_ShortDisplayName_5;
// System.String UnityEngine.InputSystem.InputControl::m_ShortDisplayNameFromLayout
String_t* ___m_ShortDisplayNameFromLayout_6;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Layout
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___m_Layout_7;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.InputControl::m_Variants
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___m_Variants_8;
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.InputControl::m_Device
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___m_Device_9;
// UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.InputControl::m_Parent
InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 * ___m_Parent_10;
// System.Int32 UnityEngine.InputSystem.InputControl::m_UsageCount
int32_t ___m_UsageCount_11;
// System.Int32 UnityEngine.InputSystem.InputControl::m_UsageStartIndex
int32_t ___m_UsageStartIndex_12;
// System.Int32 UnityEngine.InputSystem.InputControl::m_AliasCount
int32_t ___m_AliasCount_13;
// System.Int32 UnityEngine.InputSystem.InputControl::m_AliasStartIndex
int32_t ___m_AliasStartIndex_14;
// System.Int32 UnityEngine.InputSystem.InputControl::m_ChildCount
int32_t ___m_ChildCount_15;
// System.Int32 UnityEngine.InputSystem.InputControl::m_ChildStartIndex
int32_t ___m_ChildStartIndex_16;
// UnityEngine.InputSystem.InputControl/ControlFlags UnityEngine.InputSystem.InputControl::m_ControlFlags
int32_t ___m_ControlFlags_17;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_DefaultState
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 ___m_DefaultState_18;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MinValue
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 ___m_MinValue_19;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.InputControl::m_MaxValue
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 ___m_MaxValue_20;
public:
inline static int32_t get_offset_of_m_StateBlock_0() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_StateBlock_0)); }
inline InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42 get_m_StateBlock_0() const { return ___m_StateBlock_0; }
inline InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42 * get_address_of_m_StateBlock_0() { return &___m_StateBlock_0; }
inline void set_m_StateBlock_0(InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42 value)
{
___m_StateBlock_0 = value;
}
inline static int32_t get_offset_of_m_Name_1() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_Name_1)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_m_Name_1() const { return ___m_Name_1; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_m_Name_1() { return &___m_Name_1; }
inline void set_m_Name_1(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___m_Name_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_1))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Name_1))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Path_2() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_Path_2)); }
inline String_t* get_m_Path_2() const { return ___m_Path_2; }
inline String_t** get_address_of_m_Path_2() { return &___m_Path_2; }
inline void set_m_Path_2(String_t* value)
{
___m_Path_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Path_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisplayName_3() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_DisplayName_3)); }
inline String_t* get_m_DisplayName_3() const { return ___m_DisplayName_3; }
inline String_t** get_address_of_m_DisplayName_3() { return &___m_DisplayName_3; }
inline void set_m_DisplayName_3(String_t* value)
{
___m_DisplayName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisplayName_3), (void*)value);
}
inline static int32_t get_offset_of_m_DisplayNameFromLayout_4() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_DisplayNameFromLayout_4)); }
inline String_t* get_m_DisplayNameFromLayout_4() const { return ___m_DisplayNameFromLayout_4; }
inline String_t** get_address_of_m_DisplayNameFromLayout_4() { return &___m_DisplayNameFromLayout_4; }
inline void set_m_DisplayNameFromLayout_4(String_t* value)
{
___m_DisplayNameFromLayout_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisplayNameFromLayout_4), (void*)value);
}
inline static int32_t get_offset_of_m_ShortDisplayName_5() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_ShortDisplayName_5)); }
inline String_t* get_m_ShortDisplayName_5() const { return ___m_ShortDisplayName_5; }
inline String_t** get_address_of_m_ShortDisplayName_5() { return &___m_ShortDisplayName_5; }
inline void set_m_ShortDisplayName_5(String_t* value)
{
___m_ShortDisplayName_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ShortDisplayName_5), (void*)value);
}
inline static int32_t get_offset_of_m_ShortDisplayNameFromLayout_6() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_ShortDisplayNameFromLayout_6)); }
inline String_t* get_m_ShortDisplayNameFromLayout_6() const { return ___m_ShortDisplayNameFromLayout_6; }
inline String_t** get_address_of_m_ShortDisplayNameFromLayout_6() { return &___m_ShortDisplayNameFromLayout_6; }
inline void set_m_ShortDisplayNameFromLayout_6(String_t* value)
{
___m_ShortDisplayNameFromLayout_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ShortDisplayNameFromLayout_6), (void*)value);
}
inline static int32_t get_offset_of_m_Layout_7() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_Layout_7)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_m_Layout_7() const { return ___m_Layout_7; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_m_Layout_7() { return &___m_Layout_7; }
inline void set_m_Layout_7(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___m_Layout_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layout_7))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Layout_7))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Variants_8() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_Variants_8)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_m_Variants_8() const { return ___m_Variants_8; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_m_Variants_8() { return &___m_Variants_8; }
inline void set_m_Variants_8(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___m_Variants_8 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_8))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Variants_8))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Device_9() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_Device_9)); }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * get_m_Device_9() const { return ___m_Device_9; }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 ** get_address_of_m_Device_9() { return &___m_Device_9; }
inline void set_m_Device_9(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * value)
{
___m_Device_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Device_9), (void*)value);
}
inline static int32_t get_offset_of_m_Parent_10() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_Parent_10)); }
inline InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 * get_m_Parent_10() const { return ___m_Parent_10; }
inline InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 ** get_address_of_m_Parent_10() { return &___m_Parent_10; }
inline void set_m_Parent_10(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 * value)
{
___m_Parent_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Parent_10), (void*)value);
}
inline static int32_t get_offset_of_m_UsageCount_11() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_UsageCount_11)); }
inline int32_t get_m_UsageCount_11() const { return ___m_UsageCount_11; }
inline int32_t* get_address_of_m_UsageCount_11() { return &___m_UsageCount_11; }
inline void set_m_UsageCount_11(int32_t value)
{
___m_UsageCount_11 = value;
}
inline static int32_t get_offset_of_m_UsageStartIndex_12() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_UsageStartIndex_12)); }
inline int32_t get_m_UsageStartIndex_12() const { return ___m_UsageStartIndex_12; }
inline int32_t* get_address_of_m_UsageStartIndex_12() { return &___m_UsageStartIndex_12; }
inline void set_m_UsageStartIndex_12(int32_t value)
{
___m_UsageStartIndex_12 = value;
}
inline static int32_t get_offset_of_m_AliasCount_13() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_AliasCount_13)); }
inline int32_t get_m_AliasCount_13() const { return ___m_AliasCount_13; }
inline int32_t* get_address_of_m_AliasCount_13() { return &___m_AliasCount_13; }
inline void set_m_AliasCount_13(int32_t value)
{
___m_AliasCount_13 = value;
}
inline static int32_t get_offset_of_m_AliasStartIndex_14() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_AliasStartIndex_14)); }
inline int32_t get_m_AliasStartIndex_14() const { return ___m_AliasStartIndex_14; }
inline int32_t* get_address_of_m_AliasStartIndex_14() { return &___m_AliasStartIndex_14; }
inline void set_m_AliasStartIndex_14(int32_t value)
{
___m_AliasStartIndex_14 = value;
}
inline static int32_t get_offset_of_m_ChildCount_15() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_ChildCount_15)); }
inline int32_t get_m_ChildCount_15() const { return ___m_ChildCount_15; }
inline int32_t* get_address_of_m_ChildCount_15() { return &___m_ChildCount_15; }
inline void set_m_ChildCount_15(int32_t value)
{
___m_ChildCount_15 = value;
}
inline static int32_t get_offset_of_m_ChildStartIndex_16() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_ChildStartIndex_16)); }
inline int32_t get_m_ChildStartIndex_16() const { return ___m_ChildStartIndex_16; }
inline int32_t* get_address_of_m_ChildStartIndex_16() { return &___m_ChildStartIndex_16; }
inline void set_m_ChildStartIndex_16(int32_t value)
{
___m_ChildStartIndex_16 = value;
}
inline static int32_t get_offset_of_m_ControlFlags_17() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_ControlFlags_17)); }
inline int32_t get_m_ControlFlags_17() const { return ___m_ControlFlags_17; }
inline int32_t* get_address_of_m_ControlFlags_17() { return &___m_ControlFlags_17; }
inline void set_m_ControlFlags_17(int32_t value)
{
___m_ControlFlags_17 = value;
}
inline static int32_t get_offset_of_m_DefaultState_18() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_DefaultState_18)); }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 get_m_DefaultState_18() const { return ___m_DefaultState_18; }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 * get_address_of_m_DefaultState_18() { return &___m_DefaultState_18; }
inline void set_m_DefaultState_18(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 value)
{
___m_DefaultState_18 = value;
}
inline static int32_t get_offset_of_m_MinValue_19() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_MinValue_19)); }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 get_m_MinValue_19() const { return ___m_MinValue_19; }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 * get_address_of_m_MinValue_19() { return &___m_MinValue_19; }
inline void set_m_MinValue_19(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 value)
{
___m_MinValue_19 = value;
}
inline static int32_t get_offset_of_m_MaxValue_20() { return static_cast<int32_t>(offsetof(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008, ___m_MaxValue_20)); }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 get_m_MaxValue_20() const { return ___m_MaxValue_20; }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 * get_address_of_m_MaxValue_20() { return &___m_MaxValue_20; }
inline void set_m_MaxValue_20(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 value)
{
___m_MaxValue_20 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputDeviceCommandDelegate
struct InputDeviceCommandDelegate_tAD462275BC988D738B4ECBC89827313A840B6140 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.InputDeviceExecuteCommandDelegate
struct InputDeviceExecuteCommandDelegate_t45AC4F6B3E20B2281CB61D999CD25853C8D847C2 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.InputSystem.Layouts.InputDeviceFindControlLayoutDelegate
struct InputDeviceFindControlLayoutDelegate_t620A205CE4C52AC4E67C27D52BB6520689978729 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.InputEvent
struct InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngineInternal.Input.NativeInputEvent UnityEngine.InputSystem.LowLevel.InputEvent::m_Event
NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD ___m_Event_5;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD ___m_Event_5_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96__padding[20];
};
public:
inline static int32_t get_offset_of_m_Event_5() { return static_cast<int32_t>(offsetof(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96, ___m_Event_5)); }
inline NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD get_m_Event_5() const { return ___m_Event_5; }
inline NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD * get_address_of_m_Event_5() { return &___m_Event_5; }
inline void set_m_Event_5(NativeInputEvent_t21B4AB4BC38B4E147E82E91E29CE8877CF035FCD value)
{
___m_Event_5 = value;
}
};
// UnityEngine.InputSystem.LowLevel.InputEventBuffer
struct InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E
{
public:
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_Buffer
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Buffer_1;
// System.Int64 UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_SizeInBytes
int64_t ___m_SizeInBytes_2;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_EventCount
int32_t ___m_EventCount_3;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputEventBuffer::m_WeOwnTheBuffer
bool ___m_WeOwnTheBuffer_4;
public:
inline static int32_t get_offset_of_m_Buffer_1() { return static_cast<int32_t>(offsetof(InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E, ___m_Buffer_1)); }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_m_Buffer_1() const { return ___m_Buffer_1; }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_m_Buffer_1() { return &___m_Buffer_1; }
inline void set_m_Buffer_1(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
{
___m_Buffer_1 = value;
}
inline static int32_t get_offset_of_m_SizeInBytes_2() { return static_cast<int32_t>(offsetof(InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E, ___m_SizeInBytes_2)); }
inline int64_t get_m_SizeInBytes_2() const { return ___m_SizeInBytes_2; }
inline int64_t* get_address_of_m_SizeInBytes_2() { return &___m_SizeInBytes_2; }
inline void set_m_SizeInBytes_2(int64_t value)
{
___m_SizeInBytes_2 = value;
}
inline static int32_t get_offset_of_m_EventCount_3() { return static_cast<int32_t>(offsetof(InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E, ___m_EventCount_3)); }
inline int32_t get_m_EventCount_3() const { return ___m_EventCount_3; }
inline int32_t* get_address_of_m_EventCount_3() { return &___m_EventCount_3; }
inline void set_m_EventCount_3(int32_t value)
{
___m_EventCount_3 = value;
}
inline static int32_t get_offset_of_m_WeOwnTheBuffer_4() { return static_cast<int32_t>(offsetof(InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E, ___m_WeOwnTheBuffer_4)); }
inline bool get_m_WeOwnTheBuffer_4() const { return ___m_WeOwnTheBuffer_4; }
inline bool* get_address_of_m_WeOwnTheBuffer_4() { return &___m_WeOwnTheBuffer_4; }
inline void set_m_WeOwnTheBuffer_4(bool value)
{
___m_WeOwnTheBuffer_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.InputEventBuffer
struct InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E_marshaled_pinvoke
{
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Buffer_1;
int64_t ___m_SizeInBytes_2;
int32_t ___m_EventCount_3;
int32_t ___m_WeOwnTheBuffer_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.InputEventBuffer
struct InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E_marshaled_com
{
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Buffer_1;
int64_t ___m_SizeInBytes_2;
int32_t ___m_EventCount_3;
int32_t ___m_WeOwnTheBuffer_4;
};
// UnityEngine.InputSystem.LowLevel.InputStateHistory
struct InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA : public RuntimeObject
{
public:
// System.Action`1<UnityEngine.InputSystem.LowLevel.InputStateHistory/Record> UnityEngine.InputSystem.LowLevel.InputStateHistory::<onRecordAdded>k__BackingField
Action_1_tC2ABE6D6AAD61029C3A7FE0E69A27C1AFB8DE290 * ___U3ConRecordAddedU3Ek__BackingField_1;
// System.Func`4<UnityEngine.InputSystem.InputControl,System.Double,UnityEngine.InputSystem.LowLevel.InputEventPtr,System.Boolean> UnityEngine.InputSystem.LowLevel.InputStateHistory::<onShouldRecordStateChange>k__BackingField
Func_4_tEF59657BD58790AC17A23EB03335705A0F993224 * ___U3ConShouldRecordStateChangeU3Ek__BackingField_2;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.LowLevel.InputStateHistory::m_Controls
InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* ___m_Controls_3;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_ControlCount
int32_t ___m_ControlCount_4;
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.LowLevel.InputStateHistory::m_RecordBuffer
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_RecordBuffer_5;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_StateSizeInBytes
int32_t ___m_StateSizeInBytes_6;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_RecordCount
int32_t ___m_RecordCount_7;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_HistoryDepth
int32_t ___m_HistoryDepth_8;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_ExtraMemoryPerRecord
int32_t ___m_ExtraMemoryPerRecord_9;
// System.Int32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_HeadIndex
int32_t ___m_HeadIndex_10;
// System.UInt32 UnityEngine.InputSystem.LowLevel.InputStateHistory::m_CurrentVersion
uint32_t ___m_CurrentVersion_11;
// System.Nullable`1<UnityEngine.InputSystem.LowLevel.InputUpdateType> UnityEngine.InputSystem.LowLevel.InputStateHistory::m_UpdateMask
Nullable_1_t8627D52D59B750A3A0C89AD6C6018836092B2ABB ___m_UpdateMask_12;
// System.Boolean UnityEngine.InputSystem.LowLevel.InputStateHistory::m_AddNewControls
bool ___m_AddNewControls_13;
public:
inline static int32_t get_offset_of_U3ConRecordAddedU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___U3ConRecordAddedU3Ek__BackingField_1)); }
inline Action_1_tC2ABE6D6AAD61029C3A7FE0E69A27C1AFB8DE290 * get_U3ConRecordAddedU3Ek__BackingField_1() const { return ___U3ConRecordAddedU3Ek__BackingField_1; }
inline Action_1_tC2ABE6D6AAD61029C3A7FE0E69A27C1AFB8DE290 ** get_address_of_U3ConRecordAddedU3Ek__BackingField_1() { return &___U3ConRecordAddedU3Ek__BackingField_1; }
inline void set_U3ConRecordAddedU3Ek__BackingField_1(Action_1_tC2ABE6D6AAD61029C3A7FE0E69A27C1AFB8DE290 * value)
{
___U3ConRecordAddedU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3ConRecordAddedU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3ConShouldRecordStateChangeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___U3ConShouldRecordStateChangeU3Ek__BackingField_2)); }
inline Func_4_tEF59657BD58790AC17A23EB03335705A0F993224 * get_U3ConShouldRecordStateChangeU3Ek__BackingField_2() const { return ___U3ConShouldRecordStateChangeU3Ek__BackingField_2; }
inline Func_4_tEF59657BD58790AC17A23EB03335705A0F993224 ** get_address_of_U3ConShouldRecordStateChangeU3Ek__BackingField_2() { return &___U3ConShouldRecordStateChangeU3Ek__BackingField_2; }
inline void set_U3ConShouldRecordStateChangeU3Ek__BackingField_2(Func_4_tEF59657BD58790AC17A23EB03335705A0F993224 * value)
{
___U3ConShouldRecordStateChangeU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3ConShouldRecordStateChangeU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_m_Controls_3() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_Controls_3)); }
inline InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* get_m_Controls_3() const { return ___m_Controls_3; }
inline InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7** get_address_of_m_Controls_3() { return &___m_Controls_3; }
inline void set_m_Controls_3(InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* value)
{
___m_Controls_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Controls_3), (void*)value);
}
inline static int32_t get_offset_of_m_ControlCount_4() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_ControlCount_4)); }
inline int32_t get_m_ControlCount_4() const { return ___m_ControlCount_4; }
inline int32_t* get_address_of_m_ControlCount_4() { return &___m_ControlCount_4; }
inline void set_m_ControlCount_4(int32_t value)
{
___m_ControlCount_4 = value;
}
inline static int32_t get_offset_of_m_RecordBuffer_5() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_RecordBuffer_5)); }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_m_RecordBuffer_5() const { return ___m_RecordBuffer_5; }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_m_RecordBuffer_5() { return &___m_RecordBuffer_5; }
inline void set_m_RecordBuffer_5(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
{
___m_RecordBuffer_5 = value;
}
inline static int32_t get_offset_of_m_StateSizeInBytes_6() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_StateSizeInBytes_6)); }
inline int32_t get_m_StateSizeInBytes_6() const { return ___m_StateSizeInBytes_6; }
inline int32_t* get_address_of_m_StateSizeInBytes_6() { return &___m_StateSizeInBytes_6; }
inline void set_m_StateSizeInBytes_6(int32_t value)
{
___m_StateSizeInBytes_6 = value;
}
inline static int32_t get_offset_of_m_RecordCount_7() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_RecordCount_7)); }
inline int32_t get_m_RecordCount_7() const { return ___m_RecordCount_7; }
inline int32_t* get_address_of_m_RecordCount_7() { return &___m_RecordCount_7; }
inline void set_m_RecordCount_7(int32_t value)
{
___m_RecordCount_7 = value;
}
inline static int32_t get_offset_of_m_HistoryDepth_8() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_HistoryDepth_8)); }
inline int32_t get_m_HistoryDepth_8() const { return ___m_HistoryDepth_8; }
inline int32_t* get_address_of_m_HistoryDepth_8() { return &___m_HistoryDepth_8; }
inline void set_m_HistoryDepth_8(int32_t value)
{
___m_HistoryDepth_8 = value;
}
inline static int32_t get_offset_of_m_ExtraMemoryPerRecord_9() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_ExtraMemoryPerRecord_9)); }
inline int32_t get_m_ExtraMemoryPerRecord_9() const { return ___m_ExtraMemoryPerRecord_9; }
inline int32_t* get_address_of_m_ExtraMemoryPerRecord_9() { return &___m_ExtraMemoryPerRecord_9; }
inline void set_m_ExtraMemoryPerRecord_9(int32_t value)
{
___m_ExtraMemoryPerRecord_9 = value;
}
inline static int32_t get_offset_of_m_HeadIndex_10() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_HeadIndex_10)); }
inline int32_t get_m_HeadIndex_10() const { return ___m_HeadIndex_10; }
inline int32_t* get_address_of_m_HeadIndex_10() { return &___m_HeadIndex_10; }
inline void set_m_HeadIndex_10(int32_t value)
{
___m_HeadIndex_10 = value;
}
inline static int32_t get_offset_of_m_CurrentVersion_11() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_CurrentVersion_11)); }
inline uint32_t get_m_CurrentVersion_11() const { return ___m_CurrentVersion_11; }
inline uint32_t* get_address_of_m_CurrentVersion_11() { return &___m_CurrentVersion_11; }
inline void set_m_CurrentVersion_11(uint32_t value)
{
___m_CurrentVersion_11 = value;
}
inline static int32_t get_offset_of_m_UpdateMask_12() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_UpdateMask_12)); }
inline Nullable_1_t8627D52D59B750A3A0C89AD6C6018836092B2ABB get_m_UpdateMask_12() const { return ___m_UpdateMask_12; }
inline Nullable_1_t8627D52D59B750A3A0C89AD6C6018836092B2ABB * get_address_of_m_UpdateMask_12() { return &___m_UpdateMask_12; }
inline void set_m_UpdateMask_12(Nullable_1_t8627D52D59B750A3A0C89AD6C6018836092B2ABB value)
{
___m_UpdateMask_12 = value;
}
inline static int32_t get_offset_of_m_AddNewControls_13() { return static_cast<int32_t>(offsetof(InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA, ___m_AddNewControls_13)); }
inline bool get_m_AddNewControls_13() const { return ___m_AddNewControls_13; }
inline bool* get_address_of_m_AddNewControls_13() { return &___m_AddNewControls_13; }
inline void set_m_AddNewControls_13(bool value)
{
___m_AddNewControls_13 = value;
}
};
// UnityEngine.InputSystem.Processors.InvertProcessor
struct InvertProcessor_tD54D6E03DBABA5368666A75E72B236103D1997F9 : public InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224
{
public:
public:
};
// UnityEngine.InputSystem.Processors.InvertVector2Processor
struct InvertVector2Processor_t4D570D13262FE691342ECB75924E5B10FD6342B4 : public InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257
{
public:
// System.Boolean UnityEngine.InputSystem.Processors.InvertVector2Processor::invertX
bool ___invertX_1;
// System.Boolean UnityEngine.InputSystem.Processors.InvertVector2Processor::invertY
bool ___invertY_2;
public:
inline static int32_t get_offset_of_invertX_1() { return static_cast<int32_t>(offsetof(InvertVector2Processor_t4D570D13262FE691342ECB75924E5B10FD6342B4, ___invertX_1)); }
inline bool get_invertX_1() const { return ___invertX_1; }
inline bool* get_address_of_invertX_1() { return &___invertX_1; }
inline void set_invertX_1(bool value)
{
___invertX_1 = value;
}
inline static int32_t get_offset_of_invertY_2() { return static_cast<int32_t>(offsetof(InvertVector2Processor_t4D570D13262FE691342ECB75924E5B10FD6342B4, ___invertY_2)); }
inline bool get_invertY_2() const { return ___invertY_2; }
inline bool* get_address_of_invertY_2() { return &___invertY_2; }
inline void set_invertY_2(bool value)
{
___invertY_2 = value;
}
};
// UnityEngine.InputSystem.Processors.InvertVector3Processor
struct InvertVector3Processor_tD43B0DECC78DC3DD009E898CE80EE8AC331C9B42 : public InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5
{
public:
// System.Boolean UnityEngine.InputSystem.Processors.InvertVector3Processor::invertX
bool ___invertX_1;
// System.Boolean UnityEngine.InputSystem.Processors.InvertVector3Processor::invertY
bool ___invertY_2;
// System.Boolean UnityEngine.InputSystem.Processors.InvertVector3Processor::invertZ
bool ___invertZ_3;
public:
inline static int32_t get_offset_of_invertX_1() { return static_cast<int32_t>(offsetof(InvertVector3Processor_tD43B0DECC78DC3DD009E898CE80EE8AC331C9B42, ___invertX_1)); }
inline bool get_invertX_1() const { return ___invertX_1; }
inline bool* get_address_of_invertX_1() { return &___invertX_1; }
inline void set_invertX_1(bool value)
{
___invertX_1 = value;
}
inline static int32_t get_offset_of_invertY_2() { return static_cast<int32_t>(offsetof(InvertVector3Processor_tD43B0DECC78DC3DD009E898CE80EE8AC331C9B42, ___invertY_2)); }
inline bool get_invertY_2() const { return ___invertY_2; }
inline bool* get_address_of_invertY_2() { return &___invertY_2; }
inline void set_invertY_2(bool value)
{
___invertY_2 = value;
}
inline static int32_t get_offset_of_invertZ_3() { return static_cast<int32_t>(offsetof(InvertVector3Processor_tD43B0DECC78DC3DD009E898CE80EE8AC331C9B42, ___invertZ_3)); }
inline bool get_invertZ_3() const { return ___invertZ_3; }
inline bool* get_address_of_invertZ_3() { return &___invertZ_3; }
inline void set_invertZ_3(bool value)
{
___invertZ_3 = value;
}
};
// UnityEngine.Yoga.MeasureFunction
struct MeasureFunction_tBD19E8A44621B4D553785068ECCF0439CD9666C6 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.InputSystem.Utilities.NamedValue
struct NamedValue_tFE9E50F7512511784882DB401C83F2419ADCC13A
{
public:
// System.String UnityEngine.InputSystem.Utilities.NamedValue::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_1;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.Utilities.NamedValue::<value>k__BackingField
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 ___U3CvalueU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NamedValue_tFE9E50F7512511784882DB401C83F2419ADCC13A, ___U3CnameU3Ek__BackingField_1)); }
inline String_t* get_U3CnameU3Ek__BackingField_1() const { return ___U3CnameU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_1() { return &___U3CnameU3Ek__BackingField_1; }
inline void set_U3CnameU3Ek__BackingField_1(String_t* value)
{
___U3CnameU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CvalueU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NamedValue_tFE9E50F7512511784882DB401C83F2419ADCC13A, ___U3CvalueU3Ek__BackingField_2)); }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 get_U3CvalueU3Ek__BackingField_2() const { return ___U3CvalueU3Ek__BackingField_2; }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 * get_address_of_U3CvalueU3Ek__BackingField_2() { return &___U3CvalueU3Ek__BackingField_2; }
inline void set_U3CvalueU3Ek__BackingField_2(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 value)
{
___U3CvalueU3Ek__BackingField_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Utilities.NamedValue
struct NamedValue_tFE9E50F7512511784882DB401C83F2419ADCC13A_marshaled_pinvoke
{
char* ___U3CnameU3Ek__BackingField_1;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_pinvoke ___U3CvalueU3Ek__BackingField_2;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Utilities.NamedValue
struct NamedValue_tFE9E50F7512511784882DB401C83F2419ADCC13A_marshaled_com
{
Il2CppChar* ___U3CnameU3Ek__BackingField_1;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_com ___U3CvalueU3Ek__BackingField_2;
};
// UnityEngine.InputSystem.UI.NavigationModel
struct NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB
{
public:
// UnityEngine.Vector2 UnityEngine.InputSystem.UI.NavigationModel::move
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___move_0;
// System.Int32 UnityEngine.InputSystem.UI.NavigationModel::consecutiveMoveCount
int32_t ___consecutiveMoveCount_1;
// UnityEngine.EventSystems.MoveDirection UnityEngine.InputSystem.UI.NavigationModel::lastMoveDirection
int32_t ___lastMoveDirection_2;
// System.Single UnityEngine.InputSystem.UI.NavigationModel::lastMoveTime
float ___lastMoveTime_3;
// UnityEngine.InputSystem.UI.NavigationModel/ButtonState UnityEngine.InputSystem.UI.NavigationModel::submitButton
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC ___submitButton_4;
// UnityEngine.InputSystem.UI.NavigationModel/ButtonState UnityEngine.InputSystem.UI.NavigationModel::cancelButton
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC ___cancelButton_5;
// UnityEngine.EventSystems.AxisEventData UnityEngine.InputSystem.UI.NavigationModel::eventData
AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * ___eventData_6;
public:
inline static int32_t get_offset_of_move_0() { return static_cast<int32_t>(offsetof(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB, ___move_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_move_0() const { return ___move_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_move_0() { return &___move_0; }
inline void set_move_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___move_0 = value;
}
inline static int32_t get_offset_of_consecutiveMoveCount_1() { return static_cast<int32_t>(offsetof(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB, ___consecutiveMoveCount_1)); }
inline int32_t get_consecutiveMoveCount_1() const { return ___consecutiveMoveCount_1; }
inline int32_t* get_address_of_consecutiveMoveCount_1() { return &___consecutiveMoveCount_1; }
inline void set_consecutiveMoveCount_1(int32_t value)
{
___consecutiveMoveCount_1 = value;
}
inline static int32_t get_offset_of_lastMoveDirection_2() { return static_cast<int32_t>(offsetof(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB, ___lastMoveDirection_2)); }
inline int32_t get_lastMoveDirection_2() const { return ___lastMoveDirection_2; }
inline int32_t* get_address_of_lastMoveDirection_2() { return &___lastMoveDirection_2; }
inline void set_lastMoveDirection_2(int32_t value)
{
___lastMoveDirection_2 = value;
}
inline static int32_t get_offset_of_lastMoveTime_3() { return static_cast<int32_t>(offsetof(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB, ___lastMoveTime_3)); }
inline float get_lastMoveTime_3() const { return ___lastMoveTime_3; }
inline float* get_address_of_lastMoveTime_3() { return &___lastMoveTime_3; }
inline void set_lastMoveTime_3(float value)
{
___lastMoveTime_3 = value;
}
inline static int32_t get_offset_of_submitButton_4() { return static_cast<int32_t>(offsetof(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB, ___submitButton_4)); }
inline ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC get_submitButton_4() const { return ___submitButton_4; }
inline ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC * get_address_of_submitButton_4() { return &___submitButton_4; }
inline void set_submitButton_4(ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC value)
{
___submitButton_4 = value;
}
inline static int32_t get_offset_of_cancelButton_5() { return static_cast<int32_t>(offsetof(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB, ___cancelButton_5)); }
inline ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC get_cancelButton_5() const { return ___cancelButton_5; }
inline ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC * get_address_of_cancelButton_5() { return &___cancelButton_5; }
inline void set_cancelButton_5(ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC value)
{
___cancelButton_5 = value;
}
inline static int32_t get_offset_of_eventData_6() { return static_cast<int32_t>(offsetof(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB, ___eventData_6)); }
inline AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * get_eventData_6() const { return ___eventData_6; }
inline AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E ** get_address_of_eventData_6() { return &___eventData_6; }
inline void set_eventData_6(AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * value)
{
___eventData_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___eventData_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.UI.NavigationModel
struct NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB_marshaled_pinvoke
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___move_0;
int32_t ___consecutiveMoveCount_1;
int32_t ___lastMoveDirection_2;
float ___lastMoveTime_3;
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC_marshaled_pinvoke ___submitButton_4;
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC_marshaled_pinvoke ___cancelButton_5;
AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * ___eventData_6;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.UI.NavigationModel
struct NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB_marshaled_com
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___move_0;
int32_t ___consecutiveMoveCount_1;
int32_t ___lastMoveDirection_2;
float ___lastMoveTime_3;
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC_marshaled_com ___submitButton_4;
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC_marshaled_com ___cancelButton_5;
AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * ___eventData_6;
};
// UnityEngine.InputSystem.Processors.NormalizeProcessor
struct NormalizeProcessor_tC8CD5CA9B53D0915FC6B1107AA7E1664824B05C8 : public InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224
{
public:
// System.Single UnityEngine.InputSystem.Processors.NormalizeProcessor::min
float ___min_1;
// System.Single UnityEngine.InputSystem.Processors.NormalizeProcessor::max
float ___max_2;
// System.Single UnityEngine.InputSystem.Processors.NormalizeProcessor::zero
float ___zero_3;
public:
inline static int32_t get_offset_of_min_1() { return static_cast<int32_t>(offsetof(NormalizeProcessor_tC8CD5CA9B53D0915FC6B1107AA7E1664824B05C8, ___min_1)); }
inline float get_min_1() const { return ___min_1; }
inline float* get_address_of_min_1() { return &___min_1; }
inline void set_min_1(float value)
{
___min_1 = value;
}
inline static int32_t get_offset_of_max_2() { return static_cast<int32_t>(offsetof(NormalizeProcessor_tC8CD5CA9B53D0915FC6B1107AA7E1664824B05C8, ___max_2)); }
inline float get_max_2() const { return ___max_2; }
inline float* get_address_of_max_2() { return &___max_2; }
inline void set_max_2(float value)
{
___max_2 = value;
}
inline static int32_t get_offset_of_zero_3() { return static_cast<int32_t>(offsetof(NormalizeProcessor_tC8CD5CA9B53D0915FC6B1107AA7E1664824B05C8, ___zero_3)); }
inline float get_zero_3() const { return ___zero_3; }
inline float* get_address_of_zero_3() { return &___zero_3; }
inline void set_zero_3(float value)
{
___zero_3 = value;
}
};
// UnityEngine.InputSystem.Processors.NormalizeVector2Processor
struct NormalizeVector2Processor_tE782480AB277D8894962D4544F8616B0CCC27B41 : public InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257
{
public:
public:
};
// UnityEngine.InputSystem.Processors.NormalizeVector3Processor
struct NormalizeVector3Processor_tA11EFD5580FADEA5DC96E83FD1738E4F5F9A5F8D : public InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5
{
public:
public:
};
// UnityEngine.ParticleSystem
struct ParticleSystem_t2F526CCDBD3512879B3FCBE04BCAB20D7B4F391E : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.InputSystem.UI.PointerModel
struct PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6
{
public:
// System.Boolean UnityEngine.InputSystem.UI.PointerModel::changedThisFrame
bool ___changedThisFrame_0;
// UnityEngine.InputSystem.UI.PointerModel/ButtonState UnityEngine.InputSystem.UI.PointerModel::leftButton
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 ___leftButton_1;
// UnityEngine.InputSystem.UI.PointerModel/ButtonState UnityEngine.InputSystem.UI.PointerModel::rightButton
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 ___rightButton_2;
// UnityEngine.InputSystem.UI.PointerModel/ButtonState UnityEngine.InputSystem.UI.PointerModel::middleButton
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 ___middleButton_3;
// UnityEngine.InputSystem.UI.ExtendedPointerEventData UnityEngine.InputSystem.UI.PointerModel::eventData
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F * ___eventData_4;
// UnityEngine.Vector2 UnityEngine.InputSystem.UI.PointerModel::m_ScreenPosition
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_ScreenPosition_5;
// UnityEngine.Vector2 UnityEngine.InputSystem.UI.PointerModel::m_ScrollDelta
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_ScrollDelta_6;
// UnityEngine.Vector3 UnityEngine.InputSystem.UI.PointerModel::m_WorldPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_WorldPosition_7;
// UnityEngine.Quaternion UnityEngine.InputSystem.UI.PointerModel::m_WorldOrientation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_WorldOrientation_8;
public:
inline static int32_t get_offset_of_changedThisFrame_0() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___changedThisFrame_0)); }
inline bool get_changedThisFrame_0() const { return ___changedThisFrame_0; }
inline bool* get_address_of_changedThisFrame_0() { return &___changedThisFrame_0; }
inline void set_changedThisFrame_0(bool value)
{
___changedThisFrame_0 = value;
}
inline static int32_t get_offset_of_leftButton_1() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___leftButton_1)); }
inline ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 get_leftButton_1() const { return ___leftButton_1; }
inline ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 * get_address_of_leftButton_1() { return &___leftButton_1; }
inline void set_leftButton_1(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 value)
{
___leftButton_1 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___leftButton_1))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___leftButton_1))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___leftButton_1))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___leftButton_1))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___leftButton_1))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___leftButton_1))->___dragObject_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_rightButton_2() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___rightButton_2)); }
inline ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 get_rightButton_2() const { return ___rightButton_2; }
inline ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 * get_address_of_rightButton_2() { return &___rightButton_2; }
inline void set_rightButton_2(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 value)
{
___rightButton_2 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___rightButton_2))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___rightButton_2))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___rightButton_2))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___rightButton_2))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___rightButton_2))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___rightButton_2))->___dragObject_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_middleButton_3() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___middleButton_3)); }
inline ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 get_middleButton_3() const { return ___middleButton_3; }
inline ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 * get_address_of_middleButton_3() { return &___middleButton_3; }
inline void set_middleButton_3(ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073 value)
{
___middleButton_3 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___middleButton_3))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___middleButton_3))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___middleButton_3))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___middleButton_3))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___middleButton_3))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___middleButton_3))->___dragObject_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_eventData_4() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___eventData_4)); }
inline ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F * get_eventData_4() const { return ___eventData_4; }
inline ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F ** get_address_of_eventData_4() { return &___eventData_4; }
inline void set_eventData_4(ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F * value)
{
___eventData_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___eventData_4), (void*)value);
}
inline static int32_t get_offset_of_m_ScreenPosition_5() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___m_ScreenPosition_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_ScreenPosition_5() const { return ___m_ScreenPosition_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_ScreenPosition_5() { return &___m_ScreenPosition_5; }
inline void set_m_ScreenPosition_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_ScreenPosition_5 = value;
}
inline static int32_t get_offset_of_m_ScrollDelta_6() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___m_ScrollDelta_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_ScrollDelta_6() const { return ___m_ScrollDelta_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_ScrollDelta_6() { return &___m_ScrollDelta_6; }
inline void set_m_ScrollDelta_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_ScrollDelta_6 = value;
}
inline static int32_t get_offset_of_m_WorldPosition_7() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___m_WorldPosition_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_WorldPosition_7() const { return ___m_WorldPosition_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_WorldPosition_7() { return &___m_WorldPosition_7; }
inline void set_m_WorldPosition_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_WorldPosition_7 = value;
}
inline static int32_t get_offset_of_m_WorldOrientation_8() { return static_cast<int32_t>(offsetof(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6, ___m_WorldOrientation_8)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_WorldOrientation_8() const { return ___m_WorldOrientation_8; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_WorldOrientation_8() { return &___m_WorldOrientation_8; }
inline void set_m_WorldOrientation_8(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___m_WorldOrientation_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.UI.PointerModel
struct PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6_marshaled_pinvoke
{
int32_t ___changedThisFrame_0;
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_pinvoke ___leftButton_1;
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_pinvoke ___rightButton_2;
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_pinvoke ___middleButton_3;
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F * ___eventData_4;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_ScreenPosition_5;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_ScrollDelta_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_WorldPosition_7;
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_WorldOrientation_8;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.UI.PointerModel
struct PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6_marshaled_com
{
int32_t ___changedThisFrame_0;
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_com ___leftButton_1;
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_com ___rightButton_2;
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073_marshaled_com ___middleButton_3;
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F * ___eventData_4;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_ScreenPosition_5;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_ScrollDelta_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_WorldPosition_7;
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_WorldOrientation_8;
};
// Dissonance.RemoteChannel
struct RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB
{
public:
// System.String Dissonance.RemoteChannel::_target
String_t* ____target_0;
// Dissonance.ChannelType Dissonance.RemoteChannel::_type
int32_t ____type_1;
// Dissonance.Audio.Playback.PlaybackOptions Dissonance.RemoteChannel::_options
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E ____options_2;
public:
inline static int32_t get_offset_of__target_0() { return static_cast<int32_t>(offsetof(RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB, ____target_0)); }
inline String_t* get__target_0() const { return ____target_0; }
inline String_t** get_address_of__target_0() { return &____target_0; }
inline void set__target_0(String_t* value)
{
____target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____target_0), (void*)value);
}
inline static int32_t get_offset_of__type_1() { return static_cast<int32_t>(offsetof(RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB, ____type_1)); }
inline int32_t get__type_1() const { return ____type_1; }
inline int32_t* get_address_of__type_1() { return &____type_1; }
inline void set__type_1(int32_t value)
{
____type_1 = value;
}
inline static int32_t get_offset_of__options_2() { return static_cast<int32_t>(offsetof(RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB, ____options_2)); }
inline PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E get__options_2() const { return ____options_2; }
inline PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E * get_address_of__options_2() { return &____options_2; }
inline void set__options_2(PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E value)
{
____options_2 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.RemoteChannel
struct RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB_marshaled_pinvoke
{
char* ____target_0;
int32_t ____type_1;
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E_marshaled_pinvoke ____options_2;
};
// Native definition for COM marshalling of Dissonance.RemoteChannel
struct RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB_marshaled_com
{
Il2CppChar* ____target_0;
int32_t ____type_1;
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E_marshaled_com ____options_2;
};
// UnityEngine.Renderer
struct Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.InputSystem.Processors.ScaleProcessor
struct ScaleProcessor_t1C7BBC0166B10499BEF1B1B09A98B78AC46CE418 : public InputProcessor_1_t20413FE7A8E89A5C4A7435938426DE1C63966224
{
public:
// System.Single UnityEngine.InputSystem.Processors.ScaleProcessor::factor
float ___factor_1;
public:
inline static int32_t get_offset_of_factor_1() { return static_cast<int32_t>(offsetof(ScaleProcessor_t1C7BBC0166B10499BEF1B1B09A98B78AC46CE418, ___factor_1)); }
inline float get_factor_1() const { return ___factor_1; }
inline float* get_address_of_factor_1() { return &___factor_1; }
inline void set_factor_1(float value)
{
___factor_1 = value;
}
};
// UnityEngine.InputSystem.Processors.ScaleVector2Processor
struct ScaleVector2Processor_t79A2D86F045918369FFD2A145FD7D17AC569D944 : public InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257
{
public:
// System.Single UnityEngine.InputSystem.Processors.ScaleVector2Processor::x
float ___x_1;
// System.Single UnityEngine.InputSystem.Processors.ScaleVector2Processor::y
float ___y_2;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(ScaleVector2Processor_t79A2D86F045918369FFD2A145FD7D17AC569D944, ___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(ScaleVector2Processor_t79A2D86F045918369FFD2A145FD7D17AC569D944, ___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;
}
};
// UnityEngine.InputSystem.Processors.ScaleVector3Processor
struct ScaleVector3Processor_tD3506BC1BA7FDD2F48B903D2544C8CACD4555407 : public InputProcessor_1_t0CAFCF4DE0362B732F33C89AA448DBBFB0C41AA5
{
public:
// System.Single UnityEngine.InputSystem.Processors.ScaleVector3Processor::x
float ___x_1;
// System.Single UnityEngine.InputSystem.Processors.ScaleVector3Processor::y
float ___y_2;
// System.Single UnityEngine.InputSystem.Processors.ScaleVector3Processor::z
float ___z_3;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(ScaleVector3Processor_tD3506BC1BA7FDD2F48B903D2544C8CACD4555407, ___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(ScaleVector3Processor_tD3506BC1BA7FDD2F48B903D2544C8CACD4555407, ___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(ScaleVector3Processor_tD3506BC1BA7FDD2F48B903D2544C8CACD4555407, ___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;
}
};
// Mirror.SimpleWeb.ServerSslHelper
struct ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34 : public RuntimeObject
{
public:
// Mirror.SimpleWeb.SslConfig Mirror.SimpleWeb.ServerSslHelper::config
SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90 ___config_0;
// System.Security.Cryptography.X509Certificates.X509Certificate2 Mirror.SimpleWeb.ServerSslHelper::certificate
X509Certificate2_t2FF04591FB660272854D92805B5DB1A5C22E37DD * ___certificate_1;
public:
inline static int32_t get_offset_of_config_0() { return static_cast<int32_t>(offsetof(ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34, ___config_0)); }
inline SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90 get_config_0() const { return ___config_0; }
inline SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90 * get_address_of_config_0() { return &___config_0; }
inline void set_config_0(SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90 value)
{
___config_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___config_0))->___certPath_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___config_0))->___certPassword_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_certificate_1() { return static_cast<int32_t>(offsetof(ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34, ___certificate_1)); }
inline X509Certificate2_t2FF04591FB660272854D92805B5DB1A5C22E37DD * get_certificate_1() const { return ___certificate_1; }
inline X509Certificate2_t2FF04591FB660272854D92805B5DB1A5C22E37DD ** get_address_of_certificate_1() { return &___certificate_1; }
inline void set_certificate_1(X509Certificate2_t2FF04591FB660272854D92805B5DB1A5C22E37DD * value)
{
___certificate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___certificate_1), (void*)value);
}
};
// UnityEngine.InputSystem.Processors.StickDeadzoneProcessor
struct StickDeadzoneProcessor_t8A9735A6EA8979FF0C3694BC6C99CD512083F6A7 : public InputProcessor_1_tBE06CC4564F200E32335D80C20AB6984472E9257
{
public:
// System.Single UnityEngine.InputSystem.Processors.StickDeadzoneProcessor::min
float ___min_1;
// System.Single UnityEngine.InputSystem.Processors.StickDeadzoneProcessor::max
float ___max_2;
public:
inline static int32_t get_offset_of_min_1() { return static_cast<int32_t>(offsetof(StickDeadzoneProcessor_t8A9735A6EA8979FF0C3694BC6C99CD512083F6A7, ___min_1)); }
inline float get_min_1() const { return ___min_1; }
inline float* get_address_of_min_1() { return &___min_1; }
inline void set_min_1(float value)
{
___min_1 = value;
}
inline static int32_t get_offset_of_max_2() { return static_cast<int32_t>(offsetof(StickDeadzoneProcessor_t8A9735A6EA8979FF0C3694BC6C99CD512083F6A7, ___max_2)); }
inline float get_max_2() const { return ___max_2; }
inline float* get_address_of_max_2() { return &___max_2; }
inline void set_max_2(float value)
{
___max_2 = value;
}
};
// UnityEngine.InputSystem.EnhancedTouch.Touch
struct Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF
{
public:
// UnityEngine.InputSystem.EnhancedTouch.Finger UnityEngine.InputSystem.EnhancedTouch.Touch::m_Finger
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * ___m_Finger_0;
// UnityEngine.InputSystem.LowLevel.InputStateHistory`1/Record<UnityEngine.InputSystem.LowLevel.TouchState> UnityEngine.InputSystem.EnhancedTouch.Touch::m_TouchRecord
Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3 ___m_TouchRecord_1;
public:
inline static int32_t get_offset_of_m_Finger_0() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF, ___m_Finger_0)); }
inline Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * get_m_Finger_0() const { return ___m_Finger_0; }
inline Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB ** get_address_of_m_Finger_0() { return &___m_Finger_0; }
inline void set_m_Finger_0(Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * value)
{
___m_Finger_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Finger_0), (void*)value);
}
inline static int32_t get_offset_of_m_TouchRecord_1() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF, ___m_TouchRecord_1)); }
inline Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3 get_m_TouchRecord_1() const { return ___m_TouchRecord_1; }
inline Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3 * get_address_of_m_TouchRecord_1() { return &___m_TouchRecord_1; }
inline void set_m_TouchRecord_1(Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3 value)
{
___m_TouchRecord_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_TouchRecord_1))->___m_Owner_0), (void*)NULL);
}
};
struct Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.Touchscreen> UnityEngine.InputSystem.EnhancedTouch.Touch::s_Touchscreens
InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E ___s_Touchscreens_2;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.Touch::s_HistoryLengthPerFinger
int32_t ___s_HistoryLengthPerFinger_3;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>> UnityEngine.InputSystem.EnhancedTouch.Touch::s_OnFingerDown
InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 ___s_OnFingerDown_4;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>> UnityEngine.InputSystem.EnhancedTouch.Touch::s_OnFingerMove
InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 ___s_OnFingerMove_5;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.EnhancedTouch.Finger>> UnityEngine.InputSystem.EnhancedTouch.Touch::s_OnFingerUp
InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 ___s_OnFingerUp_6;
// UnityEngine.InputSystem.EnhancedTouch.Touch/FingerAndTouchState UnityEngine.InputSystem.EnhancedTouch.Touch::s_PlayerState
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63 ___s_PlayerState_7;
public:
inline static int32_t get_offset_of_s_Touchscreens_2() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields, ___s_Touchscreens_2)); }
inline InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E get_s_Touchscreens_2() const { return ___s_Touchscreens_2; }
inline InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E * get_address_of_s_Touchscreens_2() { return &___s_Touchscreens_2; }
inline void set_s_Touchscreens_2(InlinedArray_1_t578EBFAA67F988A9F54BB560F548C2A9FFE5758E value)
{
___s_Touchscreens_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Touchscreens_2))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Touchscreens_2))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_HistoryLengthPerFinger_3() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields, ___s_HistoryLengthPerFinger_3)); }
inline int32_t get_s_HistoryLengthPerFinger_3() const { return ___s_HistoryLengthPerFinger_3; }
inline int32_t* get_address_of_s_HistoryLengthPerFinger_3() { return &___s_HistoryLengthPerFinger_3; }
inline void set_s_HistoryLengthPerFinger_3(int32_t value)
{
___s_HistoryLengthPerFinger_3 = value;
}
inline static int32_t get_offset_of_s_OnFingerDown_4() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields, ___s_OnFingerDown_4)); }
inline InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 get_s_OnFingerDown_4() const { return ___s_OnFingerDown_4; }
inline InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 * get_address_of_s_OnFingerDown_4() { return &___s_OnFingerDown_4; }
inline void set_s_OnFingerDown_4(InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 value)
{
___s_OnFingerDown_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnFingerDown_4))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnFingerDown_4))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_OnFingerMove_5() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields, ___s_OnFingerMove_5)); }
inline InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 get_s_OnFingerMove_5() const { return ___s_OnFingerMove_5; }
inline InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 * get_address_of_s_OnFingerMove_5() { return &___s_OnFingerMove_5; }
inline void set_s_OnFingerMove_5(InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 value)
{
___s_OnFingerMove_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnFingerMove_5))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnFingerMove_5))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_OnFingerUp_6() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields, ___s_OnFingerUp_6)); }
inline InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 get_s_OnFingerUp_6() const { return ___s_OnFingerUp_6; }
inline InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 * get_address_of_s_OnFingerUp_6() { return &___s_OnFingerUp_6; }
inline void set_s_OnFingerUp_6(InlinedArray_1_t1E1BD6410015049A00BFA1A3F638DE81F8C103C8 value)
{
___s_OnFingerUp_6 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnFingerUp_6))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnFingerUp_6))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_PlayerState_7() { return static_cast<int32_t>(offsetof(Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields, ___s_PlayerState_7)); }
inline FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63 get_s_PlayerState_7() const { return ___s_PlayerState_7; }
inline FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63 * get_address_of_s_PlayerState_7() { return &___s_PlayerState_7; }
inline void set_s_PlayerState_7(FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63 value)
{
___s_PlayerState_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_PlayerState_7))->___fingers_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_PlayerState_7))->___activeFingers_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_PlayerState_7))->___activeTouches_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_PlayerState_7))->___activeTouchState_10), (void*)NULL);
#endif
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch
struct Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_marshaled_pinvoke
{
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * ___m_Finger_0;
Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3 ___m_TouchRecord_1;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.EnhancedTouch.Touch
struct Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_marshaled_com
{
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB * ___m_Finger_0;
Record_tE4951BCA2D6CE286DAEE1905286AA4AC2F817CE3 ___m_TouchRecord_1;
};
// UnityEngine.VFX.VFXSpawnerCallbacks
struct VFXSpawnerCallbacks_t62128B7E3ADA64EBEA4705691DE0F045104801CA : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
public:
};
// UnityEngine.InputSystem.Composites.Vector2Composite
struct Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950 : public InputBindingComposite_1_t33EF16A3C8CC58C2EABC255141B0D6AF183EC323
{
public:
// System.Int32 UnityEngine.InputSystem.Composites.Vector2Composite::up
int32_t ___up_1;
// System.Int32 UnityEngine.InputSystem.Composites.Vector2Composite::down
int32_t ___down_2;
// System.Int32 UnityEngine.InputSystem.Composites.Vector2Composite::left
int32_t ___left_3;
// System.Int32 UnityEngine.InputSystem.Composites.Vector2Composite::right
int32_t ___right_4;
// System.Boolean UnityEngine.InputSystem.Composites.Vector2Composite::normalize
bool ___normalize_5;
// UnityEngine.InputSystem.Composites.Vector2Composite/Mode UnityEngine.InputSystem.Composites.Vector2Composite::mode
int32_t ___mode_6;
public:
inline static int32_t get_offset_of_up_1() { return static_cast<int32_t>(offsetof(Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950, ___up_1)); }
inline int32_t get_up_1() const { return ___up_1; }
inline int32_t* get_address_of_up_1() { return &___up_1; }
inline void set_up_1(int32_t value)
{
___up_1 = value;
}
inline static int32_t get_offset_of_down_2() { return static_cast<int32_t>(offsetof(Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950, ___down_2)); }
inline int32_t get_down_2() const { return ___down_2; }
inline int32_t* get_address_of_down_2() { return &___down_2; }
inline void set_down_2(int32_t value)
{
___down_2 = value;
}
inline static int32_t get_offset_of_left_3() { return static_cast<int32_t>(offsetof(Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950, ___left_3)); }
inline int32_t get_left_3() const { return ___left_3; }
inline int32_t* get_address_of_left_3() { return &___left_3; }
inline void set_left_3(int32_t value)
{
___left_3 = value;
}
inline static int32_t get_offset_of_right_4() { return static_cast<int32_t>(offsetof(Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950, ___right_4)); }
inline int32_t get_right_4() const { return ___right_4; }
inline int32_t* get_address_of_right_4() { return &___right_4; }
inline void set_right_4(int32_t value)
{
___right_4 = value;
}
inline static int32_t get_offset_of_normalize_5() { return static_cast<int32_t>(offsetof(Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950, ___normalize_5)); }
inline bool get_normalize_5() const { return ___normalize_5; }
inline bool* get_address_of_normalize_5() { return &___normalize_5; }
inline void set_normalize_5(bool value)
{
___normalize_5 = value;
}
inline static int32_t get_offset_of_mode_6() { return static_cast<int32_t>(offsetof(Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950, ___mode_6)); }
inline int32_t get_mode_6() const { return ___mode_6; }
inline int32_t* get_address_of_mode_6() { return &___mode_6; }
inline void set_mode_6(int32_t value)
{
___mode_6 = value;
}
};
// UnityEngine.VFX.VisualEffectAsset
struct VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50 : public VisualEffectObject_tC7804AFDC2B4F2F0CE6833AC467ABC177A1617DB
{
public:
public:
};
struct VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50_StaticFields
{
public:
// System.Int32 UnityEngine.VFX.VisualEffectAsset::PlayEventID
int32_t ___PlayEventID_4;
// System.Int32 UnityEngine.VFX.VisualEffectAsset::StopEventID
int32_t ___StopEventID_5;
public:
inline static int32_t get_offset_of_PlayEventID_4() { return static_cast<int32_t>(offsetof(VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50_StaticFields, ___PlayEventID_4)); }
inline int32_t get_PlayEventID_4() const { return ___PlayEventID_4; }
inline int32_t* get_address_of_PlayEventID_4() { return &___PlayEventID_4; }
inline void set_PlayEventID_4(int32_t value)
{
___PlayEventID_4 = value;
}
inline static int32_t get_offset_of_StopEventID_5() { return static_cast<int32_t>(offsetof(VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50_StaticFields, ___StopEventID_5)); }
inline int32_t get_StopEventID_5() const { return ___StopEventID_5; }
inline int32_t* get_address_of_StopEventID_5() { return &___StopEventID_5; }
inline void set_StopEventID_5(int32_t value)
{
___StopEventID_5 = value;
}
};
// Dissonance.Networking.VoicePacket
struct VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480
{
public:
// System.String Dissonance.Networking.VoicePacket::SenderPlayerId
String_t* ___SenderPlayerId_0;
// System.ArraySegment`1<System.Byte> Dissonance.Networking.VoicePacket::EncodedAudioFrame
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___EncodedAudioFrame_1;
// System.UInt32 Dissonance.Networking.VoicePacket::SequenceNumber
uint32_t ___SequenceNumber_2;
// System.Collections.Generic.List`1<Dissonance.RemoteChannel> Dissonance.Networking.VoicePacket::Channels
List_1_tB90370531F6ADBA86DD9F181B2FB70CEDA9AA682 * ___Channels_3;
// Dissonance.Audio.Playback.PlaybackOptions Dissonance.Networking.VoicePacket::_options
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E ____options_4;
public:
inline static int32_t get_offset_of_SenderPlayerId_0() { return static_cast<int32_t>(offsetof(VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480, ___SenderPlayerId_0)); }
inline String_t* get_SenderPlayerId_0() const { return ___SenderPlayerId_0; }
inline String_t** get_address_of_SenderPlayerId_0() { return &___SenderPlayerId_0; }
inline void set_SenderPlayerId_0(String_t* value)
{
___SenderPlayerId_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SenderPlayerId_0), (void*)value);
}
inline static int32_t get_offset_of_EncodedAudioFrame_1() { return static_cast<int32_t>(offsetof(VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480, ___EncodedAudioFrame_1)); }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE get_EncodedAudioFrame_1() const { return ___EncodedAudioFrame_1; }
inline ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE * get_address_of_EncodedAudioFrame_1() { return &___EncodedAudioFrame_1; }
inline void set_EncodedAudioFrame_1(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE value)
{
___EncodedAudioFrame_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___EncodedAudioFrame_1))->____array_0), (void*)NULL);
}
inline static int32_t get_offset_of_SequenceNumber_2() { return static_cast<int32_t>(offsetof(VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480, ___SequenceNumber_2)); }
inline uint32_t get_SequenceNumber_2() const { return ___SequenceNumber_2; }
inline uint32_t* get_address_of_SequenceNumber_2() { return &___SequenceNumber_2; }
inline void set_SequenceNumber_2(uint32_t value)
{
___SequenceNumber_2 = value;
}
inline static int32_t get_offset_of_Channels_3() { return static_cast<int32_t>(offsetof(VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480, ___Channels_3)); }
inline List_1_tB90370531F6ADBA86DD9F181B2FB70CEDA9AA682 * get_Channels_3() const { return ___Channels_3; }
inline List_1_tB90370531F6ADBA86DD9F181B2FB70CEDA9AA682 ** get_address_of_Channels_3() { return &___Channels_3; }
inline void set_Channels_3(List_1_tB90370531F6ADBA86DD9F181B2FB70CEDA9AA682 * value)
{
___Channels_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Channels_3), (void*)value);
}
inline static int32_t get_offset_of__options_4() { return static_cast<int32_t>(offsetof(VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480, ____options_4)); }
inline PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E get__options_4() const { return ____options_4; }
inline PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E * get_address_of__options_4() { return &____options_4; }
inline void set__options_4(PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E value)
{
____options_4 = value;
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.VoicePacket
struct VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480_marshaled_pinvoke
{
char* ___SenderPlayerId_0;
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___EncodedAudioFrame_1;
uint32_t ___SequenceNumber_2;
List_1_tB90370531F6ADBA86DD9F181B2FB70CEDA9AA682 * ___Channels_3;
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E_marshaled_pinvoke ____options_4;
};
// Native definition for COM marshalling of Dissonance.Networking.VoicePacket
struct VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480_marshaled_com
{
Il2CppChar* ___SenderPlayerId_0;
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE ___EncodedAudioFrame_1;
uint32_t ___SequenceNumber_2;
List_1_tB90370531F6ADBA86DD9F181B2FB70CEDA9AA682 * ___Channels_3;
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E_marshaled_com ____options_4;
};
// Dissonance.Config.VoiceSettings
struct VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// Dissonance.AudioQuality Dissonance.Config.VoiceSettings::_quality
int32_t ____quality_19;
// Dissonance.FrameSize Dissonance.Config.VoiceSettings::_frameSize
int32_t ____frameSize_20;
// System.Int32 Dissonance.Config.VoiceSettings::_forwardErrorCorrection
int32_t ____forwardErrorCorrection_21;
// System.Int32 Dissonance.Config.VoiceSettings::_denoiseAmount
int32_t ____denoiseAmount_22;
// System.Int32 Dissonance.Config.VoiceSettings::_vadSensitivity
int32_t ____vadSensitivity_23;
// System.Int32 Dissonance.Config.VoiceSettings::_aecAmount
int32_t ____aecAmount_24;
// System.Int32 Dissonance.Config.VoiceSettings::_aecDelayAgnostic
int32_t ____aecDelayAgnostic_25;
// System.Int32 Dissonance.Config.VoiceSettings::_aecExtendedFilter
int32_t ____aecExtendedFilter_26;
// System.Int32 Dissonance.Config.VoiceSettings::_aecRefinedAdaptiveFilter
int32_t ____aecRefinedAdaptiveFilter_27;
// System.Int32 Dissonance.Config.VoiceSettings::_aecmRoutingMode
int32_t ____aecmRoutingMode_28;
// System.Int32 Dissonance.Config.VoiceSettings::_aecmComfortNoise
int32_t ____aecmComfortNoise_29;
// System.Single Dissonance.Config.VoiceSettings::_voiceDuckLevel
float ____voiceDuckLevel_30;
// System.ComponentModel.PropertyChangedEventHandler Dissonance.Config.VoiceSettings::PropertyChanged
PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 * ___PropertyChanged_31;
public:
inline static int32_t get_offset_of__quality_19() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____quality_19)); }
inline int32_t get__quality_19() const { return ____quality_19; }
inline int32_t* get_address_of__quality_19() { return &____quality_19; }
inline void set__quality_19(int32_t value)
{
____quality_19 = value;
}
inline static int32_t get_offset_of__frameSize_20() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____frameSize_20)); }
inline int32_t get__frameSize_20() const { return ____frameSize_20; }
inline int32_t* get_address_of__frameSize_20() { return &____frameSize_20; }
inline void set__frameSize_20(int32_t value)
{
____frameSize_20 = value;
}
inline static int32_t get_offset_of__forwardErrorCorrection_21() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____forwardErrorCorrection_21)); }
inline int32_t get__forwardErrorCorrection_21() const { return ____forwardErrorCorrection_21; }
inline int32_t* get_address_of__forwardErrorCorrection_21() { return &____forwardErrorCorrection_21; }
inline void set__forwardErrorCorrection_21(int32_t value)
{
____forwardErrorCorrection_21 = value;
}
inline static int32_t get_offset_of__denoiseAmount_22() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____denoiseAmount_22)); }
inline int32_t get__denoiseAmount_22() const { return ____denoiseAmount_22; }
inline int32_t* get_address_of__denoiseAmount_22() { return &____denoiseAmount_22; }
inline void set__denoiseAmount_22(int32_t value)
{
____denoiseAmount_22 = value;
}
inline static int32_t get_offset_of__vadSensitivity_23() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____vadSensitivity_23)); }
inline int32_t get__vadSensitivity_23() const { return ____vadSensitivity_23; }
inline int32_t* get_address_of__vadSensitivity_23() { return &____vadSensitivity_23; }
inline void set__vadSensitivity_23(int32_t value)
{
____vadSensitivity_23 = value;
}
inline static int32_t get_offset_of__aecAmount_24() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____aecAmount_24)); }
inline int32_t get__aecAmount_24() const { return ____aecAmount_24; }
inline int32_t* get_address_of__aecAmount_24() { return &____aecAmount_24; }
inline void set__aecAmount_24(int32_t value)
{
____aecAmount_24 = value;
}
inline static int32_t get_offset_of__aecDelayAgnostic_25() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____aecDelayAgnostic_25)); }
inline int32_t get__aecDelayAgnostic_25() const { return ____aecDelayAgnostic_25; }
inline int32_t* get_address_of__aecDelayAgnostic_25() { return &____aecDelayAgnostic_25; }
inline void set__aecDelayAgnostic_25(int32_t value)
{
____aecDelayAgnostic_25 = value;
}
inline static int32_t get_offset_of__aecExtendedFilter_26() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____aecExtendedFilter_26)); }
inline int32_t get__aecExtendedFilter_26() const { return ____aecExtendedFilter_26; }
inline int32_t* get_address_of__aecExtendedFilter_26() { return &____aecExtendedFilter_26; }
inline void set__aecExtendedFilter_26(int32_t value)
{
____aecExtendedFilter_26 = value;
}
inline static int32_t get_offset_of__aecRefinedAdaptiveFilter_27() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____aecRefinedAdaptiveFilter_27)); }
inline int32_t get__aecRefinedAdaptiveFilter_27() const { return ____aecRefinedAdaptiveFilter_27; }
inline int32_t* get_address_of__aecRefinedAdaptiveFilter_27() { return &____aecRefinedAdaptiveFilter_27; }
inline void set__aecRefinedAdaptiveFilter_27(int32_t value)
{
____aecRefinedAdaptiveFilter_27 = value;
}
inline static int32_t get_offset_of__aecmRoutingMode_28() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____aecmRoutingMode_28)); }
inline int32_t get__aecmRoutingMode_28() const { return ____aecmRoutingMode_28; }
inline int32_t* get_address_of__aecmRoutingMode_28() { return &____aecmRoutingMode_28; }
inline void set__aecmRoutingMode_28(int32_t value)
{
____aecmRoutingMode_28 = value;
}
inline static int32_t get_offset_of__aecmComfortNoise_29() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____aecmComfortNoise_29)); }
inline int32_t get__aecmComfortNoise_29() const { return ____aecmComfortNoise_29; }
inline int32_t* get_address_of__aecmComfortNoise_29() { return &____aecmComfortNoise_29; }
inline void set__aecmComfortNoise_29(int32_t value)
{
____aecmComfortNoise_29 = value;
}
inline static int32_t get_offset_of__voiceDuckLevel_30() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ____voiceDuckLevel_30)); }
inline float get__voiceDuckLevel_30() const { return ____voiceDuckLevel_30; }
inline float* get_address_of__voiceDuckLevel_30() { return &____voiceDuckLevel_30; }
inline void set__voiceDuckLevel_30(float value)
{
____voiceDuckLevel_30 = value;
}
inline static int32_t get_offset_of_PropertyChanged_31() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1, ___PropertyChanged_31)); }
inline PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 * get_PropertyChanged_31() const { return ___PropertyChanged_31; }
inline PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 ** get_address_of_PropertyChanged_31() { return &___PropertyChanged_31; }
inline void set_PropertyChanged_31(PropertyChangedEventHandler_t094CCD63C952DCD4E1ED794434160679C28A8E99 * value)
{
___PropertyChanged_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropertyChanged_31), (void*)value);
}
};
struct VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1_StaticFields
{
public:
// Dissonance.Log Dissonance.Config.VoiceSettings::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_4;
// System.String Dissonance.Config.VoiceSettings::SettingsFilePath
String_t* ___SettingsFilePath_18;
// Dissonance.Config.VoiceSettings Dissonance.Config.VoiceSettings::_instance
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1 * ____instance_32;
public:
inline static int32_t get_offset_of_Log_4() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1_StaticFields, ___Log_4)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_4() const { return ___Log_4; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_4() { return &___Log_4; }
inline void set_Log_4(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_4), (void*)value);
}
inline static int32_t get_offset_of_SettingsFilePath_18() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1_StaticFields, ___SettingsFilePath_18)); }
inline String_t* get_SettingsFilePath_18() const { return ___SettingsFilePath_18; }
inline String_t** get_address_of_SettingsFilePath_18() { return &___SettingsFilePath_18; }
inline void set_SettingsFilePath_18(String_t* value)
{
___SettingsFilePath_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SettingsFilePath_18), (void*)value);
}
inline static int32_t get_offset_of__instance_32() { return static_cast<int32_t>(offsetof(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1_StaticFields, ____instance_32)); }
inline VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1 * get__instance_32() const { return ____instance_32; }
inline VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1 ** get_address_of__instance_32() { return &____instance_32; }
inline void set__instance_32(VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1 * value)
{
____instance_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&____instance_32), (void*)value);
}
};
// Mirror.SimpleWeb.WebSocketClientStandAlone
struct WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3 : public SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0
{
public:
// Mirror.SimpleWeb.ClientSslHelper Mirror.SimpleWeb.WebSocketClientStandAlone::sslHelper
ClientSslHelper_t12C64C0DE7596082EDDDE82258586B251B3BACF2 * ___sslHelper_9;
// Mirror.SimpleWeb.ClientHandshake Mirror.SimpleWeb.WebSocketClientStandAlone::handshake
ClientHandshake_t3E9C39478EEC2624B360B1AC80376DE447365F41 * ___handshake_10;
// Mirror.SimpleWeb.TcpConfig Mirror.SimpleWeb.WebSocketClientStandAlone::tcpConfig
TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE ___tcpConfig_11;
// Mirror.SimpleWeb.Connection Mirror.SimpleWeb.WebSocketClientStandAlone::conn
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * ___conn_12;
public:
inline static int32_t get_offset_of_sslHelper_9() { return static_cast<int32_t>(offsetof(WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3, ___sslHelper_9)); }
inline ClientSslHelper_t12C64C0DE7596082EDDDE82258586B251B3BACF2 * get_sslHelper_9() const { return ___sslHelper_9; }
inline ClientSslHelper_t12C64C0DE7596082EDDDE82258586B251B3BACF2 ** get_address_of_sslHelper_9() { return &___sslHelper_9; }
inline void set_sslHelper_9(ClientSslHelper_t12C64C0DE7596082EDDDE82258586B251B3BACF2 * value)
{
___sslHelper_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sslHelper_9), (void*)value);
}
inline static int32_t get_offset_of_handshake_10() { return static_cast<int32_t>(offsetof(WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3, ___handshake_10)); }
inline ClientHandshake_t3E9C39478EEC2624B360B1AC80376DE447365F41 * get_handshake_10() const { return ___handshake_10; }
inline ClientHandshake_t3E9C39478EEC2624B360B1AC80376DE447365F41 ** get_address_of_handshake_10() { return &___handshake_10; }
inline void set_handshake_10(ClientHandshake_t3E9C39478EEC2624B360B1AC80376DE447365F41 * value)
{
___handshake_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___handshake_10), (void*)value);
}
inline static int32_t get_offset_of_tcpConfig_11() { return static_cast<int32_t>(offsetof(WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3, ___tcpConfig_11)); }
inline TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE get_tcpConfig_11() const { return ___tcpConfig_11; }
inline TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE * get_address_of_tcpConfig_11() { return &___tcpConfig_11; }
inline void set_tcpConfig_11(TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE value)
{
___tcpConfig_11 = value;
}
inline static int32_t get_offset_of_conn_12() { return static_cast<int32_t>(offsetof(WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3, ___conn_12)); }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * get_conn_12() const { return ___conn_12; }
inline Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 ** get_address_of_conn_12() { return &___conn_12; }
inline void set_conn_12(Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721 * value)
{
___conn_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___conn_12), (void*)value);
}
};
// Mirror.SimpleWeb.WebSocketClientWebGl
struct WebSocketClientWebGl_tE6A1245376B154C18721FA55783CF10221E3B5AB : public SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0
{
public:
// System.Int32 Mirror.SimpleWeb.WebSocketClientWebGl::index
int32_t ___index_10;
public:
inline static int32_t get_offset_of_index_10() { return static_cast<int32_t>(offsetof(WebSocketClientWebGl_tE6A1245376B154C18721FA55783CF10221E3B5AB, ___index_10)); }
inline int32_t get_index_10() const { return ___index_10; }
inline int32_t* get_address_of_index_10() { return &___index_10; }
inline void set_index_10(int32_t value)
{
___index_10 = value;
}
};
struct WebSocketClientWebGl_tE6A1245376B154C18721FA55783CF10221E3B5AB_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Int32,Mirror.SimpleWeb.WebSocketClientWebGl> Mirror.SimpleWeb.WebSocketClientWebGl::instances
Dictionary_2_t01A2131BF985D5E215CEBBE143E11C84C8B2FECA * ___instances_9;
public:
inline static int32_t get_offset_of_instances_9() { return static_cast<int32_t>(offsetof(WebSocketClientWebGl_tE6A1245376B154C18721FA55783CF10221E3B5AB_StaticFields, ___instances_9)); }
inline Dictionary_2_t01A2131BF985D5E215CEBBE143E11C84C8B2FECA * get_instances_9() const { return ___instances_9; }
inline Dictionary_2_t01A2131BF985D5E215CEBBE143E11C84C8B2FECA ** get_address_of_instances_9() { return &___instances_9; }
inline void set_instances_9(Dictionary_2_t01A2131BF985D5E215CEBBE143E11C84C8B2FECA * value)
{
___instances_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___instances_9), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.WindowsMRAnchorSubsystem
struct WindowsMRAnchorSubsystem_tE962138F79B0AF72A7C5C94DB1EED4FE90931505 : public XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRBuildSettings
struct WindowsMRBuildSettings_t5B938D6CB0E0F7286B4337EF0BDE5528FB625851 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// System.Boolean UnityEngine.XR.WindowsMR.WindowsMRBuildSettings::UsePrimaryWindowForDisplay
bool ___UsePrimaryWindowForDisplay_4;
// System.Boolean UnityEngine.XR.WindowsMR.WindowsMRBuildSettings::HolographicRemoting
bool ___HolographicRemoting_5;
public:
inline static int32_t get_offset_of_UsePrimaryWindowForDisplay_4() { return static_cast<int32_t>(offsetof(WindowsMRBuildSettings_t5B938D6CB0E0F7286B4337EF0BDE5528FB625851, ___UsePrimaryWindowForDisplay_4)); }
inline bool get_UsePrimaryWindowForDisplay_4() const { return ___UsePrimaryWindowForDisplay_4; }
inline bool* get_address_of_UsePrimaryWindowForDisplay_4() { return &___UsePrimaryWindowForDisplay_4; }
inline void set_UsePrimaryWindowForDisplay_4(bool value)
{
___UsePrimaryWindowForDisplay_4 = value;
}
inline static int32_t get_offset_of_HolographicRemoting_5() { return static_cast<int32_t>(offsetof(WindowsMRBuildSettings_t5B938D6CB0E0F7286B4337EF0BDE5528FB625851, ___HolographicRemoting_5)); }
inline bool get_HolographicRemoting_5() const { return ___HolographicRemoting_5; }
inline bool* get_address_of_HolographicRemoting_5() { return &___HolographicRemoting_5; }
inline void set_HolographicRemoting_5(bool value)
{
___HolographicRemoting_5 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRSettings
struct WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// UnityEngine.XR.WindowsMR.WindowsMRSettings/DepthBufferOption UnityEngine.XR.WindowsMR.WindowsMRSettings::DepthBufferFormat
int32_t ___DepthBufferFormat_4;
// System.Boolean UnityEngine.XR.WindowsMR.WindowsMRSettings::UseSharedDepthBuffer
bool ___UseSharedDepthBuffer_5;
public:
inline static int32_t get_offset_of_DepthBufferFormat_4() { return static_cast<int32_t>(offsetof(WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81, ___DepthBufferFormat_4)); }
inline int32_t get_DepthBufferFormat_4() const { return ___DepthBufferFormat_4; }
inline int32_t* get_address_of_DepthBufferFormat_4() { return &___DepthBufferFormat_4; }
inline void set_DepthBufferFormat_4(int32_t value)
{
___DepthBufferFormat_4 = value;
}
inline static int32_t get_offset_of_UseSharedDepthBuffer_5() { return static_cast<int32_t>(offsetof(WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81, ___UseSharedDepthBuffer_5)); }
inline bool get_UseSharedDepthBuffer_5() const { return ___UseSharedDepthBuffer_5; }
inline bool* get_address_of_UseSharedDepthBuffer_5() { return &___UseSharedDepthBuffer_5; }
inline void set_UseSharedDepthBuffer_5(bool value)
{
___UseSharedDepthBuffer_5 = value;
}
};
struct WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81_StaticFields
{
public:
// UnityEngine.XR.WindowsMR.WindowsMRSettings UnityEngine.XR.WindowsMR.WindowsMRSettings::s_Settings
WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81 * ___s_Settings_6;
public:
inline static int32_t get_offset_of_s_Settings_6() { return static_cast<int32_t>(offsetof(WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81_StaticFields, ___s_Settings_6)); }
inline WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81 * get_s_Settings_6() const { return ___s_Settings_6; }
inline WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81 ** get_address_of_s_Settings_6() { return &___s_Settings_6; }
inline void set_s_Settings_6(WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81 * value)
{
___s_Settings_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Settings_6), (void*)value);
}
};
// UnityEngine.XR.Management.XRGeneralSettings
struct XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// UnityEngine.XR.Management.XRManagerSettings UnityEngine.XR.Management.XRGeneralSettings::m_LoaderManagerInstance
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * ___m_LoaderManagerInstance_6;
// System.Boolean UnityEngine.XR.Management.XRGeneralSettings::m_InitManagerOnStart
bool ___m_InitManagerOnStart_7;
// UnityEngine.XR.Management.XRManagerSettings UnityEngine.XR.Management.XRGeneralSettings::m_XRManager
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * ___m_XRManager_8;
// System.Boolean UnityEngine.XR.Management.XRGeneralSettings::m_ProviderIntialized
bool ___m_ProviderIntialized_9;
// System.Boolean UnityEngine.XR.Management.XRGeneralSettings::m_ProviderStarted
bool ___m_ProviderStarted_10;
public:
inline static int32_t get_offset_of_m_LoaderManagerInstance_6() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_LoaderManagerInstance_6)); }
inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * get_m_LoaderManagerInstance_6() const { return ___m_LoaderManagerInstance_6; }
inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F ** get_address_of_m_LoaderManagerInstance_6() { return &___m_LoaderManagerInstance_6; }
inline void set_m_LoaderManagerInstance_6(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * value)
{
___m_LoaderManagerInstance_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LoaderManagerInstance_6), (void*)value);
}
inline static int32_t get_offset_of_m_InitManagerOnStart_7() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_InitManagerOnStart_7)); }
inline bool get_m_InitManagerOnStart_7() const { return ___m_InitManagerOnStart_7; }
inline bool* get_address_of_m_InitManagerOnStart_7() { return &___m_InitManagerOnStart_7; }
inline void set_m_InitManagerOnStart_7(bool value)
{
___m_InitManagerOnStart_7 = value;
}
inline static int32_t get_offset_of_m_XRManager_8() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_XRManager_8)); }
inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * get_m_XRManager_8() const { return ___m_XRManager_8; }
inline XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F ** get_address_of_m_XRManager_8() { return &___m_XRManager_8; }
inline void set_m_XRManager_8(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F * value)
{
___m_XRManager_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_XRManager_8), (void*)value);
}
inline static int32_t get_offset_of_m_ProviderIntialized_9() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_ProviderIntialized_9)); }
inline bool get_m_ProviderIntialized_9() const { return ___m_ProviderIntialized_9; }
inline bool* get_address_of_m_ProviderIntialized_9() { return &___m_ProviderIntialized_9; }
inline void set_m_ProviderIntialized_9(bool value)
{
___m_ProviderIntialized_9 = value;
}
inline static int32_t get_offset_of_m_ProviderStarted_10() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042, ___m_ProviderStarted_10)); }
inline bool get_m_ProviderStarted_10() const { return ___m_ProviderStarted_10; }
inline bool* get_address_of_m_ProviderStarted_10() { return &___m_ProviderStarted_10; }
inline void set_m_ProviderStarted_10(bool value)
{
___m_ProviderStarted_10 = value;
}
};
struct XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields
{
public:
// System.String UnityEngine.XR.Management.XRGeneralSettings::k_SettingsKey
String_t* ___k_SettingsKey_4;
// UnityEngine.XR.Management.XRGeneralSettings UnityEngine.XR.Management.XRGeneralSettings::s_RuntimeSettingsInstance
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * ___s_RuntimeSettingsInstance_5;
public:
inline static int32_t get_offset_of_k_SettingsKey_4() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields, ___k_SettingsKey_4)); }
inline String_t* get_k_SettingsKey_4() const { return ___k_SettingsKey_4; }
inline String_t** get_address_of_k_SettingsKey_4() { return &___k_SettingsKey_4; }
inline void set_k_SettingsKey_4(String_t* value)
{
___k_SettingsKey_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___k_SettingsKey_4), (void*)value);
}
inline static int32_t get_offset_of_s_RuntimeSettingsInstance_5() { return static_cast<int32_t>(offsetof(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields, ___s_RuntimeSettingsInstance_5)); }
inline XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * get_s_RuntimeSettingsInstance_5() const { return ___s_RuntimeSettingsInstance_5; }
inline XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 ** get_address_of_s_RuntimeSettingsInstance_5() { return &___s_RuntimeSettingsInstance_5; }
inline void set_s_RuntimeSettingsInstance_5(XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042 * value)
{
___s_RuntimeSettingsInstance_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_RuntimeSettingsInstance_5), (void*)value);
}
};
// UnityEngine.XR.Management.XRLoader
struct XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
public:
};
// UnityEngine.XR.Management.XRManagerSettings
struct XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_InitializationComplete
bool ___m_InitializationComplete_4;
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_RequiresSettingsUpdate
bool ___m_RequiresSettingsUpdate_5;
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_AutomaticLoading
bool ___m_AutomaticLoading_6;
// System.Boolean UnityEngine.XR.Management.XRManagerSettings::m_AutomaticRunning
bool ___m_AutomaticRunning_7;
// System.Collections.Generic.List`1<UnityEngine.XR.Management.XRLoader> UnityEngine.XR.Management.XRManagerSettings::m_Loaders
List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * ___m_Loaders_8;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.Management.XRLoader> UnityEngine.XR.Management.XRManagerSettings::m_RegisteredLoaders
HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 * ___m_RegisteredLoaders_9;
// UnityEngine.XR.Management.XRLoader UnityEngine.XR.Management.XRManagerSettings::<activeLoader>k__BackingField
XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * ___U3CactiveLoaderU3Ek__BackingField_10;
public:
inline static int32_t get_offset_of_m_InitializationComplete_4() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_InitializationComplete_4)); }
inline bool get_m_InitializationComplete_4() const { return ___m_InitializationComplete_4; }
inline bool* get_address_of_m_InitializationComplete_4() { return &___m_InitializationComplete_4; }
inline void set_m_InitializationComplete_4(bool value)
{
___m_InitializationComplete_4 = value;
}
inline static int32_t get_offset_of_m_RequiresSettingsUpdate_5() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_RequiresSettingsUpdate_5)); }
inline bool get_m_RequiresSettingsUpdate_5() const { return ___m_RequiresSettingsUpdate_5; }
inline bool* get_address_of_m_RequiresSettingsUpdate_5() { return &___m_RequiresSettingsUpdate_5; }
inline void set_m_RequiresSettingsUpdate_5(bool value)
{
___m_RequiresSettingsUpdate_5 = value;
}
inline static int32_t get_offset_of_m_AutomaticLoading_6() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_AutomaticLoading_6)); }
inline bool get_m_AutomaticLoading_6() const { return ___m_AutomaticLoading_6; }
inline bool* get_address_of_m_AutomaticLoading_6() { return &___m_AutomaticLoading_6; }
inline void set_m_AutomaticLoading_6(bool value)
{
___m_AutomaticLoading_6 = value;
}
inline static int32_t get_offset_of_m_AutomaticRunning_7() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_AutomaticRunning_7)); }
inline bool get_m_AutomaticRunning_7() const { return ___m_AutomaticRunning_7; }
inline bool* get_address_of_m_AutomaticRunning_7() { return &___m_AutomaticRunning_7; }
inline void set_m_AutomaticRunning_7(bool value)
{
___m_AutomaticRunning_7 = value;
}
inline static int32_t get_offset_of_m_Loaders_8() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_Loaders_8)); }
inline List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * get_m_Loaders_8() const { return ___m_Loaders_8; }
inline List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 ** get_address_of_m_Loaders_8() { return &___m_Loaders_8; }
inline void set_m_Loaders_8(List_1_t6331523A19E51FB87CA899920C03B10A48A562B0 * value)
{
___m_Loaders_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Loaders_8), (void*)value);
}
inline static int32_t get_offset_of_m_RegisteredLoaders_9() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___m_RegisteredLoaders_9)); }
inline HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 * get_m_RegisteredLoaders_9() const { return ___m_RegisteredLoaders_9; }
inline HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 ** get_address_of_m_RegisteredLoaders_9() { return &___m_RegisteredLoaders_9; }
inline void set_m_RegisteredLoaders_9(HashSet_1_t0BB7AD0707F32BD77A251670A64E2F9355AC13F6 * value)
{
___m_RegisteredLoaders_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RegisteredLoaders_9), (void*)value);
}
inline static int32_t get_offset_of_U3CactiveLoaderU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F, ___U3CactiveLoaderU3Ek__BackingField_10)); }
inline XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * get_U3CactiveLoaderU3Ek__BackingField_10() const { return ___U3CactiveLoaderU3Ek__BackingField_10; }
inline XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B ** get_address_of_U3CactiveLoaderU3Ek__BackingField_10() { return &___U3CactiveLoaderU3Ek__BackingField_10; }
inline void set_U3CactiveLoaderU3Ek__BackingField_10(XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B * value)
{
___U3CactiveLoaderU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CactiveLoaderU3Ek__BackingField_10), (void*)value);
}
};
// UnityEngine.Analytics.AnalyticsSessionInfo/IdentityTokenChanged
struct IdentityTokenChanged_t306C7E37727221C44C9D5843455B1FD7286C38B1 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged
struct SessionStateChanged_tB042EAE0E6718825B246F7744C738DC80E529ACF : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AudioClip/PCMReaderCallback
struct PCMReaderCallback_t9CA1437D36509A9FAC5EDD8FF2BC3259C24D0E0B : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AudioClip/PCMSetPositionCallback
struct PCMSetPositionCallback_tBDD99E7C0697687F1E7B06CDD5DE444A3709CF4C : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler
struct SampleFramesHandler_tCF0215103F7BD1AD5397731D86079D6E68AC9487 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.AudioSettings/AudioConfigurationChangeHandler
struct AudioConfigurationChangeHandler_t1A997C51DF7B553A94DAD358F8D968308994774A : public MulticastDelegate_t
{
public:
public:
};
// Dissonance.Audio.Playback.DecoderPipelinePool/<>c__DisplayClass2_0
struct U3CU3Ec__DisplayClass2_0_t5AF87663FB0CE6D0A94A9F189E9D5A206C900E00 : public RuntimeObject
{
public:
// Dissonance.Audio.Playback.FrameFormat Dissonance.Audio.Playback.DecoderPipelinePool/<>c__DisplayClass2_0::format
FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 ___format_0;
// System.Action`1<Dissonance.Audio.Playback.DecoderPipeline> Dissonance.Audio.Playback.DecoderPipelinePool/<>c__DisplayClass2_0::<>9__1
Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C * ___U3CU3E9__1_1;
public:
inline static int32_t get_offset_of_format_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass2_0_t5AF87663FB0CE6D0A94A9F189E9D5A206C900E00, ___format_0)); }
inline FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 get_format_0() const { return ___format_0; }
inline FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 * get_address_of_format_0() { return &___format_0; }
inline void set_format_0(FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 value)
{
___format_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___format_0))->___WaveFormat_1), (void*)NULL);
}
inline static int32_t get_offset_of_U3CU3E9__1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass2_0_t5AF87663FB0CE6D0A94A9F189E9D5A206C900E00, ___U3CU3E9__1_1)); }
inline Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C * get_U3CU3E9__1_1() const { return ___U3CU3E9__1_1; }
inline Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C ** get_address_of_U3CU3E9__1_1() { return &___U3CU3E9__1_1; }
inline void set_U3CU3E9__1_1(Action_1_t30316159E12E221BC569EDE55490E51EF7F72B1C * value)
{
___U3CU3E9__1_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__1_1), (void*)value);
}
};
// UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder
struct HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB : public RuntimeObject
{
public:
// System.String UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::displayName
String_t* ___displayName_0;
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::hidDescriptor
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E ___hidDescriptor_1;
// System.String UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::parentLayout
String_t* ___parentLayout_2;
// System.Type UnityEngine.InputSystem.HID.HID/HIDLayoutBuilder::deviceType
Type_t * ___deviceType_3;
public:
inline static int32_t get_offset_of_displayName_0() { return static_cast<int32_t>(offsetof(HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB, ___displayName_0)); }
inline String_t* get_displayName_0() const { return ___displayName_0; }
inline String_t** get_address_of_displayName_0() { return &___displayName_0; }
inline void set_displayName_0(String_t* value)
{
___displayName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayName_0), (void*)value);
}
inline static int32_t get_offset_of_hidDescriptor_1() { return static_cast<int32_t>(offsetof(HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB, ___hidDescriptor_1)); }
inline HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E get_hidDescriptor_1() const { return ___hidDescriptor_1; }
inline HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E * get_address_of_hidDescriptor_1() { return &___hidDescriptor_1; }
inline void set_hidDescriptor_1(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E value)
{
___hidDescriptor_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___hidDescriptor_1))->___elements_7), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___hidDescriptor_1))->___collections_8), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_parentLayout_2() { return static_cast<int32_t>(offsetof(HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB, ___parentLayout_2)); }
inline String_t* get_parentLayout_2() const { return ___parentLayout_2; }
inline String_t** get_address_of_parentLayout_2() { return &___parentLayout_2; }
inline void set_parentLayout_2(String_t* value)
{
___parentLayout_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parentLayout_2), (void*)value);
}
inline static int32_t get_offset_of_deviceType_3() { return static_cast<int32_t>(offsetof(HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB, ___deviceType_3)); }
inline Type_t * get_deviceType_3() const { return ___deviceType_3; }
inline Type_t ** get_address_of_deviceType_3() { return &___deviceType_3; }
inline void set_deviceType_3(Type_t * value)
{
___deviceType_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceType_3), (void*)value);
}
};
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem
struct ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB
{
public:
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<name>k__BackingField
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___U3CnameU3Ek__BackingField_0;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<layout>k__BackingField
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___U3ClayoutU3Ek__BackingField_1;
// UnityEngine.InputSystem.Utilities.InternedString UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<variants>k__BackingField
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 ___U3CvariantsU3Ek__BackingField_2;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<useStateFrom>k__BackingField
String_t* ___U3CuseStateFromU3Ek__BackingField_3;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<displayName>k__BackingField
String_t* ___U3CdisplayNameU3Ek__BackingField_4;
// System.String UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<shortDisplayName>k__BackingField
String_t* ___U3CshortDisplayNameU3Ek__BackingField_5;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<usages>k__BackingField
ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 ___U3CusagesU3Ek__BackingField_6;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.InternedString> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<aliases>k__BackingField
ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 ___U3CaliasesU3Ek__BackingField_7;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.NamedValue> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<parameters>k__BackingField
ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 ___U3CparametersU3Ek__BackingField_8;
// UnityEngine.InputSystem.Utilities.ReadOnlyArray`1<UnityEngine.InputSystem.Utilities.NameAndParameters> UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<processors>k__BackingField
ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518 ___U3CprocessorsU3Ek__BackingField_9;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<offset>k__BackingField
uint32_t ___U3CoffsetU3Ek__BackingField_10;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<bit>k__BackingField
uint32_t ___U3CbitU3Ek__BackingField_11;
// System.UInt32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<sizeInBits>k__BackingField
uint32_t ___U3CsizeInBitsU3Ek__BackingField_12;
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<format>k__BackingField
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___U3CformatU3Ek__BackingField_13;
// UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem/Flags UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<flags>k__BackingField
int32_t ___U3CflagsU3Ek__BackingField_14;
// System.Int32 UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<arraySize>k__BackingField
int32_t ___U3CarraySizeU3Ek__BackingField_15;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<defaultState>k__BackingField
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 ___U3CdefaultStateU3Ek__BackingField_16;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<minValue>k__BackingField
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 ___U3CminValueU3Ek__BackingField_17;
// UnityEngine.InputSystem.Utilities.PrimitiveValue UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem::<maxValue>k__BackingField
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 ___U3CmaxValueU3Ek__BackingField_18;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CnameU3Ek__BackingField_0)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_U3CnameU3Ek__BackingField_0() const { return ___U3CnameU3Ek__BackingField_0; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_U3CnameU3Ek__BackingField_0() { return &___U3CnameU3Ek__BackingField_0; }
inline void set_U3CnameU3Ek__BackingField_0(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___U3CnameU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CnameU3Ek__BackingField_0))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CnameU3Ek__BackingField_0))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3ClayoutU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3ClayoutU3Ek__BackingField_1)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_U3ClayoutU3Ek__BackingField_1() const { return ___U3ClayoutU3Ek__BackingField_1; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_U3ClayoutU3Ek__BackingField_1() { return &___U3ClayoutU3Ek__BackingField_1; }
inline void set_U3ClayoutU3Ek__BackingField_1(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___U3ClayoutU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3ClayoutU3Ek__BackingField_1))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3ClayoutU3Ek__BackingField_1))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CvariantsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CvariantsU3Ek__BackingField_2)); }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 get_U3CvariantsU3Ek__BackingField_2() const { return ___U3CvariantsU3Ek__BackingField_2; }
inline InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 * get_address_of_U3CvariantsU3Ek__BackingField_2() { return &___U3CvariantsU3Ek__BackingField_2; }
inline void set_U3CvariantsU3Ek__BackingField_2(InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1 value)
{
___U3CvariantsU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CvariantsU3Ek__BackingField_2))->___m_StringOriginalCase_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CvariantsU3Ek__BackingField_2))->___m_StringLowerCase_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CuseStateFromU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CuseStateFromU3Ek__BackingField_3)); }
inline String_t* get_U3CuseStateFromU3Ek__BackingField_3() const { return ___U3CuseStateFromU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CuseStateFromU3Ek__BackingField_3() { return &___U3CuseStateFromU3Ek__BackingField_3; }
inline void set_U3CuseStateFromU3Ek__BackingField_3(String_t* value)
{
___U3CuseStateFromU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CuseStateFromU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CdisplayNameU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CdisplayNameU3Ek__BackingField_4)); }
inline String_t* get_U3CdisplayNameU3Ek__BackingField_4() const { return ___U3CdisplayNameU3Ek__BackingField_4; }
inline String_t** get_address_of_U3CdisplayNameU3Ek__BackingField_4() { return &___U3CdisplayNameU3Ek__BackingField_4; }
inline void set_U3CdisplayNameU3Ek__BackingField_4(String_t* value)
{
___U3CdisplayNameU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayNameU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CshortDisplayNameU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CshortDisplayNameU3Ek__BackingField_5)); }
inline String_t* get_U3CshortDisplayNameU3Ek__BackingField_5() const { return ___U3CshortDisplayNameU3Ek__BackingField_5; }
inline String_t** get_address_of_U3CshortDisplayNameU3Ek__BackingField_5() { return &___U3CshortDisplayNameU3Ek__BackingField_5; }
inline void set_U3CshortDisplayNameU3Ek__BackingField_5(String_t* value)
{
___U3CshortDisplayNameU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CshortDisplayNameU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CusagesU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CusagesU3Ek__BackingField_6)); }
inline ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 get_U3CusagesU3Ek__BackingField_6() const { return ___U3CusagesU3Ek__BackingField_6; }
inline ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 * get_address_of_U3CusagesU3Ek__BackingField_6() { return &___U3CusagesU3Ek__BackingField_6; }
inline void set_U3CusagesU3Ek__BackingField_6(ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 value)
{
___U3CusagesU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CusagesU3Ek__BackingField_6))->___m_Array_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CaliasesU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CaliasesU3Ek__BackingField_7)); }
inline ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 get_U3CaliasesU3Ek__BackingField_7() const { return ___U3CaliasesU3Ek__BackingField_7; }
inline ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 * get_address_of_U3CaliasesU3Ek__BackingField_7() { return &___U3CaliasesU3Ek__BackingField_7; }
inline void set_U3CaliasesU3Ek__BackingField_7(ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 value)
{
___U3CaliasesU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CaliasesU3Ek__BackingField_7))->___m_Array_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CparametersU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CparametersU3Ek__BackingField_8)); }
inline ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 get_U3CparametersU3Ek__BackingField_8() const { return ___U3CparametersU3Ek__BackingField_8; }
inline ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 * get_address_of_U3CparametersU3Ek__BackingField_8() { return &___U3CparametersU3Ek__BackingField_8; }
inline void set_U3CparametersU3Ek__BackingField_8(ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 value)
{
___U3CparametersU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CparametersU3Ek__BackingField_8))->___m_Array_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CprocessorsU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CprocessorsU3Ek__BackingField_9)); }
inline ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518 get_U3CprocessorsU3Ek__BackingField_9() const { return ___U3CprocessorsU3Ek__BackingField_9; }
inline ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518 * get_address_of_U3CprocessorsU3Ek__BackingField_9() { return &___U3CprocessorsU3Ek__BackingField_9; }
inline void set_U3CprocessorsU3Ek__BackingField_9(ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518 value)
{
___U3CprocessorsU3Ek__BackingField_9 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CprocessorsU3Ek__BackingField_9))->___m_Array_0), (void*)NULL);
}
inline static int32_t get_offset_of_U3CoffsetU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CoffsetU3Ek__BackingField_10)); }
inline uint32_t get_U3CoffsetU3Ek__BackingField_10() const { return ___U3CoffsetU3Ek__BackingField_10; }
inline uint32_t* get_address_of_U3CoffsetU3Ek__BackingField_10() { return &___U3CoffsetU3Ek__BackingField_10; }
inline void set_U3CoffsetU3Ek__BackingField_10(uint32_t value)
{
___U3CoffsetU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CbitU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CbitU3Ek__BackingField_11)); }
inline uint32_t get_U3CbitU3Ek__BackingField_11() const { return ___U3CbitU3Ek__BackingField_11; }
inline uint32_t* get_address_of_U3CbitU3Ek__BackingField_11() { return &___U3CbitU3Ek__BackingField_11; }
inline void set_U3CbitU3Ek__BackingField_11(uint32_t value)
{
___U3CbitU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CsizeInBitsU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CsizeInBitsU3Ek__BackingField_12)); }
inline uint32_t get_U3CsizeInBitsU3Ek__BackingField_12() const { return ___U3CsizeInBitsU3Ek__BackingField_12; }
inline uint32_t* get_address_of_U3CsizeInBitsU3Ek__BackingField_12() { return &___U3CsizeInBitsU3Ek__BackingField_12; }
inline void set_U3CsizeInBitsU3Ek__BackingField_12(uint32_t value)
{
___U3CsizeInBitsU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CformatU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CformatU3Ek__BackingField_13)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_U3CformatU3Ek__BackingField_13() const { return ___U3CformatU3Ek__BackingField_13; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_U3CformatU3Ek__BackingField_13() { return &___U3CformatU3Ek__BackingField_13; }
inline void set_U3CformatU3Ek__BackingField_13(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___U3CformatU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CflagsU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CflagsU3Ek__BackingField_14)); }
inline int32_t get_U3CflagsU3Ek__BackingField_14() const { return ___U3CflagsU3Ek__BackingField_14; }
inline int32_t* get_address_of_U3CflagsU3Ek__BackingField_14() { return &___U3CflagsU3Ek__BackingField_14; }
inline void set_U3CflagsU3Ek__BackingField_14(int32_t value)
{
___U3CflagsU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CarraySizeU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CarraySizeU3Ek__BackingField_15)); }
inline int32_t get_U3CarraySizeU3Ek__BackingField_15() const { return ___U3CarraySizeU3Ek__BackingField_15; }
inline int32_t* get_address_of_U3CarraySizeU3Ek__BackingField_15() { return &___U3CarraySizeU3Ek__BackingField_15; }
inline void set_U3CarraySizeU3Ek__BackingField_15(int32_t value)
{
___U3CarraySizeU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CdefaultStateU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CdefaultStateU3Ek__BackingField_16)); }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 get_U3CdefaultStateU3Ek__BackingField_16() const { return ___U3CdefaultStateU3Ek__BackingField_16; }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 * get_address_of_U3CdefaultStateU3Ek__BackingField_16() { return &___U3CdefaultStateU3Ek__BackingField_16; }
inline void set_U3CdefaultStateU3Ek__BackingField_16(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 value)
{
___U3CdefaultStateU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CminValueU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CminValueU3Ek__BackingField_17)); }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 get_U3CminValueU3Ek__BackingField_17() const { return ___U3CminValueU3Ek__BackingField_17; }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 * get_address_of_U3CminValueU3Ek__BackingField_17() { return &___U3CminValueU3Ek__BackingField_17; }
inline void set_U3CminValueU3Ek__BackingField_17(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 value)
{
___U3CminValueU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CmaxValueU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB, ___U3CmaxValueU3Ek__BackingField_18)); }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 get_U3CmaxValueU3Ek__BackingField_18() const { return ___U3CmaxValueU3Ek__BackingField_18; }
inline PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 * get_address_of_U3CmaxValueU3Ek__BackingField_18() { return &___U3CmaxValueU3Ek__BackingField_18; }
inline void set_U3CmaxValueU3Ek__BackingField_18(PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3 value)
{
___U3CmaxValueU3Ek__BackingField_18 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem
struct ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB_marshaled_pinvoke
{
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_pinvoke ___U3CnameU3Ek__BackingField_0;
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_pinvoke ___U3ClayoutU3Ek__BackingField_1;
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_pinvoke ___U3CvariantsU3Ek__BackingField_2;
char* ___U3CuseStateFromU3Ek__BackingField_3;
char* ___U3CdisplayNameU3Ek__BackingField_4;
char* ___U3CshortDisplayNameU3Ek__BackingField_5;
ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 ___U3CusagesU3Ek__BackingField_6;
ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 ___U3CaliasesU3Ek__BackingField_7;
ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 ___U3CparametersU3Ek__BackingField_8;
ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518 ___U3CprocessorsU3Ek__BackingField_9;
uint32_t ___U3CoffsetU3Ek__BackingField_10;
uint32_t ___U3CbitU3Ek__BackingField_11;
uint32_t ___U3CsizeInBitsU3Ek__BackingField_12;
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___U3CformatU3Ek__BackingField_13;
int32_t ___U3CflagsU3Ek__BackingField_14;
int32_t ___U3CarraySizeU3Ek__BackingField_15;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_pinvoke ___U3CdefaultStateU3Ek__BackingField_16;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_pinvoke ___U3CminValueU3Ek__BackingField_17;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_pinvoke ___U3CmaxValueU3Ek__BackingField_18;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Layouts.InputControlLayout/ControlItem
struct ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB_marshaled_com
{
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_com ___U3CnameU3Ek__BackingField_0;
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_com ___U3ClayoutU3Ek__BackingField_1;
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1_marshaled_com ___U3CvariantsU3Ek__BackingField_2;
Il2CppChar* ___U3CuseStateFromU3Ek__BackingField_3;
Il2CppChar* ___U3CdisplayNameU3Ek__BackingField_4;
Il2CppChar* ___U3CshortDisplayNameU3Ek__BackingField_5;
ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 ___U3CusagesU3Ek__BackingField_6;
ReadOnlyArray_1_t236D189A64A0E7F20D6142F9F9DF89F9CCCC3786 ___U3CaliasesU3Ek__BackingField_7;
ReadOnlyArray_1_tFDA4E05F8068095EC38E8C851B98D019822669F6 ___U3CparametersU3Ek__BackingField_8;
ReadOnlyArray_1_t202272649DFA3D41458D7564B696C42FF5BC2518 ___U3CprocessorsU3Ek__BackingField_9;
uint32_t ___U3CoffsetU3Ek__BackingField_10;
uint32_t ___U3CbitU3Ek__BackingField_11;
uint32_t ___U3CsizeInBitsU3Ek__BackingField_12;
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___U3CformatU3Ek__BackingField_13;
int32_t ___U3CflagsU3Ek__BackingField_14;
int32_t ___U3CarraySizeU3Ek__BackingField_15;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_com ___U3CdefaultStateU3Ek__BackingField_16;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_com ___U3CminValueU3Ek__BackingField_17;
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3_marshaled_com ___U3CmaxValueU3Ek__BackingField_18;
};
// UnityEngine.AI.NavMesh/OnNavMeshPreUpdate
struct OnNavMeshPreUpdate_t5E34F761F39A1F6B898F0E729B36C0782B92D572 : public MulticastDelegate_t
{
public:
public:
};
// Mirror.Cloud.Example.NetworkManagerListServer/OnPlayerListChanged
struct OnPlayerListChanged_tAE9C3FA9011C49CF6D1CDE78E4B040C0DFEE50CF : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo
struct OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501
{
public:
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo::eventPtr
InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 ___eventPtr_0;
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo::buffer
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___buffer_1;
// UnityEngine.InputSystem.InputDevice UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo::device
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___device_2;
// UnityEngine.InputSystem.OnScreen.OnScreenControl UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo::firstControl
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * ___firstControl_3;
public:
inline static int32_t get_offset_of_eventPtr_0() { return static_cast<int32_t>(offsetof(OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501, ___eventPtr_0)); }
inline InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 get_eventPtr_0() const { return ___eventPtr_0; }
inline InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 * get_address_of_eventPtr_0() { return &___eventPtr_0; }
inline void set_eventPtr_0(InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 value)
{
___eventPtr_0 = value;
}
inline static int32_t get_offset_of_buffer_1() { return static_cast<int32_t>(offsetof(OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501, ___buffer_1)); }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_buffer_1() const { return ___buffer_1; }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_buffer_1() { return &___buffer_1; }
inline void set_buffer_1(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
{
___buffer_1 = value;
}
inline static int32_t get_offset_of_device_2() { return static_cast<int32_t>(offsetof(OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501, ___device_2)); }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * get_device_2() const { return ___device_2; }
inline InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 ** get_address_of_device_2() { return &___device_2; }
inline void set_device_2(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * value)
{
___device_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___device_2), (void*)value);
}
inline static int32_t get_offset_of_firstControl_3() { return static_cast<int32_t>(offsetof(OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501, ___firstControl_3)); }
inline OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * get_firstControl_3() const { return ___firstControl_3; }
inline OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 ** get_address_of_firstControl_3() { return &___firstControl_3; }
inline void set_firstControl_3(OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * value)
{
___firstControl_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstControl_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo
struct OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501_marshaled_pinvoke
{
InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 ___eventPtr_0;
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___buffer_1;
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___device_2;
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * ___firstControl_3;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo
struct OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501_marshaled_com
{
InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 ___eventPtr_0;
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___buffer_1;
InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 * ___device_2;
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * ___firstControl_3;
};
// UnityEngine.RemoteSettings/UpdatedEventHandler
struct UpdatedEventHandler_tB65DDD5524F88B07DDF23FD1607DF1887404EC55 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Experimental.TerrainAPI.TerrainCallbacks/HeightmapChangedCallback
struct HeightmapChangedCallback_tB00DA531F9C32468E88700A5C2D55E05189E0FA0 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Experimental.TerrainAPI.TerrainCallbacks/TextureChangedCallback
struct TextureChangedCallback_tD8BA8EA99CC9FA597E4AA143944720822EFB7D9F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Video.VideoPlayer/ErrorEventHandler
struct ErrorEventHandler_tD47781EBB7CF0CC4C111496024BD59B1D1A6A1F2 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Video.VideoPlayer/EventHandler
struct EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Video.VideoPlayer/FrameReadyEventHandler
struct FrameReadyEventHandler_t9529BD5A34E9C8BE7D8A39D46A6C4ABC673374EC : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Video.VideoPlayer/TimeEventHandler
struct TimeEventHandler_t7CA131EB85E0FFCBE8660E030698BD83D3994DD8 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem/Provider
struct Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058 : public RuntimeObject
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.XR.InteractionSubsystems.ActivateGestureEvent> UnityEngine.XR.InteractionSubsystems.XRGestureSubsystem/Provider::m_ActivateGestureEvents
NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07 ___m_ActivateGestureEvents_0;
public:
inline static int32_t get_offset_of_m_ActivateGestureEvents_0() { return static_cast<int32_t>(offsetof(Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058, ___m_ActivateGestureEvents_0)); }
inline NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07 get_m_ActivateGestureEvents_0() const { return ___m_ActivateGestureEvents_0; }
inline NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07 * get_address_of_m_ActivateGestureEvents_0() { return &___m_ActivateGestureEvents_0; }
inline void set_m_ActivateGestureEvents_0(NativeArray_1_t8D140318CDC9E42C91BBDF4BD053D165A2527E07 value)
{
___m_ActivateGestureEvents_0 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TerrainFilter
struct TerrainFilter_t1A8786164AA07CE2D019E2B70A3217FD0F4A46E7 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider/GetGestureEventsPtrFunction
struct GetGestureEventsPtrFunction_tE0B89B0CE550AE2FAFA32DF86191187734D08A82 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.UI.PointerModel>
struct InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6 ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
PointerModelU5BU5D_t590CFD9DF7B935E2AA16D64A6FD958543D7415B5* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B, ___firstValue_1)); }
inline PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6 get_firstValue_1() const { return ___firstValue_1; }
inline PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6 * get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6 value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___firstValue_1))->___leftButton_1))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___firstValue_1))->___leftButton_1))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___leftButton_1))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___leftButton_1))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___leftButton_1))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___leftButton_1))->___dragObject_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___firstValue_1))->___rightButton_2))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___firstValue_1))->___rightButton_2))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___rightButton_2))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___rightButton_2))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___rightButton_2))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___rightButton_2))->___dragObject_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___firstValue_1))->___middleButton_3))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___firstValue_1))->___middleButton_3))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___middleButton_3))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___middleButton_3))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___middleButton_3))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___firstValue_1))->___middleButton_3))->___dragObject_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___eventData_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B, ___additionalValues_2)); }
inline PointerModelU5BU5D_t590CFD9DF7B935E2AA16D64A6FD958543D7415B5* get_additionalValues_2() const { return ___additionalValues_2; }
inline PointerModelU5BU5D_t590CFD9DF7B935E2AA16D64A6FD958543D7415B5** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(PointerModelU5BU5D_t590CFD9DF7B935E2AA16D64A6FD958543D7415B5* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo>
struct InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888
{
public:
// System.Int32 UnityEngine.InputSystem.Utilities.InlinedArray`1::length
int32_t ___length_0;
// TValue UnityEngine.InputSystem.Utilities.InlinedArray`1::firstValue
OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501 ___firstValue_1;
// TValue[] UnityEngine.InputSystem.Utilities.InlinedArray`1::additionalValues
OnScreenDeviceInfoU5BU5D_t24916F5CFCC7E980DCE0944066FB4724EC60D2E3* ___additionalValues_2;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_firstValue_1() { return static_cast<int32_t>(offsetof(InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888, ___firstValue_1)); }
inline OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501 get_firstValue_1() const { return ___firstValue_1; }
inline OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501 * get_address_of_firstValue_1() { return &___firstValue_1; }
inline void set_firstValue_1(OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501 value)
{
___firstValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___device_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___firstValue_1))->___firstControl_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_additionalValues_2() { return static_cast<int32_t>(offsetof(InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888, ___additionalValues_2)); }
inline OnScreenDeviceInfoU5BU5D_t24916F5CFCC7E980DCE0944066FB4724EC60D2E3* get_additionalValues_2() const { return ___additionalValues_2; }
inline OnScreenDeviceInfoU5BU5D_t24916F5CFCC7E980DCE0944066FB4724EC60D2E3** get_address_of_additionalValues_2() { return &___additionalValues_2; }
inline void set_additionalValues_2(OnScreenDeviceInfoU5BU5D_t24916F5CFCC7E980DCE0944066FB4724EC60D2E3* value)
{
___additionalValues_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___additionalValues_2), (void*)value);
}
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.XR.Bone>
struct InputControl_1_t3E145930F69D67E7F81CDDF20734060B97CA81E6 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_t3E145930F69D67E7F81CDDF20734060B97CA81E6, ___m_ProcessorStack_21)); }
inline InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_t4CF65576218A6DB7AABC67612C9E800A6C4AF7CA value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<System.Double>
struct InputControl_1_tCEC765E512EEAE0ECC0ECDDEC11A6EE0C9893BC2 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_tCEC765E512EEAE0ECC0ECDDEC11A6EE0C9893BC2, ___m_ProcessorStack_21)); }
inline InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_tC3CC7D71207668673025168951214BB9D7298F2C value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.XR.Eyes>
struct InputControl_1_tB25C17A3AD406EFF82531F2E900AEBAAF7D0C8CD : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_tB25C17A3AD406EFF82531F2E900AEBAAF7D0C8CD, ___m_ProcessorStack_21)); }
inline InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_t05CBA4988E4131E03C18BBE65214B610DF6E843B value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<System.Int32>
struct InputControl_1_t97B73C112AD1F0B824D03B6C2E08930913382CB4 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37 ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_t97B73C112AD1F0B824D03B6C2E08930913382CB4, ___m_ProcessorStack_21)); }
inline InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37 get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37 * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_t23AFAB4F217C0BE8EBB3BAA1E2616A4939E76F37 value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.Quaternion>
struct InputControl_1_tA0FE8AA28FA675D0A04C7FD80E7CB9838A95C873 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3 ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_tA0FE8AA28FA675D0A04C7FD80E7CB9838A95C873, ___m_ProcessorStack_21)); }
inline InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3 get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3 * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_t5F9D87A120DC48129EBCBB4384FD9DB278D8F4A3 value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<System.Single>
struct InputControl_1_t86865D61A697426B9744686BFE15974F6729C375 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4 ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_t86865D61A697426B9744686BFE15974F6729C375, ___m_ProcessorStack_21)); }
inline InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4 get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4 * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_tD3B376DC4991B4AE203114B740BE5C3DC33856A4 value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.TouchPhase>
struct InputControl_1_t95D8AB2F39ADA1DC749B35BD3C76B383B6D4B209 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53 ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_t95D8AB2F39ADA1DC749B35BD3C76B383B6D4B209, ___m_ProcessorStack_21)); }
inline InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53 get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53 * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_t71C7F160A9436ACCD2948C8C2464E37D61EE0A53 value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.InputSystem.LowLevel.TouchState>
struct InputControl_1_tA2D886CF5503D6C55FDC6D1278342E48A6550DE0 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707 ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_tA2D886CF5503D6C55FDC6D1278342E48A6550DE0, ___m_ProcessorStack_21)); }
inline InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707 get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707 * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_t1D4B6E41D03144FD6215883A7FDFBF8250F9E707 value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector2>
struct InputControl_1_tD82F7E923A520F91FD4B14F9DD1E6CC95CBF4527 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028 ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_tD82F7E923A520F91FD4B14F9DD1E6CC95CBF4527, ___m_ProcessorStack_21)); }
inline InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028 get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028 * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_tCA663C72090E8E22F323BEAB30C08C19024F7028 value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.InputControl`1<UnityEngine.Vector3>
struct InputControl_1_t4367B5E7BAEEDEC9C0DD612E2C99D0D87B3645B0 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputProcessor`1<TValue>> UnityEngine.InputSystem.InputControl`1::m_ProcessorStack
InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9 ___m_ProcessorStack_21;
public:
inline static int32_t get_offset_of_m_ProcessorStack_21() { return static_cast<int32_t>(offsetof(InputControl_1_t4367B5E7BAEEDEC9C0DD612E2C99D0D87B3645B0, ___m_ProcessorStack_21)); }
inline InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9 get_m_ProcessorStack_21() const { return ___m_ProcessorStack_21; }
inline InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9 * get_address_of_m_ProcessorStack_21() { return &___m_ProcessorStack_21; }
inline void set_m_ProcessorStack_21(InlinedArray_1_t23F756E2F3836046C3FE7353BB9F895D336B60C9 value)
{
___m_ProcessorStack_21 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ProcessorStack_21))->___additionalValues_2), (void*)NULL);
#endif
}
};
// UnityEngine.InputSystem.LowLevel.ActionEvent
struct ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.ActionEvent::baseEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_0;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ControlIndex_1_OffsetPadding[20];
// System.UInt16 UnityEngine.InputSystem.LowLevel.ActionEvent::m_ControlIndex
uint16_t ___m_ControlIndex_1;
};
#pragma pack(pop, tp)
struct
{
char ___m_ControlIndex_1_OffsetPadding_forAlignmentOnly[20];
uint16_t ___m_ControlIndex_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_BindingIndex_2_OffsetPadding[22];
// System.UInt16 UnityEngine.InputSystem.LowLevel.ActionEvent::m_BindingIndex
uint16_t ___m_BindingIndex_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_BindingIndex_2_OffsetPadding_forAlignmentOnly[22];
uint16_t ___m_BindingIndex_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_InteractionIndex_3_OffsetPadding[24];
// System.UInt16 UnityEngine.InputSystem.LowLevel.ActionEvent::m_InteractionIndex
uint16_t ___m_InteractionIndex_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_InteractionIndex_3_OffsetPadding_forAlignmentOnly[24];
uint16_t ___m_InteractionIndex_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StateIndex_4_OffsetPadding[26];
// System.Byte UnityEngine.InputSystem.LowLevel.ActionEvent::m_StateIndex
uint8_t ___m_StateIndex_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_StateIndex_4_OffsetPadding_forAlignmentOnly[26];
uint8_t ___m_StateIndex_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_Phase_5_OffsetPadding[27];
// System.Byte UnityEngine.InputSystem.LowLevel.ActionEvent::m_Phase
uint8_t ___m_Phase_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_Phase_5_OffsetPadding_forAlignmentOnly[27];
uint8_t ___m_Phase_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_StartTime_6_OffsetPadding[28];
// System.Double UnityEngine.InputSystem.LowLevel.ActionEvent::m_StartTime
double ___m_StartTime_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_StartTime_6_OffsetPadding_forAlignmentOnly[28];
double ___m_StartTime_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_ValueData_7_OffsetPadding[36];
// UnityEngine.InputSystem.LowLevel.ActionEvent/<m_ValueData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.ActionEvent::m_ValueData
U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B ___m_ValueData_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_ValueData_7_OffsetPadding_forAlignmentOnly[36];
U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B ___m_ValueData_7_forAlignmentOnly;
};
};
};
uint8_t ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF__padding[37];
};
public:
inline static int32_t get_offset_of_baseEvent_0() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___baseEvent_0)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 get_baseEvent_0() const { return ___baseEvent_0; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_address_of_baseEvent_0() { return &___baseEvent_0; }
inline void set_baseEvent_0(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 value)
{
___baseEvent_0 = value;
}
inline static int32_t get_offset_of_m_ControlIndex_1() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___m_ControlIndex_1)); }
inline uint16_t get_m_ControlIndex_1() const { return ___m_ControlIndex_1; }
inline uint16_t* get_address_of_m_ControlIndex_1() { return &___m_ControlIndex_1; }
inline void set_m_ControlIndex_1(uint16_t value)
{
___m_ControlIndex_1 = value;
}
inline static int32_t get_offset_of_m_BindingIndex_2() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___m_BindingIndex_2)); }
inline uint16_t get_m_BindingIndex_2() const { return ___m_BindingIndex_2; }
inline uint16_t* get_address_of_m_BindingIndex_2() { return &___m_BindingIndex_2; }
inline void set_m_BindingIndex_2(uint16_t value)
{
___m_BindingIndex_2 = value;
}
inline static int32_t get_offset_of_m_InteractionIndex_3() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___m_InteractionIndex_3)); }
inline uint16_t get_m_InteractionIndex_3() const { return ___m_InteractionIndex_3; }
inline uint16_t* get_address_of_m_InteractionIndex_3() { return &___m_InteractionIndex_3; }
inline void set_m_InteractionIndex_3(uint16_t value)
{
___m_InteractionIndex_3 = value;
}
inline static int32_t get_offset_of_m_StateIndex_4() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___m_StateIndex_4)); }
inline uint8_t get_m_StateIndex_4() const { return ___m_StateIndex_4; }
inline uint8_t* get_address_of_m_StateIndex_4() { return &___m_StateIndex_4; }
inline void set_m_StateIndex_4(uint8_t value)
{
___m_StateIndex_4 = value;
}
inline static int32_t get_offset_of_m_Phase_5() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___m_Phase_5)); }
inline uint8_t get_m_Phase_5() const { return ___m_Phase_5; }
inline uint8_t* get_address_of_m_Phase_5() { return &___m_Phase_5; }
inline void set_m_Phase_5(uint8_t value)
{
___m_Phase_5 = value;
}
inline static int32_t get_offset_of_m_StartTime_6() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___m_StartTime_6)); }
inline double get_m_StartTime_6() const { return ___m_StartTime_6; }
inline double* get_address_of_m_StartTime_6() { return &___m_StartTime_6; }
inline void set_m_StartTime_6(double value)
{
___m_StartTime_6 = value;
}
inline static int32_t get_offset_of_m_ValueData_7() { return static_cast<int32_t>(offsetof(ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF, ___m_ValueData_7)); }
inline U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B get_m_ValueData_7() const { return ___m_ValueData_7; }
inline U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B * get_address_of_m_ValueData_7() { return &___m_ValueData_7; }
inline void set_m_ValueData_7(U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B value)
{
___m_ValueData_7 = value;
}
};
// UnityEngine.AudioBehaviour
struct AudioBehaviour_tB44966D47AD43C50C7294AEE9B57574E55AACA4A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent
struct DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeltaStateEvent::baseEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_2_OffsetPadding[20];
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateFormat
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___stateFormat_2;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_2_OffsetPadding_forAlignmentOnly[20];
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___stateFormat_2_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateOffset_3_OffsetPadding[24];
// System.UInt32 UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateOffset
uint32_t ___stateOffset_3;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateOffset_3_OffsetPadding_forAlignmentOnly[24];
uint32_t ___stateOffset_3_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding[28];
// UnityEngine.InputSystem.LowLevel.DeltaStateEvent/<stateData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.DeltaStateEvent::stateData
U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F ___stateData_4;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding_forAlignmentOnly[28];
U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F ___stateData_4_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2__padding[29];
};
public:
inline static int32_t get_offset_of_baseEvent_1() { return static_cast<int32_t>(offsetof(DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2, ___baseEvent_1)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 get_baseEvent_1() const { return ___baseEvent_1; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_address_of_baseEvent_1() { return &___baseEvent_1; }
inline void set_baseEvent_1(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 value)
{
___baseEvent_1 = value;
}
inline static int32_t get_offset_of_stateFormat_2() { return static_cast<int32_t>(offsetof(DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2, ___stateFormat_2)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_stateFormat_2() const { return ___stateFormat_2; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_stateFormat_2() { return &___stateFormat_2; }
inline void set_stateFormat_2(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___stateFormat_2 = value;
}
inline static int32_t get_offset_of_stateOffset_3() { return static_cast<int32_t>(offsetof(DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2, ___stateOffset_3)); }
inline uint32_t get_stateOffset_3() const { return ___stateOffset_3; }
inline uint32_t* get_address_of_stateOffset_3() { return &___stateOffset_3; }
inline void set_stateOffset_3(uint32_t value)
{
___stateOffset_3 = value;
}
inline static int32_t get_offset_of_stateData_4() { return static_cast<int32_t>(offsetof(DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2, ___stateData_4)); }
inline U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F get_stateData_4() const { return ___stateData_4; }
inline U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F * get_address_of_stateData_4() { return &___stateData_4; }
inline void set_stateData_4(U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F value)
{
___stateData_4 = value;
}
};
// UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent
struct DeviceConfigurationEvent_t230D41A2E6EE5FED09EBFC586A8FB84D66ECE866
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeviceConfigurationEvent::baseEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1_forAlignmentOnly;
};
};
};
uint8_t DeviceConfigurationEvent_t230D41A2E6EE5FED09EBFC586A8FB84D66ECE866__padding[20];
};
public:
inline static int32_t get_offset_of_baseEvent_1() { return static_cast<int32_t>(offsetof(DeviceConfigurationEvent_t230D41A2E6EE5FED09EBFC586A8FB84D66ECE866, ___baseEvent_1)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 get_baseEvent_1() const { return ___baseEvent_1; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_address_of_baseEvent_1() { return &___baseEvent_1; }
inline void set_baseEvent_1(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 value)
{
___baseEvent_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent
struct DeviceRemoveEvent_tB9FCAB5041C20B18281FC3EC8300CEDF77D7EBA9
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.DeviceRemoveEvent::baseEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1_forAlignmentOnly;
};
};
};
uint8_t DeviceRemoveEvent_tB9FCAB5041C20B18281FC3EC8300CEDF77D7EBA9__padding[20];
};
public:
inline static int32_t get_offset_of_baseEvent_1() { return static_cast<int32_t>(offsetof(DeviceRemoveEvent_tB9FCAB5041C20B18281FC3EC8300CEDF77D7EBA9, ___baseEvent_1)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 get_baseEvent_1() const { return ___baseEvent_1; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_address_of_baseEvent_1() { return &___baseEvent_1; }
inline void set_baseEvent_1(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 value)
{
___baseEvent_1 = value;
}
};
// UnityEngine.InputSystem.LowLevel.IMECompositionEvent
struct IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.IMECompositionEvent::baseEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___compositionString_3_OffsetPadding[20];
// UnityEngine.InputSystem.LowLevel.IMECompositionString UnityEngine.InputSystem.LowLevel.IMECompositionEvent::compositionString
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D ___compositionString_3;
};
#pragma pack(pop, tp)
struct
{
char ___compositionString_3_OffsetPadding_forAlignmentOnly[20];
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D ___compositionString_3_forAlignmentOnly;
};
};
};
uint8_t IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E__padding[152];
};
public:
inline static int32_t get_offset_of_baseEvent_2() { return static_cast<int32_t>(offsetof(IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E, ___baseEvent_2)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 get_baseEvent_2() const { return ___baseEvent_2; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_address_of_baseEvent_2() { return &___baseEvent_2; }
inline void set_baseEvent_2(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 value)
{
___baseEvent_2 = value;
}
inline static int32_t get_offset_of_compositionString_3() { return static_cast<int32_t>(offsetof(IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E, ___compositionString_3)); }
inline IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D get_compositionString_3() const { return ___compositionString_3; }
inline IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D * get_address_of_compositionString_3() { return &___compositionString_3; }
inline void set_compositionString_3(IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D value)
{
___compositionString_3 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionEvent
struct IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E_marshaled_pinvoke
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___compositionString_3_OffsetPadding[20];
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_pinvoke ___compositionString_3;
};
#pragma pack(pop, tp)
struct
{
char ___compositionString_3_OffsetPadding_forAlignmentOnly[20];
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_pinvoke ___compositionString_3_forAlignmentOnly;
};
};
};
uint8_t IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E__padding[152];
};
};
// Native definition for COM marshalling of UnityEngine.InputSystem.LowLevel.IMECompositionEvent
struct IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E_marshaled_com
{
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___compositionString_3_OffsetPadding[20];
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_com ___compositionString_3;
};
#pragma pack(pop, tp)
struct
{
char ___compositionString_3_OffsetPadding_forAlignmentOnly[20];
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D_marshaled_com ___compositionString_3_forAlignmentOnly;
};
};
};
uint8_t IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E__padding[152];
};
};
// UnityEngine.InputSystem.Utilities.InputActionTrace
struct InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.InputSystem.Utilities.InputActionTrace::m_SubscribedToAll
bool ___m_SubscribedToAll_0;
// System.Boolean UnityEngine.InputSystem.Utilities.InputActionTrace::m_OnActionChangeHooked
bool ___m_OnActionChangeHooked_1;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputAction> UnityEngine.InputSystem.Utilities.InputActionTrace::m_SubscribedActions
InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6 ___m_SubscribedActions_2;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputActionMap> UnityEngine.InputSystem.Utilities.InputActionTrace::m_SubscribedActionMaps
InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372 ___m_SubscribedActionMaps_3;
// UnityEngine.InputSystem.LowLevel.InputEventBuffer UnityEngine.InputSystem.Utilities.InputActionTrace::m_EventBuffer
InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E ___m_EventBuffer_4;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputActionState> UnityEngine.InputSystem.Utilities.InputActionTrace::m_ActionMapStates
InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 ___m_ActionMapStates_5;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.InputActionState> UnityEngine.InputSystem.Utilities.InputActionTrace::m_ActionMapStateClones
InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 ___m_ActionMapStateClones_6;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.Utilities.InputActionTrace::m_CallbackDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_CallbackDelegate_7;
// System.Action`2<System.Object,UnityEngine.InputSystem.InputActionChange> UnityEngine.InputSystem.Utilities.InputActionTrace::m_ActionChangeDelegate
Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 * ___m_ActionChangeDelegate_8;
public:
inline static int32_t get_offset_of_m_SubscribedToAll_0() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_SubscribedToAll_0)); }
inline bool get_m_SubscribedToAll_0() const { return ___m_SubscribedToAll_0; }
inline bool* get_address_of_m_SubscribedToAll_0() { return &___m_SubscribedToAll_0; }
inline void set_m_SubscribedToAll_0(bool value)
{
___m_SubscribedToAll_0 = value;
}
inline static int32_t get_offset_of_m_OnActionChangeHooked_1() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_OnActionChangeHooked_1)); }
inline bool get_m_OnActionChangeHooked_1() const { return ___m_OnActionChangeHooked_1; }
inline bool* get_address_of_m_OnActionChangeHooked_1() { return &___m_OnActionChangeHooked_1; }
inline void set_m_OnActionChangeHooked_1(bool value)
{
___m_OnActionChangeHooked_1 = value;
}
inline static int32_t get_offset_of_m_SubscribedActions_2() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_SubscribedActions_2)); }
inline InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6 get_m_SubscribedActions_2() const { return ___m_SubscribedActions_2; }
inline InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6 * get_address_of_m_SubscribedActions_2() { return &___m_SubscribedActions_2; }
inline void set_m_SubscribedActions_2(InlinedArray_1_t2CBAED5CD3567A94B308800FA3C696A0627E5CE6 value)
{
___m_SubscribedActions_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SubscribedActions_2))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SubscribedActions_2))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_SubscribedActionMaps_3() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_SubscribedActionMaps_3)); }
inline InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372 get_m_SubscribedActionMaps_3() const { return ___m_SubscribedActionMaps_3; }
inline InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372 * get_address_of_m_SubscribedActionMaps_3() { return &___m_SubscribedActionMaps_3; }
inline void set_m_SubscribedActionMaps_3(InlinedArray_1_t24FCFB30C1141B710CB49A3B75BEDDF4B6C74372 value)
{
___m_SubscribedActionMaps_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SubscribedActionMaps_3))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SubscribedActionMaps_3))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_EventBuffer_4() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_EventBuffer_4)); }
inline InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E get_m_EventBuffer_4() const { return ___m_EventBuffer_4; }
inline InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E * get_address_of_m_EventBuffer_4() { return &___m_EventBuffer_4; }
inline void set_m_EventBuffer_4(InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E value)
{
___m_EventBuffer_4 = value;
}
inline static int32_t get_offset_of_m_ActionMapStates_5() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_ActionMapStates_5)); }
inline InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 get_m_ActionMapStates_5() const { return ___m_ActionMapStates_5; }
inline InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 * get_address_of_m_ActionMapStates_5() { return &___m_ActionMapStates_5; }
inline void set_m_ActionMapStates_5(InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 value)
{
___m_ActionMapStates_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ActionMapStates_5))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ActionMapStates_5))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_ActionMapStateClones_6() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_ActionMapStateClones_6)); }
inline InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 get_m_ActionMapStateClones_6() const { return ___m_ActionMapStateClones_6; }
inline InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 * get_address_of_m_ActionMapStateClones_6() { return &___m_ActionMapStateClones_6; }
inline void set_m_ActionMapStateClones_6(InlinedArray_1_t2B78109B390429115574B6D1969897411490C853 value)
{
___m_ActionMapStateClones_6 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ActionMapStateClones_6))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ActionMapStateClones_6))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_CallbackDelegate_7() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_CallbackDelegate_7)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_CallbackDelegate_7() const { return ___m_CallbackDelegate_7; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_CallbackDelegate_7() { return &___m_CallbackDelegate_7; }
inline void set_m_CallbackDelegate_7(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_CallbackDelegate_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CallbackDelegate_7), (void*)value);
}
inline static int32_t get_offset_of_m_ActionChangeDelegate_8() { return static_cast<int32_t>(offsetof(InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8, ___m_ActionChangeDelegate_8)); }
inline Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 * get_m_ActionChangeDelegate_8() const { return ___m_ActionChangeDelegate_8; }
inline Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 ** get_address_of_m_ActionChangeDelegate_8() { return &___m_ActionChangeDelegate_8; }
inline void set_m_ActionChangeDelegate_8(Action_2_t6398B1F4F7058C752AC355F9D4D3523014E44058 * value)
{
___m_ActionChangeDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionChangeDelegate_8), (void*)value);
}
};
// UnityEngine.InputSystem.InputDevice
struct InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59 : public InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008
{
public:
// UnityEngine.InputSystem.InputDevice/DeviceFlags UnityEngine.InputSystem.InputDevice::m_DeviceFlags
int32_t ___m_DeviceFlags_24;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceId
int32_t ___m_DeviceId_25;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_ParticipantId
int32_t ___m_ParticipantId_26;
// System.Int32 UnityEngine.InputSystem.InputDevice::m_DeviceIndex
int32_t ___m_DeviceIndex_27;
// UnityEngine.InputSystem.Layouts.InputDeviceDescription UnityEngine.InputSystem.InputDevice::m_Description
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD ___m_Description_28;
// System.Double UnityEngine.InputSystem.InputDevice::m_LastUpdateTimeInternal
double ___m_LastUpdateTimeInternal_29;
// System.UInt32 UnityEngine.InputSystem.InputDevice::m_CurrentUpdateStepCount
uint32_t ___m_CurrentUpdateStepCount_30;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_AliasesForEachControl
InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* ___m_AliasesForEachControl_31;
// UnityEngine.InputSystem.Utilities.InternedString[] UnityEngine.InputSystem.InputDevice::m_UsagesForEachControl
InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* ___m_UsagesForEachControl_32;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_UsageToControl
InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* ___m_UsageToControl_33;
// UnityEngine.InputSystem.InputControl[] UnityEngine.InputSystem.InputDevice::m_ChildrenForEachControl
InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* ___m_ChildrenForEachControl_34;
public:
inline static int32_t get_offset_of_m_DeviceFlags_24() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_DeviceFlags_24)); }
inline int32_t get_m_DeviceFlags_24() const { return ___m_DeviceFlags_24; }
inline int32_t* get_address_of_m_DeviceFlags_24() { return &___m_DeviceFlags_24; }
inline void set_m_DeviceFlags_24(int32_t value)
{
___m_DeviceFlags_24 = value;
}
inline static int32_t get_offset_of_m_DeviceId_25() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_DeviceId_25)); }
inline int32_t get_m_DeviceId_25() const { return ___m_DeviceId_25; }
inline int32_t* get_address_of_m_DeviceId_25() { return &___m_DeviceId_25; }
inline void set_m_DeviceId_25(int32_t value)
{
___m_DeviceId_25 = value;
}
inline static int32_t get_offset_of_m_ParticipantId_26() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_ParticipantId_26)); }
inline int32_t get_m_ParticipantId_26() const { return ___m_ParticipantId_26; }
inline int32_t* get_address_of_m_ParticipantId_26() { return &___m_ParticipantId_26; }
inline void set_m_ParticipantId_26(int32_t value)
{
___m_ParticipantId_26 = value;
}
inline static int32_t get_offset_of_m_DeviceIndex_27() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_DeviceIndex_27)); }
inline int32_t get_m_DeviceIndex_27() const { return ___m_DeviceIndex_27; }
inline int32_t* get_address_of_m_DeviceIndex_27() { return &___m_DeviceIndex_27; }
inline void set_m_DeviceIndex_27(int32_t value)
{
___m_DeviceIndex_27 = value;
}
inline static int32_t get_offset_of_m_Description_28() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_Description_28)); }
inline InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD get_m_Description_28() const { return ___m_Description_28; }
inline InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD * get_address_of_m_Description_28() { return &___m_Description_28; }
inline void set_m_Description_28(InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD value)
{
___m_Description_28 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_InterfaceName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_DeviceClass_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Manufacturer_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Product_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Serial_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Version_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Description_28))->___m_Capabilities_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_LastUpdateTimeInternal_29() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_LastUpdateTimeInternal_29)); }
inline double get_m_LastUpdateTimeInternal_29() const { return ___m_LastUpdateTimeInternal_29; }
inline double* get_address_of_m_LastUpdateTimeInternal_29() { return &___m_LastUpdateTimeInternal_29; }
inline void set_m_LastUpdateTimeInternal_29(double value)
{
___m_LastUpdateTimeInternal_29 = value;
}
inline static int32_t get_offset_of_m_CurrentUpdateStepCount_30() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_CurrentUpdateStepCount_30)); }
inline uint32_t get_m_CurrentUpdateStepCount_30() const { return ___m_CurrentUpdateStepCount_30; }
inline uint32_t* get_address_of_m_CurrentUpdateStepCount_30() { return &___m_CurrentUpdateStepCount_30; }
inline void set_m_CurrentUpdateStepCount_30(uint32_t value)
{
___m_CurrentUpdateStepCount_30 = value;
}
inline static int32_t get_offset_of_m_AliasesForEachControl_31() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_AliasesForEachControl_31)); }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* get_m_AliasesForEachControl_31() const { return ___m_AliasesForEachControl_31; }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95** get_address_of_m_AliasesForEachControl_31() { return &___m_AliasesForEachControl_31; }
inline void set_m_AliasesForEachControl_31(InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* value)
{
___m_AliasesForEachControl_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AliasesForEachControl_31), (void*)value);
}
inline static int32_t get_offset_of_m_UsagesForEachControl_32() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_UsagesForEachControl_32)); }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* get_m_UsagesForEachControl_32() const { return ___m_UsagesForEachControl_32; }
inline InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95** get_address_of_m_UsagesForEachControl_32() { return &___m_UsagesForEachControl_32; }
inline void set_m_UsagesForEachControl_32(InternedStringU5BU5D_tF6B8CB57EC9D1F012CA0F8ADE4D8ECAFFDC03B95* value)
{
___m_UsagesForEachControl_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UsagesForEachControl_32), (void*)value);
}
inline static int32_t get_offset_of_m_UsageToControl_33() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_UsageToControl_33)); }
inline InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* get_m_UsageToControl_33() const { return ___m_UsageToControl_33; }
inline InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7** get_address_of_m_UsageToControl_33() { return &___m_UsageToControl_33; }
inline void set_m_UsageToControl_33(InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* value)
{
___m_UsageToControl_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UsageToControl_33), (void*)value);
}
inline static int32_t get_offset_of_m_ChildrenForEachControl_34() { return static_cast<int32_t>(offsetof(InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59, ___m_ChildrenForEachControl_34)); }
inline InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* get_m_ChildrenForEachControl_34() const { return ___m_ChildrenForEachControl_34; }
inline InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7** get_address_of_m_ChildrenForEachControl_34() { return &___m_ChildrenForEachControl_34; }
inline void set_m_ChildrenForEachControl_34(InputControlU5BU5D_t9FEBA74F3DAC22B818199A902BF4D87DA5D5A7D7* value)
{
___m_ChildrenForEachControl_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChildrenForEachControl_34), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.InputUpdateDelegate
struct InputUpdateDelegate_t5188D5851B4FE5CBD6A6D724917809C0138034AA : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
// UnityEngine.AI.NavMeshAgent
struct NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
// UnityEngine.ParticleSystemRenderer
struct ParticleSystemRenderer_tD559F69F1B7EB14FD58CEB08E46657B6A54A6269 : public Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C
{
public:
public:
};
// UnityEngine.Playables.PlayableDirector
struct PlayableDirector_t63912C98A4EC9D4701E88B633E27E0D97209BA38 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
// System.Action`1<UnityEngine.Playables.PlayableDirector> UnityEngine.Playables.PlayableDirector::played
Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * ___played_4;
// System.Action`1<UnityEngine.Playables.PlayableDirector> UnityEngine.Playables.PlayableDirector::paused
Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * ___paused_5;
// System.Action`1<UnityEngine.Playables.PlayableDirector> UnityEngine.Playables.PlayableDirector::stopped
Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * ___stopped_6;
public:
inline static int32_t get_offset_of_played_4() { return static_cast<int32_t>(offsetof(PlayableDirector_t63912C98A4EC9D4701E88B633E27E0D97209BA38, ___played_4)); }
inline Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * get_played_4() const { return ___played_4; }
inline Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B ** get_address_of_played_4() { return &___played_4; }
inline void set_played_4(Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * value)
{
___played_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___played_4), (void*)value);
}
inline static int32_t get_offset_of_paused_5() { return static_cast<int32_t>(offsetof(PlayableDirector_t63912C98A4EC9D4701E88B633E27E0D97209BA38, ___paused_5)); }
inline Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * get_paused_5() const { return ___paused_5; }
inline Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B ** get_address_of_paused_5() { return &___paused_5; }
inline void set_paused_5(Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * value)
{
___paused_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___paused_5), (void*)value);
}
inline static int32_t get_offset_of_stopped_6() { return static_cast<int32_t>(offsetof(PlayableDirector_t63912C98A4EC9D4701E88B633E27E0D97209BA38, ___stopped_6)); }
inline Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * get_stopped_6() const { return ___stopped_6; }
inline Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B ** get_address_of_stopped_6() { return &___stopped_6; }
inline void set_stopped_6(Action_1_tEFFD33105460921F68C4261E79791D397C76CB1B * value)
{
___stopped_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stopped_6), (void*)value);
}
};
// UnityEngine.InputSystem.LowLevel.StateEvent
struct StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.StateEvent::baseEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_2_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_3_OffsetPadding[20];
// UnityEngine.InputSystem.Utilities.FourCC UnityEngine.InputSystem.LowLevel.StateEvent::stateFormat
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___stateFormat_3;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateFormat_3_OffsetPadding_forAlignmentOnly[20];
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 ___stateFormat_3_forAlignmentOnly;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding[24];
// UnityEngine.InputSystem.LowLevel.StateEvent/<stateData>e__FixedBuffer UnityEngine.InputSystem.LowLevel.StateEvent::stateData
U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825 ___stateData_4;
};
#pragma pack(pop, tp)
#pragma pack(push, tp, 1)
struct
{
char ___stateData_4_OffsetPadding_forAlignmentOnly[24];
U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825 ___stateData_4_forAlignmentOnly;
};
#pragma pack(pop, tp)
};
};
uint8_t StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C__padding[25];
};
public:
inline static int32_t get_offset_of_baseEvent_2() { return static_cast<int32_t>(offsetof(StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C, ___baseEvent_2)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 get_baseEvent_2() const { return ___baseEvent_2; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_address_of_baseEvent_2() { return &___baseEvent_2; }
inline void set_baseEvent_2(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 value)
{
___baseEvent_2 = value;
}
inline static int32_t get_offset_of_stateFormat_3() { return static_cast<int32_t>(offsetof(StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C, ___stateFormat_3)); }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 get_stateFormat_3() const { return ___stateFormat_3; }
inline FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 * get_address_of_stateFormat_3() { return &___stateFormat_3; }
inline void set_stateFormat_3(FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1 value)
{
___stateFormat_3 = value;
}
inline static int32_t get_offset_of_stateData_4() { return static_cast<int32_t>(offsetof(StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C, ___stateData_4)); }
inline U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825 get_stateData_4() const { return ___stateData_4; }
inline U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825 * get_address_of_stateData_4() { return &___stateData_4; }
inline void set_stateData_4(U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825 value)
{
___stateData_4 = value;
}
};
// UnityEngine.Terrain
struct Terrain_t2C0E3B3A2895E81446EFF4F5AFD601CF977D1836 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
// UnityEngine.InputSystem.LowLevel.TextEvent
struct TextEvent_tBED9020242EA5258049BA0EDBB2370162FDBB0C9
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.InputSystem.LowLevel.InputEvent UnityEngine.InputSystem.LowLevel.TextEvent::baseEvent
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1;
};
#pragma pack(pop, tp)
struct
{
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 ___baseEvent_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___character_2_OffsetPadding[20];
// System.Int32 UnityEngine.InputSystem.LowLevel.TextEvent::character
int32_t ___character_2;
};
#pragma pack(pop, tp)
struct
{
char ___character_2_OffsetPadding_forAlignmentOnly[20];
int32_t ___character_2_forAlignmentOnly;
};
};
};
uint8_t TextEvent_tBED9020242EA5258049BA0EDBB2370162FDBB0C9__padding[24];
};
public:
inline static int32_t get_offset_of_baseEvent_1() { return static_cast<int32_t>(offsetof(TextEvent_tBED9020242EA5258049BA0EDBB2370162FDBB0C9, ___baseEvent_1)); }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 get_baseEvent_1() const { return ___baseEvent_1; }
inline InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 * get_address_of_baseEvent_1() { return &___baseEvent_1; }
inline void set_baseEvent_1(InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96 value)
{
___baseEvent_1 = value;
}
inline static int32_t get_offset_of_character_2() { return static_cast<int32_t>(offsetof(TextEvent_tBED9020242EA5258049BA0EDBB2370162FDBB0C9, ___character_2)); }
inline int32_t get_character_2() const { return ___character_2; }
inline int32_t* get_address_of_character_2() { return &___character_2; }
inline void set_character_2(int32_t value)
{
___character_2 = value;
}
};
// UnityEngine.Video.VideoPlayer
struct VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
// UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::prepareCompleted
EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * ___prepareCompleted_4;
// UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::loopPointReached
EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * ___loopPointReached_5;
// UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::started
EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * ___started_6;
// UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::frameDropped
EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * ___frameDropped_7;
// UnityEngine.Video.VideoPlayer/ErrorEventHandler UnityEngine.Video.VideoPlayer::errorReceived
ErrorEventHandler_tD47781EBB7CF0CC4C111496024BD59B1D1A6A1F2 * ___errorReceived_8;
// UnityEngine.Video.VideoPlayer/EventHandler UnityEngine.Video.VideoPlayer::seekCompleted
EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * ___seekCompleted_9;
// UnityEngine.Video.VideoPlayer/TimeEventHandler UnityEngine.Video.VideoPlayer::clockResyncOccurred
TimeEventHandler_t7CA131EB85E0FFCBE8660E030698BD83D3994DD8 * ___clockResyncOccurred_10;
// UnityEngine.Video.VideoPlayer/FrameReadyEventHandler UnityEngine.Video.VideoPlayer::frameReady
FrameReadyEventHandler_t9529BD5A34E9C8BE7D8A39D46A6C4ABC673374EC * ___frameReady_11;
public:
inline static int32_t get_offset_of_prepareCompleted_4() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___prepareCompleted_4)); }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * get_prepareCompleted_4() const { return ___prepareCompleted_4; }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD ** get_address_of_prepareCompleted_4() { return &___prepareCompleted_4; }
inline void set_prepareCompleted_4(EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * value)
{
___prepareCompleted_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prepareCompleted_4), (void*)value);
}
inline static int32_t get_offset_of_loopPointReached_5() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___loopPointReached_5)); }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * get_loopPointReached_5() const { return ___loopPointReached_5; }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD ** get_address_of_loopPointReached_5() { return &___loopPointReached_5; }
inline void set_loopPointReached_5(EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * value)
{
___loopPointReached_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___loopPointReached_5), (void*)value);
}
inline static int32_t get_offset_of_started_6() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___started_6)); }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * get_started_6() const { return ___started_6; }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD ** get_address_of_started_6() { return &___started_6; }
inline void set_started_6(EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * value)
{
___started_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___started_6), (void*)value);
}
inline static int32_t get_offset_of_frameDropped_7() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___frameDropped_7)); }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * get_frameDropped_7() const { return ___frameDropped_7; }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD ** get_address_of_frameDropped_7() { return &___frameDropped_7; }
inline void set_frameDropped_7(EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * value)
{
___frameDropped_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___frameDropped_7), (void*)value);
}
inline static int32_t get_offset_of_errorReceived_8() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___errorReceived_8)); }
inline ErrorEventHandler_tD47781EBB7CF0CC4C111496024BD59B1D1A6A1F2 * get_errorReceived_8() const { return ___errorReceived_8; }
inline ErrorEventHandler_tD47781EBB7CF0CC4C111496024BD59B1D1A6A1F2 ** get_address_of_errorReceived_8() { return &___errorReceived_8; }
inline void set_errorReceived_8(ErrorEventHandler_tD47781EBB7CF0CC4C111496024BD59B1D1A6A1F2 * value)
{
___errorReceived_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___errorReceived_8), (void*)value);
}
inline static int32_t get_offset_of_seekCompleted_9() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___seekCompleted_9)); }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * get_seekCompleted_9() const { return ___seekCompleted_9; }
inline EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD ** get_address_of_seekCompleted_9() { return &___seekCompleted_9; }
inline void set_seekCompleted_9(EventHandler_t99288A74FAB288C0033E28A5CD3DABE77B109BFD * value)
{
___seekCompleted_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___seekCompleted_9), (void*)value);
}
inline static int32_t get_offset_of_clockResyncOccurred_10() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___clockResyncOccurred_10)); }
inline TimeEventHandler_t7CA131EB85E0FFCBE8660E030698BD83D3994DD8 * get_clockResyncOccurred_10() const { return ___clockResyncOccurred_10; }
inline TimeEventHandler_t7CA131EB85E0FFCBE8660E030698BD83D3994DD8 ** get_address_of_clockResyncOccurred_10() { return &___clockResyncOccurred_10; }
inline void set_clockResyncOccurred_10(TimeEventHandler_t7CA131EB85E0FFCBE8660E030698BD83D3994DD8 * value)
{
___clockResyncOccurred_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___clockResyncOccurred_10), (void*)value);
}
inline static int32_t get_offset_of_frameReady_11() { return static_cast<int32_t>(offsetof(VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86, ___frameReady_11)); }
inline FrameReadyEventHandler_t9529BD5A34E9C8BE7D8A39D46A6C4ABC673374EC * get_frameReady_11() const { return ___frameReady_11; }
inline FrameReadyEventHandler_t9529BD5A34E9C8BE7D8A39D46A6C4ABC673374EC ** get_address_of_frameReady_11() { return &___frameReady_11; }
inline void set_frameReady_11(FrameReadyEventHandler_t9529BD5A34E9C8BE7D8A39D46A6C4ABC673374EC * value)
{
___frameReady_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___frameReady_11), (void*)value);
}
};
// UnityEngine.VFX.VisualEffect
struct VisualEffect_t7C6E2AAA4DB4F47960AF2029EA96D4B579B3A4CA : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
// UnityEngine.VFX.VFXEventAttribute UnityEngine.VFX.VisualEffect::m_cachedEventAttribute
VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF * ___m_cachedEventAttribute_4;
// System.Action`1<UnityEngine.VFX.VFXOutputEventArgs> UnityEngine.VFX.VisualEffect::outputEventReceived
Action_1_t5C8C9298698F95A378E73C4584F33A97EF82A064 * ___outputEventReceived_5;
public:
inline static int32_t get_offset_of_m_cachedEventAttribute_4() { return static_cast<int32_t>(offsetof(VisualEffect_t7C6E2AAA4DB4F47960AF2029EA96D4B579B3A4CA, ___m_cachedEventAttribute_4)); }
inline VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF * get_m_cachedEventAttribute_4() const { return ___m_cachedEventAttribute_4; }
inline VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF ** get_address_of_m_cachedEventAttribute_4() { return &___m_cachedEventAttribute_4; }
inline void set_m_cachedEventAttribute_4(VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF * value)
{
___m_cachedEventAttribute_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cachedEventAttribute_4), (void*)value);
}
inline static int32_t get_offset_of_outputEventReceived_5() { return static_cast<int32_t>(offsetof(VisualEffect_t7C6E2AAA4DB4F47960AF2029EA96D4B579B3A4CA, ___outputEventReceived_5)); }
inline Action_1_t5C8C9298698F95A378E73C4584F33A97EF82A064 * get_outputEventReceived_5() const { return ___outputEventReceived_5; }
inline Action_1_t5C8C9298698F95A378E73C4584F33A97EF82A064 ** get_address_of_outputEventReceived_5() { return &___outputEventReceived_5; }
inline void set_outputEventReceived_5(Action_1_t5C8C9298698F95A378E73C4584F33A97EF82A064 * value)
{
___outputEventReceived_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___outputEventReceived_5), (void*)value);
}
};
// UnityEngine.XR.Management.XRLoaderHelper
struct XRLoaderHelper_t37A55C343AC31D25BB3EBD203DABFA357F51C013 : public XRLoader_tE37B92C6B9CDD944DDF7AFF5704E9EB342D62F6B
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.ISubsystem> UnityEngine.XR.Management.XRLoaderHelper::m_SubsystemInstanceMap
Dictionary_2_t4F3B5B526335E16355EDBC766052AEAB07B1777B * ___m_SubsystemInstanceMap_4;
public:
inline static int32_t get_offset_of_m_SubsystemInstanceMap_4() { return static_cast<int32_t>(offsetof(XRLoaderHelper_t37A55C343AC31D25BB3EBD203DABFA357F51C013, ___m_SubsystemInstanceMap_4)); }
inline Dictionary_2_t4F3B5B526335E16355EDBC766052AEAB07B1777B * get_m_SubsystemInstanceMap_4() const { return ___m_SubsystemInstanceMap_4; }
inline Dictionary_2_t4F3B5B526335E16355EDBC766052AEAB07B1777B ** get_address_of_m_SubsystemInstanceMap_4() { return &___m_SubsystemInstanceMap_4; }
inline void set_m_SubsystemInstanceMap_4(Dictionary_2_t4F3B5B526335E16355EDBC766052AEAB07B1777B * value)
{
___m_SubsystemInstanceMap_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SubsystemInstanceMap_4), (void*)value);
}
};
// Dissonance.Networking.Client.EventQueue/NetworkEvent
struct NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2
{
public:
// Dissonance.Networking.Client.EventQueue/EventType Dissonance.Networking.Client.EventQueue/NetworkEvent::Type
int32_t ___Type_0;
// System.String Dissonance.Networking.Client.EventQueue/NetworkEvent::_playerName
String_t* ____playerName_1;
// Dissonance.CodecSettings Dissonance.Networking.Client.EventQueue/NetworkEvent::_codecSettings
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ____codecSettings_2;
// System.String Dissonance.Networking.Client.EventQueue/NetworkEvent::_room
String_t* ____room_3;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> Dissonance.Networking.Client.EventQueue/NetworkEvent::_allRooms
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ____allRooms_4;
// Dissonance.Networking.VoicePacket Dissonance.Networking.Client.EventQueue/NetworkEvent::_voicePacket
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480 ____voicePacket_5;
// Dissonance.Networking.TextMessage Dissonance.Networking.Client.EventQueue/NetworkEvent::_textMessage
TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138 ____textMessage_6;
public:
inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2, ___Type_0)); }
inline int32_t get_Type_0() const { return ___Type_0; }
inline int32_t* get_address_of_Type_0() { return &___Type_0; }
inline void set_Type_0(int32_t value)
{
___Type_0 = value;
}
inline static int32_t get_offset_of__playerName_1() { return static_cast<int32_t>(offsetof(NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2, ____playerName_1)); }
inline String_t* get__playerName_1() const { return ____playerName_1; }
inline String_t** get_address_of__playerName_1() { return &____playerName_1; }
inline void set__playerName_1(String_t* value)
{
____playerName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerName_1), (void*)value);
}
inline static int32_t get_offset_of__codecSettings_2() { return static_cast<int32_t>(offsetof(NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2, ____codecSettings_2)); }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 get__codecSettings_2() const { return ____codecSettings_2; }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 * get_address_of__codecSettings_2() { return &____codecSettings_2; }
inline void set__codecSettings_2(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 value)
{
____codecSettings_2 = value;
}
inline static int32_t get_offset_of__room_3() { return static_cast<int32_t>(offsetof(NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2, ____room_3)); }
inline String_t* get__room_3() const { return ____room_3; }
inline String_t** get_address_of__room_3() { return &____room_3; }
inline void set__room_3(String_t* value)
{
____room_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____room_3), (void*)value);
}
inline static int32_t get_offset_of__allRooms_4() { return static_cast<int32_t>(offsetof(NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2, ____allRooms_4)); }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * get__allRooms_4() const { return ____allRooms_4; }
inline ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 ** get_address_of__allRooms_4() { return &____allRooms_4; }
inline void set__allRooms_4(ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * value)
{
____allRooms_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____allRooms_4), (void*)value);
}
inline static int32_t get_offset_of__voicePacket_5() { return static_cast<int32_t>(offsetof(NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2, ____voicePacket_5)); }
inline VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480 get__voicePacket_5() const { return ____voicePacket_5; }
inline VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480 * get_address_of__voicePacket_5() { return &____voicePacket_5; }
inline void set__voicePacket_5(VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480 value)
{
____voicePacket_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____voicePacket_5))->___SenderPlayerId_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&____voicePacket_5))->___EncodedAudioFrame_1))->____array_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&____voicePacket_5))->___Channels_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of__textMessage_6() { return static_cast<int32_t>(offsetof(NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2, ____textMessage_6)); }
inline TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138 get__textMessage_6() const { return ____textMessage_6; }
inline TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138 * get_address_of__textMessage_6() { return &____textMessage_6; }
inline void set__textMessage_6(TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138 value)
{
____textMessage_6 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____textMessage_6))->___Sender_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&____textMessage_6))->___Recipient_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&____textMessage_6))->___Message_3), (void*)NULL);
#endif
}
};
// Native definition for P/Invoke marshalling of Dissonance.Networking.Client.EventQueue/NetworkEvent
struct NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2_marshaled_pinvoke
{
int32_t ___Type_0;
char* ____playerName_1;
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ____codecSettings_2;
char* ____room_3;
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ____allRooms_4;
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480_marshaled_pinvoke ____voicePacket_5;
TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138_marshaled_pinvoke ____textMessage_6;
};
// Native definition for COM marshalling of Dissonance.Networking.Client.EventQueue/NetworkEvent
struct NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2_marshaled_com
{
int32_t ___Type_0;
Il2CppChar* ____playerName_1;
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ____codecSettings_2;
Il2CppChar* ____room_3;
ReadOnlyCollection_1_t4348A40742B97AA544A2F3845FA1C60512811C28 * ____allRooms_4;
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480_marshaled_com ____voicePacket_5;
TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138_marshaled_com ____textMessage_6;
};
// UnityEngine.InputSystem.InputControlScheme/MatchResult
struct MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1
{
public:
// UnityEngine.InputSystem.InputControlScheme/MatchResult/Result UnityEngine.InputSystem.InputControlScheme/MatchResult::m_Result
int32_t ___m_Result_0;
// System.Single UnityEngine.InputSystem.InputControlScheme/MatchResult::m_Score
float ___m_Score_1;
// UnityEngine.InputSystem.InputControlList`1<UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.InputControlScheme/MatchResult::m_Devices
InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F ___m_Devices_2;
// UnityEngine.InputSystem.InputControlList`1<UnityEngine.InputSystem.InputControl> UnityEngine.InputSystem.InputControlScheme/MatchResult::m_Controls
InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C ___m_Controls_3;
// UnityEngine.InputSystem.InputControlScheme/DeviceRequirement[] UnityEngine.InputSystem.InputControlScheme/MatchResult::m_Requirements
DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E* ___m_Requirements_4;
public:
inline static int32_t get_offset_of_m_Result_0() { return static_cast<int32_t>(offsetof(MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1, ___m_Result_0)); }
inline int32_t get_m_Result_0() const { return ___m_Result_0; }
inline int32_t* get_address_of_m_Result_0() { return &___m_Result_0; }
inline void set_m_Result_0(int32_t value)
{
___m_Result_0 = value;
}
inline static int32_t get_offset_of_m_Score_1() { return static_cast<int32_t>(offsetof(MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1, ___m_Score_1)); }
inline float get_m_Score_1() const { return ___m_Score_1; }
inline float* get_address_of_m_Score_1() { return &___m_Score_1; }
inline void set_m_Score_1(float value)
{
___m_Score_1 = value;
}
inline static int32_t get_offset_of_m_Devices_2() { return static_cast<int32_t>(offsetof(MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1, ___m_Devices_2)); }
inline InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F get_m_Devices_2() const { return ___m_Devices_2; }
inline InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F * get_address_of_m_Devices_2() { return &___m_Devices_2; }
inline void set_m_Devices_2(InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F value)
{
___m_Devices_2 = value;
}
inline static int32_t get_offset_of_m_Controls_3() { return static_cast<int32_t>(offsetof(MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1, ___m_Controls_3)); }
inline InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C get_m_Controls_3() const { return ___m_Controls_3; }
inline InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C * get_address_of_m_Controls_3() { return &___m_Controls_3; }
inline void set_m_Controls_3(InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C value)
{
___m_Controls_3 = value;
}
inline static int32_t get_offset_of_m_Requirements_4() { return static_cast<int32_t>(offsetof(MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1, ___m_Requirements_4)); }
inline DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E* get_m_Requirements_4() const { return ___m_Requirements_4; }
inline DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E** get_address_of_m_Requirements_4() { return &___m_Requirements_4; }
inline void set_m_Requirements_4(DeviceRequirementU5BU5D_t2DA7EB19343715733A7D450D119F0A4E0E6A2C0E* value)
{
___m_Requirements_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Requirements_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.InputControlScheme/MatchResult
struct MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1_marshaled_pinvoke
{
int32_t ___m_Result_0;
float ___m_Score_1;
InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F ___m_Devices_2;
InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C ___m_Controls_3;
DeviceRequirement_tDA5868427F9D3EC59A2293DE9F18C699FF64F955_marshaled_pinvoke* ___m_Requirements_4;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.InputControlScheme/MatchResult
struct MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1_marshaled_com
{
int32_t ___m_Result_0;
float ___m_Score_1;
InputControlList_1_t1ED9485986BA92058848711E6E3C427D737CFC3F ___m_Devices_2;
InputControlList_1_tD2F8F989B478FCEE0D7862935DE2660694C0376C ___m_Controls_3;
DeviceRequirement_tDA5868427F9D3EC59A2293DE9F18C699FF64F955_marshaled_com* ___m_Requirements_4;
};
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider
struct WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB : public Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058
{
public:
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider::m_Subsystem
WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 * ___m_Subsystem_1;
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRHoldGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider::m_HoldGestureEvents
NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40 ___m_HoldGestureEvents_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider::m_ManipulationGestureEvents
NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5 ___m_ManipulationGestureEvents_3;
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider::m_NavigationGestureEvents
NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221 ___m_NavigationGestureEvents_4;
// Unity.Collections.NativeArray`1<UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem/WindowsMRGestureProvider::m_TappedGestureEvents
NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77 ___m_TappedGestureEvents_5;
public:
inline static int32_t get_offset_of_m_Subsystem_1() { return static_cast<int32_t>(offsetof(WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB, ___m_Subsystem_1)); }
inline WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 * get_m_Subsystem_1() const { return ___m_Subsystem_1; }
inline WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 ** get_address_of_m_Subsystem_1() { return &___m_Subsystem_1; }
inline void set_m_Subsystem_1(WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 * value)
{
___m_Subsystem_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Subsystem_1), (void*)value);
}
inline static int32_t get_offset_of_m_HoldGestureEvents_2() { return static_cast<int32_t>(offsetof(WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB, ___m_HoldGestureEvents_2)); }
inline NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40 get_m_HoldGestureEvents_2() const { return ___m_HoldGestureEvents_2; }
inline NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40 * get_address_of_m_HoldGestureEvents_2() { return &___m_HoldGestureEvents_2; }
inline void set_m_HoldGestureEvents_2(NativeArray_1_tE49D4ED98FD43A967F26C74C3DCAB30472125B40 value)
{
___m_HoldGestureEvents_2 = value;
}
inline static int32_t get_offset_of_m_ManipulationGestureEvents_3() { return static_cast<int32_t>(offsetof(WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB, ___m_ManipulationGestureEvents_3)); }
inline NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5 get_m_ManipulationGestureEvents_3() const { return ___m_ManipulationGestureEvents_3; }
inline NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5 * get_address_of_m_ManipulationGestureEvents_3() { return &___m_ManipulationGestureEvents_3; }
inline void set_m_ManipulationGestureEvents_3(NativeArray_1_t62F273A0F5CDAF939CF5B883E92BE51BB776D1C5 value)
{
___m_ManipulationGestureEvents_3 = value;
}
inline static int32_t get_offset_of_m_NavigationGestureEvents_4() { return static_cast<int32_t>(offsetof(WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB, ___m_NavigationGestureEvents_4)); }
inline NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221 get_m_NavigationGestureEvents_4() const { return ___m_NavigationGestureEvents_4; }
inline NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221 * get_address_of_m_NavigationGestureEvents_4() { return &___m_NavigationGestureEvents_4; }
inline void set_m_NavigationGestureEvents_4(NativeArray_1_t72D2250C76333CAEEBB3CF564EF15C5E2A533221 value)
{
___m_NavigationGestureEvents_4 = value;
}
inline static int32_t get_offset_of_m_TappedGestureEvents_5() { return static_cast<int32_t>(offsetof(WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB, ___m_TappedGestureEvents_5)); }
inline NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77 get_m_TappedGestureEvents_5() const { return ___m_TappedGestureEvents_5; }
inline NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77 * get_address_of_m_TappedGestureEvents_5() { return &___m_TappedGestureEvents_5; }
inline void set_m_TappedGestureEvents_5(NativeArray_1_t97FF5DDFBE4EF131944CD705FFF832C21BA6DA77 value)
{
___m_TappedGestureEvents_5 = value;
}
};
// Dissonance.Networking.BaseCommsNetwork`5<Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceServer,Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceClient,Dissonance.Integrations.MirrorIgnorance.MirrorConn,Dissonance.Unit,Dissonance.Unit>
struct BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Collections.Generic.Queue`1<Dissonance.Networking.BaseCommsNetwork`5/IState<TServer,TClient,TPeer,TClientParam,TServerParam>> Dissonance.Networking.BaseCommsNetwork`5::_nextStates
Queue_1_tBF6B653A982896460424073BA4349C60AFD793D0 * ____nextStates_4;
// Dissonance.Networking.BaseCommsNetwork`5/IState<TServer,TClient,TPeer,TClientParam,TServerParam> Dissonance.Networking.BaseCommsNetwork`5::_state
RuntimeObject* ____state_5;
// Dissonance.Networking.NetworkMode Dissonance.Networking.BaseCommsNetwork`5::_mode
int32_t ____mode_6;
// TServer Dissonance.Networking.BaseCommsNetwork`5::<Server>k__BackingField
MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7 * ___U3CServerU3Ek__BackingField_7;
// TClient Dissonance.Networking.BaseCommsNetwork`5::<Client>k__BackingField
MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD * ___U3CClientU3Ek__BackingField_8;
// Dissonance.Log Dissonance.Networking.BaseCommsNetwork`5::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_9;
// System.String Dissonance.Networking.BaseCommsNetwork`5::<PlayerName>k__BackingField
String_t* ___U3CPlayerNameU3Ek__BackingField_10;
// Dissonance.Rooms Dissonance.Networking.BaseCommsNetwork`5::<Rooms>k__BackingField
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * ___U3CRoomsU3Ek__BackingField_11;
// Dissonance.PlayerChannels Dissonance.Networking.BaseCommsNetwork`5::<PlayerChannels>k__BackingField
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ___U3CPlayerChannelsU3Ek__BackingField_12;
// Dissonance.RoomChannels Dissonance.Networking.BaseCommsNetwork`5::<RoomChannels>k__BackingField
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ___U3CRoomChannelsU3Ek__BackingField_13;
// Dissonance.CodecSettings Dissonance.Networking.BaseCommsNetwork`5::<CodecSettings>k__BackingField
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ___U3CCodecSettingsU3Ek__BackingField_14;
// System.Action`1<Dissonance.Networking.NetworkMode> Dissonance.Networking.BaseCommsNetwork`5::ModeChanged
Action_1_t78D08A0A3D1C21FB0E352DEA17955B49623F766A * ___ModeChanged_15;
// System.Action`2<System.String,Dissonance.CodecSettings> Dissonance.Networking.BaseCommsNetwork`5::PlayerJoined
Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F * ___PlayerJoined_16;
// System.Action`1<System.String> Dissonance.Networking.BaseCommsNetwork`5::PlayerLeft
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___PlayerLeft_17;
// System.Action`1<Dissonance.Networking.VoicePacket> Dissonance.Networking.BaseCommsNetwork`5::VoicePacketReceived
Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * ___VoicePacketReceived_18;
// System.Action`1<Dissonance.Networking.TextMessage> Dissonance.Networking.BaseCommsNetwork`5::TextPacketReceived
Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * ___TextPacketReceived_19;
// System.Action`1<System.String> Dissonance.Networking.BaseCommsNetwork`5::PlayerStartedSpeaking
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___PlayerStartedSpeaking_20;
// System.Action`1<System.String> Dissonance.Networking.BaseCommsNetwork`5::PlayerStoppedSpeaking
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___PlayerStoppedSpeaking_21;
// System.Action`1<Dissonance.Networking.RoomEvent> Dissonance.Networking.BaseCommsNetwork`5::PlayerEnteredRoom
Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * ___PlayerEnteredRoom_22;
// System.Action`1<Dissonance.Networking.RoomEvent> Dissonance.Networking.BaseCommsNetwork`5::PlayerExitedRoom
Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * ___PlayerExitedRoom_23;
// System.Boolean Dissonance.Networking.BaseCommsNetwork`5::<IsInitialized>k__BackingField
bool ___U3CIsInitializedU3Ek__BackingField_24;
public:
inline static int32_t get_offset_of__nextStates_4() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ____nextStates_4)); }
inline Queue_1_tBF6B653A982896460424073BA4349C60AFD793D0 * get__nextStates_4() const { return ____nextStates_4; }
inline Queue_1_tBF6B653A982896460424073BA4349C60AFD793D0 ** get_address_of__nextStates_4() { return &____nextStates_4; }
inline void set__nextStates_4(Queue_1_tBF6B653A982896460424073BA4349C60AFD793D0 * value)
{
____nextStates_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nextStates_4), (void*)value);
}
inline static int32_t get_offset_of__state_5() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ____state_5)); }
inline RuntimeObject* get__state_5() const { return ____state_5; }
inline RuntimeObject** get_address_of__state_5() { return &____state_5; }
inline void set__state_5(RuntimeObject* value)
{
____state_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____state_5), (void*)value);
}
inline static int32_t get_offset_of__mode_6() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ____mode_6)); }
inline int32_t get__mode_6() const { return ____mode_6; }
inline int32_t* get_address_of__mode_6() { return &____mode_6; }
inline void set__mode_6(int32_t value)
{
____mode_6 = value;
}
inline static int32_t get_offset_of_U3CServerU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CServerU3Ek__BackingField_7)); }
inline MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7 * get_U3CServerU3Ek__BackingField_7() const { return ___U3CServerU3Ek__BackingField_7; }
inline MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7 ** get_address_of_U3CServerU3Ek__BackingField_7() { return &___U3CServerU3Ek__BackingField_7; }
inline void set_U3CServerU3Ek__BackingField_7(MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7 * value)
{
___U3CServerU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CServerU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CClientU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CClientU3Ek__BackingField_8)); }
inline MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD * get_U3CClientU3Ek__BackingField_8() const { return ___U3CClientU3Ek__BackingField_8; }
inline MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD ** get_address_of_U3CClientU3Ek__BackingField_8() { return &___U3CClientU3Ek__BackingField_8; }
inline void set_U3CClientU3Ek__BackingField_8(MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD * value)
{
___U3CClientU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CClientU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_Log_9() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___Log_9)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_9() const { return ___Log_9; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_9() { return &___Log_9; }
inline void set_Log_9(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_9), (void*)value);
}
inline static int32_t get_offset_of_U3CPlayerNameU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CPlayerNameU3Ek__BackingField_10)); }
inline String_t* get_U3CPlayerNameU3Ek__BackingField_10() const { return ___U3CPlayerNameU3Ek__BackingField_10; }
inline String_t** get_address_of_U3CPlayerNameU3Ek__BackingField_10() { return &___U3CPlayerNameU3Ek__BackingField_10; }
inline void set_U3CPlayerNameU3Ek__BackingField_10(String_t* value)
{
___U3CPlayerNameU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPlayerNameU3Ek__BackingField_10), (void*)value);
}
inline static int32_t get_offset_of_U3CRoomsU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CRoomsU3Ek__BackingField_11)); }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * get_U3CRoomsU3Ek__BackingField_11() const { return ___U3CRoomsU3Ek__BackingField_11; }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 ** get_address_of_U3CRoomsU3Ek__BackingField_11() { return &___U3CRoomsU3Ek__BackingField_11; }
inline void set_U3CRoomsU3Ek__BackingField_11(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * value)
{
___U3CRoomsU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRoomsU3Ek__BackingField_11), (void*)value);
}
inline static int32_t get_offset_of_U3CPlayerChannelsU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CPlayerChannelsU3Ek__BackingField_12)); }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * get_U3CPlayerChannelsU3Ek__BackingField_12() const { return ___U3CPlayerChannelsU3Ek__BackingField_12; }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC ** get_address_of_U3CPlayerChannelsU3Ek__BackingField_12() { return &___U3CPlayerChannelsU3Ek__BackingField_12; }
inline void set_U3CPlayerChannelsU3Ek__BackingField_12(PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * value)
{
___U3CPlayerChannelsU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPlayerChannelsU3Ek__BackingField_12), (void*)value);
}
inline static int32_t get_offset_of_U3CRoomChannelsU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CRoomChannelsU3Ek__BackingField_13)); }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * get_U3CRoomChannelsU3Ek__BackingField_13() const { return ___U3CRoomChannelsU3Ek__BackingField_13; }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 ** get_address_of_U3CRoomChannelsU3Ek__BackingField_13() { return &___U3CRoomChannelsU3Ek__BackingField_13; }
inline void set_U3CRoomChannelsU3Ek__BackingField_13(RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * value)
{
___U3CRoomChannelsU3Ek__BackingField_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CRoomChannelsU3Ek__BackingField_13), (void*)value);
}
inline static int32_t get_offset_of_U3CCodecSettingsU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CCodecSettingsU3Ek__BackingField_14)); }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 get_U3CCodecSettingsU3Ek__BackingField_14() const { return ___U3CCodecSettingsU3Ek__BackingField_14; }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 * get_address_of_U3CCodecSettingsU3Ek__BackingField_14() { return &___U3CCodecSettingsU3Ek__BackingField_14; }
inline void set_U3CCodecSettingsU3Ek__BackingField_14(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 value)
{
___U3CCodecSettingsU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_ModeChanged_15() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___ModeChanged_15)); }
inline Action_1_t78D08A0A3D1C21FB0E352DEA17955B49623F766A * get_ModeChanged_15() const { return ___ModeChanged_15; }
inline Action_1_t78D08A0A3D1C21FB0E352DEA17955B49623F766A ** get_address_of_ModeChanged_15() { return &___ModeChanged_15; }
inline void set_ModeChanged_15(Action_1_t78D08A0A3D1C21FB0E352DEA17955B49623F766A * value)
{
___ModeChanged_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ModeChanged_15), (void*)value);
}
inline static int32_t get_offset_of_PlayerJoined_16() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___PlayerJoined_16)); }
inline Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F * get_PlayerJoined_16() const { return ___PlayerJoined_16; }
inline Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F ** get_address_of_PlayerJoined_16() { return &___PlayerJoined_16; }
inline void set_PlayerJoined_16(Action_2_tBA708569FFF5BE5CDDEB117993EA57272B4DBE8F * value)
{
___PlayerJoined_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerJoined_16), (void*)value);
}
inline static int32_t get_offset_of_PlayerLeft_17() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___PlayerLeft_17)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_PlayerLeft_17() const { return ___PlayerLeft_17; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_PlayerLeft_17() { return &___PlayerLeft_17; }
inline void set_PlayerLeft_17(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___PlayerLeft_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerLeft_17), (void*)value);
}
inline static int32_t get_offset_of_VoicePacketReceived_18() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___VoicePacketReceived_18)); }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * get_VoicePacketReceived_18() const { return ___VoicePacketReceived_18; }
inline Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 ** get_address_of_VoicePacketReceived_18() { return &___VoicePacketReceived_18; }
inline void set_VoicePacketReceived_18(Action_1_t5A467B8732A616A66CE9622FF81B66822C024784 * value)
{
___VoicePacketReceived_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___VoicePacketReceived_18), (void*)value);
}
inline static int32_t get_offset_of_TextPacketReceived_19() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___TextPacketReceived_19)); }
inline Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * get_TextPacketReceived_19() const { return ___TextPacketReceived_19; }
inline Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 ** get_address_of_TextPacketReceived_19() { return &___TextPacketReceived_19; }
inline void set_TextPacketReceived_19(Action_1_t22203021D2DE265C499F0AB5F13A3FB1BA3B1D97 * value)
{
___TextPacketReceived_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TextPacketReceived_19), (void*)value);
}
inline static int32_t get_offset_of_PlayerStartedSpeaking_20() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___PlayerStartedSpeaking_20)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_PlayerStartedSpeaking_20() const { return ___PlayerStartedSpeaking_20; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_PlayerStartedSpeaking_20() { return &___PlayerStartedSpeaking_20; }
inline void set_PlayerStartedSpeaking_20(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___PlayerStartedSpeaking_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerStartedSpeaking_20), (void*)value);
}
inline static int32_t get_offset_of_PlayerStoppedSpeaking_21() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___PlayerStoppedSpeaking_21)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_PlayerStoppedSpeaking_21() const { return ___PlayerStoppedSpeaking_21; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_PlayerStoppedSpeaking_21() { return &___PlayerStoppedSpeaking_21; }
inline void set_PlayerStoppedSpeaking_21(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___PlayerStoppedSpeaking_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerStoppedSpeaking_21), (void*)value);
}
inline static int32_t get_offset_of_PlayerEnteredRoom_22() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___PlayerEnteredRoom_22)); }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * get_PlayerEnteredRoom_22() const { return ___PlayerEnteredRoom_22; }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B ** get_address_of_PlayerEnteredRoom_22() { return &___PlayerEnteredRoom_22; }
inline void set_PlayerEnteredRoom_22(Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * value)
{
___PlayerEnteredRoom_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerEnteredRoom_22), (void*)value);
}
inline static int32_t get_offset_of_PlayerExitedRoom_23() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___PlayerExitedRoom_23)); }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * get_PlayerExitedRoom_23() const { return ___PlayerExitedRoom_23; }
inline Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B ** get_address_of_PlayerExitedRoom_23() { return &___PlayerExitedRoom_23; }
inline void set_PlayerExitedRoom_23(Action_1_t7DBD4AD2CE1C6F21408047C2D7648974C602C18B * value)
{
___PlayerExitedRoom_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PlayerExitedRoom_23), (void*)value);
}
inline static int32_t get_offset_of_U3CIsInitializedU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E, ___U3CIsInitializedU3Ek__BackingField_24)); }
inline bool get_U3CIsInitializedU3Ek__BackingField_24() const { return ___U3CIsInitializedU3Ek__BackingField_24; }
inline bool* get_address_of_U3CIsInitializedU3Ek__BackingField_24() { return &___U3CIsInitializedU3Ek__BackingField_24; }
inline void set_U3CIsInitializedU3Ek__BackingField_24(bool value)
{
___U3CIsInitializedU3Ek__BackingField_24 = value;
}
};
// Mirror.Discovery.NetworkDiscoveryBase`2<Mirror.Discovery.ServerRequest,Mirror.Discovery.ServerResponse>
struct NetworkDiscoveryBase_2_t7EF6657B649FD026E9C1CB0E1F0875C55076C66B : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Int64 Mirror.Discovery.NetworkDiscoveryBase`2::secretHandshake
int64_t ___secretHandshake_4;
// System.Int32 Mirror.Discovery.NetworkDiscoveryBase`2::serverBroadcastListenPort
int32_t ___serverBroadcastListenPort_5;
// System.Single Mirror.Discovery.NetworkDiscoveryBase`2::ActiveDiscoveryInterval
float ___ActiveDiscoveryInterval_6;
// System.Net.Sockets.UdpClient Mirror.Discovery.NetworkDiscoveryBase`2::serverUdpClient
UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 * ___serverUdpClient_7;
// System.Net.Sockets.UdpClient Mirror.Discovery.NetworkDiscoveryBase`2::clientUdpClient
UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 * ___clientUdpClient_8;
public:
inline static int32_t get_offset_of_secretHandshake_4() { return static_cast<int32_t>(offsetof(NetworkDiscoveryBase_2_t7EF6657B649FD026E9C1CB0E1F0875C55076C66B, ___secretHandshake_4)); }
inline int64_t get_secretHandshake_4() const { return ___secretHandshake_4; }
inline int64_t* get_address_of_secretHandshake_4() { return &___secretHandshake_4; }
inline void set_secretHandshake_4(int64_t value)
{
___secretHandshake_4 = value;
}
inline static int32_t get_offset_of_serverBroadcastListenPort_5() { return static_cast<int32_t>(offsetof(NetworkDiscoveryBase_2_t7EF6657B649FD026E9C1CB0E1F0875C55076C66B, ___serverBroadcastListenPort_5)); }
inline int32_t get_serverBroadcastListenPort_5() const { return ___serverBroadcastListenPort_5; }
inline int32_t* get_address_of_serverBroadcastListenPort_5() { return &___serverBroadcastListenPort_5; }
inline void set_serverBroadcastListenPort_5(int32_t value)
{
___serverBroadcastListenPort_5 = value;
}
inline static int32_t get_offset_of_ActiveDiscoveryInterval_6() { return static_cast<int32_t>(offsetof(NetworkDiscoveryBase_2_t7EF6657B649FD026E9C1CB0E1F0875C55076C66B, ___ActiveDiscoveryInterval_6)); }
inline float get_ActiveDiscoveryInterval_6() const { return ___ActiveDiscoveryInterval_6; }
inline float* get_address_of_ActiveDiscoveryInterval_6() { return &___ActiveDiscoveryInterval_6; }
inline void set_ActiveDiscoveryInterval_6(float value)
{
___ActiveDiscoveryInterval_6 = value;
}
inline static int32_t get_offset_of_serverUdpClient_7() { return static_cast<int32_t>(offsetof(NetworkDiscoveryBase_2_t7EF6657B649FD026E9C1CB0E1F0875C55076C66B, ___serverUdpClient_7)); }
inline UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 * get_serverUdpClient_7() const { return ___serverUdpClient_7; }
inline UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 ** get_address_of_serverUdpClient_7() { return &___serverUdpClient_7; }
inline void set_serverUdpClient_7(UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 * value)
{
___serverUdpClient_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverUdpClient_7), (void*)value);
}
inline static int32_t get_offset_of_clientUdpClient_8() { return static_cast<int32_t>(offsetof(NetworkDiscoveryBase_2_t7EF6657B649FD026E9C1CB0E1F0875C55076C66B, ___clientUdpClient_8)); }
inline UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 * get_clientUdpClient_8() const { return ___clientUdpClient_8; }
inline UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 ** get_address_of_clientUdpClient_8() { return &___clientUdpClient_8; }
inline void set_clientUdpClient_8(UdpClient_tB1B7578C96A20B6A0B58AC3FD3E1CB469375B920 * value)
{
___clientUdpClient_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___clientUdpClient_8), (void*)value);
}
};
// Mirror.Cloud.Example.ApiUpdater
struct ApiUpdater_t5E6F9FEAC6F4FD7B86FF929FE8C4A92F9A6C7534 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Mirror.Cloud.Example.NetworkManagerListServer Mirror.Cloud.Example.ApiUpdater::manager
NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2 * ___manager_4;
// Mirror.Cloud.ApiConnector Mirror.Cloud.Example.ApiUpdater::connector
ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * ___connector_5;
// System.String Mirror.Cloud.Example.ApiUpdater::gameName
String_t* ___gameName_6;
public:
inline static int32_t get_offset_of_manager_4() { return static_cast<int32_t>(offsetof(ApiUpdater_t5E6F9FEAC6F4FD7B86FF929FE8C4A92F9A6C7534, ___manager_4)); }
inline NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2 * get_manager_4() const { return ___manager_4; }
inline NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2 ** get_address_of_manager_4() { return &___manager_4; }
inline void set_manager_4(NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2 * value)
{
___manager_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___manager_4), (void*)value);
}
inline static int32_t get_offset_of_connector_5() { return static_cast<int32_t>(offsetof(ApiUpdater_t5E6F9FEAC6F4FD7B86FF929FE8C4A92F9A6C7534, ___connector_5)); }
inline ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * get_connector_5() const { return ___connector_5; }
inline ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 ** get_address_of_connector_5() { return &___connector_5; }
inline void set_connector_5(ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * value)
{
___connector_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___connector_5), (void*)value);
}
inline static int32_t get_offset_of_gameName_6() { return static_cast<int32_t>(offsetof(ApiUpdater_t5E6F9FEAC6F4FD7B86FF929FE8C4A92F9A6C7534, ___gameName_6)); }
inline String_t* get_gameName_6() const { return ___gameName_6; }
inline String_t** get_address_of_gameName_6() { return &___gameName_6; }
inline void set_gameName_6(String_t* value)
{
___gameName_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___gameName_6), (void*)value);
}
};
// UnityEngine.AudioListener
struct AudioListener_t03B51B434A263F9AFD07AC8AA5CB4FE6402252A3 : public AudioBehaviour_tB44966D47AD43C50C7294AEE9B57574E55AACA4A
{
public:
public:
};
// UnityEngine.AudioSource
struct AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B : public AudioBehaviour_tB44966D47AD43C50C7294AEE9B57574E55AACA4A
{
public:
public:
};
// UnityEngine.InputSystem.Controls.AxisControl
struct AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD : public InputControl_1_t86865D61A697426B9744686BFE15974F6729C375
{
public:
// UnityEngine.InputSystem.Controls.AxisControl/Clamp UnityEngine.InputSystem.Controls.AxisControl::clamp
int32_t ___clamp_22;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMin
float ___clampMin_23;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampMax
float ___clampMax_24;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::clampConstant
float ___clampConstant_25;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::invert
bool ___invert_26;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::normalize
bool ___normalize_27;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMin
float ___normalizeMin_28;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeMax
float ___normalizeMax_29;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::normalizeZero
float ___normalizeZero_30;
// System.Boolean UnityEngine.InputSystem.Controls.AxisControl::scale
bool ___scale_31;
// System.Single UnityEngine.InputSystem.Controls.AxisControl::scaleFactor
float ___scaleFactor_32;
public:
inline static int32_t get_offset_of_clamp_22() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___clamp_22)); }
inline int32_t get_clamp_22() const { return ___clamp_22; }
inline int32_t* get_address_of_clamp_22() { return &___clamp_22; }
inline void set_clamp_22(int32_t value)
{
___clamp_22 = value;
}
inline static int32_t get_offset_of_clampMin_23() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___clampMin_23)); }
inline float get_clampMin_23() const { return ___clampMin_23; }
inline float* get_address_of_clampMin_23() { return &___clampMin_23; }
inline void set_clampMin_23(float value)
{
___clampMin_23 = value;
}
inline static int32_t get_offset_of_clampMax_24() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___clampMax_24)); }
inline float get_clampMax_24() const { return ___clampMax_24; }
inline float* get_address_of_clampMax_24() { return &___clampMax_24; }
inline void set_clampMax_24(float value)
{
___clampMax_24 = value;
}
inline static int32_t get_offset_of_clampConstant_25() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___clampConstant_25)); }
inline float get_clampConstant_25() const { return ___clampConstant_25; }
inline float* get_address_of_clampConstant_25() { return &___clampConstant_25; }
inline void set_clampConstant_25(float value)
{
___clampConstant_25 = value;
}
inline static int32_t get_offset_of_invert_26() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___invert_26)); }
inline bool get_invert_26() const { return ___invert_26; }
inline bool* get_address_of_invert_26() { return &___invert_26; }
inline void set_invert_26(bool value)
{
___invert_26 = value;
}
inline static int32_t get_offset_of_normalize_27() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___normalize_27)); }
inline bool get_normalize_27() const { return ___normalize_27; }
inline bool* get_address_of_normalize_27() { return &___normalize_27; }
inline void set_normalize_27(bool value)
{
___normalize_27 = value;
}
inline static int32_t get_offset_of_normalizeMin_28() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___normalizeMin_28)); }
inline float get_normalizeMin_28() const { return ___normalizeMin_28; }
inline float* get_address_of_normalizeMin_28() { return &___normalizeMin_28; }
inline void set_normalizeMin_28(float value)
{
___normalizeMin_28 = value;
}
inline static int32_t get_offset_of_normalizeMax_29() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___normalizeMax_29)); }
inline float get_normalizeMax_29() const { return ___normalizeMax_29; }
inline float* get_address_of_normalizeMax_29() { return &___normalizeMax_29; }
inline void set_normalizeMax_29(float value)
{
___normalizeMax_29 = value;
}
inline static int32_t get_offset_of_normalizeZero_30() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___normalizeZero_30)); }
inline float get_normalizeZero_30() const { return ___normalizeZero_30; }
inline float* get_address_of_normalizeZero_30() { return &___normalizeZero_30; }
inline void set_normalizeZero_30(float value)
{
___normalizeZero_30 = value;
}
inline static int32_t get_offset_of_scale_31() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___scale_31)); }
inline bool get_scale_31() const { return ___scale_31; }
inline bool* get_address_of_scale_31() { return &___scale_31; }
inline void set_scale_31(bool value)
{
___scale_31 = value;
}
inline static int32_t get_offset_of_scaleFactor_32() { return static_cast<int32_t>(offsetof(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD, ___scaleFactor_32)); }
inline float get_scaleFactor_32() const { return ___scaleFactor_32; }
inline float* get_address_of_scaleFactor_32() { return &___scaleFactor_32; }
inline void set_scaleFactor_32(float value)
{
___scaleFactor_32 = value;
}
};
// Dissonance.BaseCommsTrigger
struct BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Dissonance.Log Dissonance.BaseCommsTrigger::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_4;
// System.Boolean Dissonance.BaseCommsTrigger::_wasColliderTriggered
bool ____wasColliderTriggered_5;
// System.Collections.Generic.List`1<UnityEngine.GameObject> Dissonance.BaseCommsTrigger::_entitiesInCollider
List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * ____entitiesInCollider_6;
// Dissonance.TokenSet Dissonance.BaseCommsTrigger::_tokens
TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 * ____tokens_7;
// System.Nullable`1<System.Boolean> Dissonance.BaseCommsTrigger::_cachedTokenActivation
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ____cachedTokenActivation_8;
// Dissonance.DissonanceComms Dissonance.BaseCommsTrigger::_comms
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * ____comms_9;
public:
inline static int32_t get_offset_of_Log_4() { return static_cast<int32_t>(offsetof(BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369, ___Log_4)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_4() const { return ___Log_4; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_4() { return &___Log_4; }
inline void set_Log_4(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_4), (void*)value);
}
inline static int32_t get_offset_of__wasColliderTriggered_5() { return static_cast<int32_t>(offsetof(BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369, ____wasColliderTriggered_5)); }
inline bool get__wasColliderTriggered_5() const { return ____wasColliderTriggered_5; }
inline bool* get_address_of__wasColliderTriggered_5() { return &____wasColliderTriggered_5; }
inline void set__wasColliderTriggered_5(bool value)
{
____wasColliderTriggered_5 = value;
}
inline static int32_t get_offset_of__entitiesInCollider_6() { return static_cast<int32_t>(offsetof(BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369, ____entitiesInCollider_6)); }
inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * get__entitiesInCollider_6() const { return ____entitiesInCollider_6; }
inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 ** get_address_of__entitiesInCollider_6() { return &____entitiesInCollider_6; }
inline void set__entitiesInCollider_6(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * value)
{
____entitiesInCollider_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____entitiesInCollider_6), (void*)value);
}
inline static int32_t get_offset_of__tokens_7() { return static_cast<int32_t>(offsetof(BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369, ____tokens_7)); }
inline TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 * get__tokens_7() const { return ____tokens_7; }
inline TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 ** get_address_of__tokens_7() { return &____tokens_7; }
inline void set__tokens_7(TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 * value)
{
____tokens_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____tokens_7), (void*)value);
}
inline static int32_t get_offset_of__cachedTokenActivation_8() { return static_cast<int32_t>(offsetof(BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369, ____cachedTokenActivation_8)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get__cachedTokenActivation_8() const { return ____cachedTokenActivation_8; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of__cachedTokenActivation_8() { return &____cachedTokenActivation_8; }
inline void set__cachedTokenActivation_8(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
____cachedTokenActivation_8 = value;
}
inline static int32_t get_offset_of__comms_9() { return static_cast<int32_t>(offsetof(BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369, ____comms_9)); }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * get__comms_9() const { return ____comms_9; }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 ** get_address_of__comms_9() { return &____comms_9; }
inline void set__comms_9(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * value)
{
____comms_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comms_9), (void*)value);
}
};
// UnityEngine.Experimental.XR.Interaction.BasePoseProvider
struct BasePoseProvider_t04EB173A7CC01D10EF789D54577ACAEBFAD5B04E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
public:
};
// Dissonance.Audio.Capture.BasicMicrophoneCapture
struct BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Byte Dissonance.Audio.Capture.BasicMicrophoneCapture::_maxReadBufferPower
uint8_t ____maxReadBufferPower_5;
// Dissonance.Datastructures.POTBuffer Dissonance.Audio.Capture.BasicMicrophoneCapture::_readBuffer
POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A * ____readBuffer_6;
// Dissonance.Audio.Capture.BufferedSampleProvider Dissonance.Audio.Capture.BasicMicrophoneCapture::_rawMicSamples
BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * ____rawMicSamples_7;
// Dissonance.Audio.Capture.IFrameProvider Dissonance.Audio.Capture.BasicMicrophoneCapture::_rawMicFrames
RuntimeObject* ____rawMicFrames_8;
// System.Single[] Dissonance.Audio.Capture.BasicMicrophoneCapture::_frame
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____frame_9;
// NAudio.Wave.WaveFormat Dissonance.Audio.Capture.BasicMicrophoneCapture::_format
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * ____format_10;
// UnityEngine.AudioClip Dissonance.Audio.Capture.BasicMicrophoneCapture::_clip
AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * ____clip_11;
// System.Int32 Dissonance.Audio.Capture.BasicMicrophoneCapture::_readHead
int32_t ____readHead_12;
// System.Boolean Dissonance.Audio.Capture.BasicMicrophoneCapture::_started
bool ____started_13;
// System.String Dissonance.Audio.Capture.BasicMicrophoneCapture::_micName
String_t* ____micName_14;
// System.Boolean Dissonance.Audio.Capture.BasicMicrophoneCapture::_audioDeviceChanged
bool ____audioDeviceChanged_15;
// Dissonance.Audio.AudioFileWriter Dissonance.Audio.Capture.BasicMicrophoneCapture::_microphoneDiagnosticOutput
AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * ____microphoneDiagnosticOutput_16;
// System.Collections.Generic.List`1<Dissonance.Audio.Capture.IMicrophoneSubscriber> Dissonance.Audio.Capture.BasicMicrophoneCapture::_subscribers
List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 * ____subscribers_17;
// System.TimeSpan Dissonance.Audio.Capture.BasicMicrophoneCapture::<Latency>k__BackingField
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CLatencyU3Ek__BackingField_18;
public:
inline static int32_t get_offset_of__maxReadBufferPower_5() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____maxReadBufferPower_5)); }
inline uint8_t get__maxReadBufferPower_5() const { return ____maxReadBufferPower_5; }
inline uint8_t* get_address_of__maxReadBufferPower_5() { return &____maxReadBufferPower_5; }
inline void set__maxReadBufferPower_5(uint8_t value)
{
____maxReadBufferPower_5 = value;
}
inline static int32_t get_offset_of__readBuffer_6() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____readBuffer_6)); }
inline POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A * get__readBuffer_6() const { return ____readBuffer_6; }
inline POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A ** get_address_of__readBuffer_6() { return &____readBuffer_6; }
inline void set__readBuffer_6(POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A * value)
{
____readBuffer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____readBuffer_6), (void*)value);
}
inline static int32_t get_offset_of__rawMicSamples_7() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____rawMicSamples_7)); }
inline BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * get__rawMicSamples_7() const { return ____rawMicSamples_7; }
inline BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF ** get_address_of__rawMicSamples_7() { return &____rawMicSamples_7; }
inline void set__rawMicSamples_7(BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF * value)
{
____rawMicSamples_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rawMicSamples_7), (void*)value);
}
inline static int32_t get_offset_of__rawMicFrames_8() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____rawMicFrames_8)); }
inline RuntimeObject* get__rawMicFrames_8() const { return ____rawMicFrames_8; }
inline RuntimeObject** get_address_of__rawMicFrames_8() { return &____rawMicFrames_8; }
inline void set__rawMicFrames_8(RuntimeObject* value)
{
____rawMicFrames_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rawMicFrames_8), (void*)value);
}
inline static int32_t get_offset_of__frame_9() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____frame_9)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__frame_9() const { return ____frame_9; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__frame_9() { return &____frame_9; }
inline void set__frame_9(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
____frame_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____frame_9), (void*)value);
}
inline static int32_t get_offset_of__format_10() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____format_10)); }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * get__format_10() const { return ____format_10; }
inline WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC ** get_address_of__format_10() { return &____format_10; }
inline void set__format_10(WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC * value)
{
____format_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____format_10), (void*)value);
}
inline static int32_t get_offset_of__clip_11() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____clip_11)); }
inline AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * get__clip_11() const { return ____clip_11; }
inline AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE ** get_address_of__clip_11() { return &____clip_11; }
inline void set__clip_11(AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE * value)
{
____clip_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clip_11), (void*)value);
}
inline static int32_t get_offset_of__readHead_12() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____readHead_12)); }
inline int32_t get__readHead_12() const { return ____readHead_12; }
inline int32_t* get_address_of__readHead_12() { return &____readHead_12; }
inline void set__readHead_12(int32_t value)
{
____readHead_12 = value;
}
inline static int32_t get_offset_of__started_13() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____started_13)); }
inline bool get__started_13() const { return ____started_13; }
inline bool* get_address_of__started_13() { return &____started_13; }
inline void set__started_13(bool value)
{
____started_13 = value;
}
inline static int32_t get_offset_of__micName_14() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____micName_14)); }
inline String_t* get__micName_14() const { return ____micName_14; }
inline String_t** get_address_of__micName_14() { return &____micName_14; }
inline void set__micName_14(String_t* value)
{
____micName_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____micName_14), (void*)value);
}
inline static int32_t get_offset_of__audioDeviceChanged_15() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____audioDeviceChanged_15)); }
inline bool get__audioDeviceChanged_15() const { return ____audioDeviceChanged_15; }
inline bool* get_address_of__audioDeviceChanged_15() { return &____audioDeviceChanged_15; }
inline void set__audioDeviceChanged_15(bool value)
{
____audioDeviceChanged_15 = value;
}
inline static int32_t get_offset_of__microphoneDiagnosticOutput_16() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____microphoneDiagnosticOutput_16)); }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * get__microphoneDiagnosticOutput_16() const { return ____microphoneDiagnosticOutput_16; }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A ** get_address_of__microphoneDiagnosticOutput_16() { return &____microphoneDiagnosticOutput_16; }
inline void set__microphoneDiagnosticOutput_16(AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * value)
{
____microphoneDiagnosticOutput_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____microphoneDiagnosticOutput_16), (void*)value);
}
inline static int32_t get_offset_of__subscribers_17() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ____subscribers_17)); }
inline List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 * get__subscribers_17() const { return ____subscribers_17; }
inline List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 ** get_address_of__subscribers_17() { return &____subscribers_17; }
inline void set__subscribers_17(List_1_t4F84674CB0B5BE1790E5717C5E04F7634170E0D1 * value)
{
____subscribers_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____subscribers_17), (void*)value);
}
inline static int32_t get_offset_of_U3CLatencyU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA, ___U3CLatencyU3Ek__BackingField_18)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CLatencyU3Ek__BackingField_18() const { return ___U3CLatencyU3Ek__BackingField_18; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CLatencyU3Ek__BackingField_18() { return &___U3CLatencyU3Ek__BackingField_18; }
inline void set_U3CLatencyU3Ek__BackingField_18(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___U3CLatencyU3Ek__BackingField_18 = value;
}
};
struct BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Capture.BasicMicrophoneCapture::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_4;
public:
inline static int32_t get_offset_of_Log_4() { return static_cast<int32_t>(offsetof(BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA_StaticFields, ___Log_4)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_4() const { return ___Log_4; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_4() { return &___Log_4; }
inline void set_Log_4(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_4), (void*)value);
}
};
// UnityEngine.InputSystem.XR.BoneControl
struct BoneControl_tA03A78E913DE235701B928117ADFA08CF0E182DF : public InputControl_1_t3E145930F69D67E7F81CDDF20734060B97CA81E6
{
public:
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.XR.BoneControl::<parentBoneIndex>k__BackingField
IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * ___U3CparentBoneIndexU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.XR.BoneControl::<position>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CpositionU3Ek__BackingField_23;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.XR.BoneControl::<rotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CrotationU3Ek__BackingField_24;
public:
inline static int32_t get_offset_of_U3CparentBoneIndexU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(BoneControl_tA03A78E913DE235701B928117ADFA08CF0E182DF, ___U3CparentBoneIndexU3Ek__BackingField_22)); }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * get_U3CparentBoneIndexU3Ek__BackingField_22() const { return ___U3CparentBoneIndexU3Ek__BackingField_22; }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 ** get_address_of_U3CparentBoneIndexU3Ek__BackingField_22() { return &___U3CparentBoneIndexU3Ek__BackingField_22; }
inline void set_U3CparentBoneIndexU3Ek__BackingField_22(IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * value)
{
___U3CparentBoneIndexU3Ek__BackingField_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CparentBoneIndexU3Ek__BackingField_22), (void*)value);
}
inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(BoneControl_tA03A78E913DE235701B928117ADFA08CF0E182DF, ___U3CpositionU3Ek__BackingField_23)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CpositionU3Ek__BackingField_23() const { return ___U3CpositionU3Ek__BackingField_23; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CpositionU3Ek__BackingField_23() { return &___U3CpositionU3Ek__BackingField_23; }
inline void set_U3CpositionU3Ek__BackingField_23(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CpositionU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpositionU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CrotationU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(BoneControl_tA03A78E913DE235701B928117ADFA08CF0E182DF, ___U3CrotationU3Ek__BackingField_24)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CrotationU3Ek__BackingField_24() const { return ___U3CrotationU3Ek__BackingField_24; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CrotationU3Ek__BackingField_24() { return &___U3CrotationU3Ek__BackingField_24; }
inline void set_U3CrotationU3Ek__BackingField_24(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CrotationU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrotationU3Ek__BackingField_24), (void*)value);
}
};
// UnityEditor.XR.LegacyInputHelpers.CameraOffset
struct CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.GameObject UnityEditor.XR.LegacyInputHelpers.CameraOffset::m_CameraFloorOffsetObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_CameraFloorOffsetObject_5;
// UnityEditor.XR.LegacyInputHelpers.UserRequestedTrackingMode UnityEditor.XR.LegacyInputHelpers.CameraOffset::m_RequestedTrackingMode
int32_t ___m_RequestedTrackingMode_6;
// UnityEngine.XR.TrackingOriginModeFlags UnityEditor.XR.LegacyInputHelpers.CameraOffset::m_TrackingOriginMode
int32_t ___m_TrackingOriginMode_7;
// UnityEngine.XR.TrackingSpaceType UnityEditor.XR.LegacyInputHelpers.CameraOffset::m_TrackingSpace
int32_t ___m_TrackingSpace_8;
// System.Single UnityEditor.XR.LegacyInputHelpers.CameraOffset::m_CameraYOffset
float ___m_CameraYOffset_9;
// System.Boolean UnityEditor.XR.LegacyInputHelpers.CameraOffset::m_CameraInitialized
bool ___m_CameraInitialized_10;
// System.Boolean UnityEditor.XR.LegacyInputHelpers.CameraOffset::m_CameraInitializing
bool ___m_CameraInitializing_11;
public:
inline static int32_t get_offset_of_m_CameraFloorOffsetObject_5() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D, ___m_CameraFloorOffsetObject_5)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_CameraFloorOffsetObject_5() const { return ___m_CameraFloorOffsetObject_5; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_CameraFloorOffsetObject_5() { return &___m_CameraFloorOffsetObject_5; }
inline void set_m_CameraFloorOffsetObject_5(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_CameraFloorOffsetObject_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CameraFloorOffsetObject_5), (void*)value);
}
inline static int32_t get_offset_of_m_RequestedTrackingMode_6() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D, ___m_RequestedTrackingMode_6)); }
inline int32_t get_m_RequestedTrackingMode_6() const { return ___m_RequestedTrackingMode_6; }
inline int32_t* get_address_of_m_RequestedTrackingMode_6() { return &___m_RequestedTrackingMode_6; }
inline void set_m_RequestedTrackingMode_6(int32_t value)
{
___m_RequestedTrackingMode_6 = value;
}
inline static int32_t get_offset_of_m_TrackingOriginMode_7() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D, ___m_TrackingOriginMode_7)); }
inline int32_t get_m_TrackingOriginMode_7() const { return ___m_TrackingOriginMode_7; }
inline int32_t* get_address_of_m_TrackingOriginMode_7() { return &___m_TrackingOriginMode_7; }
inline void set_m_TrackingOriginMode_7(int32_t value)
{
___m_TrackingOriginMode_7 = value;
}
inline static int32_t get_offset_of_m_TrackingSpace_8() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D, ___m_TrackingSpace_8)); }
inline int32_t get_m_TrackingSpace_8() const { return ___m_TrackingSpace_8; }
inline int32_t* get_address_of_m_TrackingSpace_8() { return &___m_TrackingSpace_8; }
inline void set_m_TrackingSpace_8(int32_t value)
{
___m_TrackingSpace_8 = value;
}
inline static int32_t get_offset_of_m_CameraYOffset_9() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D, ___m_CameraYOffset_9)); }
inline float get_m_CameraYOffset_9() const { return ___m_CameraYOffset_9; }
inline float* get_address_of_m_CameraYOffset_9() { return &___m_CameraYOffset_9; }
inline void set_m_CameraYOffset_9(float value)
{
___m_CameraYOffset_9 = value;
}
inline static int32_t get_offset_of_m_CameraInitialized_10() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D, ___m_CameraInitialized_10)); }
inline bool get_m_CameraInitialized_10() const { return ___m_CameraInitialized_10; }
inline bool* get_address_of_m_CameraInitialized_10() { return &___m_CameraInitialized_10; }
inline void set_m_CameraInitialized_10(bool value)
{
___m_CameraInitialized_10 = value;
}
inline static int32_t get_offset_of_m_CameraInitializing_11() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D, ___m_CameraInitializing_11)); }
inline bool get_m_CameraInitializing_11() const { return ___m_CameraInitializing_11; }
inline bool* get_address_of_m_CameraInitializing_11() { return &___m_CameraInitializing_11; }
inline void set_m_CameraInitializing_11(bool value)
{
___m_CameraInitializing_11 = value;
}
};
struct CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem> UnityEditor.XR.LegacyInputHelpers.CameraOffset::s_InputSubsystems
List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * ___s_InputSubsystems_12;
public:
inline static int32_t get_offset_of_s_InputSubsystems_12() { return static_cast<int32_t>(offsetof(CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D_StaticFields, ___s_InputSubsystems_12)); }
inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * get_s_InputSubsystems_12() const { return ___s_InputSubsystems_12; }
inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 ** get_address_of_s_InputSubsystems_12() { return &___s_InputSubsystems_12; }
inline void set_s_InputSubsystems_12(List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * value)
{
___s_InputSubsystems_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InputSubsystems_12), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.CanvasController
struct CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Action`1<Mirror.NetworkConnection> Mirror.Examples.MultipleMatch.CanvasController::OnPlayerDisconnected
Action_1_tDD0F70E97D1C1787B9CDF47B4B7B69D3C9CA597F * ___OnPlayerDisconnected_4;
// System.Guid Mirror.Examples.MultipleMatch.CanvasController::localPlayerMatch
Guid_t ___localPlayerMatch_10;
// System.Guid Mirror.Examples.MultipleMatch.CanvasController::localJoinedMatch
Guid_t ___localJoinedMatch_11;
// System.Guid Mirror.Examples.MultipleMatch.CanvasController::selectedMatch
Guid_t ___selectedMatch_12;
// System.Int32 Mirror.Examples.MultipleMatch.CanvasController::playerIndex
int32_t ___playerIndex_13;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.CanvasController::matchList
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___matchList_14;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.CanvasController::matchPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___matchPrefab_15;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.CanvasController::matchControllerPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___matchControllerPrefab_16;
// UnityEngine.UI.Button Mirror.Examples.MultipleMatch.CanvasController::createButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___createButton_17;
// UnityEngine.UI.Button Mirror.Examples.MultipleMatch.CanvasController::joinButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___joinButton_18;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.CanvasController::lobbyView
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___lobbyView_19;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.CanvasController::roomView
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___roomView_20;
// Mirror.Examples.MultipleMatch.RoomGUI Mirror.Examples.MultipleMatch.CanvasController::roomGUI
RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78 * ___roomGUI_21;
// UnityEngine.UI.ToggleGroup Mirror.Examples.MultipleMatch.CanvasController::toggleGroup
ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 * ___toggleGroup_22;
public:
inline static int32_t get_offset_of_OnPlayerDisconnected_4() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___OnPlayerDisconnected_4)); }
inline Action_1_tDD0F70E97D1C1787B9CDF47B4B7B69D3C9CA597F * get_OnPlayerDisconnected_4() const { return ___OnPlayerDisconnected_4; }
inline Action_1_tDD0F70E97D1C1787B9CDF47B4B7B69D3C9CA597F ** get_address_of_OnPlayerDisconnected_4() { return &___OnPlayerDisconnected_4; }
inline void set_OnPlayerDisconnected_4(Action_1_tDD0F70E97D1C1787B9CDF47B4B7B69D3C9CA597F * value)
{
___OnPlayerDisconnected_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerDisconnected_4), (void*)value);
}
inline static int32_t get_offset_of_localPlayerMatch_10() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___localPlayerMatch_10)); }
inline Guid_t get_localPlayerMatch_10() const { return ___localPlayerMatch_10; }
inline Guid_t * get_address_of_localPlayerMatch_10() { return &___localPlayerMatch_10; }
inline void set_localPlayerMatch_10(Guid_t value)
{
___localPlayerMatch_10 = value;
}
inline static int32_t get_offset_of_localJoinedMatch_11() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___localJoinedMatch_11)); }
inline Guid_t get_localJoinedMatch_11() const { return ___localJoinedMatch_11; }
inline Guid_t * get_address_of_localJoinedMatch_11() { return &___localJoinedMatch_11; }
inline void set_localJoinedMatch_11(Guid_t value)
{
___localJoinedMatch_11 = value;
}
inline static int32_t get_offset_of_selectedMatch_12() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___selectedMatch_12)); }
inline Guid_t get_selectedMatch_12() const { return ___selectedMatch_12; }
inline Guid_t * get_address_of_selectedMatch_12() { return &___selectedMatch_12; }
inline void set_selectedMatch_12(Guid_t value)
{
___selectedMatch_12 = value;
}
inline static int32_t get_offset_of_playerIndex_13() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___playerIndex_13)); }
inline int32_t get_playerIndex_13() const { return ___playerIndex_13; }
inline int32_t* get_address_of_playerIndex_13() { return &___playerIndex_13; }
inline void set_playerIndex_13(int32_t value)
{
___playerIndex_13 = value;
}
inline static int32_t get_offset_of_matchList_14() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___matchList_14)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_matchList_14() const { return ___matchList_14; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_matchList_14() { return &___matchList_14; }
inline void set_matchList_14(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___matchList_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchList_14), (void*)value);
}
inline static int32_t get_offset_of_matchPrefab_15() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___matchPrefab_15)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_matchPrefab_15() const { return ___matchPrefab_15; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_matchPrefab_15() { return &___matchPrefab_15; }
inline void set_matchPrefab_15(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___matchPrefab_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchPrefab_15), (void*)value);
}
inline static int32_t get_offset_of_matchControllerPrefab_16() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___matchControllerPrefab_16)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_matchControllerPrefab_16() const { return ___matchControllerPrefab_16; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_matchControllerPrefab_16() { return &___matchControllerPrefab_16; }
inline void set_matchControllerPrefab_16(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___matchControllerPrefab_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchControllerPrefab_16), (void*)value);
}
inline static int32_t get_offset_of_createButton_17() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___createButton_17)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_createButton_17() const { return ___createButton_17; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_createButton_17() { return &___createButton_17; }
inline void set_createButton_17(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___createButton_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___createButton_17), (void*)value);
}
inline static int32_t get_offset_of_joinButton_18() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___joinButton_18)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_joinButton_18() const { return ___joinButton_18; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_joinButton_18() { return &___joinButton_18; }
inline void set_joinButton_18(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___joinButton_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___joinButton_18), (void*)value);
}
inline static int32_t get_offset_of_lobbyView_19() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___lobbyView_19)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_lobbyView_19() const { return ___lobbyView_19; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_lobbyView_19() { return &___lobbyView_19; }
inline void set_lobbyView_19(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___lobbyView_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lobbyView_19), (void*)value);
}
inline static int32_t get_offset_of_roomView_20() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___roomView_20)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_roomView_20() const { return ___roomView_20; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_roomView_20() { return &___roomView_20; }
inline void set_roomView_20(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___roomView_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___roomView_20), (void*)value);
}
inline static int32_t get_offset_of_roomGUI_21() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___roomGUI_21)); }
inline RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78 * get_roomGUI_21() const { return ___roomGUI_21; }
inline RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78 ** get_address_of_roomGUI_21() { return &___roomGUI_21; }
inline void set_roomGUI_21(RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78 * value)
{
___roomGUI_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___roomGUI_21), (void*)value);
}
inline static int32_t get_offset_of_toggleGroup_22() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D, ___toggleGroup_22)); }
inline ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 * get_toggleGroup_22() const { return ___toggleGroup_22; }
inline ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 ** get_address_of_toggleGroup_22() { return &___toggleGroup_22; }
inline void set_toggleGroup_22(ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 * value)
{
___toggleGroup_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___toggleGroup_22), (void*)value);
}
};
struct CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<Mirror.NetworkConnection,System.Guid> Mirror.Examples.MultipleMatch.CanvasController::playerMatches
Dictionary_2_tA170FF089B0D79D7FB5F8103E204E2228389FA52 * ___playerMatches_5;
// System.Collections.Generic.Dictionary`2<System.Guid,Mirror.Examples.MultipleMatch.MatchInfo> Mirror.Examples.MultipleMatch.CanvasController::openMatches
Dictionary_2_tD45905B3308F3A9FF85973451EA8D635912FBFFB * ___openMatches_6;
// System.Collections.Generic.Dictionary`2<System.Guid,System.Collections.Generic.HashSet`1<Mirror.NetworkConnection>> Mirror.Examples.MultipleMatch.CanvasController::matchConnections
Dictionary_2_t18408A8739CDC98CB4C267D6E79759D21845375D * ___matchConnections_7;
// System.Collections.Generic.Dictionary`2<Mirror.NetworkConnection,Mirror.Examples.MultipleMatch.PlayerInfo> Mirror.Examples.MultipleMatch.CanvasController::playerInfos
Dictionary_2_tAAEC28EBB63F2A0F01461299811AD67701E18869 * ___playerInfos_8;
// System.Collections.Generic.List`1<Mirror.NetworkConnection> Mirror.Examples.MultipleMatch.CanvasController::waitingConnections
List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB * ___waitingConnections_9;
public:
inline static int32_t get_offset_of_playerMatches_5() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields, ___playerMatches_5)); }
inline Dictionary_2_tA170FF089B0D79D7FB5F8103E204E2228389FA52 * get_playerMatches_5() const { return ___playerMatches_5; }
inline Dictionary_2_tA170FF089B0D79D7FB5F8103E204E2228389FA52 ** get_address_of_playerMatches_5() { return &___playerMatches_5; }
inline void set_playerMatches_5(Dictionary_2_tA170FF089B0D79D7FB5F8103E204E2228389FA52 * value)
{
___playerMatches_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerMatches_5), (void*)value);
}
inline static int32_t get_offset_of_openMatches_6() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields, ___openMatches_6)); }
inline Dictionary_2_tD45905B3308F3A9FF85973451EA8D635912FBFFB * get_openMatches_6() const { return ___openMatches_6; }
inline Dictionary_2_tD45905B3308F3A9FF85973451EA8D635912FBFFB ** get_address_of_openMatches_6() { return &___openMatches_6; }
inline void set_openMatches_6(Dictionary_2_tD45905B3308F3A9FF85973451EA8D635912FBFFB * value)
{
___openMatches_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___openMatches_6), (void*)value);
}
inline static int32_t get_offset_of_matchConnections_7() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields, ___matchConnections_7)); }
inline Dictionary_2_t18408A8739CDC98CB4C267D6E79759D21845375D * get_matchConnections_7() const { return ___matchConnections_7; }
inline Dictionary_2_t18408A8739CDC98CB4C267D6E79759D21845375D ** get_address_of_matchConnections_7() { return &___matchConnections_7; }
inline void set_matchConnections_7(Dictionary_2_t18408A8739CDC98CB4C267D6E79759D21845375D * value)
{
___matchConnections_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchConnections_7), (void*)value);
}
inline static int32_t get_offset_of_playerInfos_8() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields, ___playerInfos_8)); }
inline Dictionary_2_tAAEC28EBB63F2A0F01461299811AD67701E18869 * get_playerInfos_8() const { return ___playerInfos_8; }
inline Dictionary_2_tAAEC28EBB63F2A0F01461299811AD67701E18869 ** get_address_of_playerInfos_8() { return &___playerInfos_8; }
inline void set_playerInfos_8(Dictionary_2_tAAEC28EBB63F2A0F01461299811AD67701E18869 * value)
{
___playerInfos_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerInfos_8), (void*)value);
}
inline static int32_t get_offset_of_waitingConnections_9() { return static_cast<int32_t>(offsetof(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields, ___waitingConnections_9)); }
inline List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB * get_waitingConnections_9() const { return ___waitingConnections_9; }
inline List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB ** get_address_of_waitingConnections_9() { return &___waitingConnections_9; }
inline void set_waitingConnections_9(List_1_t7E91AB3AAB4208BA581C223864601CAB3A7E2ADB * value)
{
___waitingConnections_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___waitingConnections_9), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.CellGUI
struct CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Mirror.Examples.MultipleMatch.MatchController Mirror.Examples.MultipleMatch.CellGUI::matchController
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * ___matchController_4;
// Mirror.Examples.MultipleMatch.CellValue Mirror.Examples.MultipleMatch.CellGUI::cellValue
uint16_t ___cellValue_5;
// UnityEngine.UI.Image Mirror.Examples.MultipleMatch.CellGUI::image
Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___image_6;
// UnityEngine.UI.Button Mirror.Examples.MultipleMatch.CellGUI::button
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___button_7;
// Mirror.NetworkIdentity Mirror.Examples.MultipleMatch.CellGUI::playerIdentity
NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___playerIdentity_8;
public:
inline static int32_t get_offset_of_matchController_4() { return static_cast<int32_t>(offsetof(CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5, ___matchController_4)); }
inline MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * get_matchController_4() const { return ___matchController_4; }
inline MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 ** get_address_of_matchController_4() { return &___matchController_4; }
inline void set_matchController_4(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 * value)
{
___matchController_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchController_4), (void*)value);
}
inline static int32_t get_offset_of_cellValue_5() { return static_cast<int32_t>(offsetof(CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5, ___cellValue_5)); }
inline uint16_t get_cellValue_5() const { return ___cellValue_5; }
inline uint16_t* get_address_of_cellValue_5() { return &___cellValue_5; }
inline void set_cellValue_5(uint16_t value)
{
___cellValue_5 = value;
}
inline static int32_t get_offset_of_image_6() { return static_cast<int32_t>(offsetof(CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5, ___image_6)); }
inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get_image_6() const { return ___image_6; }
inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of_image_6() { return &___image_6; }
inline void set_image_6(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value)
{
___image_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___image_6), (void*)value);
}
inline static int32_t get_offset_of_button_7() { return static_cast<int32_t>(offsetof(CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5, ___button_7)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_button_7() const { return ___button_7; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_button_7() { return &___button_7; }
inline void set_button_7(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___button_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___button_7), (void*)value);
}
inline static int32_t get_offset_of_playerIdentity_8() { return static_cast<int32_t>(offsetof(CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5, ___playerIdentity_8)); }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_playerIdentity_8() const { return ___playerIdentity_8; }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_playerIdentity_8() { return &___playerIdentity_8; }
inline void set_playerIdentity_8(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value)
{
___playerIdentity_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerIdentity_8), (void*)value);
}
};
// Dissonance.Demo.ChatInputController
struct ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Boolean Dissonance.Demo.ChatInputController::_isInputtingText
bool ____isInputtingText_4;
// System.String Dissonance.Demo.ChatInputController::_targetChannel
String_t* ____targetChannel_5;
// Dissonance.DissonanceComms Dissonance.Demo.ChatInputController::Comms
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * ___Comms_6;
// System.String Dissonance.Demo.ChatInputController::Team1Channel
String_t* ___Team1Channel_7;
// System.String Dissonance.Demo.ChatInputController::Team2Channel
String_t* ___Team2Channel_8;
// UnityEngine.UI.InputField Dissonance.Demo.ChatInputController::_input
InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ____input_9;
// Dissonance.Demo.ChatLogController Dissonance.Demo.ChatInputController::_log
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4 * ____log_10;
public:
inline static int32_t get_offset_of__isInputtingText_4() { return static_cast<int32_t>(offsetof(ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136, ____isInputtingText_4)); }
inline bool get__isInputtingText_4() const { return ____isInputtingText_4; }
inline bool* get_address_of__isInputtingText_4() { return &____isInputtingText_4; }
inline void set__isInputtingText_4(bool value)
{
____isInputtingText_4 = value;
}
inline static int32_t get_offset_of__targetChannel_5() { return static_cast<int32_t>(offsetof(ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136, ____targetChannel_5)); }
inline String_t* get__targetChannel_5() const { return ____targetChannel_5; }
inline String_t** get_address_of__targetChannel_5() { return &____targetChannel_5; }
inline void set__targetChannel_5(String_t* value)
{
____targetChannel_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetChannel_5), (void*)value);
}
inline static int32_t get_offset_of_Comms_6() { return static_cast<int32_t>(offsetof(ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136, ___Comms_6)); }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * get_Comms_6() const { return ___Comms_6; }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 ** get_address_of_Comms_6() { return &___Comms_6; }
inline void set_Comms_6(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * value)
{
___Comms_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Comms_6), (void*)value);
}
inline static int32_t get_offset_of_Team1Channel_7() { return static_cast<int32_t>(offsetof(ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136, ___Team1Channel_7)); }
inline String_t* get_Team1Channel_7() const { return ___Team1Channel_7; }
inline String_t** get_address_of_Team1Channel_7() { return &___Team1Channel_7; }
inline void set_Team1Channel_7(String_t* value)
{
___Team1Channel_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Team1Channel_7), (void*)value);
}
inline static int32_t get_offset_of_Team2Channel_8() { return static_cast<int32_t>(offsetof(ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136, ___Team2Channel_8)); }
inline String_t* get_Team2Channel_8() const { return ___Team2Channel_8; }
inline String_t** get_address_of_Team2Channel_8() { return &___Team2Channel_8; }
inline void set_Team2Channel_8(String_t* value)
{
___Team2Channel_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Team2Channel_8), (void*)value);
}
inline static int32_t get_offset_of__input_9() { return static_cast<int32_t>(offsetof(ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136, ____input_9)); }
inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get__input_9() const { return ____input_9; }
inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of__input_9() { return &____input_9; }
inline void set__input_9(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value)
{
____input_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____input_9), (void*)value);
}
inline static int32_t get_offset_of__log_10() { return static_cast<int32_t>(offsetof(ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136, ____log_10)); }
inline ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4 * get__log_10() const { return ____log_10; }
inline ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4 ** get_address_of__log_10() { return &____log_10; }
inline void set__log_10(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4 * value)
{
____log_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____log_10), (void*)value);
}
};
// Dissonance.Demo.ChatLogController
struct ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Dissonance.DissonanceComms Dissonance.Demo.ChatLogController::Comms
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * ___Comms_4;
// UnityEngine.GameObject Dissonance.Demo.ChatLogController::_textPrototype
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ____textPrototype_5;
// UnityEngine.CanvasGroup Dissonance.Demo.ChatLogController::_canvas
CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * ____canvas_6;
// System.Single Dissonance.Demo.ChatLogController::_heightLimit
float ____heightLimit_7;
// System.Collections.Generic.Queue`1<Dissonance.Demo.ChatLogController/ChatLogEntry> Dissonance.Demo.ChatLogController::_entries
Queue_1_tEFC6C725E408C2AB7A61282DE3B17E7F0E55FF13 * ____entries_8;
// System.Boolean Dissonance.Demo.ChatLogController::<ForceShow>k__BackingField
bool ___U3CForceShowU3Ek__BackingField_9;
// System.DateTime Dissonance.Demo.ChatLogController::_fadeOutStartTime
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ____fadeOutStartTime_10;
public:
inline static int32_t get_offset_of_Comms_4() { return static_cast<int32_t>(offsetof(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4, ___Comms_4)); }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * get_Comms_4() const { return ___Comms_4; }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 ** get_address_of_Comms_4() { return &___Comms_4; }
inline void set_Comms_4(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * value)
{
___Comms_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Comms_4), (void*)value);
}
inline static int32_t get_offset_of__textPrototype_5() { return static_cast<int32_t>(offsetof(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4, ____textPrototype_5)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get__textPrototype_5() const { return ____textPrototype_5; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of__textPrototype_5() { return &____textPrototype_5; }
inline void set__textPrototype_5(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
____textPrototype_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____textPrototype_5), (void*)value);
}
inline static int32_t get_offset_of__canvas_6() { return static_cast<int32_t>(offsetof(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4, ____canvas_6)); }
inline CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * get__canvas_6() const { return ____canvas_6; }
inline CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F ** get_address_of__canvas_6() { return &____canvas_6; }
inline void set__canvas_6(CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * value)
{
____canvas_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____canvas_6), (void*)value);
}
inline static int32_t get_offset_of__heightLimit_7() { return static_cast<int32_t>(offsetof(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4, ____heightLimit_7)); }
inline float get__heightLimit_7() const { return ____heightLimit_7; }
inline float* get_address_of__heightLimit_7() { return &____heightLimit_7; }
inline void set__heightLimit_7(float value)
{
____heightLimit_7 = value;
}
inline static int32_t get_offset_of__entries_8() { return static_cast<int32_t>(offsetof(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4, ____entries_8)); }
inline Queue_1_tEFC6C725E408C2AB7A61282DE3B17E7F0E55FF13 * get__entries_8() const { return ____entries_8; }
inline Queue_1_tEFC6C725E408C2AB7A61282DE3B17E7F0E55FF13 ** get_address_of__entries_8() { return &____entries_8; }
inline void set__entries_8(Queue_1_tEFC6C725E408C2AB7A61282DE3B17E7F0E55FF13 * value)
{
____entries_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____entries_8), (void*)value);
}
inline static int32_t get_offset_of_U3CForceShowU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4, ___U3CForceShowU3Ek__BackingField_9)); }
inline bool get_U3CForceShowU3Ek__BackingField_9() const { return ___U3CForceShowU3Ek__BackingField_9; }
inline bool* get_address_of_U3CForceShowU3Ek__BackingField_9() { return &___U3CForceShowU3Ek__BackingField_9; }
inline void set_U3CForceShowU3Ek__BackingField_9(bool value)
{
___U3CForceShowU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of__fadeOutStartTime_10() { return static_cast<int32_t>(offsetof(ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4, ____fadeOutStartTime_10)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get__fadeOutStartTime_10() const { return ____fadeOutStartTime_10; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of__fadeOutStartTime_10() { return &____fadeOutStartTime_10; }
inline void set__fadeOutStartTime_10(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
____fadeOutStartTime_10 = value;
}
};
// Mirror.Examples.Chat.ChatWindow
struct ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.UI.InputField Mirror.Examples.Chat.ChatWindow::chatMessage
InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___chatMessage_4;
// UnityEngine.UI.Text Mirror.Examples.Chat.ChatWindow::chatHistory
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___chatHistory_5;
// UnityEngine.UI.Scrollbar Mirror.Examples.Chat.ChatWindow::scrollbar
Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * ___scrollbar_6;
public:
inline static int32_t get_offset_of_chatMessage_4() { return static_cast<int32_t>(offsetof(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B, ___chatMessage_4)); }
inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_chatMessage_4() const { return ___chatMessage_4; }
inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_chatMessage_4() { return &___chatMessage_4; }
inline void set_chatMessage_4(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value)
{
___chatMessage_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___chatMessage_4), (void*)value);
}
inline static int32_t get_offset_of_chatHistory_5() { return static_cast<int32_t>(offsetof(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B, ___chatHistory_5)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_chatHistory_5() const { return ___chatHistory_5; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_chatHistory_5() { return &___chatHistory_5; }
inline void set_chatHistory_5(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___chatHistory_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___chatHistory_5), (void*)value);
}
inline static int32_t get_offset_of_scrollbar_6() { return static_cast<int32_t>(offsetof(ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B, ___scrollbar_6)); }
inline Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * get_scrollbar_6() const { return ___scrollbar_6; }
inline Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 ** get_address_of_scrollbar_6() { return &___scrollbar_6; }
inline void set_scrollbar_6(Scrollbar_tECAC7FD315210FC856A3EC60AE1847A66AAF6C28 * value)
{
___scrollbar_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scrollbar_6), (void*)value);
}
};
// Dissonance.DissonanceComms
struct DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.String Dissonance.DissonanceComms::_lastPrefabError
String_t* ____lastPrefabError_5;
// System.Boolean Dissonance.DissonanceComms::_started
bool ____started_6;
// Dissonance.Rooms Dissonance.DissonanceComms::_rooms
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * ____rooms_7;
// Dissonance.PlayerChannels Dissonance.DissonanceComms::_playerChannels
PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * ____playerChannels_8;
// Dissonance.RoomChannels Dissonance.DissonanceComms::_roomChannels
RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * ____roomChannels_9;
// Dissonance.TextChat Dissonance.DissonanceComms::_text
TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04 * ____text_10;
// Dissonance.Audio.OpenChannelVolumeDuck Dissonance.DissonanceComms::_autoChannelDuck
OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1 * ____autoChannelDuck_11;
// Dissonance.PlayerTrackerManager Dissonance.DissonanceComms::_playerTrackers
PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1 * ____playerTrackers_12;
// Dissonance.PlaybackPool Dissonance.DissonanceComms::_playbackPool
PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA * ____playbackPool_13;
// Dissonance.PlayerCollection Dissonance.DissonanceComms::_players
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * ____players_14;
// Dissonance.CodecSettingsLoader Dissonance.DissonanceComms::_codecSettingsLoader
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 * ____codecSettingsLoader_15;
// Dissonance.Audio.Playback.PriorityManager Dissonance.DissonanceComms::_playbackPriorityManager
PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB * ____playbackPriorityManager_16;
// Dissonance.Audio.Capture.CapturePipelineManager Dissonance.DissonanceComms::_capture
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B * ____capture_17;
// Dissonance.Networking.ICommsNetwork Dissonance.DissonanceComms::_net
RuntimeObject* ____net_18;
// System.String Dissonance.DissonanceComms::_localPlayerName
String_t* ____localPlayerName_19;
// System.Boolean Dissonance.DissonanceComms::_isMuted
bool ____isMuted_20;
// System.Boolean Dissonance.DissonanceComms::_isDeafened
bool ____isDeafened_21;
// System.Single Dissonance.DissonanceComms::_oneMinusBaseRemoteVoiceVolume
float ____oneMinusBaseRemoteVoiceVolume_22;
// Dissonance.Audio.Playback.VoicePlayback Dissonance.DissonanceComms::_playbackPrefab
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2 * ____playbackPrefab_23;
// UnityEngine.GameObject Dissonance.DissonanceComms::_playbackPrefab2
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ____playbackPrefab2_24;
// System.String Dissonance.DissonanceComms::_micName
String_t* ____micName_25;
// Dissonance.ChannelPriority Dissonance.DissonanceComms::_playerPriority
int32_t ____playerPriority_26;
// Dissonance.TokenSet Dissonance.DissonanceComms::_tokens
TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 * ____tokens_27;
// System.Action`1<Dissonance.VoicePlayerState> Dissonance.DissonanceComms::OnPlayerJoinedSession
Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * ___OnPlayerJoinedSession_28;
// System.Action`1<Dissonance.VoicePlayerState> Dissonance.DissonanceComms::OnPlayerLeftSession
Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * ___OnPlayerLeftSession_29;
// System.Action`1<Dissonance.VoicePlayerState> Dissonance.DissonanceComms::OnPlayerStartedSpeaking
Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * ___OnPlayerStartedSpeaking_30;
// System.Action`1<Dissonance.VoicePlayerState> Dissonance.DissonanceComms::OnPlayerStoppedSpeaking
Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * ___OnPlayerStoppedSpeaking_31;
// System.Action`2<Dissonance.VoicePlayerState,System.String> Dissonance.DissonanceComms::OnPlayerEnteredRoom
Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * ___OnPlayerEnteredRoom_32;
// System.Action`2<Dissonance.VoicePlayerState,System.String> Dissonance.DissonanceComms::OnPlayerExitedRoom
Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * ___OnPlayerExitedRoom_33;
// System.Action`1<System.String> Dissonance.DissonanceComms::LocalPlayerNameChanged
Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * ___LocalPlayerNameChanged_34;
// System.Boolean Dissonance.DissonanceComms::_muteAllRemoteVoices
bool ____muteAllRemoteVoices_35;
// UnityEngine.Coroutine Dissonance.DissonanceComms::_resumeCo
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * ____resumeCo_36;
public:
inline static int32_t get_offset_of__lastPrefabError_5() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____lastPrefabError_5)); }
inline String_t* get__lastPrefabError_5() const { return ____lastPrefabError_5; }
inline String_t** get_address_of__lastPrefabError_5() { return &____lastPrefabError_5; }
inline void set__lastPrefabError_5(String_t* value)
{
____lastPrefabError_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lastPrefabError_5), (void*)value);
}
inline static int32_t get_offset_of__started_6() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____started_6)); }
inline bool get__started_6() const { return ____started_6; }
inline bool* get_address_of__started_6() { return &____started_6; }
inline void set__started_6(bool value)
{
____started_6 = value;
}
inline static int32_t get_offset_of__rooms_7() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____rooms_7)); }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * get__rooms_7() const { return ____rooms_7; }
inline Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 ** get_address_of__rooms_7() { return &____rooms_7; }
inline void set__rooms_7(Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872 * value)
{
____rooms_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rooms_7), (void*)value);
}
inline static int32_t get_offset_of__playerChannels_8() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____playerChannels_8)); }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * get__playerChannels_8() const { return ____playerChannels_8; }
inline PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC ** get_address_of__playerChannels_8() { return &____playerChannels_8; }
inline void set__playerChannels_8(PlayerChannels_t0329DAC3417A6C31F09E6F9D505F8957185582DC * value)
{
____playerChannels_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerChannels_8), (void*)value);
}
inline static int32_t get_offset_of__roomChannels_9() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____roomChannels_9)); }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * get__roomChannels_9() const { return ____roomChannels_9; }
inline RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 ** get_address_of__roomChannels_9() { return &____roomChannels_9; }
inline void set__roomChannels_9(RoomChannels_t9B34583B1C36CADF5451376D7A08350792F4CDD2 * value)
{
____roomChannels_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomChannels_9), (void*)value);
}
inline static int32_t get_offset_of__text_10() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____text_10)); }
inline TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04 * get__text_10() const { return ____text_10; }
inline TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04 ** get_address_of__text_10() { return &____text_10; }
inline void set__text_10(TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04 * value)
{
____text_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____text_10), (void*)value);
}
inline static int32_t get_offset_of__autoChannelDuck_11() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____autoChannelDuck_11)); }
inline OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1 * get__autoChannelDuck_11() const { return ____autoChannelDuck_11; }
inline OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1 ** get_address_of__autoChannelDuck_11() { return &____autoChannelDuck_11; }
inline void set__autoChannelDuck_11(OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1 * value)
{
____autoChannelDuck_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____autoChannelDuck_11), (void*)value);
}
inline static int32_t get_offset_of__playerTrackers_12() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____playerTrackers_12)); }
inline PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1 * get__playerTrackers_12() const { return ____playerTrackers_12; }
inline PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1 ** get_address_of__playerTrackers_12() { return &____playerTrackers_12; }
inline void set__playerTrackers_12(PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1 * value)
{
____playerTrackers_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerTrackers_12), (void*)value);
}
inline static int32_t get_offset_of__playbackPool_13() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____playbackPool_13)); }
inline PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA * get__playbackPool_13() const { return ____playbackPool_13; }
inline PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA ** get_address_of__playbackPool_13() { return &____playbackPool_13; }
inline void set__playbackPool_13(PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA * value)
{
____playbackPool_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playbackPool_13), (void*)value);
}
inline static int32_t get_offset_of__players_14() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____players_14)); }
inline PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * get__players_14() const { return ____players_14; }
inline PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 ** get_address_of__players_14() { return &____players_14; }
inline void set__players_14(PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8 * value)
{
____players_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____players_14), (void*)value);
}
inline static int32_t get_offset_of__codecSettingsLoader_15() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____codecSettingsLoader_15)); }
inline CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 * get__codecSettingsLoader_15() const { return ____codecSettingsLoader_15; }
inline CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 ** get_address_of__codecSettingsLoader_15() { return &____codecSettingsLoader_15; }
inline void set__codecSettingsLoader_15(CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619 * value)
{
____codecSettingsLoader_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____codecSettingsLoader_15), (void*)value);
}
inline static int32_t get_offset_of__playbackPriorityManager_16() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____playbackPriorityManager_16)); }
inline PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB * get__playbackPriorityManager_16() const { return ____playbackPriorityManager_16; }
inline PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB ** get_address_of__playbackPriorityManager_16() { return &____playbackPriorityManager_16; }
inline void set__playbackPriorityManager_16(PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB * value)
{
____playbackPriorityManager_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playbackPriorityManager_16), (void*)value);
}
inline static int32_t get_offset_of__capture_17() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____capture_17)); }
inline CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B * get__capture_17() const { return ____capture_17; }
inline CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B ** get_address_of__capture_17() { return &____capture_17; }
inline void set__capture_17(CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B * value)
{
____capture_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____capture_17), (void*)value);
}
inline static int32_t get_offset_of__net_18() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____net_18)); }
inline RuntimeObject* get__net_18() const { return ____net_18; }
inline RuntimeObject** get_address_of__net_18() { return &____net_18; }
inline void set__net_18(RuntimeObject* value)
{
____net_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____net_18), (void*)value);
}
inline static int32_t get_offset_of__localPlayerName_19() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____localPlayerName_19)); }
inline String_t* get__localPlayerName_19() const { return ____localPlayerName_19; }
inline String_t** get_address_of__localPlayerName_19() { return &____localPlayerName_19; }
inline void set__localPlayerName_19(String_t* value)
{
____localPlayerName_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localPlayerName_19), (void*)value);
}
inline static int32_t get_offset_of__isMuted_20() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____isMuted_20)); }
inline bool get__isMuted_20() const { return ____isMuted_20; }
inline bool* get_address_of__isMuted_20() { return &____isMuted_20; }
inline void set__isMuted_20(bool value)
{
____isMuted_20 = value;
}
inline static int32_t get_offset_of__isDeafened_21() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____isDeafened_21)); }
inline bool get__isDeafened_21() const { return ____isDeafened_21; }
inline bool* get_address_of__isDeafened_21() { return &____isDeafened_21; }
inline void set__isDeafened_21(bool value)
{
____isDeafened_21 = value;
}
inline static int32_t get_offset_of__oneMinusBaseRemoteVoiceVolume_22() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____oneMinusBaseRemoteVoiceVolume_22)); }
inline float get__oneMinusBaseRemoteVoiceVolume_22() const { return ____oneMinusBaseRemoteVoiceVolume_22; }
inline float* get_address_of__oneMinusBaseRemoteVoiceVolume_22() { return &____oneMinusBaseRemoteVoiceVolume_22; }
inline void set__oneMinusBaseRemoteVoiceVolume_22(float value)
{
____oneMinusBaseRemoteVoiceVolume_22 = value;
}
inline static int32_t get_offset_of__playbackPrefab_23() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____playbackPrefab_23)); }
inline VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2 * get__playbackPrefab_23() const { return ____playbackPrefab_23; }
inline VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2 ** get_address_of__playbackPrefab_23() { return &____playbackPrefab_23; }
inline void set__playbackPrefab_23(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2 * value)
{
____playbackPrefab_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playbackPrefab_23), (void*)value);
}
inline static int32_t get_offset_of__playbackPrefab2_24() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____playbackPrefab2_24)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get__playbackPrefab2_24() const { return ____playbackPrefab2_24; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of__playbackPrefab2_24() { return &____playbackPrefab2_24; }
inline void set__playbackPrefab2_24(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
____playbackPrefab2_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playbackPrefab2_24), (void*)value);
}
inline static int32_t get_offset_of__micName_25() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____micName_25)); }
inline String_t* get__micName_25() const { return ____micName_25; }
inline String_t** get_address_of__micName_25() { return &____micName_25; }
inline void set__micName_25(String_t* value)
{
____micName_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&____micName_25), (void*)value);
}
inline static int32_t get_offset_of__playerPriority_26() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____playerPriority_26)); }
inline int32_t get__playerPriority_26() const { return ____playerPriority_26; }
inline int32_t* get_address_of__playerPriority_26() { return &____playerPriority_26; }
inline void set__playerPriority_26(int32_t value)
{
____playerPriority_26 = value;
}
inline static int32_t get_offset_of__tokens_27() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____tokens_27)); }
inline TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 * get__tokens_27() const { return ____tokens_27; }
inline TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 ** get_address_of__tokens_27() { return &____tokens_27; }
inline void set__tokens_27(TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0 * value)
{
____tokens_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&____tokens_27), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerJoinedSession_28() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ___OnPlayerJoinedSession_28)); }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * get_OnPlayerJoinedSession_28() const { return ___OnPlayerJoinedSession_28; }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E ** get_address_of_OnPlayerJoinedSession_28() { return &___OnPlayerJoinedSession_28; }
inline void set_OnPlayerJoinedSession_28(Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * value)
{
___OnPlayerJoinedSession_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerJoinedSession_28), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerLeftSession_29() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ___OnPlayerLeftSession_29)); }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * get_OnPlayerLeftSession_29() const { return ___OnPlayerLeftSession_29; }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E ** get_address_of_OnPlayerLeftSession_29() { return &___OnPlayerLeftSession_29; }
inline void set_OnPlayerLeftSession_29(Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * value)
{
___OnPlayerLeftSession_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerLeftSession_29), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerStartedSpeaking_30() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ___OnPlayerStartedSpeaking_30)); }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * get_OnPlayerStartedSpeaking_30() const { return ___OnPlayerStartedSpeaking_30; }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E ** get_address_of_OnPlayerStartedSpeaking_30() { return &___OnPlayerStartedSpeaking_30; }
inline void set_OnPlayerStartedSpeaking_30(Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * value)
{
___OnPlayerStartedSpeaking_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerStartedSpeaking_30), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerStoppedSpeaking_31() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ___OnPlayerStoppedSpeaking_31)); }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * get_OnPlayerStoppedSpeaking_31() const { return ___OnPlayerStoppedSpeaking_31; }
inline Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E ** get_address_of_OnPlayerStoppedSpeaking_31() { return &___OnPlayerStoppedSpeaking_31; }
inline void set_OnPlayerStoppedSpeaking_31(Action_1_t3ADFA5719EFD0C1C093409AE78FAFFD98A4E6B6E * value)
{
___OnPlayerStoppedSpeaking_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerStoppedSpeaking_31), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerEnteredRoom_32() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ___OnPlayerEnteredRoom_32)); }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * get_OnPlayerEnteredRoom_32() const { return ___OnPlayerEnteredRoom_32; }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 ** get_address_of_OnPlayerEnteredRoom_32() { return &___OnPlayerEnteredRoom_32; }
inline void set_OnPlayerEnteredRoom_32(Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * value)
{
___OnPlayerEnteredRoom_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerEnteredRoom_32), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerExitedRoom_33() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ___OnPlayerExitedRoom_33)); }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * get_OnPlayerExitedRoom_33() const { return ___OnPlayerExitedRoom_33; }
inline Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 ** get_address_of_OnPlayerExitedRoom_33() { return &___OnPlayerExitedRoom_33; }
inline void set_OnPlayerExitedRoom_33(Action_2_t4A3625C62A8155B29ABBE87AE329B0685D9EDC99 * value)
{
___OnPlayerExitedRoom_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerExitedRoom_33), (void*)value);
}
inline static int32_t get_offset_of_LocalPlayerNameChanged_34() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ___LocalPlayerNameChanged_34)); }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * get_LocalPlayerNameChanged_34() const { return ___LocalPlayerNameChanged_34; }
inline Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 ** get_address_of_LocalPlayerNameChanged_34() { return &___LocalPlayerNameChanged_34; }
inline void set_LocalPlayerNameChanged_34(Action_1_tC0D73E03177C82525D78670CDC2165F7CBF0A9C3 * value)
{
___LocalPlayerNameChanged_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___LocalPlayerNameChanged_34), (void*)value);
}
inline static int32_t get_offset_of__muteAllRemoteVoices_35() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____muteAllRemoteVoices_35)); }
inline bool get__muteAllRemoteVoices_35() const { return ____muteAllRemoteVoices_35; }
inline bool* get_address_of__muteAllRemoteVoices_35() { return &____muteAllRemoteVoices_35; }
inline void set__muteAllRemoteVoices_35(bool value)
{
____muteAllRemoteVoices_35 = value;
}
inline static int32_t get_offset_of__resumeCo_36() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901, ____resumeCo_36)); }
inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * get__resumeCo_36() const { return ____resumeCo_36; }
inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 ** get_address_of__resumeCo_36() { return &____resumeCo_36; }
inline void set__resumeCo_36(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * value)
{
____resumeCo_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&____resumeCo_36), (void*)value);
}
};
struct DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901_StaticFields
{
public:
// Dissonance.Log Dissonance.DissonanceComms::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_4;
// Dissonance.SemanticVersion Dissonance.DissonanceComms::Version
SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592 * ___Version_37;
public:
inline static int32_t get_offset_of_Log_4() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901_StaticFields, ___Log_4)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_4() const { return ___Log_4; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_4() { return &___Log_4; }
inline void set_Log_4(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_4), (void*)value);
}
inline static int32_t get_offset_of_Version_37() { return static_cast<int32_t>(offsetof(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901_StaticFields, ___Version_37)); }
inline SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592 * get_Version_37() const { return ___Version_37; }
inline SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592 ** get_address_of_Version_37() { return &___Version_37; }
inline void set_Version_37(SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592 * value)
{
___Version_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Version_37), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.DoubleControl
struct DoubleControl_tFADBAC12A9645997D2FE941F0A194E86FFECBABF : public InputControl_1_tCEC765E512EEAE0ECC0ECDDEC11A6EE0C9893BC2
{
public:
public:
};
// UnityEngine.InputSystem.XR.EyesControl
struct EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952 : public InputControl_1_tB25C17A3AD406EFF82531F2E900AEBAAF7D0C8CD
{
public:
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.XR.EyesControl::<leftEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CleftEyePositionU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.XR.EyesControl::<leftEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CleftEyeRotationU3Ek__BackingField_23;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.XR.EyesControl::<rightEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CrightEyePositionU3Ek__BackingField_24;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.XR.EyesControl::<rightEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CrightEyeRotationU3Ek__BackingField_25;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.XR.EyesControl::<fixationPoint>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CfixationPointU3Ek__BackingField_26;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.XR.EyesControl::<leftEyeOpenAmount>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CleftEyeOpenAmountU3Ek__BackingField_27;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.XR.EyesControl::<rightEyeOpenAmount>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CrightEyeOpenAmountU3Ek__BackingField_28;
public:
inline static int32_t get_offset_of_U3CleftEyePositionU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952, ___U3CleftEyePositionU3Ek__BackingField_22)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CleftEyePositionU3Ek__BackingField_22() const { return ___U3CleftEyePositionU3Ek__BackingField_22; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CleftEyePositionU3Ek__BackingField_22() { return &___U3CleftEyePositionU3Ek__BackingField_22; }
inline void set_U3CleftEyePositionU3Ek__BackingField_22(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CleftEyePositionU3Ek__BackingField_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyePositionU3Ek__BackingField_22), (void*)value);
}
inline static int32_t get_offset_of_U3CleftEyeRotationU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952, ___U3CleftEyeRotationU3Ek__BackingField_23)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CleftEyeRotationU3Ek__BackingField_23() const { return ___U3CleftEyeRotationU3Ek__BackingField_23; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CleftEyeRotationU3Ek__BackingField_23() { return &___U3CleftEyeRotationU3Ek__BackingField_23; }
inline void set_U3CleftEyeRotationU3Ek__BackingField_23(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CleftEyeRotationU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyeRotationU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyePositionU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952, ___U3CrightEyePositionU3Ek__BackingField_24)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CrightEyePositionU3Ek__BackingField_24() const { return ___U3CrightEyePositionU3Ek__BackingField_24; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CrightEyePositionU3Ek__BackingField_24() { return &___U3CrightEyePositionU3Ek__BackingField_24; }
inline void set_U3CrightEyePositionU3Ek__BackingField_24(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CrightEyePositionU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyePositionU3Ek__BackingField_24), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyeRotationU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952, ___U3CrightEyeRotationU3Ek__BackingField_25)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CrightEyeRotationU3Ek__BackingField_25() const { return ___U3CrightEyeRotationU3Ek__BackingField_25; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CrightEyeRotationU3Ek__BackingField_25() { return &___U3CrightEyeRotationU3Ek__BackingField_25; }
inline void set_U3CrightEyeRotationU3Ek__BackingField_25(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CrightEyeRotationU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyeRotationU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_U3CfixationPointU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952, ___U3CfixationPointU3Ek__BackingField_26)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CfixationPointU3Ek__BackingField_26() const { return ___U3CfixationPointU3Ek__BackingField_26; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CfixationPointU3Ek__BackingField_26() { return &___U3CfixationPointU3Ek__BackingField_26; }
inline void set_U3CfixationPointU3Ek__BackingField_26(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CfixationPointU3Ek__BackingField_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CfixationPointU3Ek__BackingField_26), (void*)value);
}
inline static int32_t get_offset_of_U3CleftEyeOpenAmountU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952, ___U3CleftEyeOpenAmountU3Ek__BackingField_27)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CleftEyeOpenAmountU3Ek__BackingField_27() const { return ___U3CleftEyeOpenAmountU3Ek__BackingField_27; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CleftEyeOpenAmountU3Ek__BackingField_27() { return &___U3CleftEyeOpenAmountU3Ek__BackingField_27; }
inline void set_U3CleftEyeOpenAmountU3Ek__BackingField_27(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CleftEyeOpenAmountU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyeOpenAmountU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyeOpenAmountU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952, ___U3CrightEyeOpenAmountU3Ek__BackingField_28)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CrightEyeOpenAmountU3Ek__BackingField_28() const { return ___U3CrightEyeOpenAmountU3Ek__BackingField_28; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CrightEyeOpenAmountU3Ek__BackingField_28() { return &___U3CrightEyeOpenAmountU3Ek__BackingField_28; }
inline void set_U3CrightEyeOpenAmountU3Ek__BackingField_28(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CrightEyeOpenAmountU3Ek__BackingField_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyeOpenAmountU3Ek__BackingField_28), (void*)value);
}
};
// GUIConsole
struct GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Int32 GUIConsole::height
int32_t ___height_4;
// System.Int32 GUIConsole::maxLogCount
int32_t ___maxLogCount_5;
// System.Collections.Generic.Queue`1<LogEntry> GUIConsole::log
Queue_1_t5543B1E1DBA4BCCB1ACCAC3ADDA974B47B507971 * ___log_6;
// UnityEngine.KeyCode GUIConsole::hotKey
int32_t ___hotKey_7;
// System.Boolean GUIConsole::visible
bool ___visible_8;
// UnityEngine.Vector2 GUIConsole::scroll
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___scroll_9;
public:
inline static int32_t get_offset_of_height_4() { return static_cast<int32_t>(offsetof(GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769, ___height_4)); }
inline int32_t get_height_4() const { return ___height_4; }
inline int32_t* get_address_of_height_4() { return &___height_4; }
inline void set_height_4(int32_t value)
{
___height_4 = value;
}
inline static int32_t get_offset_of_maxLogCount_5() { return static_cast<int32_t>(offsetof(GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769, ___maxLogCount_5)); }
inline int32_t get_maxLogCount_5() const { return ___maxLogCount_5; }
inline int32_t* get_address_of_maxLogCount_5() { return &___maxLogCount_5; }
inline void set_maxLogCount_5(int32_t value)
{
___maxLogCount_5 = value;
}
inline static int32_t get_offset_of_log_6() { return static_cast<int32_t>(offsetof(GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769, ___log_6)); }
inline Queue_1_t5543B1E1DBA4BCCB1ACCAC3ADDA974B47B507971 * get_log_6() const { return ___log_6; }
inline Queue_1_t5543B1E1DBA4BCCB1ACCAC3ADDA974B47B507971 ** get_address_of_log_6() { return &___log_6; }
inline void set_log_6(Queue_1_t5543B1E1DBA4BCCB1ACCAC3ADDA974B47B507971 * value)
{
___log_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___log_6), (void*)value);
}
inline static int32_t get_offset_of_hotKey_7() { return static_cast<int32_t>(offsetof(GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769, ___hotKey_7)); }
inline int32_t get_hotKey_7() const { return ___hotKey_7; }
inline int32_t* get_address_of_hotKey_7() { return &___hotKey_7; }
inline void set_hotKey_7(int32_t value)
{
___hotKey_7 = value;
}
inline static int32_t get_offset_of_visible_8() { return static_cast<int32_t>(offsetof(GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769, ___visible_8)); }
inline bool get_visible_8() const { return ___visible_8; }
inline bool* get_address_of_visible_8() { return &___visible_8; }
inline void set_visible_8(bool value)
{
___visible_8 = value;
}
inline static int32_t get_offset_of_scroll_9() { return static_cast<int32_t>(offsetof(GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769, ___scroll_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_scroll_9() const { return ___scroll_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_scroll_9() { return &___scroll_9; }
inline void set_scroll_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___scroll_9 = value;
}
};
// UnityEngine.InputSystem.Gamepad
struct Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C : public InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonWest>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CbuttonWestU3Ek__BackingField_35;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonNorth>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CbuttonNorthU3Ek__BackingField_36;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonSouth>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CbuttonSouthU3Ek__BackingField_37;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<buttonEast>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CbuttonEastU3Ek__BackingField_38;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<leftStickButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CleftStickButtonU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<rightStickButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CrightStickButtonU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<startButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CstartButtonU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<selectButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CselectButtonU3Ek__BackingField_42;
// UnityEngine.InputSystem.Controls.DpadControl UnityEngine.InputSystem.Gamepad::<dpad>k__BackingField
DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049 * ___U3CdpadU3Ek__BackingField_43;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<leftShoulder>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CleftShoulderU3Ek__BackingField_44;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<rightShoulder>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CrightShoulderU3Ek__BackingField_45;
// UnityEngine.InputSystem.Controls.StickControl UnityEngine.InputSystem.Gamepad::<leftStick>k__BackingField
StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 * ___U3CleftStickU3Ek__BackingField_46;
// UnityEngine.InputSystem.Controls.StickControl UnityEngine.InputSystem.Gamepad::<rightStick>k__BackingField
StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 * ___U3CrightStickU3Ek__BackingField_47;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<leftTrigger>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CleftTriggerU3Ek__BackingField_48;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Gamepad::<rightTrigger>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CrightTriggerU3Ek__BackingField_49;
// UnityEngine.InputSystem.Haptics.DualMotorRumble UnityEngine.InputSystem.Gamepad::m_Rumble
DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84 ___m_Rumble_51;
public:
inline static int32_t get_offset_of_U3CbuttonWestU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CbuttonWestU3Ek__BackingField_35)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CbuttonWestU3Ek__BackingField_35() const { return ___U3CbuttonWestU3Ek__BackingField_35; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CbuttonWestU3Ek__BackingField_35() { return &___U3CbuttonWestU3Ek__BackingField_35; }
inline void set_U3CbuttonWestU3Ek__BackingField_35(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CbuttonWestU3Ek__BackingField_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CbuttonWestU3Ek__BackingField_35), (void*)value);
}
inline static int32_t get_offset_of_U3CbuttonNorthU3Ek__BackingField_36() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CbuttonNorthU3Ek__BackingField_36)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CbuttonNorthU3Ek__BackingField_36() const { return ___U3CbuttonNorthU3Ek__BackingField_36; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CbuttonNorthU3Ek__BackingField_36() { return &___U3CbuttonNorthU3Ek__BackingField_36; }
inline void set_U3CbuttonNorthU3Ek__BackingField_36(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CbuttonNorthU3Ek__BackingField_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CbuttonNorthU3Ek__BackingField_36), (void*)value);
}
inline static int32_t get_offset_of_U3CbuttonSouthU3Ek__BackingField_37() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CbuttonSouthU3Ek__BackingField_37)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CbuttonSouthU3Ek__BackingField_37() const { return ___U3CbuttonSouthU3Ek__BackingField_37; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CbuttonSouthU3Ek__BackingField_37() { return &___U3CbuttonSouthU3Ek__BackingField_37; }
inline void set_U3CbuttonSouthU3Ek__BackingField_37(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CbuttonSouthU3Ek__BackingField_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CbuttonSouthU3Ek__BackingField_37), (void*)value);
}
inline static int32_t get_offset_of_U3CbuttonEastU3Ek__BackingField_38() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CbuttonEastU3Ek__BackingField_38)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CbuttonEastU3Ek__BackingField_38() const { return ___U3CbuttonEastU3Ek__BackingField_38; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CbuttonEastU3Ek__BackingField_38() { return &___U3CbuttonEastU3Ek__BackingField_38; }
inline void set_U3CbuttonEastU3Ek__BackingField_38(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CbuttonEastU3Ek__BackingField_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CbuttonEastU3Ek__BackingField_38), (void*)value);
}
inline static int32_t get_offset_of_U3CleftStickButtonU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CleftStickButtonU3Ek__BackingField_39)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CleftStickButtonU3Ek__BackingField_39() const { return ___U3CleftStickButtonU3Ek__BackingField_39; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CleftStickButtonU3Ek__BackingField_39() { return &___U3CleftStickButtonU3Ek__BackingField_39; }
inline void set_U3CleftStickButtonU3Ek__BackingField_39(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CleftStickButtonU3Ek__BackingField_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftStickButtonU3Ek__BackingField_39), (void*)value);
}
inline static int32_t get_offset_of_U3CrightStickButtonU3Ek__BackingField_40() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CrightStickButtonU3Ek__BackingField_40)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CrightStickButtonU3Ek__BackingField_40() const { return ___U3CrightStickButtonU3Ek__BackingField_40; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CrightStickButtonU3Ek__BackingField_40() { return &___U3CrightStickButtonU3Ek__BackingField_40; }
inline void set_U3CrightStickButtonU3Ek__BackingField_40(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CrightStickButtonU3Ek__BackingField_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightStickButtonU3Ek__BackingField_40), (void*)value);
}
inline static int32_t get_offset_of_U3CstartButtonU3Ek__BackingField_41() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CstartButtonU3Ek__BackingField_41)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CstartButtonU3Ek__BackingField_41() const { return ___U3CstartButtonU3Ek__BackingField_41; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CstartButtonU3Ek__BackingField_41() { return &___U3CstartButtonU3Ek__BackingField_41; }
inline void set_U3CstartButtonU3Ek__BackingField_41(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CstartButtonU3Ek__BackingField_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CstartButtonU3Ek__BackingField_41), (void*)value);
}
inline static int32_t get_offset_of_U3CselectButtonU3Ek__BackingField_42() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CselectButtonU3Ek__BackingField_42)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CselectButtonU3Ek__BackingField_42() const { return ___U3CselectButtonU3Ek__BackingField_42; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CselectButtonU3Ek__BackingField_42() { return &___U3CselectButtonU3Ek__BackingField_42; }
inline void set_U3CselectButtonU3Ek__BackingField_42(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CselectButtonU3Ek__BackingField_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CselectButtonU3Ek__BackingField_42), (void*)value);
}
inline static int32_t get_offset_of_U3CdpadU3Ek__BackingField_43() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CdpadU3Ek__BackingField_43)); }
inline DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049 * get_U3CdpadU3Ek__BackingField_43() const { return ___U3CdpadU3Ek__BackingField_43; }
inline DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049 ** get_address_of_U3CdpadU3Ek__BackingField_43() { return &___U3CdpadU3Ek__BackingField_43; }
inline void set_U3CdpadU3Ek__BackingField_43(DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049 * value)
{
___U3CdpadU3Ek__BackingField_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdpadU3Ek__BackingField_43), (void*)value);
}
inline static int32_t get_offset_of_U3CleftShoulderU3Ek__BackingField_44() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CleftShoulderU3Ek__BackingField_44)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CleftShoulderU3Ek__BackingField_44() const { return ___U3CleftShoulderU3Ek__BackingField_44; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CleftShoulderU3Ek__BackingField_44() { return &___U3CleftShoulderU3Ek__BackingField_44; }
inline void set_U3CleftShoulderU3Ek__BackingField_44(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CleftShoulderU3Ek__BackingField_44 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftShoulderU3Ek__BackingField_44), (void*)value);
}
inline static int32_t get_offset_of_U3CrightShoulderU3Ek__BackingField_45() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CrightShoulderU3Ek__BackingField_45)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CrightShoulderU3Ek__BackingField_45() const { return ___U3CrightShoulderU3Ek__BackingField_45; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CrightShoulderU3Ek__BackingField_45() { return &___U3CrightShoulderU3Ek__BackingField_45; }
inline void set_U3CrightShoulderU3Ek__BackingField_45(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CrightShoulderU3Ek__BackingField_45 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightShoulderU3Ek__BackingField_45), (void*)value);
}
inline static int32_t get_offset_of_U3CleftStickU3Ek__BackingField_46() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CleftStickU3Ek__BackingField_46)); }
inline StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 * get_U3CleftStickU3Ek__BackingField_46() const { return ___U3CleftStickU3Ek__BackingField_46; }
inline StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 ** get_address_of_U3CleftStickU3Ek__BackingField_46() { return &___U3CleftStickU3Ek__BackingField_46; }
inline void set_U3CleftStickU3Ek__BackingField_46(StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 * value)
{
___U3CleftStickU3Ek__BackingField_46 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftStickU3Ek__BackingField_46), (void*)value);
}
inline static int32_t get_offset_of_U3CrightStickU3Ek__BackingField_47() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CrightStickU3Ek__BackingField_47)); }
inline StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 * get_U3CrightStickU3Ek__BackingField_47() const { return ___U3CrightStickU3Ek__BackingField_47; }
inline StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 ** get_address_of_U3CrightStickU3Ek__BackingField_47() { return &___U3CrightStickU3Ek__BackingField_47; }
inline void set_U3CrightStickU3Ek__BackingField_47(StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 * value)
{
___U3CrightStickU3Ek__BackingField_47 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightStickU3Ek__BackingField_47), (void*)value);
}
inline static int32_t get_offset_of_U3CleftTriggerU3Ek__BackingField_48() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CleftTriggerU3Ek__BackingField_48)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CleftTriggerU3Ek__BackingField_48() const { return ___U3CleftTriggerU3Ek__BackingField_48; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CleftTriggerU3Ek__BackingField_48() { return &___U3CleftTriggerU3Ek__BackingField_48; }
inline void set_U3CleftTriggerU3Ek__BackingField_48(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CleftTriggerU3Ek__BackingField_48 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftTriggerU3Ek__BackingField_48), (void*)value);
}
inline static int32_t get_offset_of_U3CrightTriggerU3Ek__BackingField_49() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___U3CrightTriggerU3Ek__BackingField_49)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CrightTriggerU3Ek__BackingField_49() const { return ___U3CrightTriggerU3Ek__BackingField_49; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CrightTriggerU3Ek__BackingField_49() { return &___U3CrightTriggerU3Ek__BackingField_49; }
inline void set_U3CrightTriggerU3Ek__BackingField_49(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CrightTriggerU3Ek__BackingField_49 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightTriggerU3Ek__BackingField_49), (void*)value);
}
inline static int32_t get_offset_of_m_Rumble_51() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C, ___m_Rumble_51)); }
inline DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84 get_m_Rumble_51() const { return ___m_Rumble_51; }
inline DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84 * get_address_of_m_Rumble_51() { return &___m_Rumble_51; }
inline void set_m_Rumble_51(DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84 value)
{
___m_Rumble_51 = value;
}
};
struct Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C_StaticFields
{
public:
// UnityEngine.InputSystem.Gamepad UnityEngine.InputSystem.Gamepad::<current>k__BackingField
Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C * ___U3CcurrentU3Ek__BackingField_50;
// System.Int32 UnityEngine.InputSystem.Gamepad::s_GamepadCount
int32_t ___s_GamepadCount_52;
// UnityEngine.InputSystem.Gamepad[] UnityEngine.InputSystem.Gamepad::s_Gamepads
GamepadU5BU5D_tADC6AE9AAC4D620747969774FDC2F65081D07994* ___s_Gamepads_53;
public:
inline static int32_t get_offset_of_U3CcurrentU3Ek__BackingField_50() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C_StaticFields, ___U3CcurrentU3Ek__BackingField_50)); }
inline Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C * get_U3CcurrentU3Ek__BackingField_50() const { return ___U3CcurrentU3Ek__BackingField_50; }
inline Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C ** get_address_of_U3CcurrentU3Ek__BackingField_50() { return &___U3CcurrentU3Ek__BackingField_50; }
inline void set_U3CcurrentU3Ek__BackingField_50(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C * value)
{
___U3CcurrentU3Ek__BackingField_50 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcurrentU3Ek__BackingField_50), (void*)value);
}
inline static int32_t get_offset_of_s_GamepadCount_52() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C_StaticFields, ___s_GamepadCount_52)); }
inline int32_t get_s_GamepadCount_52() const { return ___s_GamepadCount_52; }
inline int32_t* get_address_of_s_GamepadCount_52() { return &___s_GamepadCount_52; }
inline void set_s_GamepadCount_52(int32_t value)
{
___s_GamepadCount_52 = value;
}
inline static int32_t get_offset_of_s_Gamepads_53() { return static_cast<int32_t>(offsetof(Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C_StaticFields, ___s_Gamepads_53)); }
inline GamepadU5BU5D_tADC6AE9AAC4D620747969774FDC2F65081D07994* get_s_Gamepads_53() const { return ___s_Gamepads_53; }
inline GamepadU5BU5D_tADC6AE9AAC4D620747969774FDC2F65081D07994** get_address_of_s_Gamepads_53() { return &___s_Gamepads_53; }
inline void set_s_Gamepads_53(GamepadU5BU5D_tADC6AE9AAC4D620747969774FDC2F65081D07994* value)
{
___s_Gamepads_53 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Gamepads_53), (void*)value);
}
};
// UnityEngine.InputSystem.HID.HID
struct HID_t3BDFC9796891CA6625D5BC65DBC2DC22FDBC0A21 : public InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59
{
public:
// System.Boolean UnityEngine.InputSystem.HID.HID::m_HaveParsedHIDDescriptor
bool ___m_HaveParsedHIDDescriptor_37;
// UnityEngine.InputSystem.HID.HID/HIDDeviceDescriptor UnityEngine.InputSystem.HID.HID::m_HIDDescriptor
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E ___m_HIDDescriptor_38;
public:
inline static int32_t get_offset_of_m_HaveParsedHIDDescriptor_37() { return static_cast<int32_t>(offsetof(HID_t3BDFC9796891CA6625D5BC65DBC2DC22FDBC0A21, ___m_HaveParsedHIDDescriptor_37)); }
inline bool get_m_HaveParsedHIDDescriptor_37() const { return ___m_HaveParsedHIDDescriptor_37; }
inline bool* get_address_of_m_HaveParsedHIDDescriptor_37() { return &___m_HaveParsedHIDDescriptor_37; }
inline void set_m_HaveParsedHIDDescriptor_37(bool value)
{
___m_HaveParsedHIDDescriptor_37 = value;
}
inline static int32_t get_offset_of_m_HIDDescriptor_38() { return static_cast<int32_t>(offsetof(HID_t3BDFC9796891CA6625D5BC65DBC2DC22FDBC0A21, ___m_HIDDescriptor_38)); }
inline HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E get_m_HIDDescriptor_38() const { return ___m_HIDDescriptor_38; }
inline HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E * get_address_of_m_HIDDescriptor_38() { return &___m_HIDDescriptor_38; }
inline void set_m_HIDDescriptor_38(HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E value)
{
___m_HIDDescriptor_38 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_HIDDescriptor_38))->___elements_7), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_HIDDescriptor_38))->___collections_8), (void*)NULL);
#endif
}
};
// UnityEngine.XR.ARSubsystems.HandheldARInputDevice
struct HandheldARInputDevice_tDA83371435104E92F19A3E1B96D19A2F2CEC2321 : public InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59
{
public:
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.ARSubsystems.HandheldARInputDevice::<devicePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdevicePositionU3Ek__BackingField_35;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.ARSubsystems.HandheldARInputDevice::<deviceRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CdeviceRotationU3Ek__BackingField_36;
public:
inline static int32_t get_offset_of_U3CdevicePositionU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(HandheldARInputDevice_tDA83371435104E92F19A3E1B96D19A2F2CEC2321, ___U3CdevicePositionU3Ek__BackingField_35)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdevicePositionU3Ek__BackingField_35() const { return ___U3CdevicePositionU3Ek__BackingField_35; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdevicePositionU3Ek__BackingField_35() { return &___U3CdevicePositionU3Ek__BackingField_35; }
inline void set_U3CdevicePositionU3Ek__BackingField_35(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdevicePositionU3Ek__BackingField_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdevicePositionU3Ek__BackingField_35), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceRotationU3Ek__BackingField_36() { return static_cast<int32_t>(offsetof(HandheldARInputDevice_tDA83371435104E92F19A3E1B96D19A2F2CEC2321, ___U3CdeviceRotationU3Ek__BackingField_36)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CdeviceRotationU3Ek__BackingField_36() const { return ___U3CdeviceRotationU3Ek__BackingField_36; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CdeviceRotationU3Ek__BackingField_36() { return &___U3CdeviceRotationU3Ek__BackingField_36; }
inline void set_U3CdeviceRotationU3Ek__BackingField_36(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CdeviceRotationU3Ek__BackingField_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceRotationU3Ek__BackingField_36), (void*)value);
}
};
// Mirror.Cloud.Examples.InstantiateNetworkManager
struct InstantiateNetworkManager_t7CB6AB614325F982A34161A3DF57E16E761B6FFE : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.GameObject Mirror.Cloud.Examples.InstantiateNetworkManager::prefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___prefab_4;
public:
inline static int32_t get_offset_of_prefab_4() { return static_cast<int32_t>(offsetof(InstantiateNetworkManager_t7CB6AB614325F982A34161A3DF57E16E761B6FFE, ___prefab_4)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_prefab_4() const { return ___prefab_4; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_prefab_4() { return &___prefab_4; }
inline void set_prefab_4(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___prefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prefab_4), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.IntegerControl
struct IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 : public InputControl_1_t97B73C112AD1F0B824D03B6C2E08930913382CB4
{
public:
public:
};
// Mirror.InterestManagement
struct InterestManagement_tD79A9D8F926F818D953AD8C27ECF2FB03B6327A7 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
public:
};
// Dissonance.Demo.Logo
struct Logo_t38C4E18ED8EAE2129BFF1F457DFFFC147189B834 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.Texture2D Dissonance.Demo.Logo::_logo
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ____logo_4;
public:
inline static int32_t get_offset_of__logo_4() { return static_cast<int32_t>(offsetof(Logo_t38C4E18ED8EAE2129BFF1F457DFFFC147189B834, ____logo_4)); }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get__logo_4() const { return ____logo_4; }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of__logo_4() { return &____logo_4; }
inline void set__logo_4(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value)
{
____logo_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____logo_4), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.MatchGUI
struct MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Guid Mirror.Examples.MultipleMatch.MatchGUI::matchId
Guid_t ___matchId_4;
// UnityEngine.UI.Image Mirror.Examples.MultipleMatch.MatchGUI::image
Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___image_5;
// UnityEngine.UI.Toggle Mirror.Examples.MultipleMatch.MatchGUI::toggleButton
Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E * ___toggleButton_6;
// UnityEngine.UI.Text Mirror.Examples.MultipleMatch.MatchGUI::matchName
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___matchName_7;
// UnityEngine.UI.Text Mirror.Examples.MultipleMatch.MatchGUI::playerCount
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___playerCount_8;
// Mirror.Examples.MultipleMatch.CanvasController Mirror.Examples.MultipleMatch.MatchGUI::canvasController
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * ___canvasController_9;
public:
inline static int32_t get_offset_of_matchId_4() { return static_cast<int32_t>(offsetof(MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C, ___matchId_4)); }
inline Guid_t get_matchId_4() const { return ___matchId_4; }
inline Guid_t * get_address_of_matchId_4() { return &___matchId_4; }
inline void set_matchId_4(Guid_t value)
{
___matchId_4 = value;
}
inline static int32_t get_offset_of_image_5() { return static_cast<int32_t>(offsetof(MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C, ___image_5)); }
inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get_image_5() const { return ___image_5; }
inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of_image_5() { return &___image_5; }
inline void set_image_5(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value)
{
___image_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___image_5), (void*)value);
}
inline static int32_t get_offset_of_toggleButton_6() { return static_cast<int32_t>(offsetof(MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C, ___toggleButton_6)); }
inline Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E * get_toggleButton_6() const { return ___toggleButton_6; }
inline Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E ** get_address_of_toggleButton_6() { return &___toggleButton_6; }
inline void set_toggleButton_6(Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E * value)
{
___toggleButton_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___toggleButton_6), (void*)value);
}
inline static int32_t get_offset_of_matchName_7() { return static_cast<int32_t>(offsetof(MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C, ___matchName_7)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_matchName_7() const { return ___matchName_7; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_matchName_7() { return &___matchName_7; }
inline void set_matchName_7(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___matchName_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchName_7), (void*)value);
}
inline static int32_t get_offset_of_playerCount_8() { return static_cast<int32_t>(offsetof(MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C, ___playerCount_8)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_playerCount_8() const { return ___playerCount_8; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_playerCount_8() { return &___playerCount_8; }
inline void set_playerCount_8(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___playerCount_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerCount_8), (void*)value);
}
inline static int32_t get_offset_of_canvasController_9() { return static_cast<int32_t>(offsetof(MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C, ___canvasController_9)); }
inline CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * get_canvasController_9() const { return ___canvasController_9; }
inline CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D ** get_address_of_canvasController_9() { return &___canvasController_9; }
inline void set_canvasController_9(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * value)
{
___canvasController_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___canvasController_9), (void*)value);
}
};
// Mirror.NetworkAuthenticator
struct NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Mirror.UnityEventNetworkConnection Mirror.NetworkAuthenticator::OnServerAuthenticated
UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB * ___OnServerAuthenticated_4;
// Mirror.UnityEventNetworkConnection Mirror.NetworkAuthenticator::OnClientAuthenticated
UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB * ___OnClientAuthenticated_5;
public:
inline static int32_t get_offset_of_OnServerAuthenticated_4() { return static_cast<int32_t>(offsetof(NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF, ___OnServerAuthenticated_4)); }
inline UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB * get_OnServerAuthenticated_4() const { return ___OnServerAuthenticated_4; }
inline UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB ** get_address_of_OnServerAuthenticated_4() { return &___OnServerAuthenticated_4; }
inline void set_OnServerAuthenticated_4(UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB * value)
{
___OnServerAuthenticated_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnServerAuthenticated_4), (void*)value);
}
inline static int32_t get_offset_of_OnClientAuthenticated_5() { return static_cast<int32_t>(offsetof(NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF, ___OnClientAuthenticated_5)); }
inline UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB * get_OnClientAuthenticated_5() const { return ___OnClientAuthenticated_5; }
inline UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB ** get_address_of_OnClientAuthenticated_5() { return &___OnClientAuthenticated_5; }
inline void set_OnClientAuthenticated_5(UnityEventNetworkConnection_t58B9E4CF6E87A0A115B463F03EDB32D6E80BC9CB * value)
{
___OnClientAuthenticated_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnClientAuthenticated_5), (void*)value);
}
};
// Mirror.NetworkBehaviour
struct NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Single Mirror.NetworkBehaviour::lastSyncTime
float ___lastSyncTime_4;
// Mirror.SyncMode Mirror.NetworkBehaviour::syncMode
int32_t ___syncMode_5;
// System.Single Mirror.NetworkBehaviour::syncInterval
float ___syncInterval_6;
// System.UInt64 Mirror.NetworkBehaviour::<syncVarDirtyBits>k__BackingField
uint64_t ___U3CsyncVarDirtyBitsU3Ek__BackingField_7;
// System.UInt64 Mirror.NetworkBehaviour::syncVarHookGuard
uint64_t ___syncVarHookGuard_8;
// System.Collections.Generic.List`1<Mirror.SyncObject> Mirror.NetworkBehaviour::syncObjects
List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 * ___syncObjects_9;
// Mirror.NetworkIdentity Mirror.NetworkBehaviour::netIdentityCache
NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___netIdentityCache_10;
public:
inline static int32_t get_offset_of_lastSyncTime_4() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___lastSyncTime_4)); }
inline float get_lastSyncTime_4() const { return ___lastSyncTime_4; }
inline float* get_address_of_lastSyncTime_4() { return &___lastSyncTime_4; }
inline void set_lastSyncTime_4(float value)
{
___lastSyncTime_4 = value;
}
inline static int32_t get_offset_of_syncMode_5() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncMode_5)); }
inline int32_t get_syncMode_5() const { return ___syncMode_5; }
inline int32_t* get_address_of_syncMode_5() { return &___syncMode_5; }
inline void set_syncMode_5(int32_t value)
{
___syncMode_5 = value;
}
inline static int32_t get_offset_of_syncInterval_6() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncInterval_6)); }
inline float get_syncInterval_6() const { return ___syncInterval_6; }
inline float* get_address_of_syncInterval_6() { return &___syncInterval_6; }
inline void set_syncInterval_6(float value)
{
___syncInterval_6 = value;
}
inline static int32_t get_offset_of_U3CsyncVarDirtyBitsU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___U3CsyncVarDirtyBitsU3Ek__BackingField_7)); }
inline uint64_t get_U3CsyncVarDirtyBitsU3Ek__BackingField_7() const { return ___U3CsyncVarDirtyBitsU3Ek__BackingField_7; }
inline uint64_t* get_address_of_U3CsyncVarDirtyBitsU3Ek__BackingField_7() { return &___U3CsyncVarDirtyBitsU3Ek__BackingField_7; }
inline void set_U3CsyncVarDirtyBitsU3Ek__BackingField_7(uint64_t value)
{
___U3CsyncVarDirtyBitsU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_syncVarHookGuard_8() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncVarHookGuard_8)); }
inline uint64_t get_syncVarHookGuard_8() const { return ___syncVarHookGuard_8; }
inline uint64_t* get_address_of_syncVarHookGuard_8() { return &___syncVarHookGuard_8; }
inline void set_syncVarHookGuard_8(uint64_t value)
{
___syncVarHookGuard_8 = value;
}
inline static int32_t get_offset_of_syncObjects_9() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___syncObjects_9)); }
inline List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 * get_syncObjects_9() const { return ___syncObjects_9; }
inline List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 ** get_address_of_syncObjects_9() { return &___syncObjects_9; }
inline void set_syncObjects_9(List_1_t51966D9FDD8DBE9C5685D80FC3B72F573EDC7156 * value)
{
___syncObjects_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___syncObjects_9), (void*)value);
}
inline static int32_t get_offset_of_netIdentityCache_10() { return static_cast<int32_t>(offsetof(NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4, ___netIdentityCache_10)); }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_netIdentityCache_10() const { return ___netIdentityCache_10; }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_netIdentityCache_10() { return &___netIdentityCache_10; }
inline void set_netIdentityCache_10(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value)
{
___netIdentityCache_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___netIdentityCache_10), (void*)value);
}
};
// Mirror.Discovery.NetworkDiscoveryHUD
struct NetworkDiscoveryHUD_t98958DC3BAEC567C528F31BF20CD4CDCADDFB56B : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Collections.Generic.Dictionary`2<System.Int64,Mirror.Discovery.ServerResponse> Mirror.Discovery.NetworkDiscoveryHUD::discoveredServers
Dictionary_2_tDDE9489AE1543EE24275481D4C0DE919F138E279 * ___discoveredServers_4;
// UnityEngine.Vector2 Mirror.Discovery.NetworkDiscoveryHUD::scrollViewPos
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___scrollViewPos_5;
// Mirror.Discovery.NetworkDiscovery Mirror.Discovery.NetworkDiscoveryHUD::networkDiscovery
NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26 * ___networkDiscovery_6;
public:
inline static int32_t get_offset_of_discoveredServers_4() { return static_cast<int32_t>(offsetof(NetworkDiscoveryHUD_t98958DC3BAEC567C528F31BF20CD4CDCADDFB56B, ___discoveredServers_4)); }
inline Dictionary_2_tDDE9489AE1543EE24275481D4C0DE919F138E279 * get_discoveredServers_4() const { return ___discoveredServers_4; }
inline Dictionary_2_tDDE9489AE1543EE24275481D4C0DE919F138E279 ** get_address_of_discoveredServers_4() { return &___discoveredServers_4; }
inline void set_discoveredServers_4(Dictionary_2_tDDE9489AE1543EE24275481D4C0DE919F138E279 * value)
{
___discoveredServers_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___discoveredServers_4), (void*)value);
}
inline static int32_t get_offset_of_scrollViewPos_5() { return static_cast<int32_t>(offsetof(NetworkDiscoveryHUD_t98958DC3BAEC567C528F31BF20CD4CDCADDFB56B, ___scrollViewPos_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_scrollViewPos_5() const { return ___scrollViewPos_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_scrollViewPos_5() { return &___scrollViewPos_5; }
inline void set_scrollViewPos_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___scrollViewPos_5 = value;
}
inline static int32_t get_offset_of_networkDiscovery_6() { return static_cast<int32_t>(offsetof(NetworkDiscoveryHUD_t98958DC3BAEC567C528F31BF20CD4CDCADDFB56B, ___networkDiscovery_6)); }
inline NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26 * get_networkDiscovery_6() const { return ___networkDiscovery_6; }
inline NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26 ** get_address_of_networkDiscovery_6() { return &___networkDiscovery_6; }
inline void set_networkDiscovery_6(NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26 * value)
{
___networkDiscovery_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___networkDiscovery_6), (void*)value);
}
};
// Mirror.NetworkManager
struct NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Boolean Mirror.NetworkManager::dontDestroyOnLoad
bool ___dontDestroyOnLoad_4;
// System.Boolean Mirror.NetworkManager::runInBackground
bool ___runInBackground_5;
// System.Boolean Mirror.NetworkManager::autoStartServerBuild
bool ___autoStartServerBuild_6;
// System.Boolean Mirror.NetworkManager::showDebugMessages
bool ___showDebugMessages_7;
// System.Int32 Mirror.NetworkManager::serverTickRate
int32_t ___serverTickRate_8;
// System.Boolean Mirror.NetworkManager::serverBatching
bool ___serverBatching_9;
// System.Single Mirror.NetworkManager::serverBatchInterval
float ___serverBatchInterval_10;
// System.String Mirror.NetworkManager::offlineScene
String_t* ___offlineScene_11;
// System.String Mirror.NetworkManager::onlineScene
String_t* ___onlineScene_12;
// Mirror.Transport Mirror.NetworkManager::transport
Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * ___transport_13;
// System.String Mirror.NetworkManager::networkAddress
String_t* ___networkAddress_14;
// System.Int32 Mirror.NetworkManager::maxConnections
int32_t ___maxConnections_15;
// System.Boolean Mirror.NetworkManager::disconnectInactiveConnections
bool ___disconnectInactiveConnections_16;
// System.Single Mirror.NetworkManager::disconnectInactiveTimeout
float ___disconnectInactiveTimeout_17;
// Mirror.NetworkAuthenticator Mirror.NetworkManager::authenticator
NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * ___authenticator_18;
// UnityEngine.GameObject Mirror.NetworkManager::playerPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerPrefab_19;
// System.Boolean Mirror.NetworkManager::autoCreatePlayer
bool ___autoCreatePlayer_20;
// Mirror.PlayerSpawnMethod Mirror.NetworkManager::playerSpawnMethod
int32_t ___playerSpawnMethod_21;
// System.Collections.Generic.List`1<UnityEngine.GameObject> Mirror.NetworkManager::spawnPrefabs
List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * ___spawnPrefabs_22;
// System.Boolean Mirror.NetworkManager::isNetworkActive
bool ___isNetworkActive_26;
// System.Boolean Mirror.NetworkManager::clientLoadedScene
bool ___clientLoadedScene_28;
// Mirror.NetworkManagerMode Mirror.NetworkManager::<mode>k__BackingField
int32_t ___U3CmodeU3Ek__BackingField_29;
// System.Boolean Mirror.NetworkManager::finishStartHostPending
bool ___finishStartHostPending_30;
// Mirror.SceneOperation Mirror.NetworkManager::clientSceneOperation
uint8_t ___clientSceneOperation_33;
public:
inline static int32_t get_offset_of_dontDestroyOnLoad_4() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___dontDestroyOnLoad_4)); }
inline bool get_dontDestroyOnLoad_4() const { return ___dontDestroyOnLoad_4; }
inline bool* get_address_of_dontDestroyOnLoad_4() { return &___dontDestroyOnLoad_4; }
inline void set_dontDestroyOnLoad_4(bool value)
{
___dontDestroyOnLoad_4 = value;
}
inline static int32_t get_offset_of_runInBackground_5() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___runInBackground_5)); }
inline bool get_runInBackground_5() const { return ___runInBackground_5; }
inline bool* get_address_of_runInBackground_5() { return &___runInBackground_5; }
inline void set_runInBackground_5(bool value)
{
___runInBackground_5 = value;
}
inline static int32_t get_offset_of_autoStartServerBuild_6() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___autoStartServerBuild_6)); }
inline bool get_autoStartServerBuild_6() const { return ___autoStartServerBuild_6; }
inline bool* get_address_of_autoStartServerBuild_6() { return &___autoStartServerBuild_6; }
inline void set_autoStartServerBuild_6(bool value)
{
___autoStartServerBuild_6 = value;
}
inline static int32_t get_offset_of_showDebugMessages_7() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___showDebugMessages_7)); }
inline bool get_showDebugMessages_7() const { return ___showDebugMessages_7; }
inline bool* get_address_of_showDebugMessages_7() { return &___showDebugMessages_7; }
inline void set_showDebugMessages_7(bool value)
{
___showDebugMessages_7 = value;
}
inline static int32_t get_offset_of_serverTickRate_8() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___serverTickRate_8)); }
inline int32_t get_serverTickRate_8() const { return ___serverTickRate_8; }
inline int32_t* get_address_of_serverTickRate_8() { return &___serverTickRate_8; }
inline void set_serverTickRate_8(int32_t value)
{
___serverTickRate_8 = value;
}
inline static int32_t get_offset_of_serverBatching_9() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___serverBatching_9)); }
inline bool get_serverBatching_9() const { return ___serverBatching_9; }
inline bool* get_address_of_serverBatching_9() { return &___serverBatching_9; }
inline void set_serverBatching_9(bool value)
{
___serverBatching_9 = value;
}
inline static int32_t get_offset_of_serverBatchInterval_10() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___serverBatchInterval_10)); }
inline float get_serverBatchInterval_10() const { return ___serverBatchInterval_10; }
inline float* get_address_of_serverBatchInterval_10() { return &___serverBatchInterval_10; }
inline void set_serverBatchInterval_10(float value)
{
___serverBatchInterval_10 = value;
}
inline static int32_t get_offset_of_offlineScene_11() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___offlineScene_11)); }
inline String_t* get_offlineScene_11() const { return ___offlineScene_11; }
inline String_t** get_address_of_offlineScene_11() { return &___offlineScene_11; }
inline void set_offlineScene_11(String_t* value)
{
___offlineScene_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___offlineScene_11), (void*)value);
}
inline static int32_t get_offset_of_onlineScene_12() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___onlineScene_12)); }
inline String_t* get_onlineScene_12() const { return ___onlineScene_12; }
inline String_t** get_address_of_onlineScene_12() { return &___onlineScene_12; }
inline void set_onlineScene_12(String_t* value)
{
___onlineScene_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onlineScene_12), (void*)value);
}
inline static int32_t get_offset_of_transport_13() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___transport_13)); }
inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * get_transport_13() const { return ___transport_13; }
inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D ** get_address_of_transport_13() { return &___transport_13; }
inline void set_transport_13(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * value)
{
___transport_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___transport_13), (void*)value);
}
inline static int32_t get_offset_of_networkAddress_14() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___networkAddress_14)); }
inline String_t* get_networkAddress_14() const { return ___networkAddress_14; }
inline String_t** get_address_of_networkAddress_14() { return &___networkAddress_14; }
inline void set_networkAddress_14(String_t* value)
{
___networkAddress_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___networkAddress_14), (void*)value);
}
inline static int32_t get_offset_of_maxConnections_15() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___maxConnections_15)); }
inline int32_t get_maxConnections_15() const { return ___maxConnections_15; }
inline int32_t* get_address_of_maxConnections_15() { return &___maxConnections_15; }
inline void set_maxConnections_15(int32_t value)
{
___maxConnections_15 = value;
}
inline static int32_t get_offset_of_disconnectInactiveConnections_16() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___disconnectInactiveConnections_16)); }
inline bool get_disconnectInactiveConnections_16() const { return ___disconnectInactiveConnections_16; }
inline bool* get_address_of_disconnectInactiveConnections_16() { return &___disconnectInactiveConnections_16; }
inline void set_disconnectInactiveConnections_16(bool value)
{
___disconnectInactiveConnections_16 = value;
}
inline static int32_t get_offset_of_disconnectInactiveTimeout_17() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___disconnectInactiveTimeout_17)); }
inline float get_disconnectInactiveTimeout_17() const { return ___disconnectInactiveTimeout_17; }
inline float* get_address_of_disconnectInactiveTimeout_17() { return &___disconnectInactiveTimeout_17; }
inline void set_disconnectInactiveTimeout_17(float value)
{
___disconnectInactiveTimeout_17 = value;
}
inline static int32_t get_offset_of_authenticator_18() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___authenticator_18)); }
inline NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * get_authenticator_18() const { return ___authenticator_18; }
inline NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF ** get_address_of_authenticator_18() { return &___authenticator_18; }
inline void set_authenticator_18(NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * value)
{
___authenticator_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___authenticator_18), (void*)value);
}
inline static int32_t get_offset_of_playerPrefab_19() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___playerPrefab_19)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerPrefab_19() const { return ___playerPrefab_19; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerPrefab_19() { return &___playerPrefab_19; }
inline void set_playerPrefab_19(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___playerPrefab_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerPrefab_19), (void*)value);
}
inline static int32_t get_offset_of_autoCreatePlayer_20() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___autoCreatePlayer_20)); }
inline bool get_autoCreatePlayer_20() const { return ___autoCreatePlayer_20; }
inline bool* get_address_of_autoCreatePlayer_20() { return &___autoCreatePlayer_20; }
inline void set_autoCreatePlayer_20(bool value)
{
___autoCreatePlayer_20 = value;
}
inline static int32_t get_offset_of_playerSpawnMethod_21() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___playerSpawnMethod_21)); }
inline int32_t get_playerSpawnMethod_21() const { return ___playerSpawnMethod_21; }
inline int32_t* get_address_of_playerSpawnMethod_21() { return &___playerSpawnMethod_21; }
inline void set_playerSpawnMethod_21(int32_t value)
{
___playerSpawnMethod_21 = value;
}
inline static int32_t get_offset_of_spawnPrefabs_22() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___spawnPrefabs_22)); }
inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * get_spawnPrefabs_22() const { return ___spawnPrefabs_22; }
inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 ** get_address_of_spawnPrefabs_22() { return &___spawnPrefabs_22; }
inline void set_spawnPrefabs_22(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * value)
{
___spawnPrefabs_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___spawnPrefabs_22), (void*)value);
}
inline static int32_t get_offset_of_isNetworkActive_26() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___isNetworkActive_26)); }
inline bool get_isNetworkActive_26() const { return ___isNetworkActive_26; }
inline bool* get_address_of_isNetworkActive_26() { return &___isNetworkActive_26; }
inline void set_isNetworkActive_26(bool value)
{
___isNetworkActive_26 = value;
}
inline static int32_t get_offset_of_clientLoadedScene_28() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___clientLoadedScene_28)); }
inline bool get_clientLoadedScene_28() const { return ___clientLoadedScene_28; }
inline bool* get_address_of_clientLoadedScene_28() { return &___clientLoadedScene_28; }
inline void set_clientLoadedScene_28(bool value)
{
___clientLoadedScene_28 = value;
}
inline static int32_t get_offset_of_U3CmodeU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___U3CmodeU3Ek__BackingField_29)); }
inline int32_t get_U3CmodeU3Ek__BackingField_29() const { return ___U3CmodeU3Ek__BackingField_29; }
inline int32_t* get_address_of_U3CmodeU3Ek__BackingField_29() { return &___U3CmodeU3Ek__BackingField_29; }
inline void set_U3CmodeU3Ek__BackingField_29(int32_t value)
{
___U3CmodeU3Ek__BackingField_29 = value;
}
inline static int32_t get_offset_of_finishStartHostPending_30() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___finishStartHostPending_30)); }
inline bool get_finishStartHostPending_30() const { return ___finishStartHostPending_30; }
inline bool* get_address_of_finishStartHostPending_30() { return &___finishStartHostPending_30; }
inline void set_finishStartHostPending_30(bool value)
{
___finishStartHostPending_30 = value;
}
inline static int32_t get_offset_of_clientSceneOperation_33() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15, ___clientSceneOperation_33)); }
inline uint8_t get_clientSceneOperation_33() const { return ___clientSceneOperation_33; }
inline uint8_t* get_address_of_clientSceneOperation_33() { return &___clientSceneOperation_33; }
inline void set_clientSceneOperation_33(uint8_t value)
{
___clientSceneOperation_33 = value;
}
};
struct NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.Transform> Mirror.NetworkManager::startPositions
List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * ___startPositions_23;
// System.Int32 Mirror.NetworkManager::startPositionIndex
int32_t ___startPositionIndex_24;
// Mirror.NetworkManager Mirror.NetworkManager::<singleton>k__BackingField
NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * ___U3CsingletonU3Ek__BackingField_25;
// Mirror.NetworkConnection Mirror.NetworkManager::clientReadyConnection
NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * ___clientReadyConnection_27;
// System.String Mirror.NetworkManager::<networkSceneName>k__BackingField
String_t* ___U3CnetworkSceneNameU3Ek__BackingField_31;
// UnityEngine.AsyncOperation Mirror.NetworkManager::loadingSceneAsync
AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * ___loadingSceneAsync_32;
public:
inline static int32_t get_offset_of_startPositions_23() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___startPositions_23)); }
inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * get_startPositions_23() const { return ___startPositions_23; }
inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 ** get_address_of_startPositions_23() { return &___startPositions_23; }
inline void set_startPositions_23(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * value)
{
___startPositions_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___startPositions_23), (void*)value);
}
inline static int32_t get_offset_of_startPositionIndex_24() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___startPositionIndex_24)); }
inline int32_t get_startPositionIndex_24() const { return ___startPositionIndex_24; }
inline int32_t* get_address_of_startPositionIndex_24() { return &___startPositionIndex_24; }
inline void set_startPositionIndex_24(int32_t value)
{
___startPositionIndex_24 = value;
}
inline static int32_t get_offset_of_U3CsingletonU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___U3CsingletonU3Ek__BackingField_25)); }
inline NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * get_U3CsingletonU3Ek__BackingField_25() const { return ___U3CsingletonU3Ek__BackingField_25; }
inline NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 ** get_address_of_U3CsingletonU3Ek__BackingField_25() { return &___U3CsingletonU3Ek__BackingField_25; }
inline void set_U3CsingletonU3Ek__BackingField_25(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15 * value)
{
___U3CsingletonU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsingletonU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_clientReadyConnection_27() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___clientReadyConnection_27)); }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * get_clientReadyConnection_27() const { return ___clientReadyConnection_27; }
inline NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 ** get_address_of_clientReadyConnection_27() { return &___clientReadyConnection_27; }
inline void set_clientReadyConnection_27(NetworkConnection_t5DD5A384AFA5946D766F7D3A5F8E5418FAB10311 * value)
{
___clientReadyConnection_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___clientReadyConnection_27), (void*)value);
}
inline static int32_t get_offset_of_U3CnetworkSceneNameU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___U3CnetworkSceneNameU3Ek__BackingField_31)); }
inline String_t* get_U3CnetworkSceneNameU3Ek__BackingField_31() const { return ___U3CnetworkSceneNameU3Ek__BackingField_31; }
inline String_t** get_address_of_U3CnetworkSceneNameU3Ek__BackingField_31() { return &___U3CnetworkSceneNameU3Ek__BackingField_31; }
inline void set_U3CnetworkSceneNameU3Ek__BackingField_31(String_t* value)
{
___U3CnetworkSceneNameU3Ek__BackingField_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnetworkSceneNameU3Ek__BackingField_31), (void*)value);
}
inline static int32_t get_offset_of_loadingSceneAsync_32() { return static_cast<int32_t>(offsetof(NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15_StaticFields, ___loadingSceneAsync_32)); }
inline AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * get_loadingSceneAsync_32() const { return ___loadingSceneAsync_32; }
inline AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 ** get_address_of_loadingSceneAsync_32() { return &___loadingSceneAsync_32; }
inline void set_loadingSceneAsync_32(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * value)
{
___loadingSceneAsync_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___loadingSceneAsync_32), (void*)value);
}
};
// Mirror.NetworkPingDisplay
struct NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.Color Mirror.NetworkPingDisplay::color
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___color_4;
// System.Int32 Mirror.NetworkPingDisplay::padding
int32_t ___padding_5;
// System.Int32 Mirror.NetworkPingDisplay::width
int32_t ___width_6;
// System.Int32 Mirror.NetworkPingDisplay::height
int32_t ___height_7;
public:
inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF, ___color_4)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_color_4() const { return ___color_4; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_color_4() { return &___color_4; }
inline void set_color_4(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___color_4 = value;
}
inline static int32_t get_offset_of_padding_5() { return static_cast<int32_t>(offsetof(NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF, ___padding_5)); }
inline int32_t get_padding_5() const { return ___padding_5; }
inline int32_t* get_address_of_padding_5() { return &___padding_5; }
inline void set_padding_5(int32_t value)
{
___padding_5 = value;
}
inline static int32_t get_offset_of_width_6() { return static_cast<int32_t>(offsetof(NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF, ___width_6)); }
inline int32_t get_width_6() const { return ___width_6; }
inline int32_t* get_address_of_width_6() { return &___width_6; }
inline void set_width_6(int32_t value)
{
___width_6 = value;
}
inline static int32_t get_offset_of_height_7() { return static_cast<int32_t>(offsetof(NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF, ___height_7)); }
inline int32_t get_height_7() const { return ___height_7; }
inline int32_t* get_address_of_height_7() { return &___height_7; }
inline void set_height_7(int32_t value)
{
___height_7 = value;
}
};
// UnityEngine.InputSystem.OnScreen.OnScreenControl
struct OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.InputSystem.InputControl UnityEngine.InputSystem.OnScreen.OnScreenControl::m_Control
InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 * ___m_Control_4;
// UnityEngine.InputSystem.OnScreen.OnScreenControl UnityEngine.InputSystem.OnScreen.OnScreenControl::m_NextControlOnDevice
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * ___m_NextControlOnDevice_5;
// UnityEngine.InputSystem.LowLevel.InputEventPtr UnityEngine.InputSystem.OnScreen.OnScreenControl::m_InputEventPtr
InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 ___m_InputEventPtr_6;
public:
inline static int32_t get_offset_of_m_Control_4() { return static_cast<int32_t>(offsetof(OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381, ___m_Control_4)); }
inline InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 * get_m_Control_4() const { return ___m_Control_4; }
inline InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 ** get_address_of_m_Control_4() { return &___m_Control_4; }
inline void set_m_Control_4(InputControl_tAEBA880CDA80C28CB491DE6AB0187E2B36B01008 * value)
{
___m_Control_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Control_4), (void*)value);
}
inline static int32_t get_offset_of_m_NextControlOnDevice_5() { return static_cast<int32_t>(offsetof(OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381, ___m_NextControlOnDevice_5)); }
inline OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * get_m_NextControlOnDevice_5() const { return ___m_NextControlOnDevice_5; }
inline OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 ** get_address_of_m_NextControlOnDevice_5() { return &___m_NextControlOnDevice_5; }
inline void set_m_NextControlOnDevice_5(OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381 * value)
{
___m_NextControlOnDevice_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_NextControlOnDevice_5), (void*)value);
}
inline static int32_t get_offset_of_m_InputEventPtr_6() { return static_cast<int32_t>(offsetof(OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381, ___m_InputEventPtr_6)); }
inline InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 get_m_InputEventPtr_6() const { return ___m_InputEventPtr_6; }
inline InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 * get_address_of_m_InputEventPtr_6() { return &___m_InputEventPtr_6; }
inline void set_m_InputEventPtr_6(InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190 value)
{
___m_InputEventPtr_6 = value;
}
};
struct OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.OnScreen.OnScreenControl/OnScreenDeviceInfo> UnityEngine.InputSystem.OnScreen.OnScreenControl::s_OnScreenDevices
InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888 ___s_OnScreenDevices_7;
public:
inline static int32_t get_offset_of_s_OnScreenDevices_7() { return static_cast<int32_t>(offsetof(OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381_StaticFields, ___s_OnScreenDevices_7)); }
inline InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888 get_s_OnScreenDevices_7() const { return ___s_OnScreenDevices_7; }
inline InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888 * get_address_of_s_OnScreenDevices_7() { return &___s_OnScreenDevices_7; }
inline void set_s_OnScreenDevices_7(InlinedArray_1_t641D69D7398FC10B06F33156BD1FC6C5E9EA5888 value)
{
___s_OnScreenDevices_7 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___s_OnScreenDevices_7))->___firstValue_1))->___device_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___s_OnScreenDevices_7))->___firstValue_1))->___firstControl_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_OnScreenDevices_7))->___additionalValues_2), (void*)NULL);
#endif
}
};
// 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.MultipleMatch.PlayerGUI
struct PlayerGUI_t7B4B5207382BC93B0ECE035465EA5B1EB3974A06 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.UI.Text Mirror.Examples.MultipleMatch.PlayerGUI::playerName
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___playerName_4;
public:
inline static int32_t get_offset_of_playerName_4() { return static_cast<int32_t>(offsetof(PlayerGUI_t7B4B5207382BC93B0ECE035465EA5B1EB3974A06, ___playerName_4)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_playerName_4() const { return ___playerName_4; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_playerName_4() { return &___playerName_4; }
inline void set_playerName_4(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___playerName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerName_4), (void*)value);
}
};
// UnityEngine.InputSystem.PlayerInput
struct PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.InputSystem.InputActionAsset UnityEngine.InputSystem.PlayerInput::m_Actions
InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF * ___m_Actions_7;
// UnityEngine.InputSystem.PlayerNotifications UnityEngine.InputSystem.PlayerInput::m_NotificationBehavior
int32_t ___m_NotificationBehavior_8;
// UnityEngine.InputSystem.UI.InputSystemUIInputModule UnityEngine.InputSystem.PlayerInput::m_UIInputModule
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB * ___m_UIInputModule_9;
// UnityEngine.InputSystem.PlayerInput/DeviceLostEvent UnityEngine.InputSystem.PlayerInput::m_DeviceLostEvent
DeviceLostEvent_tF3C401927234A694F690FA685FCAE477D37FC2E9 * ___m_DeviceLostEvent_10;
// UnityEngine.InputSystem.PlayerInput/DeviceRegainedEvent UnityEngine.InputSystem.PlayerInput::m_DeviceRegainedEvent
DeviceRegainedEvent_t94948DD31F91C3CBB27954D00A04B5F49DBC9676 * ___m_DeviceRegainedEvent_11;
// UnityEngine.InputSystem.PlayerInput/ControlsChangedEvent UnityEngine.InputSystem.PlayerInput::m_ControlsChangedEvent
ControlsChangedEvent_tD7A83A666777246B9B22B47348E25EB613C2769F * ___m_ControlsChangedEvent_12;
// UnityEngine.InputSystem.PlayerInput/ActionEvent[] UnityEngine.InputSystem.PlayerInput::m_ActionEvents
ActionEventU5BU5D_tCA45F63827E00649F086A33E7259C839CC5D811F* ___m_ActionEvents_13;
// System.Boolean UnityEngine.InputSystem.PlayerInput::m_NeverAutoSwitchControlSchemes
bool ___m_NeverAutoSwitchControlSchemes_14;
// System.String UnityEngine.InputSystem.PlayerInput::m_DefaultControlScheme
String_t* ___m_DefaultControlScheme_15;
// System.String UnityEngine.InputSystem.PlayerInput::m_DefaultActionMap
String_t* ___m_DefaultActionMap_16;
// System.Int32 UnityEngine.InputSystem.PlayerInput::m_SplitScreenIndex
int32_t ___m_SplitScreenIndex_17;
// UnityEngine.Camera UnityEngine.InputSystem.PlayerInput::m_Camera
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___m_Camera_18;
// UnityEngine.InputSystem.InputValue UnityEngine.InputSystem.PlayerInput::m_InputValueObject
InputValue_t7DAE4709CBEB6C72C828D8E5A6A42E51DE6EF6B0 * ___m_InputValueObject_19;
// UnityEngine.InputSystem.InputActionMap UnityEngine.InputSystem.PlayerInput::m_CurrentActionMap
InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB * ___m_CurrentActionMap_20;
// System.Int32 UnityEngine.InputSystem.PlayerInput::m_PlayerIndex
int32_t ___m_PlayerIndex_21;
// System.Boolean UnityEngine.InputSystem.PlayerInput::m_InputActive
bool ___m_InputActive_22;
// System.Boolean UnityEngine.InputSystem.PlayerInput::m_Enabled
bool ___m_Enabled_23;
// System.Boolean UnityEngine.InputSystem.PlayerInput::m_ActionsInitialized
bool ___m_ActionsInitialized_24;
// System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.InputSystem.PlayerInput::m_ActionMessageNames
Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * ___m_ActionMessageNames_25;
// UnityEngine.InputSystem.Users.InputUser UnityEngine.InputSystem.PlayerInput::m_InputUser
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17 ___m_InputUser_26;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.PlayerInput::m_ActionTriggeredDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_ActionTriggeredDelegate_27;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.PlayerInput>> UnityEngine.InputSystem.PlayerInput::m_DeviceLostCallbacks
InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 ___m_DeviceLostCallbacks_28;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.PlayerInput>> UnityEngine.InputSystem.PlayerInput::m_DeviceRegainedCallbacks
InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 ___m_DeviceRegainedCallbacks_29;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.PlayerInput>> UnityEngine.InputSystem.PlayerInput::m_ControlsChangedCallbacks
InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 ___m_ControlsChangedCallbacks_30;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext>> UnityEngine.InputSystem.PlayerInput::m_ActionTriggeredCallbacks
InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418 ___m_ActionTriggeredCallbacks_31;
// System.Action`2<UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.PlayerInput::m_UnpairedDeviceUsedDelegate
Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * ___m_UnpairedDeviceUsedDelegate_32;
// System.Boolean UnityEngine.InputSystem.PlayerInput::m_OnUnpairedDeviceUsedHooked
bool ___m_OnUnpairedDeviceUsedHooked_33;
// System.Action`2<UnityEngine.InputSystem.InputDevice,UnityEngine.InputSystem.InputDeviceChange> UnityEngine.InputSystem.PlayerInput::m_DeviceChangeDelegate
Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F * ___m_DeviceChangeDelegate_34;
// System.Boolean UnityEngine.InputSystem.PlayerInput::m_OnDeviceChangeHooked
bool ___m_OnDeviceChangeHooked_35;
public:
inline static int32_t get_offset_of_m_Actions_7() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_Actions_7)); }
inline InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF * get_m_Actions_7() const { return ___m_Actions_7; }
inline InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF ** get_address_of_m_Actions_7() { return &___m_Actions_7; }
inline void set_m_Actions_7(InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF * value)
{
___m_Actions_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Actions_7), (void*)value);
}
inline static int32_t get_offset_of_m_NotificationBehavior_8() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_NotificationBehavior_8)); }
inline int32_t get_m_NotificationBehavior_8() const { return ___m_NotificationBehavior_8; }
inline int32_t* get_address_of_m_NotificationBehavior_8() { return &___m_NotificationBehavior_8; }
inline void set_m_NotificationBehavior_8(int32_t value)
{
___m_NotificationBehavior_8 = value;
}
inline static int32_t get_offset_of_m_UIInputModule_9() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_UIInputModule_9)); }
inline InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB * get_m_UIInputModule_9() const { return ___m_UIInputModule_9; }
inline InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB ** get_address_of_m_UIInputModule_9() { return &___m_UIInputModule_9; }
inline void set_m_UIInputModule_9(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB * value)
{
___m_UIInputModule_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UIInputModule_9), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceLostEvent_10() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_DeviceLostEvent_10)); }
inline DeviceLostEvent_tF3C401927234A694F690FA685FCAE477D37FC2E9 * get_m_DeviceLostEvent_10() const { return ___m_DeviceLostEvent_10; }
inline DeviceLostEvent_tF3C401927234A694F690FA685FCAE477D37FC2E9 ** get_address_of_m_DeviceLostEvent_10() { return &___m_DeviceLostEvent_10; }
inline void set_m_DeviceLostEvent_10(DeviceLostEvent_tF3C401927234A694F690FA685FCAE477D37FC2E9 * value)
{
___m_DeviceLostEvent_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceLostEvent_10), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceRegainedEvent_11() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_DeviceRegainedEvent_11)); }
inline DeviceRegainedEvent_t94948DD31F91C3CBB27954D00A04B5F49DBC9676 * get_m_DeviceRegainedEvent_11() const { return ___m_DeviceRegainedEvent_11; }
inline DeviceRegainedEvent_t94948DD31F91C3CBB27954D00A04B5F49DBC9676 ** get_address_of_m_DeviceRegainedEvent_11() { return &___m_DeviceRegainedEvent_11; }
inline void set_m_DeviceRegainedEvent_11(DeviceRegainedEvent_t94948DD31F91C3CBB27954D00A04B5F49DBC9676 * value)
{
___m_DeviceRegainedEvent_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceRegainedEvent_11), (void*)value);
}
inline static int32_t get_offset_of_m_ControlsChangedEvent_12() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_ControlsChangedEvent_12)); }
inline ControlsChangedEvent_tD7A83A666777246B9B22B47348E25EB613C2769F * get_m_ControlsChangedEvent_12() const { return ___m_ControlsChangedEvent_12; }
inline ControlsChangedEvent_tD7A83A666777246B9B22B47348E25EB613C2769F ** get_address_of_m_ControlsChangedEvent_12() { return &___m_ControlsChangedEvent_12; }
inline void set_m_ControlsChangedEvent_12(ControlsChangedEvent_tD7A83A666777246B9B22B47348E25EB613C2769F * value)
{
___m_ControlsChangedEvent_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ControlsChangedEvent_12), (void*)value);
}
inline static int32_t get_offset_of_m_ActionEvents_13() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_ActionEvents_13)); }
inline ActionEventU5BU5D_tCA45F63827E00649F086A33E7259C839CC5D811F* get_m_ActionEvents_13() const { return ___m_ActionEvents_13; }
inline ActionEventU5BU5D_tCA45F63827E00649F086A33E7259C839CC5D811F** get_address_of_m_ActionEvents_13() { return &___m_ActionEvents_13; }
inline void set_m_ActionEvents_13(ActionEventU5BU5D_tCA45F63827E00649F086A33E7259C839CC5D811F* value)
{
___m_ActionEvents_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionEvents_13), (void*)value);
}
inline static int32_t get_offset_of_m_NeverAutoSwitchControlSchemes_14() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_NeverAutoSwitchControlSchemes_14)); }
inline bool get_m_NeverAutoSwitchControlSchemes_14() const { return ___m_NeverAutoSwitchControlSchemes_14; }
inline bool* get_address_of_m_NeverAutoSwitchControlSchemes_14() { return &___m_NeverAutoSwitchControlSchemes_14; }
inline void set_m_NeverAutoSwitchControlSchemes_14(bool value)
{
___m_NeverAutoSwitchControlSchemes_14 = value;
}
inline static int32_t get_offset_of_m_DefaultControlScheme_15() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_DefaultControlScheme_15)); }
inline String_t* get_m_DefaultControlScheme_15() const { return ___m_DefaultControlScheme_15; }
inline String_t** get_address_of_m_DefaultControlScheme_15() { return &___m_DefaultControlScheme_15; }
inline void set_m_DefaultControlScheme_15(String_t* value)
{
___m_DefaultControlScheme_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultControlScheme_15), (void*)value);
}
inline static int32_t get_offset_of_m_DefaultActionMap_16() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_DefaultActionMap_16)); }
inline String_t* get_m_DefaultActionMap_16() const { return ___m_DefaultActionMap_16; }
inline String_t** get_address_of_m_DefaultActionMap_16() { return &___m_DefaultActionMap_16; }
inline void set_m_DefaultActionMap_16(String_t* value)
{
___m_DefaultActionMap_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultActionMap_16), (void*)value);
}
inline static int32_t get_offset_of_m_SplitScreenIndex_17() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_SplitScreenIndex_17)); }
inline int32_t get_m_SplitScreenIndex_17() const { return ___m_SplitScreenIndex_17; }
inline int32_t* get_address_of_m_SplitScreenIndex_17() { return &___m_SplitScreenIndex_17; }
inline void set_m_SplitScreenIndex_17(int32_t value)
{
___m_SplitScreenIndex_17 = value;
}
inline static int32_t get_offset_of_m_Camera_18() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_Camera_18)); }
inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * get_m_Camera_18() const { return ___m_Camera_18; }
inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C ** get_address_of_m_Camera_18() { return &___m_Camera_18; }
inline void set_m_Camera_18(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * value)
{
___m_Camera_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Camera_18), (void*)value);
}
inline static int32_t get_offset_of_m_InputValueObject_19() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_InputValueObject_19)); }
inline InputValue_t7DAE4709CBEB6C72C828D8E5A6A42E51DE6EF6B0 * get_m_InputValueObject_19() const { return ___m_InputValueObject_19; }
inline InputValue_t7DAE4709CBEB6C72C828D8E5A6A42E51DE6EF6B0 ** get_address_of_m_InputValueObject_19() { return &___m_InputValueObject_19; }
inline void set_m_InputValueObject_19(InputValue_t7DAE4709CBEB6C72C828D8E5A6A42E51DE6EF6B0 * value)
{
___m_InputValueObject_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InputValueObject_19), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentActionMap_20() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_CurrentActionMap_20)); }
inline InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB * get_m_CurrentActionMap_20() const { return ___m_CurrentActionMap_20; }
inline InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB ** get_address_of_m_CurrentActionMap_20() { return &___m_CurrentActionMap_20; }
inline void set_m_CurrentActionMap_20(InputActionMap_t365FB37712DB253DE809595D228920C4401BB0BB * value)
{
___m_CurrentActionMap_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentActionMap_20), (void*)value);
}
inline static int32_t get_offset_of_m_PlayerIndex_21() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_PlayerIndex_21)); }
inline int32_t get_m_PlayerIndex_21() const { return ___m_PlayerIndex_21; }
inline int32_t* get_address_of_m_PlayerIndex_21() { return &___m_PlayerIndex_21; }
inline void set_m_PlayerIndex_21(int32_t value)
{
___m_PlayerIndex_21 = value;
}
inline static int32_t get_offset_of_m_InputActive_22() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_InputActive_22)); }
inline bool get_m_InputActive_22() const { return ___m_InputActive_22; }
inline bool* get_address_of_m_InputActive_22() { return &___m_InputActive_22; }
inline void set_m_InputActive_22(bool value)
{
___m_InputActive_22 = value;
}
inline static int32_t get_offset_of_m_Enabled_23() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_Enabled_23)); }
inline bool get_m_Enabled_23() const { return ___m_Enabled_23; }
inline bool* get_address_of_m_Enabled_23() { return &___m_Enabled_23; }
inline void set_m_Enabled_23(bool value)
{
___m_Enabled_23 = value;
}
inline static int32_t get_offset_of_m_ActionsInitialized_24() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_ActionsInitialized_24)); }
inline bool get_m_ActionsInitialized_24() const { return ___m_ActionsInitialized_24; }
inline bool* get_address_of_m_ActionsInitialized_24() { return &___m_ActionsInitialized_24; }
inline void set_m_ActionsInitialized_24(bool value)
{
___m_ActionsInitialized_24 = value;
}
inline static int32_t get_offset_of_m_ActionMessageNames_25() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_ActionMessageNames_25)); }
inline Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * get_m_ActionMessageNames_25() const { return ___m_ActionMessageNames_25; }
inline Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 ** get_address_of_m_ActionMessageNames_25() { return &___m_ActionMessageNames_25; }
inline void set_m_ActionMessageNames_25(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * value)
{
___m_ActionMessageNames_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionMessageNames_25), (void*)value);
}
inline static int32_t get_offset_of_m_InputUser_26() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_InputUser_26)); }
inline InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17 get_m_InputUser_26() const { return ___m_InputUser_26; }
inline InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17 * get_address_of_m_InputUser_26() { return &___m_InputUser_26; }
inline void set_m_InputUser_26(InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17 value)
{
___m_InputUser_26 = value;
}
inline static int32_t get_offset_of_m_ActionTriggeredDelegate_27() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_ActionTriggeredDelegate_27)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_ActionTriggeredDelegate_27() const { return ___m_ActionTriggeredDelegate_27; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_ActionTriggeredDelegate_27() { return &___m_ActionTriggeredDelegate_27; }
inline void set_m_ActionTriggeredDelegate_27(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_ActionTriggeredDelegate_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionTriggeredDelegate_27), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceLostCallbacks_28() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_DeviceLostCallbacks_28)); }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 get_m_DeviceLostCallbacks_28() const { return ___m_DeviceLostCallbacks_28; }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 * get_address_of_m_DeviceLostCallbacks_28() { return &___m_DeviceLostCallbacks_28; }
inline void set_m_DeviceLostCallbacks_28(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 value)
{
___m_DeviceLostCallbacks_28 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DeviceLostCallbacks_28))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DeviceLostCallbacks_28))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_DeviceRegainedCallbacks_29() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_DeviceRegainedCallbacks_29)); }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 get_m_DeviceRegainedCallbacks_29() const { return ___m_DeviceRegainedCallbacks_29; }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 * get_address_of_m_DeviceRegainedCallbacks_29() { return &___m_DeviceRegainedCallbacks_29; }
inline void set_m_DeviceRegainedCallbacks_29(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 value)
{
___m_DeviceRegainedCallbacks_29 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DeviceRegainedCallbacks_29))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DeviceRegainedCallbacks_29))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_ControlsChangedCallbacks_30() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_ControlsChangedCallbacks_30)); }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 get_m_ControlsChangedCallbacks_30() const { return ___m_ControlsChangedCallbacks_30; }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 * get_address_of_m_ControlsChangedCallbacks_30() { return &___m_ControlsChangedCallbacks_30; }
inline void set_m_ControlsChangedCallbacks_30(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 value)
{
___m_ControlsChangedCallbacks_30 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ControlsChangedCallbacks_30))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ControlsChangedCallbacks_30))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_ActionTriggeredCallbacks_31() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_ActionTriggeredCallbacks_31)); }
inline InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418 get_m_ActionTriggeredCallbacks_31() const { return ___m_ActionTriggeredCallbacks_31; }
inline InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418 * get_address_of_m_ActionTriggeredCallbacks_31() { return &___m_ActionTriggeredCallbacks_31; }
inline void set_m_ActionTriggeredCallbacks_31(InlinedArray_1_t8D9C556537B2D60927BB0EE8718B2EEE2973F418 value)
{
___m_ActionTriggeredCallbacks_31 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ActionTriggeredCallbacks_31))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_ActionTriggeredCallbacks_31))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_UnpairedDeviceUsedDelegate_32() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_UnpairedDeviceUsedDelegate_32)); }
inline Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * get_m_UnpairedDeviceUsedDelegate_32() const { return ___m_UnpairedDeviceUsedDelegate_32; }
inline Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 ** get_address_of_m_UnpairedDeviceUsedDelegate_32() { return &___m_UnpairedDeviceUsedDelegate_32; }
inline void set_m_UnpairedDeviceUsedDelegate_32(Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * value)
{
___m_UnpairedDeviceUsedDelegate_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UnpairedDeviceUsedDelegate_32), (void*)value);
}
inline static int32_t get_offset_of_m_OnUnpairedDeviceUsedHooked_33() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_OnUnpairedDeviceUsedHooked_33)); }
inline bool get_m_OnUnpairedDeviceUsedHooked_33() const { return ___m_OnUnpairedDeviceUsedHooked_33; }
inline bool* get_address_of_m_OnUnpairedDeviceUsedHooked_33() { return &___m_OnUnpairedDeviceUsedHooked_33; }
inline void set_m_OnUnpairedDeviceUsedHooked_33(bool value)
{
___m_OnUnpairedDeviceUsedHooked_33 = value;
}
inline static int32_t get_offset_of_m_DeviceChangeDelegate_34() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_DeviceChangeDelegate_34)); }
inline Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F * get_m_DeviceChangeDelegate_34() const { return ___m_DeviceChangeDelegate_34; }
inline Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F ** get_address_of_m_DeviceChangeDelegate_34() { return &___m_DeviceChangeDelegate_34; }
inline void set_m_DeviceChangeDelegate_34(Action_2_t4F07B127F3F3360AB53655A3459C2AFD5CB4BE8F * value)
{
___m_DeviceChangeDelegate_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceChangeDelegate_34), (void*)value);
}
inline static int32_t get_offset_of_m_OnDeviceChangeHooked_35() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965, ___m_OnDeviceChangeHooked_35)); }
inline bool get_m_OnDeviceChangeHooked_35() const { return ___m_OnDeviceChangeHooked_35; }
inline bool* get_address_of_m_OnDeviceChangeHooked_35() { return &___m_OnDeviceChangeHooked_35; }
inline void set_m_OnDeviceChangeHooked_35(bool value)
{
___m_OnDeviceChangeHooked_35 = value;
}
};
struct PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields
{
public:
// System.Int32 UnityEngine.InputSystem.PlayerInput::s_AllActivePlayersCount
int32_t ___s_AllActivePlayersCount_36;
// UnityEngine.InputSystem.PlayerInput[] UnityEngine.InputSystem.PlayerInput::s_AllActivePlayers
PlayerInputU5BU5D_tAF5068150849B59DB571B74CDB7CEFABCDDA90F4* ___s_AllActivePlayers_37;
// System.Action`3<UnityEngine.InputSystem.Users.InputUser,UnityEngine.InputSystem.Users.InputUserChange,UnityEngine.InputSystem.InputDevice> UnityEngine.InputSystem.PlayerInput::s_UserChangeDelegate
Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 * ___s_UserChangeDelegate_38;
// System.Int32 UnityEngine.InputSystem.PlayerInput::s_InitPairWithDevicesCount
int32_t ___s_InitPairWithDevicesCount_39;
// UnityEngine.InputSystem.InputDevice[] UnityEngine.InputSystem.PlayerInput::s_InitPairWithDevices
InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* ___s_InitPairWithDevices_40;
// System.Int32 UnityEngine.InputSystem.PlayerInput::s_InitPlayerIndex
int32_t ___s_InitPlayerIndex_41;
// System.Int32 UnityEngine.InputSystem.PlayerInput::s_InitSplitScreenIndex
int32_t ___s_InitSplitScreenIndex_42;
// System.String UnityEngine.InputSystem.PlayerInput::s_InitControlScheme
String_t* ___s_InitControlScheme_43;
// System.Boolean UnityEngine.InputSystem.PlayerInput::s_DestroyIfDeviceSetupUnsuccessful
bool ___s_DestroyIfDeviceSetupUnsuccessful_44;
public:
inline static int32_t get_offset_of_s_AllActivePlayersCount_36() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_AllActivePlayersCount_36)); }
inline int32_t get_s_AllActivePlayersCount_36() const { return ___s_AllActivePlayersCount_36; }
inline int32_t* get_address_of_s_AllActivePlayersCount_36() { return &___s_AllActivePlayersCount_36; }
inline void set_s_AllActivePlayersCount_36(int32_t value)
{
___s_AllActivePlayersCount_36 = value;
}
inline static int32_t get_offset_of_s_AllActivePlayers_37() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_AllActivePlayers_37)); }
inline PlayerInputU5BU5D_tAF5068150849B59DB571B74CDB7CEFABCDDA90F4* get_s_AllActivePlayers_37() const { return ___s_AllActivePlayers_37; }
inline PlayerInputU5BU5D_tAF5068150849B59DB571B74CDB7CEFABCDDA90F4** get_address_of_s_AllActivePlayers_37() { return &___s_AllActivePlayers_37; }
inline void set_s_AllActivePlayers_37(PlayerInputU5BU5D_tAF5068150849B59DB571B74CDB7CEFABCDDA90F4* value)
{
___s_AllActivePlayers_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_AllActivePlayers_37), (void*)value);
}
inline static int32_t get_offset_of_s_UserChangeDelegate_38() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_UserChangeDelegate_38)); }
inline Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 * get_s_UserChangeDelegate_38() const { return ___s_UserChangeDelegate_38; }
inline Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 ** get_address_of_s_UserChangeDelegate_38() { return &___s_UserChangeDelegate_38; }
inline void set_s_UserChangeDelegate_38(Action_3_t6C6A78952A04C9A25919B10CA6EE3D3E02638A52 * value)
{
___s_UserChangeDelegate_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UserChangeDelegate_38), (void*)value);
}
inline static int32_t get_offset_of_s_InitPairWithDevicesCount_39() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_InitPairWithDevicesCount_39)); }
inline int32_t get_s_InitPairWithDevicesCount_39() const { return ___s_InitPairWithDevicesCount_39; }
inline int32_t* get_address_of_s_InitPairWithDevicesCount_39() { return &___s_InitPairWithDevicesCount_39; }
inline void set_s_InitPairWithDevicesCount_39(int32_t value)
{
___s_InitPairWithDevicesCount_39 = value;
}
inline static int32_t get_offset_of_s_InitPairWithDevices_40() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_InitPairWithDevices_40)); }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* get_s_InitPairWithDevices_40() const { return ___s_InitPairWithDevices_40; }
inline InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24** get_address_of_s_InitPairWithDevices_40() { return &___s_InitPairWithDevices_40; }
inline void set_s_InitPairWithDevices_40(InputDeviceU5BU5D_t47F13FF3229115745B1559EA4AA44647C0B7CF24* value)
{
___s_InitPairWithDevices_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InitPairWithDevices_40), (void*)value);
}
inline static int32_t get_offset_of_s_InitPlayerIndex_41() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_InitPlayerIndex_41)); }
inline int32_t get_s_InitPlayerIndex_41() const { return ___s_InitPlayerIndex_41; }
inline int32_t* get_address_of_s_InitPlayerIndex_41() { return &___s_InitPlayerIndex_41; }
inline void set_s_InitPlayerIndex_41(int32_t value)
{
___s_InitPlayerIndex_41 = value;
}
inline static int32_t get_offset_of_s_InitSplitScreenIndex_42() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_InitSplitScreenIndex_42)); }
inline int32_t get_s_InitSplitScreenIndex_42() const { return ___s_InitSplitScreenIndex_42; }
inline int32_t* get_address_of_s_InitSplitScreenIndex_42() { return &___s_InitSplitScreenIndex_42; }
inline void set_s_InitSplitScreenIndex_42(int32_t value)
{
___s_InitSplitScreenIndex_42 = value;
}
inline static int32_t get_offset_of_s_InitControlScheme_43() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_InitControlScheme_43)); }
inline String_t* get_s_InitControlScheme_43() const { return ___s_InitControlScheme_43; }
inline String_t** get_address_of_s_InitControlScheme_43() { return &___s_InitControlScheme_43; }
inline void set_s_InitControlScheme_43(String_t* value)
{
___s_InitControlScheme_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InitControlScheme_43), (void*)value);
}
inline static int32_t get_offset_of_s_DestroyIfDeviceSetupUnsuccessful_44() { return static_cast<int32_t>(offsetof(PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields, ___s_DestroyIfDeviceSetupUnsuccessful_44)); }
inline bool get_s_DestroyIfDeviceSetupUnsuccessful_44() const { return ___s_DestroyIfDeviceSetupUnsuccessful_44; }
inline bool* get_address_of_s_DestroyIfDeviceSetupUnsuccessful_44() { return &___s_DestroyIfDeviceSetupUnsuccessful_44; }
inline void set_s_DestroyIfDeviceSetupUnsuccessful_44(bool value)
{
___s_DestroyIfDeviceSetupUnsuccessful_44 = value;
}
};
// UnityEngine.InputSystem.PlayerInputManager
struct PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.InputSystem.PlayerNotifications UnityEngine.InputSystem.PlayerInputManager::m_NotificationBehavior
int32_t ___m_NotificationBehavior_7;
// System.Int32 UnityEngine.InputSystem.PlayerInputManager::m_MaxPlayerCount
int32_t ___m_MaxPlayerCount_8;
// System.Boolean UnityEngine.InputSystem.PlayerInputManager::m_AllowJoining
bool ___m_AllowJoining_9;
// UnityEngine.InputSystem.PlayerJoinBehavior UnityEngine.InputSystem.PlayerInputManager::m_JoinBehavior
int32_t ___m_JoinBehavior_10;
// UnityEngine.InputSystem.PlayerInputManager/PlayerJoinedEvent UnityEngine.InputSystem.PlayerInputManager::m_PlayerJoinedEvent
PlayerJoinedEvent_tE262B40C1032F1DFCA9AAD89AB20E69CA2CBE3F1 * ___m_PlayerJoinedEvent_11;
// UnityEngine.InputSystem.PlayerInputManager/PlayerLeftEvent UnityEngine.InputSystem.PlayerInputManager::m_PlayerLeftEvent
PlayerLeftEvent_tE22FB60A78C639453B4A023A35E0D5A7D2B2C6B2 * ___m_PlayerLeftEvent_12;
// UnityEngine.InputSystem.InputActionProperty UnityEngine.InputSystem.PlayerInputManager::m_JoinAction
InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3 ___m_JoinAction_13;
// UnityEngine.GameObject UnityEngine.InputSystem.PlayerInputManager::m_PlayerPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_PlayerPrefab_14;
// System.Boolean UnityEngine.InputSystem.PlayerInputManager::m_SplitScreen
bool ___m_SplitScreen_15;
// System.Boolean UnityEngine.InputSystem.PlayerInputManager::m_MaintainAspectRatioInSplitScreen
bool ___m_MaintainAspectRatioInSplitScreen_16;
// System.Int32 UnityEngine.InputSystem.PlayerInputManager::m_FixedNumberOfSplitScreens
int32_t ___m_FixedNumberOfSplitScreens_17;
// UnityEngine.Rect UnityEngine.InputSystem.PlayerInputManager::m_SplitScreenRect
Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___m_SplitScreenRect_18;
// System.Boolean UnityEngine.InputSystem.PlayerInputManager::m_JoinActionDelegateHooked
bool ___m_JoinActionDelegateHooked_19;
// System.Boolean UnityEngine.InputSystem.PlayerInputManager::m_UnpairedDeviceUsedDelegateHooked
bool ___m_UnpairedDeviceUsedDelegateHooked_20;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.PlayerInputManager::m_JoinActionDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_JoinActionDelegate_21;
// System.Action`2<UnityEngine.InputSystem.InputControl,UnityEngine.InputSystem.LowLevel.InputEventPtr> UnityEngine.InputSystem.PlayerInputManager::m_UnpairedDeviceUsedDelegate
Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * ___m_UnpairedDeviceUsedDelegate_22;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.PlayerInput>> UnityEngine.InputSystem.PlayerInputManager::m_PlayerJoinedCallbacks
InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 ___m_PlayerJoinedCallbacks_23;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Action`1<UnityEngine.InputSystem.PlayerInput>> UnityEngine.InputSystem.PlayerInputManager::m_PlayerLeftCallbacks
InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 ___m_PlayerLeftCallbacks_24;
public:
inline static int32_t get_offset_of_m_NotificationBehavior_7() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_NotificationBehavior_7)); }
inline int32_t get_m_NotificationBehavior_7() const { return ___m_NotificationBehavior_7; }
inline int32_t* get_address_of_m_NotificationBehavior_7() { return &___m_NotificationBehavior_7; }
inline void set_m_NotificationBehavior_7(int32_t value)
{
___m_NotificationBehavior_7 = value;
}
inline static int32_t get_offset_of_m_MaxPlayerCount_8() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_MaxPlayerCount_8)); }
inline int32_t get_m_MaxPlayerCount_8() const { return ___m_MaxPlayerCount_8; }
inline int32_t* get_address_of_m_MaxPlayerCount_8() { return &___m_MaxPlayerCount_8; }
inline void set_m_MaxPlayerCount_8(int32_t value)
{
___m_MaxPlayerCount_8 = value;
}
inline static int32_t get_offset_of_m_AllowJoining_9() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_AllowJoining_9)); }
inline bool get_m_AllowJoining_9() const { return ___m_AllowJoining_9; }
inline bool* get_address_of_m_AllowJoining_9() { return &___m_AllowJoining_9; }
inline void set_m_AllowJoining_9(bool value)
{
___m_AllowJoining_9 = value;
}
inline static int32_t get_offset_of_m_JoinBehavior_10() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_JoinBehavior_10)); }
inline int32_t get_m_JoinBehavior_10() const { return ___m_JoinBehavior_10; }
inline int32_t* get_address_of_m_JoinBehavior_10() { return &___m_JoinBehavior_10; }
inline void set_m_JoinBehavior_10(int32_t value)
{
___m_JoinBehavior_10 = value;
}
inline static int32_t get_offset_of_m_PlayerJoinedEvent_11() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_PlayerJoinedEvent_11)); }
inline PlayerJoinedEvent_tE262B40C1032F1DFCA9AAD89AB20E69CA2CBE3F1 * get_m_PlayerJoinedEvent_11() const { return ___m_PlayerJoinedEvent_11; }
inline PlayerJoinedEvent_tE262B40C1032F1DFCA9AAD89AB20E69CA2CBE3F1 ** get_address_of_m_PlayerJoinedEvent_11() { return &___m_PlayerJoinedEvent_11; }
inline void set_m_PlayerJoinedEvent_11(PlayerJoinedEvent_tE262B40C1032F1DFCA9AAD89AB20E69CA2CBE3F1 * value)
{
___m_PlayerJoinedEvent_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerJoinedEvent_11), (void*)value);
}
inline static int32_t get_offset_of_m_PlayerLeftEvent_12() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_PlayerLeftEvent_12)); }
inline PlayerLeftEvent_tE22FB60A78C639453B4A023A35E0D5A7D2B2C6B2 * get_m_PlayerLeftEvent_12() const { return ___m_PlayerLeftEvent_12; }
inline PlayerLeftEvent_tE22FB60A78C639453B4A023A35E0D5A7D2B2C6B2 ** get_address_of_m_PlayerLeftEvent_12() { return &___m_PlayerLeftEvent_12; }
inline void set_m_PlayerLeftEvent_12(PlayerLeftEvent_tE22FB60A78C639453B4A023A35E0D5A7D2B2C6B2 * value)
{
___m_PlayerLeftEvent_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerLeftEvent_12), (void*)value);
}
inline static int32_t get_offset_of_m_JoinAction_13() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_JoinAction_13)); }
inline InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3 get_m_JoinAction_13() const { return ___m_JoinAction_13; }
inline InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3 * get_address_of_m_JoinAction_13() { return &___m_JoinAction_13; }
inline void set_m_JoinAction_13(InputActionProperty_t1FDBCB24D166A104EA7B1638AE9B1A37BD6688C3 value)
{
___m_JoinAction_13 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_JoinAction_13))->___m_Action_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_JoinAction_13))->___m_Reference_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_PlayerPrefab_14() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_PlayerPrefab_14)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_PlayerPrefab_14() const { return ___m_PlayerPrefab_14; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_PlayerPrefab_14() { return &___m_PlayerPrefab_14; }
inline void set_m_PlayerPrefab_14(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_PlayerPrefab_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerPrefab_14), (void*)value);
}
inline static int32_t get_offset_of_m_SplitScreen_15() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_SplitScreen_15)); }
inline bool get_m_SplitScreen_15() const { return ___m_SplitScreen_15; }
inline bool* get_address_of_m_SplitScreen_15() { return &___m_SplitScreen_15; }
inline void set_m_SplitScreen_15(bool value)
{
___m_SplitScreen_15 = value;
}
inline static int32_t get_offset_of_m_MaintainAspectRatioInSplitScreen_16() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_MaintainAspectRatioInSplitScreen_16)); }
inline bool get_m_MaintainAspectRatioInSplitScreen_16() const { return ___m_MaintainAspectRatioInSplitScreen_16; }
inline bool* get_address_of_m_MaintainAspectRatioInSplitScreen_16() { return &___m_MaintainAspectRatioInSplitScreen_16; }
inline void set_m_MaintainAspectRatioInSplitScreen_16(bool value)
{
___m_MaintainAspectRatioInSplitScreen_16 = value;
}
inline static int32_t get_offset_of_m_FixedNumberOfSplitScreens_17() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_FixedNumberOfSplitScreens_17)); }
inline int32_t get_m_FixedNumberOfSplitScreens_17() const { return ___m_FixedNumberOfSplitScreens_17; }
inline int32_t* get_address_of_m_FixedNumberOfSplitScreens_17() { return &___m_FixedNumberOfSplitScreens_17; }
inline void set_m_FixedNumberOfSplitScreens_17(int32_t value)
{
___m_FixedNumberOfSplitScreens_17 = value;
}
inline static int32_t get_offset_of_m_SplitScreenRect_18() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_SplitScreenRect_18)); }
inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_m_SplitScreenRect_18() const { return ___m_SplitScreenRect_18; }
inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_m_SplitScreenRect_18() { return &___m_SplitScreenRect_18; }
inline void set_m_SplitScreenRect_18(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value)
{
___m_SplitScreenRect_18 = value;
}
inline static int32_t get_offset_of_m_JoinActionDelegateHooked_19() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_JoinActionDelegateHooked_19)); }
inline bool get_m_JoinActionDelegateHooked_19() const { return ___m_JoinActionDelegateHooked_19; }
inline bool* get_address_of_m_JoinActionDelegateHooked_19() { return &___m_JoinActionDelegateHooked_19; }
inline void set_m_JoinActionDelegateHooked_19(bool value)
{
___m_JoinActionDelegateHooked_19 = value;
}
inline static int32_t get_offset_of_m_UnpairedDeviceUsedDelegateHooked_20() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_UnpairedDeviceUsedDelegateHooked_20)); }
inline bool get_m_UnpairedDeviceUsedDelegateHooked_20() const { return ___m_UnpairedDeviceUsedDelegateHooked_20; }
inline bool* get_address_of_m_UnpairedDeviceUsedDelegateHooked_20() { return &___m_UnpairedDeviceUsedDelegateHooked_20; }
inline void set_m_UnpairedDeviceUsedDelegateHooked_20(bool value)
{
___m_UnpairedDeviceUsedDelegateHooked_20 = value;
}
inline static int32_t get_offset_of_m_JoinActionDelegate_21() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_JoinActionDelegate_21)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_JoinActionDelegate_21() const { return ___m_JoinActionDelegate_21; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_JoinActionDelegate_21() { return &___m_JoinActionDelegate_21; }
inline void set_m_JoinActionDelegate_21(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_JoinActionDelegate_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_JoinActionDelegate_21), (void*)value);
}
inline static int32_t get_offset_of_m_UnpairedDeviceUsedDelegate_22() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_UnpairedDeviceUsedDelegate_22)); }
inline Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * get_m_UnpairedDeviceUsedDelegate_22() const { return ___m_UnpairedDeviceUsedDelegate_22; }
inline Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 ** get_address_of_m_UnpairedDeviceUsedDelegate_22() { return &___m_UnpairedDeviceUsedDelegate_22; }
inline void set_m_UnpairedDeviceUsedDelegate_22(Action_2_t462C89C4AA4CB97168F8246B88D0D690ED4B8972 * value)
{
___m_UnpairedDeviceUsedDelegate_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UnpairedDeviceUsedDelegate_22), (void*)value);
}
inline static int32_t get_offset_of_m_PlayerJoinedCallbacks_23() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_PlayerJoinedCallbacks_23)); }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 get_m_PlayerJoinedCallbacks_23() const { return ___m_PlayerJoinedCallbacks_23; }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 * get_address_of_m_PlayerJoinedCallbacks_23() { return &___m_PlayerJoinedCallbacks_23; }
inline void set_m_PlayerJoinedCallbacks_23(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 value)
{
___m_PlayerJoinedCallbacks_23 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_PlayerJoinedCallbacks_23))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_PlayerJoinedCallbacks_23))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_PlayerLeftCallbacks_24() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E, ___m_PlayerLeftCallbacks_24)); }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 get_m_PlayerLeftCallbacks_24() const { return ___m_PlayerLeftCallbacks_24; }
inline InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 * get_address_of_m_PlayerLeftCallbacks_24() { return &___m_PlayerLeftCallbacks_24; }
inline void set_m_PlayerLeftCallbacks_24(InlinedArray_1_tF25B3748F6D86055AF971A80BE32EF21C9E3F604 value)
{
___m_PlayerLeftCallbacks_24 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_PlayerLeftCallbacks_24))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_PlayerLeftCallbacks_24))->___additionalValues_2), (void*)NULL);
#endif
}
};
struct PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E_StaticFields
{
public:
// UnityEngine.InputSystem.PlayerInputManager UnityEngine.InputSystem.PlayerInputManager::<instance>k__BackingField
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E * ___U3CinstanceU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CinstanceU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E_StaticFields, ___U3CinstanceU3Ek__BackingField_6)); }
inline PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E * get_U3CinstanceU3Ek__BackingField_6() const { return ___U3CinstanceU3Ek__BackingField_6; }
inline PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E ** get_address_of_U3CinstanceU3Ek__BackingField_6() { return &___U3CinstanceU3Ek__BackingField_6; }
inline void set_U3CinstanceU3Ek__BackingField_6(PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E * value)
{
___U3CinstanceU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CinstanceU3Ek__BackingField_6), (void*)value);
}
};
// Mirror.Examples.Basic.PlayerUI
struct PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.UI.Image Mirror.Examples.Basic.PlayerUI::image
Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___image_4;
// UnityEngine.UI.Text Mirror.Examples.Basic.PlayerUI::playerNameText
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___playerNameText_5;
// UnityEngine.UI.Text Mirror.Examples.Basic.PlayerUI::playerDataText
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___playerDataText_6;
// Mirror.Examples.Basic.Player Mirror.Examples.Basic.PlayerUI::player
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * ___player_7;
public:
inline static int32_t get_offset_of_image_4() { return static_cast<int32_t>(offsetof(PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567, ___image_4)); }
inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get_image_4() const { return ___image_4; }
inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of_image_4() { return &___image_4; }
inline void set_image_4(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value)
{
___image_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___image_4), (void*)value);
}
inline static int32_t get_offset_of_playerNameText_5() { return static_cast<int32_t>(offsetof(PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567, ___playerNameText_5)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_playerNameText_5() const { return ___playerNameText_5; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_playerNameText_5() { return &___playerNameText_5; }
inline void set_playerNameText_5(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___playerNameText_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerNameText_5), (void*)value);
}
inline static int32_t get_offset_of_playerDataText_6() { return static_cast<int32_t>(offsetof(PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567, ___playerDataText_6)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_playerDataText_6() const { return ___playerDataText_6; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_playerDataText_6() { return &___playerDataText_6; }
inline void set_playerDataText_6(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___playerDataText_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerDataText_6), (void*)value);
}
inline static int32_t get_offset_of_player_7() { return static_cast<int32_t>(offsetof(PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567, ___player_7)); }
inline Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * get_player_7() const { return ___player_7; }
inline Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 ** get_address_of_player_7() { return &___player_7; }
inline void set_player_7(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 * value)
{
___player_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___player_7), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.QuaternionControl
struct QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 : public InputControl_1_tA0FE8AA28FA675D0A04C7FD80E7CB9838A95C873
{
public:
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.QuaternionControl::<x>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CxU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.QuaternionControl::<y>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CyU3Ek__BackingField_23;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.QuaternionControl::<z>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CzU3Ek__BackingField_24;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.QuaternionControl::<w>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CwU3Ek__BackingField_25;
public:
inline static int32_t get_offset_of_U3CxU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6, ___U3CxU3Ek__BackingField_22)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CxU3Ek__BackingField_22() const { return ___U3CxU3Ek__BackingField_22; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CxU3Ek__BackingField_22() { return &___U3CxU3Ek__BackingField_22; }
inline void set_U3CxU3Ek__BackingField_22(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CxU3Ek__BackingField_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CxU3Ek__BackingField_22), (void*)value);
}
inline static int32_t get_offset_of_U3CyU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6, ___U3CyU3Ek__BackingField_23)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CyU3Ek__BackingField_23() const { return ___U3CyU3Ek__BackingField_23; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CyU3Ek__BackingField_23() { return &___U3CyU3Ek__BackingField_23; }
inline void set_U3CyU3Ek__BackingField_23(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CyU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CyU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CzU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6, ___U3CzU3Ek__BackingField_24)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CzU3Ek__BackingField_24() const { return ___U3CzU3Ek__BackingField_24; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CzU3Ek__BackingField_24() { return &___U3CzU3Ek__BackingField_24; }
inline void set_U3CzU3Ek__BackingField_24(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CzU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CzU3Ek__BackingField_24), (void*)value);
}
inline static int32_t get_offset_of_U3CwU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6, ___U3CwU3Ek__BackingField_25)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CwU3Ek__BackingField_25() const { return ___U3CwU3Ek__BackingField_25; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CwU3Ek__BackingField_25() { return &___U3CwU3Ek__BackingField_25; }
inline void set_U3CwU3Ek__BackingField_25(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CwU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CwU3Ek__BackingField_25), (void*)value);
}
};
// Mirror.Cloud.Example.QuickListServerDebug
struct QuickListServerDebug_t6EF403592C5339C3749925A725E78B240DA0F01A : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Mirror.Cloud.ApiConnector Mirror.Cloud.Example.QuickListServerDebug::connector
ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * ___connector_4;
// System.Nullable`1<Mirror.Cloud.ListServerService.ServerCollectionJson> Mirror.Cloud.Example.QuickListServerDebug::collection
Nullable_1_t042A055CF6AC1232D1CEC87B86A0E2DC78444DDB ___collection_5;
public:
inline static int32_t get_offset_of_connector_4() { return static_cast<int32_t>(offsetof(QuickListServerDebug_t6EF403592C5339C3749925A725E78B240DA0F01A, ___connector_4)); }
inline ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * get_connector_4() const { return ___connector_4; }
inline ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 ** get_address_of_connector_4() { return &___connector_4; }
inline void set_connector_4(ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * value)
{
___connector_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___connector_4), (void*)value);
}
inline static int32_t get_offset_of_collection_5() { return static_cast<int32_t>(offsetof(QuickListServerDebug_t6EF403592C5339C3749925A725E78B240DA0F01A, ___collection_5)); }
inline Nullable_1_t042A055CF6AC1232D1CEC87B86A0E2DC78444DDB get_collection_5() const { return ___collection_5; }
inline Nullable_1_t042A055CF6AC1232D1CEC87B86A0E2DC78444DDB * get_address_of_collection_5() { return &___collection_5; }
inline void set_collection_5(Nullable_1_t042A055CF6AC1232D1CEC87B86A0E2DC78444DDB value)
{
___collection_5 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___collection_5))->___value_0))->___servers_0), (void*)NULL);
}
};
// Mirror.Examples.Pong.QuitButtonHUD
struct QuitButtonHUD_t9B8F81BA4B5ABB959E800B00A569E2710E6EAA8E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
public:
};
// Mirror.Examples.MultipleMatch.RoomGUI
struct RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.RoomGUI::playerList
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerList_4;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.RoomGUI::playerPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerPrefab_5;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.RoomGUI::cancelButton
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___cancelButton_6;
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.RoomGUI::leaveButton
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___leaveButton_7;
// UnityEngine.UI.Button Mirror.Examples.MultipleMatch.RoomGUI::startButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___startButton_8;
// System.Boolean Mirror.Examples.MultipleMatch.RoomGUI::owner
bool ___owner_9;
public:
inline static int32_t get_offset_of_playerList_4() { return static_cast<int32_t>(offsetof(RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78, ___playerList_4)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerList_4() const { return ___playerList_4; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerList_4() { return &___playerList_4; }
inline void set_playerList_4(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___playerList_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerList_4), (void*)value);
}
inline static int32_t get_offset_of_playerPrefab_5() { return static_cast<int32_t>(offsetof(RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78, ___playerPrefab_5)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerPrefab_5() const { return ___playerPrefab_5; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerPrefab_5() { return &___playerPrefab_5; }
inline void set_playerPrefab_5(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___playerPrefab_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerPrefab_5), (void*)value);
}
inline static int32_t get_offset_of_cancelButton_6() { return static_cast<int32_t>(offsetof(RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78, ___cancelButton_6)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_cancelButton_6() const { return ___cancelButton_6; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_cancelButton_6() { return &___cancelButton_6; }
inline void set_cancelButton_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___cancelButton_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cancelButton_6), (void*)value);
}
inline static int32_t get_offset_of_leaveButton_7() { return static_cast<int32_t>(offsetof(RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78, ___leaveButton_7)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_leaveButton_7() const { return ___leaveButton_7; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_leaveButton_7() { return &___leaveButton_7; }
inline void set_leaveButton_7(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___leaveButton_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___leaveButton_7), (void*)value);
}
inline static int32_t get_offset_of_startButton_8() { return static_cast<int32_t>(offsetof(RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78, ___startButton_8)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_startButton_8() const { return ___startButton_8; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_startButton_8() { return &___startButton_8; }
inline void set_startButton_8(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___startButton_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___startButton_8), (void*)value);
}
inline static int32_t get_offset_of_owner_9() { return static_cast<int32_t>(offsetof(RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78, ___owner_9)); }
inline bool get_owner_9() const { return ___owner_9; }
inline bool* get_address_of_owner_9() { return &___owner_9; }
inline void set_owner_9(bool value)
{
___owner_9 = value;
}
};
// Dissonance.Audio.Playback.SamplePlaybackComponent
struct SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Single[] Dissonance.Audio.Playback.SamplePlaybackComponent::_temp
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____temp_5;
// Dissonance.Audio.AudioFileWriter Dissonance.Audio.Playback.SamplePlaybackComponent::_diagnosticOutput
AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * ____diagnosticOutput_6;
// Dissonance.Audio.Playback.SessionContext Dissonance.Audio.Playback.SamplePlaybackComponent::_lastPlayedSessionContext
SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B ____lastPlayedSessionContext_7;
// System.Threading.ReaderWriterLockSlim Dissonance.Audio.Playback.SamplePlaybackComponent::_sessionLock
ReaderWriterLockSlim_tABE1342190B3292CBA83424BDE0B46B40965BD7F * ____sessionLock_8;
// System.Nullable`1<Dissonance.Audio.Playback.SpeechSession> Dissonance.Audio.Playback.SamplePlaybackComponent::<Session>k__BackingField
Nullable_1_t24997A7D6AF7F9674D48A29224E10A1E750510E6 ___U3CSessionU3Ek__BackingField_9;
// System.Single modreq(System.Runtime.CompilerServices.IsVolatile) Dissonance.Audio.Playback.SamplePlaybackComponent::_arv
float ____arv_10;
public:
inline static int32_t get_offset_of__temp_5() { return static_cast<int32_t>(offsetof(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49, ____temp_5)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__temp_5() const { return ____temp_5; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__temp_5() { return &____temp_5; }
inline void set__temp_5(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
____temp_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____temp_5), (void*)value);
}
inline static int32_t get_offset_of__diagnosticOutput_6() { return static_cast<int32_t>(offsetof(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49, ____diagnosticOutput_6)); }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * get__diagnosticOutput_6() const { return ____diagnosticOutput_6; }
inline AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A ** get_address_of__diagnosticOutput_6() { return &____diagnosticOutput_6; }
inline void set__diagnosticOutput_6(AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A * value)
{
____diagnosticOutput_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____diagnosticOutput_6), (void*)value);
}
inline static int32_t get_offset_of__lastPlayedSessionContext_7() { return static_cast<int32_t>(offsetof(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49, ____lastPlayedSessionContext_7)); }
inline SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B get__lastPlayedSessionContext_7() const { return ____lastPlayedSessionContext_7; }
inline SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B * get_address_of__lastPlayedSessionContext_7() { return &____lastPlayedSessionContext_7; }
inline void set__lastPlayedSessionContext_7(SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B value)
{
____lastPlayedSessionContext_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____lastPlayedSessionContext_7))->___PlayerName_0), (void*)NULL);
}
inline static int32_t get_offset_of__sessionLock_8() { return static_cast<int32_t>(offsetof(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49, ____sessionLock_8)); }
inline ReaderWriterLockSlim_tABE1342190B3292CBA83424BDE0B46B40965BD7F * get__sessionLock_8() const { return ____sessionLock_8; }
inline ReaderWriterLockSlim_tABE1342190B3292CBA83424BDE0B46B40965BD7F ** get_address_of__sessionLock_8() { return &____sessionLock_8; }
inline void set__sessionLock_8(ReaderWriterLockSlim_tABE1342190B3292CBA83424BDE0B46B40965BD7F * value)
{
____sessionLock_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sessionLock_8), (void*)value);
}
inline static int32_t get_offset_of_U3CSessionU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49, ___U3CSessionU3Ek__BackingField_9)); }
inline Nullable_1_t24997A7D6AF7F9674D48A29224E10A1E750510E6 get_U3CSessionU3Ek__BackingField_9() const { return ___U3CSessionU3Ek__BackingField_9; }
inline Nullable_1_t24997A7D6AF7F9674D48A29224E10A1E750510E6 * get_address_of_U3CSessionU3Ek__BackingField_9() { return &___U3CSessionU3Ek__BackingField_9; }
inline void set_U3CSessionU3Ek__BackingField_9(Nullable_1_t24997A7D6AF7F9674D48A29224E10A1E750510E6 value)
{
___U3CSessionU3Ek__BackingField_9 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CSessionU3Ek__BackingField_9))->___value_0))->____channels_7), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CSessionU3Ek__BackingField_9))->___value_0))->____pipeline_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___U3CSessionU3Ek__BackingField_9))->___value_0))->____context_9))->___PlayerName_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CSessionU3Ek__BackingField_9))->___value_0))->____jitter_11), (void*)NULL);
#endif
}
inline static int32_t get_offset_of__arv_10() { return static_cast<int32_t>(offsetof(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49, ____arv_10)); }
inline float get__arv_10() const { return ____arv_10; }
inline float* get_address_of__arv_10() { return &____arv_10; }
inline void set__arv_10(float value)
{
____arv_10 = value;
}
};
struct SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.SamplePlaybackComponent::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_4;
public:
inline static int32_t get_offset_of_Log_4() { return static_cast<int32_t>(offsetof(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49_StaticFields, ___Log_4)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_4() const { return ___Log_4; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_4() { return &___Log_4; }
inline void set_Log_4(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_4), (void*)value);
}
};
// Mirror.Cloud.Example.ServerListManager
struct ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Mirror.Cloud.Example.ServerListUI Mirror.Cloud.Example.ServerListManager::listUI
ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA * ___listUI_4;
// UnityEngine.UI.Button Mirror.Cloud.Example.ServerListManager::refreshButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___refreshButton_5;
// UnityEngine.UI.Button Mirror.Cloud.Example.ServerListManager::startServerButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___startServerButton_6;
// System.Boolean Mirror.Cloud.Example.ServerListManager::autoRefreshServerlist
bool ___autoRefreshServerlist_7;
// System.Int32 Mirror.Cloud.Example.ServerListManager::refreshinterval
int32_t ___refreshinterval_8;
// Mirror.Cloud.ApiConnector Mirror.Cloud.Example.ServerListManager::connector
ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * ___connector_9;
public:
inline static int32_t get_offset_of_listUI_4() { return static_cast<int32_t>(offsetof(ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833, ___listUI_4)); }
inline ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA * get_listUI_4() const { return ___listUI_4; }
inline ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA ** get_address_of_listUI_4() { return &___listUI_4; }
inline void set_listUI_4(ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA * value)
{
___listUI_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___listUI_4), (void*)value);
}
inline static int32_t get_offset_of_refreshButton_5() { return static_cast<int32_t>(offsetof(ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833, ___refreshButton_5)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_refreshButton_5() const { return ___refreshButton_5; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_refreshButton_5() { return &___refreshButton_5; }
inline void set_refreshButton_5(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___refreshButton_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___refreshButton_5), (void*)value);
}
inline static int32_t get_offset_of_startServerButton_6() { return static_cast<int32_t>(offsetof(ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833, ___startServerButton_6)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_startServerButton_6() const { return ___startServerButton_6; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_startServerButton_6() { return &___startServerButton_6; }
inline void set_startServerButton_6(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___startServerButton_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___startServerButton_6), (void*)value);
}
inline static int32_t get_offset_of_autoRefreshServerlist_7() { return static_cast<int32_t>(offsetof(ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833, ___autoRefreshServerlist_7)); }
inline bool get_autoRefreshServerlist_7() const { return ___autoRefreshServerlist_7; }
inline bool* get_address_of_autoRefreshServerlist_7() { return &___autoRefreshServerlist_7; }
inline void set_autoRefreshServerlist_7(bool value)
{
___autoRefreshServerlist_7 = value;
}
inline static int32_t get_offset_of_refreshinterval_8() { return static_cast<int32_t>(offsetof(ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833, ___refreshinterval_8)); }
inline int32_t get_refreshinterval_8() const { return ___refreshinterval_8; }
inline int32_t* get_address_of_refreshinterval_8() { return &___refreshinterval_8; }
inline void set_refreshinterval_8(int32_t value)
{
___refreshinterval_8 = value;
}
inline static int32_t get_offset_of_connector_9() { return static_cast<int32_t>(offsetof(ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833, ___connector_9)); }
inline ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * get_connector_9() const { return ___connector_9; }
inline ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 ** get_address_of_connector_9() { return &___connector_9; }
inline void set_connector_9(ApiConnector_t158C081B26F45D32EEB37293EDF22483E8B2CC80 * value)
{
___connector_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___connector_9), (void*)value);
}
};
// Mirror.Cloud.Example.ServerListUI
struct ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Mirror.Cloud.Example.ServerListUIItem Mirror.Cloud.Example.ServerListUI::itemPrefab
ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09 * ___itemPrefab_4;
// UnityEngine.Transform Mirror.Cloud.Example.ServerListUI::parent
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___parent_5;
// System.Collections.Generic.List`1<Mirror.Cloud.Example.ServerListUIItem> Mirror.Cloud.Example.ServerListUI::items
List_1_t36A6E36EADBFDAA5E030637E01D34A68D99629AC * ___items_6;
public:
inline static int32_t get_offset_of_itemPrefab_4() { return static_cast<int32_t>(offsetof(ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA, ___itemPrefab_4)); }
inline ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09 * get_itemPrefab_4() const { return ___itemPrefab_4; }
inline ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09 ** get_address_of_itemPrefab_4() { return &___itemPrefab_4; }
inline void set_itemPrefab_4(ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09 * value)
{
___itemPrefab_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemPrefab_4), (void*)value);
}
inline static int32_t get_offset_of_parent_5() { return static_cast<int32_t>(offsetof(ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA, ___parent_5)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_parent_5() const { return ___parent_5; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_parent_5() { return &___parent_5; }
inline void set_parent_5(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
___parent_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_5), (void*)value);
}
inline static int32_t get_offset_of_items_6() { return static_cast<int32_t>(offsetof(ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA, ___items_6)); }
inline List_1_t36A6E36EADBFDAA5E030637E01D34A68D99629AC * get_items_6() const { return ___items_6; }
inline List_1_t36A6E36EADBFDAA5E030637E01D34A68D99629AC ** get_address_of_items_6() { return &___items_6; }
inline void set_items_6(List_1_t36A6E36EADBFDAA5E030637E01D34A68D99629AC * value)
{
___items_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___items_6), (void*)value);
}
};
// Mirror.Cloud.Example.ServerListUIItem
struct ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.UI.Text Mirror.Cloud.Example.ServerListUIItem::nameText
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___nameText_4;
// UnityEngine.UI.Text Mirror.Cloud.Example.ServerListUIItem::namePlayers
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___namePlayers_5;
// System.String Mirror.Cloud.Example.ServerListUIItem::playersFormat
String_t* ___playersFormat_6;
// UnityEngine.UI.Text Mirror.Cloud.Example.ServerListUIItem::addressText
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___addressText_7;
// UnityEngine.UI.Button Mirror.Cloud.Example.ServerListUIItem::joinButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___joinButton_8;
// Mirror.Cloud.ListServerService.ServerJson Mirror.Cloud.Example.ServerListUIItem::server
ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22 ___server_9;
public:
inline static int32_t get_offset_of_nameText_4() { return static_cast<int32_t>(offsetof(ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09, ___nameText_4)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_nameText_4() const { return ___nameText_4; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_nameText_4() { return &___nameText_4; }
inline void set_nameText_4(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___nameText_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nameText_4), (void*)value);
}
inline static int32_t get_offset_of_namePlayers_5() { return static_cast<int32_t>(offsetof(ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09, ___namePlayers_5)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_namePlayers_5() const { return ___namePlayers_5; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_namePlayers_5() { return &___namePlayers_5; }
inline void set_namePlayers_5(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___namePlayers_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namePlayers_5), (void*)value);
}
inline static int32_t get_offset_of_playersFormat_6() { return static_cast<int32_t>(offsetof(ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09, ___playersFormat_6)); }
inline String_t* get_playersFormat_6() const { return ___playersFormat_6; }
inline String_t** get_address_of_playersFormat_6() { return &___playersFormat_6; }
inline void set_playersFormat_6(String_t* value)
{
___playersFormat_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playersFormat_6), (void*)value);
}
inline static int32_t get_offset_of_addressText_7() { return static_cast<int32_t>(offsetof(ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09, ___addressText_7)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_addressText_7() const { return ___addressText_7; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_addressText_7() { return &___addressText_7; }
inline void set_addressText_7(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___addressText_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___addressText_7), (void*)value);
}
inline static int32_t get_offset_of_joinButton_8() { return static_cast<int32_t>(offsetof(ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09, ___joinButton_8)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_joinButton_8() const { return ___joinButton_8; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_joinButton_8() { return &___joinButton_8; }
inline void set_joinButton_8(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___joinButton_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___joinButton_8), (void*)value);
}
inline static int32_t get_offset_of_server_9() { return static_cast<int32_t>(offsetof(ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09, ___server_9)); }
inline ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22 get_server_9() const { return ___server_9; }
inline ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22 * get_address_of_server_9() { return &___server_9; }
inline void set_server_9(ServerJson_t6AB4316C193ADDFADCC028AEB87424296048AC22 value)
{
___server_9 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___server_9))->___protocol_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___server_9))->___displayName_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___server_9))->___address_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___server_9))->___customAddress_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___server_9))->___customData_7), (void*)NULL);
#endif
}
};
// Dissonance.Demo.SpeakerIndicator
struct SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.GameObject Dissonance.Demo.SpeakerIndicator::_indicator
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ____indicator_4;
// UnityEngine.Light Dissonance.Demo.SpeakerIndicator::_light
Light_tA2F349FE839781469A0344CF6039B51512394275 * ____light_5;
// UnityEngine.Transform Dissonance.Demo.SpeakerIndicator::_transform
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ____transform_6;
// System.Single Dissonance.Demo.SpeakerIndicator::_intensity
float ____intensity_7;
// Dissonance.IDissonancePlayer Dissonance.Demo.SpeakerIndicator::_player
RuntimeObject* ____player_8;
// Dissonance.VoicePlayerState Dissonance.Demo.SpeakerIndicator::_state
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3 * ____state_9;
public:
inline static int32_t get_offset_of__indicator_4() { return static_cast<int32_t>(offsetof(SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC, ____indicator_4)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get__indicator_4() const { return ____indicator_4; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of__indicator_4() { return &____indicator_4; }
inline void set__indicator_4(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
____indicator_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____indicator_4), (void*)value);
}
inline static int32_t get_offset_of__light_5() { return static_cast<int32_t>(offsetof(SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC, ____light_5)); }
inline Light_tA2F349FE839781469A0344CF6039B51512394275 * get__light_5() const { return ____light_5; }
inline Light_tA2F349FE839781469A0344CF6039B51512394275 ** get_address_of__light_5() { return &____light_5; }
inline void set__light_5(Light_tA2F349FE839781469A0344CF6039B51512394275 * value)
{
____light_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____light_5), (void*)value);
}
inline static int32_t get_offset_of__transform_6() { return static_cast<int32_t>(offsetof(SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC, ____transform_6)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get__transform_6() const { return ____transform_6; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of__transform_6() { return &____transform_6; }
inline void set__transform_6(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
____transform_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____transform_6), (void*)value);
}
inline static int32_t get_offset_of__intensity_7() { return static_cast<int32_t>(offsetof(SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC, ____intensity_7)); }
inline float get__intensity_7() const { return ____intensity_7; }
inline float* get_address_of__intensity_7() { return &____intensity_7; }
inline void set__intensity_7(float value)
{
____intensity_7 = value;
}
inline static int32_t get_offset_of__player_8() { return static_cast<int32_t>(offsetof(SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC, ____player_8)); }
inline RuntimeObject* get__player_8() const { return ____player_8; }
inline RuntimeObject** get_address_of__player_8() { return &____player_8; }
inline void set__player_8(RuntimeObject* value)
{
____player_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____player_8), (void*)value);
}
inline static int32_t get_offset_of__state_9() { return static_cast<int32_t>(offsetof(SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC, ____state_9)); }
inline VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3 * get__state_9() const { return ____state_9; }
inline VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3 ** get_address_of__state_9() { return &____state_9; }
inline void set__state_9(VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3 * value)
{
____state_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____state_9), (void*)value);
}
};
// Dissonance.Demo.ToggleInvertMute
struct ToggleInvertMute_t26EE91D165B5285EAE793FF33F241C031FFE4949 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// Dissonance.VoiceBroadcastTrigger Dissonance.Demo.ToggleInvertMute::Trigger
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395 * ___Trigger_4;
public:
inline static int32_t get_offset_of_Trigger_4() { return static_cast<int32_t>(offsetof(ToggleInvertMute_t26EE91D165B5285EAE793FF33F241C031FFE4949, ___Trigger_4)); }
inline VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395 * get_Trigger_4() const { return ___Trigger_4; }
inline VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395 ** get_address_of_Trigger_4() { return &___Trigger_4; }
inline void set_Trigger_4(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395 * value)
{
___Trigger_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Trigger_4), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.TouchControl
struct TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200 : public InputControl_1_tA2D886CF5503D6C55FDC6D1278342E48A6550DE0
{
public:
// UnityEngine.InputSystem.Controls.TouchPressControl UnityEngine.InputSystem.Controls.TouchControl::<press>k__BackingField
TouchPressControl_tAB19A027BD716995BDE06B0DD1BA1BD05777D45E * ___U3CpressU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.Controls.TouchControl::<touchId>k__BackingField
IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * ___U3CtouchIdU3Ek__BackingField_23;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<position>k__BackingField
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * ___U3CpositionU3Ek__BackingField_24;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<delta>k__BackingField
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * ___U3CdeltaU3Ek__BackingField_25;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.TouchControl::<pressure>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CpressureU3Ek__BackingField_26;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<radius>k__BackingField
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * ___U3CradiusU3Ek__BackingField_27;
// UnityEngine.InputSystem.Controls.TouchPhaseControl UnityEngine.InputSystem.Controls.TouchControl::<phase>k__BackingField
TouchPhaseControl_t1AF25F13C09F9F2273B7B4F8832E111D84065960 * ___U3CphaseU3Ek__BackingField_28;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.TouchControl::<indirectTouch>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CindirectTouchU3Ek__BackingField_29;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.TouchControl::<tap>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CtapU3Ek__BackingField_30;
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.Controls.TouchControl::<tapCount>k__BackingField
IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * ___U3CtapCountU3Ek__BackingField_31;
// UnityEngine.InputSystem.Controls.DoubleControl UnityEngine.InputSystem.Controls.TouchControl::<startTime>k__BackingField
DoubleControl_tFADBAC12A9645997D2FE941F0A194E86FFECBABF * ___U3CstartTimeU3Ek__BackingField_32;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.InputSystem.Controls.TouchControl::<startPosition>k__BackingField
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * ___U3CstartPositionU3Ek__BackingField_33;
public:
inline static int32_t get_offset_of_U3CpressU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CpressU3Ek__BackingField_22)); }
inline TouchPressControl_tAB19A027BD716995BDE06B0DD1BA1BD05777D45E * get_U3CpressU3Ek__BackingField_22() const { return ___U3CpressU3Ek__BackingField_22; }
inline TouchPressControl_tAB19A027BD716995BDE06B0DD1BA1BD05777D45E ** get_address_of_U3CpressU3Ek__BackingField_22() { return &___U3CpressU3Ek__BackingField_22; }
inline void set_U3CpressU3Ek__BackingField_22(TouchPressControl_tAB19A027BD716995BDE06B0DD1BA1BD05777D45E * value)
{
___U3CpressU3Ek__BackingField_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpressU3Ek__BackingField_22), (void*)value);
}
inline static int32_t get_offset_of_U3CtouchIdU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CtouchIdU3Ek__BackingField_23)); }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * get_U3CtouchIdU3Ek__BackingField_23() const { return ___U3CtouchIdU3Ek__BackingField_23; }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 ** get_address_of_U3CtouchIdU3Ek__BackingField_23() { return &___U3CtouchIdU3Ek__BackingField_23; }
inline void set_U3CtouchIdU3Ek__BackingField_23(IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * value)
{
___U3CtouchIdU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtouchIdU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CpositionU3Ek__BackingField_24)); }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * get_U3CpositionU3Ek__BackingField_24() const { return ___U3CpositionU3Ek__BackingField_24; }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 ** get_address_of_U3CpositionU3Ek__BackingField_24() { return &___U3CpositionU3Ek__BackingField_24; }
inline void set_U3CpositionU3Ek__BackingField_24(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * value)
{
___U3CpositionU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpositionU3Ek__BackingField_24), (void*)value);
}
inline static int32_t get_offset_of_U3CdeltaU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CdeltaU3Ek__BackingField_25)); }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * get_U3CdeltaU3Ek__BackingField_25() const { return ___U3CdeltaU3Ek__BackingField_25; }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 ** get_address_of_U3CdeltaU3Ek__BackingField_25() { return &___U3CdeltaU3Ek__BackingField_25; }
inline void set_U3CdeltaU3Ek__BackingField_25(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * value)
{
___U3CdeltaU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeltaU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_U3CpressureU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CpressureU3Ek__BackingField_26)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CpressureU3Ek__BackingField_26() const { return ___U3CpressureU3Ek__BackingField_26; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CpressureU3Ek__BackingField_26() { return &___U3CpressureU3Ek__BackingField_26; }
inline void set_U3CpressureU3Ek__BackingField_26(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CpressureU3Ek__BackingField_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpressureU3Ek__BackingField_26), (void*)value);
}
inline static int32_t get_offset_of_U3CradiusU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CradiusU3Ek__BackingField_27)); }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * get_U3CradiusU3Ek__BackingField_27() const { return ___U3CradiusU3Ek__BackingField_27; }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 ** get_address_of_U3CradiusU3Ek__BackingField_27() { return &___U3CradiusU3Ek__BackingField_27; }
inline void set_U3CradiusU3Ek__BackingField_27(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * value)
{
___U3CradiusU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CradiusU3Ek__BackingField_27), (void*)value);
}
inline static int32_t get_offset_of_U3CphaseU3Ek__BackingField_28() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CphaseU3Ek__BackingField_28)); }
inline TouchPhaseControl_t1AF25F13C09F9F2273B7B4F8832E111D84065960 * get_U3CphaseU3Ek__BackingField_28() const { return ___U3CphaseU3Ek__BackingField_28; }
inline TouchPhaseControl_t1AF25F13C09F9F2273B7B4F8832E111D84065960 ** get_address_of_U3CphaseU3Ek__BackingField_28() { return &___U3CphaseU3Ek__BackingField_28; }
inline void set_U3CphaseU3Ek__BackingField_28(TouchPhaseControl_t1AF25F13C09F9F2273B7B4F8832E111D84065960 * value)
{
___U3CphaseU3Ek__BackingField_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CphaseU3Ek__BackingField_28), (void*)value);
}
inline static int32_t get_offset_of_U3CindirectTouchU3Ek__BackingField_29() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CindirectTouchU3Ek__BackingField_29)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CindirectTouchU3Ek__BackingField_29() const { return ___U3CindirectTouchU3Ek__BackingField_29; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CindirectTouchU3Ek__BackingField_29() { return &___U3CindirectTouchU3Ek__BackingField_29; }
inline void set_U3CindirectTouchU3Ek__BackingField_29(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CindirectTouchU3Ek__BackingField_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CindirectTouchU3Ek__BackingField_29), (void*)value);
}
inline static int32_t get_offset_of_U3CtapU3Ek__BackingField_30() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CtapU3Ek__BackingField_30)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CtapU3Ek__BackingField_30() const { return ___U3CtapU3Ek__BackingField_30; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CtapU3Ek__BackingField_30() { return &___U3CtapU3Ek__BackingField_30; }
inline void set_U3CtapU3Ek__BackingField_30(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CtapU3Ek__BackingField_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtapU3Ek__BackingField_30), (void*)value);
}
inline static int32_t get_offset_of_U3CtapCountU3Ek__BackingField_31() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CtapCountU3Ek__BackingField_31)); }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * get_U3CtapCountU3Ek__BackingField_31() const { return ___U3CtapCountU3Ek__BackingField_31; }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 ** get_address_of_U3CtapCountU3Ek__BackingField_31() { return &___U3CtapCountU3Ek__BackingField_31; }
inline void set_U3CtapCountU3Ek__BackingField_31(IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * value)
{
___U3CtapCountU3Ek__BackingField_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtapCountU3Ek__BackingField_31), (void*)value);
}
inline static int32_t get_offset_of_U3CstartTimeU3Ek__BackingField_32() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CstartTimeU3Ek__BackingField_32)); }
inline DoubleControl_tFADBAC12A9645997D2FE941F0A194E86FFECBABF * get_U3CstartTimeU3Ek__BackingField_32() const { return ___U3CstartTimeU3Ek__BackingField_32; }
inline DoubleControl_tFADBAC12A9645997D2FE941F0A194E86FFECBABF ** get_address_of_U3CstartTimeU3Ek__BackingField_32() { return &___U3CstartTimeU3Ek__BackingField_32; }
inline void set_U3CstartTimeU3Ek__BackingField_32(DoubleControl_tFADBAC12A9645997D2FE941F0A194E86FFECBABF * value)
{
___U3CstartTimeU3Ek__BackingField_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CstartTimeU3Ek__BackingField_32), (void*)value);
}
inline static int32_t get_offset_of_U3CstartPositionU3Ek__BackingField_33() { return static_cast<int32_t>(offsetof(TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200, ___U3CstartPositionU3Ek__BackingField_33)); }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * get_U3CstartPositionU3Ek__BackingField_33() const { return ___U3CstartPositionU3Ek__BackingField_33; }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 ** get_address_of_U3CstartPositionU3Ek__BackingField_33() { return &___U3CstartPositionU3Ek__BackingField_33; }
inline void set_U3CstartPositionU3Ek__BackingField_33(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * value)
{
___U3CstartPositionU3Ek__BackingField_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CstartPositionU3Ek__BackingField_33), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.TouchPhaseControl
struct TouchPhaseControl_t1AF25F13C09F9F2273B7B4F8832E111D84065960 : public InputControl_1_t95D8AB2F39ADA1DC749B35BD3C76B383B6D4B209
{
public:
public:
};
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation
struct TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.InputSystem.Touchscreen UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::<simulatedTouchscreen>k__BackingField
Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * ___U3CsimulatedTouchscreenU3Ek__BackingField_4;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_NumSources
int32_t ___m_NumSources_5;
// UnityEngine.InputSystem.Pointer[] UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_Sources
PointerU5BU5D_t592015C59CE1B29F8FED33A0A2C36A0DE3A827B8* ___m_Sources_6;
// UnityEngine.Vector2[] UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_CurrentPositions
Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___m_CurrentPositions_7;
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation/SimulatedTouch[] UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_Touches
SimulatedTouchU5BU5D_t8953BAB69DB02999DE5A5B75DE89C2D85B04036E* ___m_Touches_8;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_LastTouchId
int32_t ___m_LastTouchId_9;
// System.Int32 UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::m_PrimaryTouchIndex
int32_t ___m_PrimaryTouchIndex_10;
public:
inline static int32_t get_offset_of_U3CsimulatedTouchscreenU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974, ___U3CsimulatedTouchscreenU3Ek__BackingField_4)); }
inline Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * get_U3CsimulatedTouchscreenU3Ek__BackingField_4() const { return ___U3CsimulatedTouchscreenU3Ek__BackingField_4; }
inline Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B ** get_address_of_U3CsimulatedTouchscreenU3Ek__BackingField_4() { return &___U3CsimulatedTouchscreenU3Ek__BackingField_4; }
inline void set_U3CsimulatedTouchscreenU3Ek__BackingField_4(Touchscreen_tB18460F3DF1B9C5E5D8E83512527134A5B0FAE8B * value)
{
___U3CsimulatedTouchscreenU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsimulatedTouchscreenU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_m_NumSources_5() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974, ___m_NumSources_5)); }
inline int32_t get_m_NumSources_5() const { return ___m_NumSources_5; }
inline int32_t* get_address_of_m_NumSources_5() { return &___m_NumSources_5; }
inline void set_m_NumSources_5(int32_t value)
{
___m_NumSources_5 = value;
}
inline static int32_t get_offset_of_m_Sources_6() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974, ___m_Sources_6)); }
inline PointerU5BU5D_t592015C59CE1B29F8FED33A0A2C36A0DE3A827B8* get_m_Sources_6() const { return ___m_Sources_6; }
inline PointerU5BU5D_t592015C59CE1B29F8FED33A0A2C36A0DE3A827B8** get_address_of_m_Sources_6() { return &___m_Sources_6; }
inline void set_m_Sources_6(PointerU5BU5D_t592015C59CE1B29F8FED33A0A2C36A0DE3A827B8* value)
{
___m_Sources_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Sources_6), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentPositions_7() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974, ___m_CurrentPositions_7)); }
inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_m_CurrentPositions_7() const { return ___m_CurrentPositions_7; }
inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_m_CurrentPositions_7() { return &___m_CurrentPositions_7; }
inline void set_m_CurrentPositions_7(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value)
{
___m_CurrentPositions_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentPositions_7), (void*)value);
}
inline static int32_t get_offset_of_m_Touches_8() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974, ___m_Touches_8)); }
inline SimulatedTouchU5BU5D_t8953BAB69DB02999DE5A5B75DE89C2D85B04036E* get_m_Touches_8() const { return ___m_Touches_8; }
inline SimulatedTouchU5BU5D_t8953BAB69DB02999DE5A5B75DE89C2D85B04036E** get_address_of_m_Touches_8() { return &___m_Touches_8; }
inline void set_m_Touches_8(SimulatedTouchU5BU5D_t8953BAB69DB02999DE5A5B75DE89C2D85B04036E* value)
{
___m_Touches_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Touches_8), (void*)value);
}
inline static int32_t get_offset_of_m_LastTouchId_9() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974, ___m_LastTouchId_9)); }
inline int32_t get_m_LastTouchId_9() const { return ___m_LastTouchId_9; }
inline int32_t* get_address_of_m_LastTouchId_9() { return &___m_LastTouchId_9; }
inline void set_m_LastTouchId_9(int32_t value)
{
___m_LastTouchId_9 = value;
}
inline static int32_t get_offset_of_m_PrimaryTouchIndex_10() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974, ___m_PrimaryTouchIndex_10)); }
inline int32_t get_m_PrimaryTouchIndex_10() const { return ___m_PrimaryTouchIndex_10; }
inline int32_t* get_address_of_m_PrimaryTouchIndex_10() { return &___m_PrimaryTouchIndex_10; }
inline void set_m_PrimaryTouchIndex_10(int32_t value)
{
___m_PrimaryTouchIndex_10 = value;
}
};
struct TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974_StaticFields
{
public:
// UnityEngine.InputSystem.EnhancedTouch.TouchSimulation UnityEngine.InputSystem.EnhancedTouch.TouchSimulation::s_Instance
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974 * ___s_Instance_11;
public:
inline static int32_t get_offset_of_s_Instance_11() { return static_cast<int32_t>(offsetof(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974_StaticFields, ___s_Instance_11)); }
inline TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974 * get_s_Instance_11() const { return ___s_Instance_11; }
inline TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974 ** get_address_of_s_Instance_11() { return &___s_Instance_11; }
inline void set_s_Instance_11(TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974 * value)
{
___s_Instance_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_11), (void*)value);
}
};
// UnityEngine.InputSystem.TrackedDevice
struct TrackedDevice_tA0CE9D169CAC53A0ECDD355892DC4212C2A59EAA : public InputDevice_t3ABCB77AEA3A25072CB0E844AFD6C0512DD2BA59
{
public:
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.InputSystem.TrackedDevice::<trackingState>k__BackingField
IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * ___U3CtrackingStateU3Ek__BackingField_35;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.TrackedDevice::<isTracked>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CisTrackedU3Ek__BackingField_36;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.TrackedDevice::<devicePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdevicePositionU3Ek__BackingField_37;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.TrackedDevice::<deviceRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CdeviceRotationU3Ek__BackingField_38;
public:
inline static int32_t get_offset_of_U3CtrackingStateU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(TrackedDevice_tA0CE9D169CAC53A0ECDD355892DC4212C2A59EAA, ___U3CtrackingStateU3Ek__BackingField_35)); }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * get_U3CtrackingStateU3Ek__BackingField_35() const { return ___U3CtrackingStateU3Ek__BackingField_35; }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 ** get_address_of_U3CtrackingStateU3Ek__BackingField_35() { return &___U3CtrackingStateU3Ek__BackingField_35; }
inline void set_U3CtrackingStateU3Ek__BackingField_35(IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * value)
{
___U3CtrackingStateU3Ek__BackingField_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackingStateU3Ek__BackingField_35), (void*)value);
}
inline static int32_t get_offset_of_U3CisTrackedU3Ek__BackingField_36() { return static_cast<int32_t>(offsetof(TrackedDevice_tA0CE9D169CAC53A0ECDD355892DC4212C2A59EAA, ___U3CisTrackedU3Ek__BackingField_36)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CisTrackedU3Ek__BackingField_36() const { return ___U3CisTrackedU3Ek__BackingField_36; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CisTrackedU3Ek__BackingField_36() { return &___U3CisTrackedU3Ek__BackingField_36; }
inline void set_U3CisTrackedU3Ek__BackingField_36(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CisTrackedU3Ek__BackingField_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CisTrackedU3Ek__BackingField_36), (void*)value);
}
inline static int32_t get_offset_of_U3CdevicePositionU3Ek__BackingField_37() { return static_cast<int32_t>(offsetof(TrackedDevice_tA0CE9D169CAC53A0ECDD355892DC4212C2A59EAA, ___U3CdevicePositionU3Ek__BackingField_37)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdevicePositionU3Ek__BackingField_37() const { return ___U3CdevicePositionU3Ek__BackingField_37; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdevicePositionU3Ek__BackingField_37() { return &___U3CdevicePositionU3Ek__BackingField_37; }
inline void set_U3CdevicePositionU3Ek__BackingField_37(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdevicePositionU3Ek__BackingField_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdevicePositionU3Ek__BackingField_37), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceRotationU3Ek__BackingField_38() { return static_cast<int32_t>(offsetof(TrackedDevice_tA0CE9D169CAC53A0ECDD355892DC4212C2A59EAA, ___U3CdeviceRotationU3Ek__BackingField_38)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CdeviceRotationU3Ek__BackingField_38() const { return ___U3CdeviceRotationU3Ek__BackingField_38; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CdeviceRotationU3Ek__BackingField_38() { return &___U3CdeviceRotationU3Ek__BackingField_38; }
inline void set_U3CdeviceRotationU3Ek__BackingField_38(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CdeviceRotationU3Ek__BackingField_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceRotationU3Ek__BackingField_38), (void*)value);
}
};
// UnityEngine.InputSystem.XR.TrackedPoseDriver
struct TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.InputSystem.XR.TrackedPoseDriver/TrackingType UnityEngine.InputSystem.XR.TrackedPoseDriver::m_TrackingType
int32_t ___m_TrackingType_4;
// UnityEngine.InputSystem.XR.TrackedPoseDriver/UpdateType UnityEngine.InputSystem.XR.TrackedPoseDriver::m_UpdateType
int32_t ___m_UpdateType_5;
// UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.XR.TrackedPoseDriver::m_PositionAction
InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * ___m_PositionAction_6;
// UnityEngine.InputSystem.InputAction UnityEngine.InputSystem.XR.TrackedPoseDriver::m_RotationAction
InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * ___m_RotationAction_7;
// UnityEngine.Vector3 UnityEngine.InputSystem.XR.TrackedPoseDriver::m_CurrentPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_CurrentPosition_8;
// UnityEngine.Quaternion UnityEngine.InputSystem.XR.TrackedPoseDriver::m_CurrentRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_CurrentRotation_9;
// System.Boolean UnityEngine.InputSystem.XR.TrackedPoseDriver::m_RotationBound
bool ___m_RotationBound_10;
// System.Boolean UnityEngine.InputSystem.XR.TrackedPoseDriver::m_PositionBound
bool ___m_PositionBound_11;
public:
inline static int32_t get_offset_of_m_TrackingType_4() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_TrackingType_4)); }
inline int32_t get_m_TrackingType_4() const { return ___m_TrackingType_4; }
inline int32_t* get_address_of_m_TrackingType_4() { return &___m_TrackingType_4; }
inline void set_m_TrackingType_4(int32_t value)
{
___m_TrackingType_4 = value;
}
inline static int32_t get_offset_of_m_UpdateType_5() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_UpdateType_5)); }
inline int32_t get_m_UpdateType_5() const { return ___m_UpdateType_5; }
inline int32_t* get_address_of_m_UpdateType_5() { return &___m_UpdateType_5; }
inline void set_m_UpdateType_5(int32_t value)
{
___m_UpdateType_5 = value;
}
inline static int32_t get_offset_of_m_PositionAction_6() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_PositionAction_6)); }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * get_m_PositionAction_6() const { return ___m_PositionAction_6; }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 ** get_address_of_m_PositionAction_6() { return &___m_PositionAction_6; }
inline void set_m_PositionAction_6(InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * value)
{
___m_PositionAction_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PositionAction_6), (void*)value);
}
inline static int32_t get_offset_of_m_RotationAction_7() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_RotationAction_7)); }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * get_m_RotationAction_7() const { return ___m_RotationAction_7; }
inline InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 ** get_address_of_m_RotationAction_7() { return &___m_RotationAction_7; }
inline void set_m_RotationAction_7(InputAction_t80E7F52B46FD6E0C7F3510BEFF8999670D99DD60 * value)
{
___m_RotationAction_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RotationAction_7), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentPosition_8() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_CurrentPosition_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_CurrentPosition_8() const { return ___m_CurrentPosition_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_CurrentPosition_8() { return &___m_CurrentPosition_8; }
inline void set_m_CurrentPosition_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_CurrentPosition_8 = value;
}
inline static int32_t get_offset_of_m_CurrentRotation_9() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_CurrentRotation_9)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_CurrentRotation_9() const { return ___m_CurrentRotation_9; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_CurrentRotation_9() { return &___m_CurrentRotation_9; }
inline void set_m_CurrentRotation_9(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___m_CurrentRotation_9 = value;
}
inline static int32_t get_offset_of_m_RotationBound_10() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_RotationBound_10)); }
inline bool get_m_RotationBound_10() const { return ___m_RotationBound_10; }
inline bool* get_address_of_m_RotationBound_10() { return &___m_RotationBound_10; }
inline void set_m_RotationBound_10(bool value)
{
___m_RotationBound_10 = value;
}
inline static int32_t get_offset_of_m_PositionBound_11() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE, ___m_PositionBound_11)); }
inline bool get_m_PositionBound_11() const { return ___m_PositionBound_11; }
inline bool* get_address_of_m_PositionBound_11() { return &___m_PositionBound_11; }
inline void set_m_PositionBound_11(bool value)
{
___m_PositionBound_11 = value;
}
};
// UnityEngine.SpatialTracking.TrackedPoseDriver
struct TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.SpatialTracking.TrackedPoseDriver/DeviceType UnityEngine.SpatialTracking.TrackedPoseDriver::m_Device
int32_t ___m_Device_4;
// UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose UnityEngine.SpatialTracking.TrackedPoseDriver::m_PoseSource
int32_t ___m_PoseSource_5;
// UnityEngine.Experimental.XR.Interaction.BasePoseProvider UnityEngine.SpatialTracking.TrackedPoseDriver::m_PoseProviderComponent
BasePoseProvider_t04EB173A7CC01D10EF789D54577ACAEBFAD5B04E * ___m_PoseProviderComponent_6;
// UnityEngine.SpatialTracking.TrackedPoseDriver/TrackingType UnityEngine.SpatialTracking.TrackedPoseDriver::m_TrackingType
int32_t ___m_TrackingType_7;
// UnityEngine.SpatialTracking.TrackedPoseDriver/UpdateType UnityEngine.SpatialTracking.TrackedPoseDriver::m_UpdateType
int32_t ___m_UpdateType_8;
// System.Boolean UnityEngine.SpatialTracking.TrackedPoseDriver::m_UseRelativeTransform
bool ___m_UseRelativeTransform_9;
// UnityEngine.Pose UnityEngine.SpatialTracking.TrackedPoseDriver::m_OriginPose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_OriginPose_10;
public:
inline static int32_t get_offset_of_m_Device_4() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8, ___m_Device_4)); }
inline int32_t get_m_Device_4() const { return ___m_Device_4; }
inline int32_t* get_address_of_m_Device_4() { return &___m_Device_4; }
inline void set_m_Device_4(int32_t value)
{
___m_Device_4 = value;
}
inline static int32_t get_offset_of_m_PoseSource_5() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8, ___m_PoseSource_5)); }
inline int32_t get_m_PoseSource_5() const { return ___m_PoseSource_5; }
inline int32_t* get_address_of_m_PoseSource_5() { return &___m_PoseSource_5; }
inline void set_m_PoseSource_5(int32_t value)
{
___m_PoseSource_5 = value;
}
inline static int32_t get_offset_of_m_PoseProviderComponent_6() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8, ___m_PoseProviderComponent_6)); }
inline BasePoseProvider_t04EB173A7CC01D10EF789D54577ACAEBFAD5B04E * get_m_PoseProviderComponent_6() const { return ___m_PoseProviderComponent_6; }
inline BasePoseProvider_t04EB173A7CC01D10EF789D54577ACAEBFAD5B04E ** get_address_of_m_PoseProviderComponent_6() { return &___m_PoseProviderComponent_6; }
inline void set_m_PoseProviderComponent_6(BasePoseProvider_t04EB173A7CC01D10EF789D54577ACAEBFAD5B04E * value)
{
___m_PoseProviderComponent_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PoseProviderComponent_6), (void*)value);
}
inline static int32_t get_offset_of_m_TrackingType_7() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8, ___m_TrackingType_7)); }
inline int32_t get_m_TrackingType_7() const { return ___m_TrackingType_7; }
inline int32_t* get_address_of_m_TrackingType_7() { return &___m_TrackingType_7; }
inline void set_m_TrackingType_7(int32_t value)
{
___m_TrackingType_7 = value;
}
inline static int32_t get_offset_of_m_UpdateType_8() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8, ___m_UpdateType_8)); }
inline int32_t get_m_UpdateType_8() const { return ___m_UpdateType_8; }
inline int32_t* get_address_of_m_UpdateType_8() { return &___m_UpdateType_8; }
inline void set_m_UpdateType_8(int32_t value)
{
___m_UpdateType_8 = value;
}
inline static int32_t get_offset_of_m_UseRelativeTransform_9() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8, ___m_UseRelativeTransform_9)); }
inline bool get_m_UseRelativeTransform_9() const { return ___m_UseRelativeTransform_9; }
inline bool* get_address_of_m_UseRelativeTransform_9() { return &___m_UseRelativeTransform_9; }
inline void set_m_UseRelativeTransform_9(bool value)
{
___m_UseRelativeTransform_9 = value;
}
inline static int32_t get_offset_of_m_OriginPose_10() { return static_cast<int32_t>(offsetof(TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8, ___m_OriginPose_10)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_OriginPose_10() const { return ___m_OriginPose_10; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_OriginPose_10() { return &___m_OriginPose_10; }
inline void set_m_OriginPose_10(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_OriginPose_10 = value;
}
};
// Mirror.Transport
struct Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Action Mirror.Transport::OnClientConnected
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___OnClientConnected_5;
// System.Action`2<System.ArraySegment`1<System.Byte>,System.Int32> Mirror.Transport::OnClientDataReceived
Action_2_tD4220498136D5B8049F5DA471AAB03E317F604AC * ___OnClientDataReceived_6;
// System.Action`1<System.Exception> Mirror.Transport::OnClientError
Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 * ___OnClientError_7;
// System.Action Mirror.Transport::OnClientDisconnected
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___OnClientDisconnected_8;
// System.Action`1<System.Int32> Mirror.Transport::OnServerConnected
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___OnServerConnected_9;
// System.Action`3<System.Int32,System.ArraySegment`1<System.Byte>,System.Int32> Mirror.Transport::OnServerDataReceived
Action_3_t47376D6133EE9BC1FE8FA49DBD664F9E4D3D4AA0 * ___OnServerDataReceived_10;
// System.Action`2<System.Int32,System.Exception> Mirror.Transport::OnServerError
Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 * ___OnServerError_11;
// System.Action`1<System.Int32> Mirror.Transport::OnServerDisconnected
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___OnServerDisconnected_12;
public:
inline static int32_t get_offset_of_OnClientConnected_5() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnClientConnected_5)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_OnClientConnected_5() const { return ___OnClientConnected_5; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_OnClientConnected_5() { return &___OnClientConnected_5; }
inline void set_OnClientConnected_5(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___OnClientConnected_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnClientConnected_5), (void*)value);
}
inline static int32_t get_offset_of_OnClientDataReceived_6() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnClientDataReceived_6)); }
inline Action_2_tD4220498136D5B8049F5DA471AAB03E317F604AC * get_OnClientDataReceived_6() const { return ___OnClientDataReceived_6; }
inline Action_2_tD4220498136D5B8049F5DA471AAB03E317F604AC ** get_address_of_OnClientDataReceived_6() { return &___OnClientDataReceived_6; }
inline void set_OnClientDataReceived_6(Action_2_tD4220498136D5B8049F5DA471AAB03E317F604AC * value)
{
___OnClientDataReceived_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnClientDataReceived_6), (void*)value);
}
inline static int32_t get_offset_of_OnClientError_7() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnClientError_7)); }
inline Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 * get_OnClientError_7() const { return ___OnClientError_7; }
inline Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 ** get_address_of_OnClientError_7() { return &___OnClientError_7; }
inline void set_OnClientError_7(Action_1_t34F00247DCE829C59C4C5AAECAE03F05F060DD90 * value)
{
___OnClientError_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnClientError_7), (void*)value);
}
inline static int32_t get_offset_of_OnClientDisconnected_8() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnClientDisconnected_8)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_OnClientDisconnected_8() const { return ___OnClientDisconnected_8; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_OnClientDisconnected_8() { return &___OnClientDisconnected_8; }
inline void set_OnClientDisconnected_8(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___OnClientDisconnected_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnClientDisconnected_8), (void*)value);
}
inline static int32_t get_offset_of_OnServerConnected_9() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnServerConnected_9)); }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * get_OnServerConnected_9() const { return ___OnServerConnected_9; }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B ** get_address_of_OnServerConnected_9() { return &___OnServerConnected_9; }
inline void set_OnServerConnected_9(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * value)
{
___OnServerConnected_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnServerConnected_9), (void*)value);
}
inline static int32_t get_offset_of_OnServerDataReceived_10() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnServerDataReceived_10)); }
inline Action_3_t47376D6133EE9BC1FE8FA49DBD664F9E4D3D4AA0 * get_OnServerDataReceived_10() const { return ___OnServerDataReceived_10; }
inline Action_3_t47376D6133EE9BC1FE8FA49DBD664F9E4D3D4AA0 ** get_address_of_OnServerDataReceived_10() { return &___OnServerDataReceived_10; }
inline void set_OnServerDataReceived_10(Action_3_t47376D6133EE9BC1FE8FA49DBD664F9E4D3D4AA0 * value)
{
___OnServerDataReceived_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnServerDataReceived_10), (void*)value);
}
inline static int32_t get_offset_of_OnServerError_11() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnServerError_11)); }
inline Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 * get_OnServerError_11() const { return ___OnServerError_11; }
inline Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 ** get_address_of_OnServerError_11() { return &___OnServerError_11; }
inline void set_OnServerError_11(Action_2_t65966DF8C2BC50E2630B66B1C17C9846754A4E67 * value)
{
___OnServerError_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnServerError_11), (void*)value);
}
inline static int32_t get_offset_of_OnServerDisconnected_12() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D, ___OnServerDisconnected_12)); }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * get_OnServerDisconnected_12() const { return ___OnServerDisconnected_12; }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B ** get_address_of_OnServerDisconnected_12() { return &___OnServerDisconnected_12; }
inline void set_OnServerDisconnected_12(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * value)
{
___OnServerDisconnected_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnServerDisconnected_12), (void*)value);
}
};
struct Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D_StaticFields
{
public:
// Mirror.Transport Mirror.Transport::activeTransport
Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * ___activeTransport_4;
public:
inline static int32_t get_offset_of_activeTransport_4() { return static_cast<int32_t>(offsetof(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D_StaticFields, ___activeTransport_4)); }
inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * get_activeTransport_4() const { return ___activeTransport_4; }
inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D ** get_address_of_activeTransport_4() { return &___activeTransport_4; }
inline void set_activeTransport_4(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * value)
{
___activeTransport_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activeTransport_4), (void*)value);
}
};
// Dissonance.Demo.TriggerVisualizer
struct TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.GameObject Dissonance.Demo.TriggerVisualizer::_visualisations
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ____visualisations_4;
// Dissonance.BaseCommsTrigger[] Dissonance.Demo.TriggerVisualizer::_triggers
BaseCommsTriggerU5BU5D_tD91FC845C04F69A37B0218A3679CD57397650F16* ____triggers_5;
// UnityEngine.Material Dissonance.Demo.TriggerVisualizer::_fillMaterial
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____fillMaterial_6;
// UnityEngine.Material Dissonance.Demo.TriggerVisualizer::_outlineMaterial
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____outlineMaterial_7;
// System.Single Dissonance.Demo.TriggerVisualizer::_alpha
float ____alpha_8;
// UnityEngine.Color Dissonance.Demo.TriggerVisualizer::Color
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___Color_9;
public:
inline static int32_t get_offset_of__visualisations_4() { return static_cast<int32_t>(offsetof(TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2, ____visualisations_4)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get__visualisations_4() const { return ____visualisations_4; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of__visualisations_4() { return &____visualisations_4; }
inline void set__visualisations_4(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
____visualisations_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____visualisations_4), (void*)value);
}
inline static int32_t get_offset_of__triggers_5() { return static_cast<int32_t>(offsetof(TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2, ____triggers_5)); }
inline BaseCommsTriggerU5BU5D_tD91FC845C04F69A37B0218A3679CD57397650F16* get__triggers_5() const { return ____triggers_5; }
inline BaseCommsTriggerU5BU5D_tD91FC845C04F69A37B0218A3679CD57397650F16** get_address_of__triggers_5() { return &____triggers_5; }
inline void set__triggers_5(BaseCommsTriggerU5BU5D_tD91FC845C04F69A37B0218A3679CD57397650F16* value)
{
____triggers_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____triggers_5), (void*)value);
}
inline static int32_t get_offset_of__fillMaterial_6() { return static_cast<int32_t>(offsetof(TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2, ____fillMaterial_6)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__fillMaterial_6() const { return ____fillMaterial_6; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__fillMaterial_6() { return &____fillMaterial_6; }
inline void set__fillMaterial_6(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
____fillMaterial_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fillMaterial_6), (void*)value);
}
inline static int32_t get_offset_of__outlineMaterial_7() { return static_cast<int32_t>(offsetof(TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2, ____outlineMaterial_7)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__outlineMaterial_7() const { return ____outlineMaterial_7; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__outlineMaterial_7() { return &____outlineMaterial_7; }
inline void set__outlineMaterial_7(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
____outlineMaterial_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outlineMaterial_7), (void*)value);
}
inline static int32_t get_offset_of__alpha_8() { return static_cast<int32_t>(offsetof(TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2, ____alpha_8)); }
inline float get__alpha_8() const { return ____alpha_8; }
inline float* get_address_of__alpha_8() { return &____alpha_8; }
inline void set__alpha_8(float value)
{
____alpha_8 = value;
}
inline static int32_t get_offset_of_Color_9() { return static_cast<int32_t>(offsetof(TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2, ___Color_9)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_Color_9() const { return ___Color_9; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_Color_9() { return &___Color_9; }
inline void set_Color_9(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___Color_9 = value;
}
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
public:
};
// UnityEngine.InputSystem.Controls.Vector2Control
struct Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 : public InputControl_1_tD82F7E923A520F91FD4B14F9DD1E6CC95CBF4527
{
public:
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector2Control::<x>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CxU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector2Control::<y>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CyU3Ek__BackingField_23;
public:
inline static int32_t get_offset_of_U3CxU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11, ___U3CxU3Ek__BackingField_22)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CxU3Ek__BackingField_22() const { return ___U3CxU3Ek__BackingField_22; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CxU3Ek__BackingField_22() { return &___U3CxU3Ek__BackingField_22; }
inline void set_U3CxU3Ek__BackingField_22(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CxU3Ek__BackingField_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CxU3Ek__BackingField_22), (void*)value);
}
inline static int32_t get_offset_of_U3CyU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11, ___U3CyU3Ek__BackingField_23)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CyU3Ek__BackingField_23() const { return ___U3CyU3Ek__BackingField_23; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CyU3Ek__BackingField_23() { return &___U3CyU3Ek__BackingField_23; }
inline void set_U3CyU3Ek__BackingField_23(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CyU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CyU3Ek__BackingField_23), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.Vector3Control
struct Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 : public InputControl_1_t4367B5E7BAEEDEC9C0DD612E2C99D0D87B3645B0
{
public:
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector3Control::<x>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CxU3Ek__BackingField_22;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector3Control::<y>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CyU3Ek__BackingField_23;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.InputSystem.Controls.Vector3Control::<z>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CzU3Ek__BackingField_24;
public:
inline static int32_t get_offset_of_U3CxU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475, ___U3CxU3Ek__BackingField_22)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CxU3Ek__BackingField_22() const { return ___U3CxU3Ek__BackingField_22; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CxU3Ek__BackingField_22() { return &___U3CxU3Ek__BackingField_22; }
inline void set_U3CxU3Ek__BackingField_22(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CxU3Ek__BackingField_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CxU3Ek__BackingField_22), (void*)value);
}
inline static int32_t get_offset_of_U3CyU3Ek__BackingField_23() { return static_cast<int32_t>(offsetof(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475, ___U3CyU3Ek__BackingField_23)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CyU3Ek__BackingField_23() const { return ___U3CyU3Ek__BackingField_23; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CyU3Ek__BackingField_23() { return &___U3CyU3Ek__BackingField_23; }
inline void set_U3CyU3Ek__BackingField_23(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CyU3Ek__BackingField_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CyU3Ek__BackingField_23), (void*)value);
}
inline static int32_t get_offset_of_U3CzU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475, ___U3CzU3Ek__BackingField_24)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CzU3Ek__BackingField_24() const { return ___U3CzU3Ek__BackingField_24; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CzU3Ek__BackingField_24() { return &___U3CzU3Ek__BackingField_24; }
inline void set_U3CzU3Ek__BackingField_24(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CzU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CzU3Ek__BackingField_24), (void*)value);
}
};
// Dissonance.Audio.Playback.VoicePlayback
struct VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.Transform Dissonance.Audio.Playback.VoicePlayback::_transformCache
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ____transformCache_5;
// Dissonance.Audio.Playback.SpeechSessionStream Dissonance.Audio.Playback.VoicePlayback::_sessions
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C * ____sessions_6;
// Dissonance.Audio.Playback.PlaybackOptions Dissonance.Audio.Playback.VoicePlayback::_cachedPlaybackOptions
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E ____cachedPlaybackOptions_7;
// UnityEngine.AudioSource Dissonance.Audio.Playback.VoicePlayback::<AudioSource>k__BackingField
AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * ___U3CAudioSourceU3Ek__BackingField_8;
// System.Boolean Dissonance.Audio.Playback.VoicePlayback::<Dissonance.Audio.Playback.IVoicePlaybackInternal.AllowPositionalPlayback>k__BackingField
bool ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9;
// Dissonance.Audio.Playback.SamplePlaybackComponent Dissonance.Audio.Playback.VoicePlayback::_player
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49 * ____player_10;
// Dissonance.CodecSettings Dissonance.Audio.Playback.VoicePlayback::_codecSettings
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 ____codecSettings_11;
// Dissonance.Audio.Playback.FrameFormat Dissonance.Audio.Playback.VoicePlayback::_frameFormat
FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 ____frameFormat_12;
// System.Nullable`1<System.Single> Dissonance.Audio.Playback.VoicePlayback::_savedSpatialBlend
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ____savedSpatialBlend_13;
// System.Boolean Dissonance.Audio.Playback.VoicePlayback::<Dissonance.Audio.Playback.IVoicePlaybackInternal.IsMuted>k__BackingField
bool ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14;
// System.Single Dissonance.Audio.Playback.VoicePlayback::<Dissonance.Audio.Playback.IVoicePlaybackInternal.PlaybackVolume>k__BackingField
float ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15;
// System.Boolean Dissonance.Audio.Playback.VoicePlayback::<IsApplyingAudioSpatialization>k__BackingField
bool ___U3CIsApplyingAudioSpatializationU3Ek__BackingField_16;
// Dissonance.Audio.Playback.IPriorityManager Dissonance.Audio.Playback.VoicePlayback::<PriorityManager>k__BackingField
RuntimeObject* ___U3CPriorityManagerU3Ek__BackingField_17;
// Dissonance.Audio.Playback.IVolumeProvider Dissonance.Audio.Playback.VoicePlayback::<VolumeProvider>k__BackingField
RuntimeObject* ___U3CVolumeProviderU3Ek__BackingField_18;
public:
inline static int32_t get_offset_of__transformCache_5() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ____transformCache_5)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get__transformCache_5() const { return ____transformCache_5; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of__transformCache_5() { return &____transformCache_5; }
inline void set__transformCache_5(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
____transformCache_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____transformCache_5), (void*)value);
}
inline static int32_t get_offset_of__sessions_6() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ____sessions_6)); }
inline SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C * get__sessions_6() const { return ____sessions_6; }
inline SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C ** get_address_of__sessions_6() { return &____sessions_6; }
inline void set__sessions_6(SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C * value)
{
____sessions_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sessions_6), (void*)value);
}
inline static int32_t get_offset_of__cachedPlaybackOptions_7() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ____cachedPlaybackOptions_7)); }
inline PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E get__cachedPlaybackOptions_7() const { return ____cachedPlaybackOptions_7; }
inline PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E * get_address_of__cachedPlaybackOptions_7() { return &____cachedPlaybackOptions_7; }
inline void set__cachedPlaybackOptions_7(PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E value)
{
____cachedPlaybackOptions_7 = value;
}
inline static int32_t get_offset_of_U3CAudioSourceU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ___U3CAudioSourceU3Ek__BackingField_8)); }
inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * get_U3CAudioSourceU3Ek__BackingField_8() const { return ___U3CAudioSourceU3Ek__BackingField_8; }
inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B ** get_address_of_U3CAudioSourceU3Ek__BackingField_8() { return &___U3CAudioSourceU3Ek__BackingField_8; }
inline void set_U3CAudioSourceU3Ek__BackingField_8(AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * value)
{
___U3CAudioSourceU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAudioSourceU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9)); }
inline bool get_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9() const { return ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9; }
inline bool* get_address_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9() { return &___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9; }
inline void set_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9(bool value)
{
___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of__player_10() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ____player_10)); }
inline SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49 * get__player_10() const { return ____player_10; }
inline SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49 ** get_address_of__player_10() { return &____player_10; }
inline void set__player_10(SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49 * value)
{
____player_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____player_10), (void*)value);
}
inline static int32_t get_offset_of__codecSettings_11() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ____codecSettings_11)); }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 get__codecSettings_11() const { return ____codecSettings_11; }
inline CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 * get_address_of__codecSettings_11() { return &____codecSettings_11; }
inline void set__codecSettings_11(CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131 value)
{
____codecSettings_11 = value;
}
inline static int32_t get_offset_of__frameFormat_12() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ____frameFormat_12)); }
inline FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 get__frameFormat_12() const { return ____frameFormat_12; }
inline FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 * get_address_of__frameFormat_12() { return &____frameFormat_12; }
inline void set__frameFormat_12(FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226 value)
{
____frameFormat_12 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____frameFormat_12))->___WaveFormat_1), (void*)NULL);
}
inline static int32_t get_offset_of__savedSpatialBlend_13() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ____savedSpatialBlend_13)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get__savedSpatialBlend_13() const { return ____savedSpatialBlend_13; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of__savedSpatialBlend_13() { return &____savedSpatialBlend_13; }
inline void set__savedSpatialBlend_13(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
____savedSpatialBlend_13 = value;
}
inline static int32_t get_offset_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14)); }
inline bool get_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14() const { return ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14; }
inline bool* get_address_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14() { return &___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14; }
inline void set_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14(bool value)
{
___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15)); }
inline float get_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15() const { return ___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15; }
inline float* get_address_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15() { return &___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15; }
inline void set_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15(float value)
{
___U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CIsApplyingAudioSpatializationU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ___U3CIsApplyingAudioSpatializationU3Ek__BackingField_16)); }
inline bool get_U3CIsApplyingAudioSpatializationU3Ek__BackingField_16() const { return ___U3CIsApplyingAudioSpatializationU3Ek__BackingField_16; }
inline bool* get_address_of_U3CIsApplyingAudioSpatializationU3Ek__BackingField_16() { return &___U3CIsApplyingAudioSpatializationU3Ek__BackingField_16; }
inline void set_U3CIsApplyingAudioSpatializationU3Ek__BackingField_16(bool value)
{
___U3CIsApplyingAudioSpatializationU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CPriorityManagerU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ___U3CPriorityManagerU3Ek__BackingField_17)); }
inline RuntimeObject* get_U3CPriorityManagerU3Ek__BackingField_17() const { return ___U3CPriorityManagerU3Ek__BackingField_17; }
inline RuntimeObject** get_address_of_U3CPriorityManagerU3Ek__BackingField_17() { return &___U3CPriorityManagerU3Ek__BackingField_17; }
inline void set_U3CPriorityManagerU3Ek__BackingField_17(RuntimeObject* value)
{
___U3CPriorityManagerU3Ek__BackingField_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPriorityManagerU3Ek__BackingField_17), (void*)value);
}
inline static int32_t get_offset_of_U3CVolumeProviderU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2, ___U3CVolumeProviderU3Ek__BackingField_18)); }
inline RuntimeObject* get_U3CVolumeProviderU3Ek__BackingField_18() const { return ___U3CVolumeProviderU3Ek__BackingField_18; }
inline RuntimeObject** get_address_of_U3CVolumeProviderU3Ek__BackingField_18() { return &___U3CVolumeProviderU3Ek__BackingField_18; }
inline void set_U3CVolumeProviderU3Ek__BackingField_18(RuntimeObject* value)
{
___U3CVolumeProviderU3Ek__BackingField_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CVolumeProviderU3Ek__BackingField_18), (void*)value);
}
};
struct VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2_StaticFields
{
public:
// Dissonance.Log Dissonance.Audio.Playback.VoicePlayback::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_4;
public:
inline static int32_t get_offset_of_Log_4() { return static_cast<int32_t>(offsetof(VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2_StaticFields, ___Log_4)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_4() const { return ___Log_4; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_4() { return &___Log_4; }
inline void set_Log_4(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_4), (void*)value);
}
};
// UnityEngine.XR.WindowsMR.WindowsMRGestures
struct WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// UnityEngine.XR.WindowsMR.WindowsMRGestureSubsystem UnityEngine.XR.WindowsMR.WindowsMRGestures::<gestureSubsystem>k__BackingField
WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 * ___U3CgestureSubsystemU3Ek__BackingField_4;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRHoldGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestures::onHoldChanged
Action_1_t73C9A7D5EFA3B3D03B7E0BB20C32DF8C42ECFAE0 * ___onHoldChanged_5;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRManipulationGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestures::onManipulationChanged
Action_1_tF3020183D71BC218BD8379D1E59A2A4181FC3E62 * ___onManipulationChanged_6;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRNavigationGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestures::onNavigationChanged
Action_1_t6E7B6A7A2E9E0074FC39F0DE79553455C2DC11BE * ___onNavigationChanged_7;
// System.Action`1<UnityEngine.XR.WindowsMR.WindowsMRTappedGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestures::onTappedChanged
Action_1_t30F433DC87338E8C363AAF5AE7DC5A7CB631F28D * ___onTappedChanged_8;
// System.Action`1<UnityEngine.XR.InteractionSubsystems.ActivateGestureEvent> UnityEngine.XR.WindowsMR.WindowsMRGestures::onActivate
Action_1_t8449C51FE9FCCB2FF0A192EC12D9EEEE95A985D8 * ___onActivate_9;
// System.Boolean UnityEngine.XR.WindowsMR.WindowsMRGestures::enableNavigationGesture
bool ___enableNavigationGesture_10;
// System.Boolean UnityEngine.XR.WindowsMR.WindowsMRGestures::enableManipulationGesture
bool ___enableManipulationGesture_11;
public:
inline static int32_t get_offset_of_U3CgestureSubsystemU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___U3CgestureSubsystemU3Ek__BackingField_4)); }
inline WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 * get_U3CgestureSubsystemU3Ek__BackingField_4() const { return ___U3CgestureSubsystemU3Ek__BackingField_4; }
inline WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 ** get_address_of_U3CgestureSubsystemU3Ek__BackingField_4() { return &___U3CgestureSubsystemU3Ek__BackingField_4; }
inline void set_U3CgestureSubsystemU3Ek__BackingField_4(WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60 * value)
{
___U3CgestureSubsystemU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgestureSubsystemU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_onHoldChanged_5() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___onHoldChanged_5)); }
inline Action_1_t73C9A7D5EFA3B3D03B7E0BB20C32DF8C42ECFAE0 * get_onHoldChanged_5() const { return ___onHoldChanged_5; }
inline Action_1_t73C9A7D5EFA3B3D03B7E0BB20C32DF8C42ECFAE0 ** get_address_of_onHoldChanged_5() { return &___onHoldChanged_5; }
inline void set_onHoldChanged_5(Action_1_t73C9A7D5EFA3B3D03B7E0BB20C32DF8C42ECFAE0 * value)
{
___onHoldChanged_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onHoldChanged_5), (void*)value);
}
inline static int32_t get_offset_of_onManipulationChanged_6() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___onManipulationChanged_6)); }
inline Action_1_tF3020183D71BC218BD8379D1E59A2A4181FC3E62 * get_onManipulationChanged_6() const { return ___onManipulationChanged_6; }
inline Action_1_tF3020183D71BC218BD8379D1E59A2A4181FC3E62 ** get_address_of_onManipulationChanged_6() { return &___onManipulationChanged_6; }
inline void set_onManipulationChanged_6(Action_1_tF3020183D71BC218BD8379D1E59A2A4181FC3E62 * value)
{
___onManipulationChanged_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onManipulationChanged_6), (void*)value);
}
inline static int32_t get_offset_of_onNavigationChanged_7() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___onNavigationChanged_7)); }
inline Action_1_t6E7B6A7A2E9E0074FC39F0DE79553455C2DC11BE * get_onNavigationChanged_7() const { return ___onNavigationChanged_7; }
inline Action_1_t6E7B6A7A2E9E0074FC39F0DE79553455C2DC11BE ** get_address_of_onNavigationChanged_7() { return &___onNavigationChanged_7; }
inline void set_onNavigationChanged_7(Action_1_t6E7B6A7A2E9E0074FC39F0DE79553455C2DC11BE * value)
{
___onNavigationChanged_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onNavigationChanged_7), (void*)value);
}
inline static int32_t get_offset_of_onTappedChanged_8() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___onTappedChanged_8)); }
inline Action_1_t30F433DC87338E8C363AAF5AE7DC5A7CB631F28D * get_onTappedChanged_8() const { return ___onTappedChanged_8; }
inline Action_1_t30F433DC87338E8C363AAF5AE7DC5A7CB631F28D ** get_address_of_onTappedChanged_8() { return &___onTappedChanged_8; }
inline void set_onTappedChanged_8(Action_1_t30F433DC87338E8C363AAF5AE7DC5A7CB631F28D * value)
{
___onTappedChanged_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onTappedChanged_8), (void*)value);
}
inline static int32_t get_offset_of_onActivate_9() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___onActivate_9)); }
inline Action_1_t8449C51FE9FCCB2FF0A192EC12D9EEEE95A985D8 * get_onActivate_9() const { return ___onActivate_9; }
inline Action_1_t8449C51FE9FCCB2FF0A192EC12D9EEEE95A985D8 ** get_address_of_onActivate_9() { return &___onActivate_9; }
inline void set_onActivate_9(Action_1_t8449C51FE9FCCB2FF0A192EC12D9EEEE95A985D8 * value)
{
___onActivate_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onActivate_9), (void*)value);
}
inline static int32_t get_offset_of_enableNavigationGesture_10() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___enableNavigationGesture_10)); }
inline bool get_enableNavigationGesture_10() const { return ___enableNavigationGesture_10; }
inline bool* get_address_of_enableNavigationGesture_10() { return &___enableNavigationGesture_10; }
inline void set_enableNavigationGesture_10(bool value)
{
___enableNavigationGesture_10 = value;
}
inline static int32_t get_offset_of_enableManipulationGesture_11() { return static_cast<int32_t>(offsetof(WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73, ___enableManipulationGesture_11)); }
inline bool get_enableManipulationGesture_11() const { return ___enableManipulationGesture_11; }
inline bool* get_address_of_enableManipulationGesture_11() { return &___enableManipulationGesture_11; }
inline void set_enableManipulationGesture_11(bool value)
{
___enableManipulationGesture_11 = value;
}
};
// UnityEngine.XR.WindowsMR.WindowsMRLoader
struct WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92 : public XRLoaderHelper_t37A55C343AC31D25BB3EBD203DABFA357F51C013
{
public:
public:
};
struct WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor> UnityEngine.XR.WindowsMR.WindowsMRLoader::s_SessionSubsystemDescriptors
List_1_tDA25459A722F5B00FFE84463D9952660BC3F6673 * ___s_SessionSubsystemDescriptors_5;
// System.Collections.Generic.List`1<UnityEngine.XR.XRDisplaySubsystemDescriptor> UnityEngine.XR.WindowsMR.WindowsMRLoader::s_DisplaySubsystemDescriptors
List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 * ___s_DisplaySubsystemDescriptors_6;
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystemDescriptor> UnityEngine.XR.WindowsMR.WindowsMRLoader::s_InputSubsystemDescriptors
List_1_t885BD663DFFEB6C32E74934BE1CE00D566657BA0 * ___s_InputSubsystemDescriptors_7;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor> UnityEngine.XR.WindowsMR.WindowsMRLoader::s_AnchorSubsystemDescriptors
List_1_tDED98C236097B36F9015B396398179A6F8A62E50 * ___s_AnchorSubsystemDescriptors_8;
// System.Collections.Generic.List`1<UnityEngine.XR.XRMeshSubsystemDescriptor> UnityEngine.XR.WindowsMR.WindowsMRLoader::s_MeshSubsystemDescriptors
List_1_tA4CB3CC063D44B52D336C5DDA258EF7CE9B98A94 * ___s_MeshSubsystemDescriptors_9;
// System.Collections.Generic.List`1<UnityEngine.XR.InteractionSubsystems.XRGestureSubsystemDescriptor> UnityEngine.XR.WindowsMR.WindowsMRLoader::s_GestureSubsystemDescriptors
List_1_tFDF63FE53408489D6A2F16814E1594D8AF3B4942 * ___s_GestureSubsystemDescriptors_10;
public:
inline static int32_t get_offset_of_s_SessionSubsystemDescriptors_5() { return static_cast<int32_t>(offsetof(WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields, ___s_SessionSubsystemDescriptors_5)); }
inline List_1_tDA25459A722F5B00FFE84463D9952660BC3F6673 * get_s_SessionSubsystemDescriptors_5() const { return ___s_SessionSubsystemDescriptors_5; }
inline List_1_tDA25459A722F5B00FFE84463D9952660BC3F6673 ** get_address_of_s_SessionSubsystemDescriptors_5() { return &___s_SessionSubsystemDescriptors_5; }
inline void set_s_SessionSubsystemDescriptors_5(List_1_tDA25459A722F5B00FFE84463D9952660BC3F6673 * value)
{
___s_SessionSubsystemDescriptors_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SessionSubsystemDescriptors_5), (void*)value);
}
inline static int32_t get_offset_of_s_DisplaySubsystemDescriptors_6() { return static_cast<int32_t>(offsetof(WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields, ___s_DisplaySubsystemDescriptors_6)); }
inline List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 * get_s_DisplaySubsystemDescriptors_6() const { return ___s_DisplaySubsystemDescriptors_6; }
inline List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 ** get_address_of_s_DisplaySubsystemDescriptors_6() { return &___s_DisplaySubsystemDescriptors_6; }
inline void set_s_DisplaySubsystemDescriptors_6(List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 * value)
{
___s_DisplaySubsystemDescriptors_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DisplaySubsystemDescriptors_6), (void*)value);
}
inline static int32_t get_offset_of_s_InputSubsystemDescriptors_7() { return static_cast<int32_t>(offsetof(WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields, ___s_InputSubsystemDescriptors_7)); }
inline List_1_t885BD663DFFEB6C32E74934BE1CE00D566657BA0 * get_s_InputSubsystemDescriptors_7() const { return ___s_InputSubsystemDescriptors_7; }
inline List_1_t885BD663DFFEB6C32E74934BE1CE00D566657BA0 ** get_address_of_s_InputSubsystemDescriptors_7() { return &___s_InputSubsystemDescriptors_7; }
inline void set_s_InputSubsystemDescriptors_7(List_1_t885BD663DFFEB6C32E74934BE1CE00D566657BA0 * value)
{
___s_InputSubsystemDescriptors_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InputSubsystemDescriptors_7), (void*)value);
}
inline static int32_t get_offset_of_s_AnchorSubsystemDescriptors_8() { return static_cast<int32_t>(offsetof(WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields, ___s_AnchorSubsystemDescriptors_8)); }
inline List_1_tDED98C236097B36F9015B396398179A6F8A62E50 * get_s_AnchorSubsystemDescriptors_8() const { return ___s_AnchorSubsystemDescriptors_8; }
inline List_1_tDED98C236097B36F9015B396398179A6F8A62E50 ** get_address_of_s_AnchorSubsystemDescriptors_8() { return &___s_AnchorSubsystemDescriptors_8; }
inline void set_s_AnchorSubsystemDescriptors_8(List_1_tDED98C236097B36F9015B396398179A6F8A62E50 * value)
{
___s_AnchorSubsystemDescriptors_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_AnchorSubsystemDescriptors_8), (void*)value);
}
inline static int32_t get_offset_of_s_MeshSubsystemDescriptors_9() { return static_cast<int32_t>(offsetof(WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields, ___s_MeshSubsystemDescriptors_9)); }
inline List_1_tA4CB3CC063D44B52D336C5DDA258EF7CE9B98A94 * get_s_MeshSubsystemDescriptors_9() const { return ___s_MeshSubsystemDescriptors_9; }
inline List_1_tA4CB3CC063D44B52D336C5DDA258EF7CE9B98A94 ** get_address_of_s_MeshSubsystemDescriptors_9() { return &___s_MeshSubsystemDescriptors_9; }
inline void set_s_MeshSubsystemDescriptors_9(List_1_tA4CB3CC063D44B52D336C5DDA258EF7CE9B98A94 * value)
{
___s_MeshSubsystemDescriptors_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_MeshSubsystemDescriptors_9), (void*)value);
}
inline static int32_t get_offset_of_s_GestureSubsystemDescriptors_10() { return static_cast<int32_t>(offsetof(WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields, ___s_GestureSubsystemDescriptors_10)); }
inline List_1_tFDF63FE53408489D6A2F16814E1594D8AF3B4942 * get_s_GestureSubsystemDescriptors_10() const { return ___s_GestureSubsystemDescriptors_10; }
inline List_1_tFDF63FE53408489D6A2F16814E1594D8AF3B4942 ** get_address_of_s_GestureSubsystemDescriptors_10() { return &___s_GestureSubsystemDescriptors_10; }
inline void set_s_GestureSubsystemDescriptors_10(List_1_tFDF63FE53408489D6A2F16814E1594D8AF3B4942 * value)
{
___s_GestureSubsystemDescriptors_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_GestureSubsystemDescriptors_10), (void*)value);
}
};
// Mirror.Examples.Additive.ZoneHandler
struct ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.String Mirror.Examples.Additive.ZoneHandler::subScene
String_t* ___subScene_4;
public:
inline static int32_t get_offset_of_subScene_4() { return static_cast<int32_t>(offsetof(ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569, ___subScene_4)); }
inline String_t* get_subScene_4() const { return ___subScene_4; }
inline String_t** get_address_of_subScene_4() { return &___subScene_4; }
inline void set_subScene_4(String_t* value)
{
___subScene_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subScene_4), (void*)value);
}
};
// UnityEngine.InputSystem.Users.InputUser/UserData
struct UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA
{
public:
// System.Nullable`1<UnityEngine.InputSystem.Users.InputUserAccountHandle> UnityEngine.InputSystem.Users.InputUser/UserData::platformUserAccountHandle
Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004 ___platformUserAccountHandle_0;
// System.String UnityEngine.InputSystem.Users.InputUser/UserData::platformUserAccountName
String_t* ___platformUserAccountName_1;
// System.String UnityEngine.InputSystem.Users.InputUser/UserData::platformUserAccountId
String_t* ___platformUserAccountId_2;
// System.Int32 UnityEngine.InputSystem.Users.InputUser/UserData::deviceCount
int32_t ___deviceCount_3;
// System.Int32 UnityEngine.InputSystem.Users.InputUser/UserData::deviceStartIndex
int32_t ___deviceStartIndex_4;
// UnityEngine.InputSystem.IInputActionCollection UnityEngine.InputSystem.Users.InputUser/UserData::actions
RuntimeObject* ___actions_5;
// System.Nullable`1<UnityEngine.InputSystem.InputControlScheme> UnityEngine.InputSystem.Users.InputUser/UserData::controlScheme
Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93 ___controlScheme_6;
// UnityEngine.InputSystem.InputControlScheme/MatchResult UnityEngine.InputSystem.Users.InputUser/UserData::controlSchemeMatch
MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1 ___controlSchemeMatch_7;
// System.Int32 UnityEngine.InputSystem.Users.InputUser/UserData::lostDeviceCount
int32_t ___lostDeviceCount_8;
// System.Int32 UnityEngine.InputSystem.Users.InputUser/UserData::lostDeviceStartIndex
int32_t ___lostDeviceStartIndex_9;
// UnityEngine.InputSystem.Users.InputUser/UserFlags UnityEngine.InputSystem.Users.InputUser/UserData::flags
int32_t ___flags_10;
public:
inline static int32_t get_offset_of_platformUserAccountHandle_0() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___platformUserAccountHandle_0)); }
inline Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004 get_platformUserAccountHandle_0() const { return ___platformUserAccountHandle_0; }
inline Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004 * get_address_of_platformUserAccountHandle_0() { return &___platformUserAccountHandle_0; }
inline void set_platformUserAccountHandle_0(Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004 value)
{
___platformUserAccountHandle_0 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___platformUserAccountHandle_0))->___value_0))->___m_ApiName_0), (void*)NULL);
}
inline static int32_t get_offset_of_platformUserAccountName_1() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___platformUserAccountName_1)); }
inline String_t* get_platformUserAccountName_1() const { return ___platformUserAccountName_1; }
inline String_t** get_address_of_platformUserAccountName_1() { return &___platformUserAccountName_1; }
inline void set_platformUserAccountName_1(String_t* value)
{
___platformUserAccountName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___platformUserAccountName_1), (void*)value);
}
inline static int32_t get_offset_of_platformUserAccountId_2() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___platformUserAccountId_2)); }
inline String_t* get_platformUserAccountId_2() const { return ___platformUserAccountId_2; }
inline String_t** get_address_of_platformUserAccountId_2() { return &___platformUserAccountId_2; }
inline void set_platformUserAccountId_2(String_t* value)
{
___platformUserAccountId_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___platformUserAccountId_2), (void*)value);
}
inline static int32_t get_offset_of_deviceCount_3() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___deviceCount_3)); }
inline int32_t get_deviceCount_3() const { return ___deviceCount_3; }
inline int32_t* get_address_of_deviceCount_3() { return &___deviceCount_3; }
inline void set_deviceCount_3(int32_t value)
{
___deviceCount_3 = value;
}
inline static int32_t get_offset_of_deviceStartIndex_4() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___deviceStartIndex_4)); }
inline int32_t get_deviceStartIndex_4() const { return ___deviceStartIndex_4; }
inline int32_t* get_address_of_deviceStartIndex_4() { return &___deviceStartIndex_4; }
inline void set_deviceStartIndex_4(int32_t value)
{
___deviceStartIndex_4 = value;
}
inline static int32_t get_offset_of_actions_5() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___actions_5)); }
inline RuntimeObject* get_actions_5() const { return ___actions_5; }
inline RuntimeObject** get_address_of_actions_5() { return &___actions_5; }
inline void set_actions_5(RuntimeObject* value)
{
___actions_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___actions_5), (void*)value);
}
inline static int32_t get_offset_of_controlScheme_6() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___controlScheme_6)); }
inline Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93 get_controlScheme_6() const { return ___controlScheme_6; }
inline Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93 * get_address_of_controlScheme_6() { return &___controlScheme_6; }
inline void set_controlScheme_6(Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93 value)
{
___controlScheme_6 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&___controlScheme_6))->___value_0))->___m_Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___controlScheme_6))->___value_0))->___m_BindingGroup_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___controlScheme_6))->___value_0))->___m_DeviceRequirements_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_controlSchemeMatch_7() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___controlSchemeMatch_7)); }
inline MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1 get_controlSchemeMatch_7() const { return ___controlSchemeMatch_7; }
inline MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1 * get_address_of_controlSchemeMatch_7() { return &___controlSchemeMatch_7; }
inline void set_controlSchemeMatch_7(MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1 value)
{
___controlSchemeMatch_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___controlSchemeMatch_7))->___m_Requirements_4), (void*)NULL);
}
inline static int32_t get_offset_of_lostDeviceCount_8() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___lostDeviceCount_8)); }
inline int32_t get_lostDeviceCount_8() const { return ___lostDeviceCount_8; }
inline int32_t* get_address_of_lostDeviceCount_8() { return &___lostDeviceCount_8; }
inline void set_lostDeviceCount_8(int32_t value)
{
___lostDeviceCount_8 = value;
}
inline static int32_t get_offset_of_lostDeviceStartIndex_9() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___lostDeviceStartIndex_9)); }
inline int32_t get_lostDeviceStartIndex_9() const { return ___lostDeviceStartIndex_9; }
inline int32_t* get_address_of_lostDeviceStartIndex_9() { return &___lostDeviceStartIndex_9; }
inline void set_lostDeviceStartIndex_9(int32_t value)
{
___lostDeviceStartIndex_9 = value;
}
inline static int32_t get_offset_of_flags_10() { return static_cast<int32_t>(offsetof(UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA, ___flags_10)); }
inline int32_t get_flags_10() const { return ___flags_10; }
inline int32_t* get_address_of_flags_10() { return &___flags_10; }
inline void set_flags_10(int32_t value)
{
___flags_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.InputSystem.Users.InputUser/UserData
struct UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA_marshaled_pinvoke
{
Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004 ___platformUserAccountHandle_0;
char* ___platformUserAccountName_1;
char* ___platformUserAccountId_2;
int32_t ___deviceCount_3;
int32_t ___deviceStartIndex_4;
RuntimeObject* ___actions_5;
Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93 ___controlScheme_6;
MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1_marshaled_pinvoke ___controlSchemeMatch_7;
int32_t ___lostDeviceCount_8;
int32_t ___lostDeviceStartIndex_9;
int32_t ___flags_10;
};
// Native definition for COM marshalling of UnityEngine.InputSystem.Users.InputUser/UserData
struct UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA_marshaled_com
{
Nullable_1_t96B0CE53CDD5E046170F78F8CEB53F990846A004 ___platformUserAccountHandle_0;
Il2CppChar* ___platformUserAccountName_1;
Il2CppChar* ___platformUserAccountId_2;
int32_t ___deviceCount_3;
int32_t ___deviceStartIndex_4;
RuntimeObject* ___actions_5;
Nullable_1_tA2D20345703BD61B9E13381FFCD7FC1301B7EB93 ___controlScheme_6;
MatchResult_t8CF5EAEB20F7109CFEB76C3F3E7ACE36E2E8E0D1_marshaled_com ___controlSchemeMatch_7;
int32_t ___lostDeviceCount_8;
int32_t ___lostDeviceStartIndex_9;
int32_t ___flags_10;
};
// Mirror.Examples.RigidbodyPhysics.AddForce
struct AddForce_tF18B7028125777597A6AC1E6F16FC95A02956D9C : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Rigidbody Mirror.Examples.RigidbodyPhysics.AddForce::rigidbody3d
Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___rigidbody3d_11;
// System.Single Mirror.Examples.RigidbodyPhysics.AddForce::force
float ___force_12;
public:
inline static int32_t get_offset_of_rigidbody3d_11() { return static_cast<int32_t>(offsetof(AddForce_tF18B7028125777597A6AC1E6F16FC95A02956D9C, ___rigidbody3d_11)); }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_rigidbody3d_11() const { return ___rigidbody3d_11; }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_rigidbody3d_11() { return &___rigidbody3d_11; }
inline void set_rigidbody3d_11(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value)
{
___rigidbody3d_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rigidbody3d_11), (void*)value);
}
inline static int32_t get_offset_of_force_12() { return static_cast<int32_t>(offsetof(AddForce_tF18B7028125777597A6AC1E6F16FC95A02956D9C, ___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;
}
};
// Mirror.Examples.Additive.AdditiveNetworkManager
struct AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// UnityEngine.GameObject Mirror.Examples.Additive.AdditiveNetworkManager::Zone
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___Zone_34;
// System.String[] Mirror.Examples.Additive.AdditiveNetworkManager::subScenes
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___subScenes_35;
public:
inline static int32_t get_offset_of_Zone_34() { return static_cast<int32_t>(offsetof(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74, ___Zone_34)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_Zone_34() const { return ___Zone_34; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_Zone_34() { return &___Zone_34; }
inline void set_Zone_34(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___Zone_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Zone_34), (void*)value);
}
inline static int32_t get_offset_of_subScenes_35() { return static_cast<int32_t>(offsetof(AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74, ___subScenes_35)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_subScenes_35() const { return ___subScenes_35; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_subScenes_35() { return &___subScenes_35; }
inline void set_subScenes_35(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___subScenes_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subScenes_35), (void*)value);
}
};
// UnityEngine.XR.LegacyInputHelpers.ArmModel
struct ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 : public BasePoseProvider_t04EB173A7CC01D10EF789D54577ACAEBFAD5B04E
{
public:
// UnityEngine.Pose UnityEngine.XR.LegacyInputHelpers.ArmModel::m_FinalPose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_FinalPose_4;
// UnityEngine.XR.XRNode UnityEngine.XR.LegacyInputHelpers.ArmModel::m_PoseSource
int32_t ___m_PoseSource_5;
// UnityEngine.XR.XRNode UnityEngine.XR.LegacyInputHelpers.ArmModel::m_HeadPoseSource
int32_t ___m_HeadPoseSource_6;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ElbowRestPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_ElbowRestPosition_7;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_WristRestPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_WristRestPosition_8;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ControllerRestPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_ControllerRestPosition_9;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ArmExtensionOffset
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_ArmExtensionOffset_10;
// System.Single UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ElbowBendRatio
float ___m_ElbowBendRatio_11;
// System.Boolean UnityEngine.XR.LegacyInputHelpers.ArmModel::m_IsLockedToNeck
bool ___m_IsLockedToNeck_12;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_NeckPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_NeckPosition_13;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ElbowPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_ElbowPosition_14;
// UnityEngine.Quaternion UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ElbowRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_ElbowRotation_15;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_WristPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_WristPosition_16;
// UnityEngine.Quaternion UnityEngine.XR.LegacyInputHelpers.ArmModel::m_WristRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_WristRotation_17;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ControllerPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_ControllerPosition_18;
// UnityEngine.Quaternion UnityEngine.XR.LegacyInputHelpers.ArmModel::m_ControllerRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_ControllerRotation_19;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_HandedMultiplier
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_HandedMultiplier_20;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::m_TorsoDirection
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_TorsoDirection_21;
// UnityEngine.Quaternion UnityEngine.XR.LegacyInputHelpers.ArmModel::m_TorsoRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_TorsoRotation_22;
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.LegacyInputHelpers.ArmModel::xrNodeStateListOrientation
List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * ___xrNodeStateListOrientation_33;
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.LegacyInputHelpers.ArmModel::xrNodeStateListPosition
List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * ___xrNodeStateListPosition_34;
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.LegacyInputHelpers.ArmModel::xrNodeStateListAngularAcceleration
List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * ___xrNodeStateListAngularAcceleration_35;
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.LegacyInputHelpers.ArmModel::xrNodeStateListAngularVelocity
List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * ___xrNodeStateListAngularVelocity_36;
public:
inline static int32_t get_offset_of_m_FinalPose_4() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_FinalPose_4)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_FinalPose_4() const { return ___m_FinalPose_4; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_FinalPose_4() { return &___m_FinalPose_4; }
inline void set_m_FinalPose_4(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_FinalPose_4 = value;
}
inline static int32_t get_offset_of_m_PoseSource_5() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_PoseSource_5)); }
inline int32_t get_m_PoseSource_5() const { return ___m_PoseSource_5; }
inline int32_t* get_address_of_m_PoseSource_5() { return &___m_PoseSource_5; }
inline void set_m_PoseSource_5(int32_t value)
{
___m_PoseSource_5 = value;
}
inline static int32_t get_offset_of_m_HeadPoseSource_6() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_HeadPoseSource_6)); }
inline int32_t get_m_HeadPoseSource_6() const { return ___m_HeadPoseSource_6; }
inline int32_t* get_address_of_m_HeadPoseSource_6() { return &___m_HeadPoseSource_6; }
inline void set_m_HeadPoseSource_6(int32_t value)
{
___m_HeadPoseSource_6 = value;
}
inline static int32_t get_offset_of_m_ElbowRestPosition_7() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ElbowRestPosition_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_ElbowRestPosition_7() const { return ___m_ElbowRestPosition_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_ElbowRestPosition_7() { return &___m_ElbowRestPosition_7; }
inline void set_m_ElbowRestPosition_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_ElbowRestPosition_7 = value;
}
inline static int32_t get_offset_of_m_WristRestPosition_8() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_WristRestPosition_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_WristRestPosition_8() const { return ___m_WristRestPosition_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_WristRestPosition_8() { return &___m_WristRestPosition_8; }
inline void set_m_WristRestPosition_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_WristRestPosition_8 = value;
}
inline static int32_t get_offset_of_m_ControllerRestPosition_9() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ControllerRestPosition_9)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_ControllerRestPosition_9() const { return ___m_ControllerRestPosition_9; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_ControllerRestPosition_9() { return &___m_ControllerRestPosition_9; }
inline void set_m_ControllerRestPosition_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_ControllerRestPosition_9 = value;
}
inline static int32_t get_offset_of_m_ArmExtensionOffset_10() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ArmExtensionOffset_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_ArmExtensionOffset_10() const { return ___m_ArmExtensionOffset_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_ArmExtensionOffset_10() { return &___m_ArmExtensionOffset_10; }
inline void set_m_ArmExtensionOffset_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_ArmExtensionOffset_10 = value;
}
inline static int32_t get_offset_of_m_ElbowBendRatio_11() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ElbowBendRatio_11)); }
inline float get_m_ElbowBendRatio_11() const { return ___m_ElbowBendRatio_11; }
inline float* get_address_of_m_ElbowBendRatio_11() { return &___m_ElbowBendRatio_11; }
inline void set_m_ElbowBendRatio_11(float value)
{
___m_ElbowBendRatio_11 = value;
}
inline static int32_t get_offset_of_m_IsLockedToNeck_12() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_IsLockedToNeck_12)); }
inline bool get_m_IsLockedToNeck_12() const { return ___m_IsLockedToNeck_12; }
inline bool* get_address_of_m_IsLockedToNeck_12() { return &___m_IsLockedToNeck_12; }
inline void set_m_IsLockedToNeck_12(bool value)
{
___m_IsLockedToNeck_12 = value;
}
inline static int32_t get_offset_of_m_NeckPosition_13() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_NeckPosition_13)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_NeckPosition_13() const { return ___m_NeckPosition_13; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_NeckPosition_13() { return &___m_NeckPosition_13; }
inline void set_m_NeckPosition_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_NeckPosition_13 = value;
}
inline static int32_t get_offset_of_m_ElbowPosition_14() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ElbowPosition_14)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_ElbowPosition_14() const { return ___m_ElbowPosition_14; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_ElbowPosition_14() { return &___m_ElbowPosition_14; }
inline void set_m_ElbowPosition_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_ElbowPosition_14 = value;
}
inline static int32_t get_offset_of_m_ElbowRotation_15() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ElbowRotation_15)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_ElbowRotation_15() const { return ___m_ElbowRotation_15; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_ElbowRotation_15() { return &___m_ElbowRotation_15; }
inline void set_m_ElbowRotation_15(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___m_ElbowRotation_15 = value;
}
inline static int32_t get_offset_of_m_WristPosition_16() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_WristPosition_16)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_WristPosition_16() const { return ___m_WristPosition_16; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_WristPosition_16() { return &___m_WristPosition_16; }
inline void set_m_WristPosition_16(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_WristPosition_16 = value;
}
inline static int32_t get_offset_of_m_WristRotation_17() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_WristRotation_17)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_WristRotation_17() const { return ___m_WristRotation_17; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_WristRotation_17() { return &___m_WristRotation_17; }
inline void set_m_WristRotation_17(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___m_WristRotation_17 = value;
}
inline static int32_t get_offset_of_m_ControllerPosition_18() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ControllerPosition_18)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_ControllerPosition_18() const { return ___m_ControllerPosition_18; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_ControllerPosition_18() { return &___m_ControllerPosition_18; }
inline void set_m_ControllerPosition_18(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_ControllerPosition_18 = value;
}
inline static int32_t get_offset_of_m_ControllerRotation_19() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_ControllerRotation_19)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_ControllerRotation_19() const { return ___m_ControllerRotation_19; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_ControllerRotation_19() { return &___m_ControllerRotation_19; }
inline void set_m_ControllerRotation_19(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___m_ControllerRotation_19 = value;
}
inline static int32_t get_offset_of_m_HandedMultiplier_20() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_HandedMultiplier_20)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_HandedMultiplier_20() const { return ___m_HandedMultiplier_20; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_HandedMultiplier_20() { return &___m_HandedMultiplier_20; }
inline void set_m_HandedMultiplier_20(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_HandedMultiplier_20 = value;
}
inline static int32_t get_offset_of_m_TorsoDirection_21() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_TorsoDirection_21)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_TorsoDirection_21() const { return ___m_TorsoDirection_21; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_TorsoDirection_21() { return &___m_TorsoDirection_21; }
inline void set_m_TorsoDirection_21(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_TorsoDirection_21 = value;
}
inline static int32_t get_offset_of_m_TorsoRotation_22() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___m_TorsoRotation_22)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_TorsoRotation_22() const { return ___m_TorsoRotation_22; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_TorsoRotation_22() { return &___m_TorsoRotation_22; }
inline void set_m_TorsoRotation_22(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___m_TorsoRotation_22 = value;
}
inline static int32_t get_offset_of_xrNodeStateListOrientation_33() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___xrNodeStateListOrientation_33)); }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * get_xrNodeStateListOrientation_33() const { return ___xrNodeStateListOrientation_33; }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 ** get_address_of_xrNodeStateListOrientation_33() { return &___xrNodeStateListOrientation_33; }
inline void set_xrNodeStateListOrientation_33(List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * value)
{
___xrNodeStateListOrientation_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xrNodeStateListOrientation_33), (void*)value);
}
inline static int32_t get_offset_of_xrNodeStateListPosition_34() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___xrNodeStateListPosition_34)); }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * get_xrNodeStateListPosition_34() const { return ___xrNodeStateListPosition_34; }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 ** get_address_of_xrNodeStateListPosition_34() { return &___xrNodeStateListPosition_34; }
inline void set_xrNodeStateListPosition_34(List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * value)
{
___xrNodeStateListPosition_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xrNodeStateListPosition_34), (void*)value);
}
inline static int32_t get_offset_of_xrNodeStateListAngularAcceleration_35() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___xrNodeStateListAngularAcceleration_35)); }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * get_xrNodeStateListAngularAcceleration_35() const { return ___xrNodeStateListAngularAcceleration_35; }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 ** get_address_of_xrNodeStateListAngularAcceleration_35() { return &___xrNodeStateListAngularAcceleration_35; }
inline void set_xrNodeStateListAngularAcceleration_35(List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * value)
{
___xrNodeStateListAngularAcceleration_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xrNodeStateListAngularAcceleration_35), (void*)value);
}
inline static int32_t get_offset_of_xrNodeStateListAngularVelocity_36() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768, ___xrNodeStateListAngularVelocity_36)); }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * get_xrNodeStateListAngularVelocity_36() const { return ___xrNodeStateListAngularVelocity_36; }
inline List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 ** get_address_of_xrNodeStateListAngularVelocity_36() { return &___xrNodeStateListAngularVelocity_36; }
inline void set_xrNodeStateListAngularVelocity_36(List_1_t82E4873F3D4F1E8645F8EAD444668DC81AB70671 * value)
{
___xrNodeStateListAngularVelocity_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xrNodeStateListAngularVelocity_36), (void*)value);
}
};
struct ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::DEFAULT_ELBOW_REST_POSITION
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___DEFAULT_ELBOW_REST_POSITION_23;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::DEFAULT_WRIST_REST_POSITION
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___DEFAULT_WRIST_REST_POSITION_24;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::DEFAULT_CONTROLLER_REST_POSITION
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___DEFAULT_CONTROLLER_REST_POSITION_25;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::DEFAULT_ARM_EXTENSION_OFFSET
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___DEFAULT_ARM_EXTENSION_OFFSET_26;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::SHOULDER_POSITION
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___SHOULDER_POSITION_29;
// UnityEngine.Vector3 UnityEngine.XR.LegacyInputHelpers.ArmModel::NECK_OFFSET
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___NECK_OFFSET_30;
public:
inline static int32_t get_offset_of_DEFAULT_ELBOW_REST_POSITION_23() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields, ___DEFAULT_ELBOW_REST_POSITION_23)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_DEFAULT_ELBOW_REST_POSITION_23() const { return ___DEFAULT_ELBOW_REST_POSITION_23; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_DEFAULT_ELBOW_REST_POSITION_23() { return &___DEFAULT_ELBOW_REST_POSITION_23; }
inline void set_DEFAULT_ELBOW_REST_POSITION_23(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___DEFAULT_ELBOW_REST_POSITION_23 = value;
}
inline static int32_t get_offset_of_DEFAULT_WRIST_REST_POSITION_24() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields, ___DEFAULT_WRIST_REST_POSITION_24)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_DEFAULT_WRIST_REST_POSITION_24() const { return ___DEFAULT_WRIST_REST_POSITION_24; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_DEFAULT_WRIST_REST_POSITION_24() { return &___DEFAULT_WRIST_REST_POSITION_24; }
inline void set_DEFAULT_WRIST_REST_POSITION_24(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___DEFAULT_WRIST_REST_POSITION_24 = value;
}
inline static int32_t get_offset_of_DEFAULT_CONTROLLER_REST_POSITION_25() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields, ___DEFAULT_CONTROLLER_REST_POSITION_25)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_DEFAULT_CONTROLLER_REST_POSITION_25() const { return ___DEFAULT_CONTROLLER_REST_POSITION_25; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_DEFAULT_CONTROLLER_REST_POSITION_25() { return &___DEFAULT_CONTROLLER_REST_POSITION_25; }
inline void set_DEFAULT_CONTROLLER_REST_POSITION_25(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___DEFAULT_CONTROLLER_REST_POSITION_25 = value;
}
inline static int32_t get_offset_of_DEFAULT_ARM_EXTENSION_OFFSET_26() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields, ___DEFAULT_ARM_EXTENSION_OFFSET_26)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_DEFAULT_ARM_EXTENSION_OFFSET_26() const { return ___DEFAULT_ARM_EXTENSION_OFFSET_26; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_DEFAULT_ARM_EXTENSION_OFFSET_26() { return &___DEFAULT_ARM_EXTENSION_OFFSET_26; }
inline void set_DEFAULT_ARM_EXTENSION_OFFSET_26(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___DEFAULT_ARM_EXTENSION_OFFSET_26 = value;
}
inline static int32_t get_offset_of_SHOULDER_POSITION_29() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields, ___SHOULDER_POSITION_29)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_SHOULDER_POSITION_29() const { return ___SHOULDER_POSITION_29; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_SHOULDER_POSITION_29() { return &___SHOULDER_POSITION_29; }
inline void set_SHOULDER_POSITION_29(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___SHOULDER_POSITION_29 = value;
}
inline static int32_t get_offset_of_NECK_OFFSET_30() { return static_cast<int32_t>(offsetof(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields, ___NECK_OFFSET_30)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_NECK_OFFSET_30() const { return ___NECK_OFFSET_30; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_NECK_OFFSET_30() { return &___NECK_OFFSET_30; }
inline void set_NECK_OFFSET_30(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___NECK_OFFSET_30 = value;
}
};
// Mirror.Cloud.Examples.Pong.Ball
struct Ball_t57C5E8A56C7477F141707A23D7E370100760A87F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Cloud.Examples.Pong.Ball::speed
float ___speed_11;
// UnityEngine.Rigidbody2D Mirror.Cloud.Examples.Pong.Ball::rigidbody2d
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * ___rigidbody2d_12;
public:
inline static int32_t get_offset_of_speed_11() { return static_cast<int32_t>(offsetof(Ball_t57C5E8A56C7477F141707A23D7E370100760A87F, ___speed_11)); }
inline float get_speed_11() const { return ___speed_11; }
inline float* get_address_of_speed_11() { return &___speed_11; }
inline void set_speed_11(float value)
{
___speed_11 = value;
}
inline static int32_t get_offset_of_rigidbody2d_12() { return static_cast<int32_t>(offsetof(Ball_t57C5E8A56C7477F141707A23D7E370100760A87F, ___rigidbody2d_12)); }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * get_rigidbody2d_12() const { return ___rigidbody2d_12; }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 ** get_address_of_rigidbody2d_12() { return &___rigidbody2d_12; }
inline void set_rigidbody2d_12(Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * value)
{
___rigidbody2d_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rigidbody2d_12), (void*)value);
}
};
// Mirror.Examples.Pong.Ball
struct Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Examples.Pong.Ball::speed
float ___speed_11;
// UnityEngine.Rigidbody2D Mirror.Examples.Pong.Ball::rigidbody2d
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * ___rigidbody2d_12;
public:
inline static int32_t get_offset_of_speed_11() { return static_cast<int32_t>(offsetof(Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0, ___speed_11)); }
inline float get_speed_11() const { return ___speed_11; }
inline float* get_address_of_speed_11() { return &___speed_11; }
inline void set_speed_11(float value)
{
___speed_11 = value;
}
inline static int32_t get_offset_of_rigidbody2d_12() { return static_cast<int32_t>(offsetof(Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0, ___rigidbody2d_12)); }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * get_rigidbody2d_12() const { return ___rigidbody2d_12; }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 ** get_address_of_rigidbody2d_12() { return &___rigidbody2d_12; }
inline void set_rigidbody2d_12(Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * value)
{
___rigidbody2d_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rigidbody2d_12), (void*)value);
}
};
// Mirror.Cloud.Examples.Pong.BallManager
struct BallManager_tD1AA2FF85A9C46DDAC9EE1B2C798E9A141508C5B : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.GameObject Mirror.Cloud.Examples.Pong.BallManager::ballPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___ballPrefab_11;
// UnityEngine.GameObject Mirror.Cloud.Examples.Pong.BallManager::ball
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___ball_12;
// Mirror.Cloud.Example.NetworkManagerListServerPong Mirror.Cloud.Examples.Pong.BallManager::manager
NetworkManagerListServerPong_tFD0529F7ADF9CE633C97C0815CBA838C5A5D8BD5 * ___manager_13;
public:
inline static int32_t get_offset_of_ballPrefab_11() { return static_cast<int32_t>(offsetof(BallManager_tD1AA2FF85A9C46DDAC9EE1B2C798E9A141508C5B, ___ballPrefab_11)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_ballPrefab_11() const { return ___ballPrefab_11; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_ballPrefab_11() { return &___ballPrefab_11; }
inline void set_ballPrefab_11(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___ballPrefab_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ballPrefab_11), (void*)value);
}
inline static int32_t get_offset_of_ball_12() { return static_cast<int32_t>(offsetof(BallManager_tD1AA2FF85A9C46DDAC9EE1B2C798E9A141508C5B, ___ball_12)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_ball_12() const { return ___ball_12; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_ball_12() { return &___ball_12; }
inline void set_ball_12(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___ball_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ball_12), (void*)value);
}
inline static int32_t get_offset_of_manager_13() { return static_cast<int32_t>(offsetof(BallManager_tD1AA2FF85A9C46DDAC9EE1B2C798E9A141508C5B, ___manager_13)); }
inline NetworkManagerListServerPong_tFD0529F7ADF9CE633C97C0815CBA838C5A5D8BD5 * get_manager_13() const { return ___manager_13; }
inline NetworkManagerListServerPong_tFD0529F7ADF9CE633C97C0815CBA838C5A5D8BD5 ** get_address_of_manager_13() { return &___manager_13; }
inline void set_manager_13(NetworkManagerListServerPong_tFD0529F7ADF9CE633C97C0815CBA838C5A5D8BD5 * value)
{
___manager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___manager_13), (void*)value);
}
};
// UnityEngine.EventSystems.BaseInput
struct BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E
{
public:
public:
};
// UnityEngine.EventSystems.BaseInputModule
struct BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.BaseInputModule::m_RaycastResultCache
List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447 * ___m_RaycastResultCache_4;
// UnityEngine.EventSystems.AxisEventData UnityEngine.EventSystems.BaseInputModule::m_AxisEventData
AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * ___m_AxisEventData_5;
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseInputModule::m_EventSystem
EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * ___m_EventSystem_6;
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.BaseInputModule::m_BaseEventData
BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E * ___m_BaseEventData_7;
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::m_InputOverride
BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D * ___m_InputOverride_8;
// UnityEngine.EventSystems.BaseInput UnityEngine.EventSystems.BaseInputModule::m_DefaultInput
BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D * ___m_DefaultInput_9;
public:
inline static int32_t get_offset_of_m_RaycastResultCache_4() { return static_cast<int32_t>(offsetof(BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924, ___m_RaycastResultCache_4)); }
inline List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447 * get_m_RaycastResultCache_4() const { return ___m_RaycastResultCache_4; }
inline List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447 ** get_address_of_m_RaycastResultCache_4() { return &___m_RaycastResultCache_4; }
inline void set_m_RaycastResultCache_4(List_1_t367B604D3EA3D6A9EC95A32A521EF83F5DA9B447 * value)
{
___m_RaycastResultCache_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RaycastResultCache_4), (void*)value);
}
inline static int32_t get_offset_of_m_AxisEventData_5() { return static_cast<int32_t>(offsetof(BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924, ___m_AxisEventData_5)); }
inline AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * get_m_AxisEventData_5() const { return ___m_AxisEventData_5; }
inline AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E ** get_address_of_m_AxisEventData_5() { return &___m_AxisEventData_5; }
inline void set_m_AxisEventData_5(AxisEventData_t5F2EE83206BFD1BC59087D1C9CE31A4389A17E1E * value)
{
___m_AxisEventData_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AxisEventData_5), (void*)value);
}
inline static int32_t get_offset_of_m_EventSystem_6() { return static_cast<int32_t>(offsetof(BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924, ___m_EventSystem_6)); }
inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * get_m_EventSystem_6() const { return ___m_EventSystem_6; }
inline EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C ** get_address_of_m_EventSystem_6() { return &___m_EventSystem_6; }
inline void set_m_EventSystem_6(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C * value)
{
___m_EventSystem_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_6), (void*)value);
}
inline static int32_t get_offset_of_m_BaseEventData_7() { return static_cast<int32_t>(offsetof(BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924, ___m_BaseEventData_7)); }
inline BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E * get_m_BaseEventData_7() const { return ___m_BaseEventData_7; }
inline BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E ** get_address_of_m_BaseEventData_7() { return &___m_BaseEventData_7; }
inline void set_m_BaseEventData_7(BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E * value)
{
___m_BaseEventData_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_BaseEventData_7), (void*)value);
}
inline static int32_t get_offset_of_m_InputOverride_8() { return static_cast<int32_t>(offsetof(BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924, ___m_InputOverride_8)); }
inline BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D * get_m_InputOverride_8() const { return ___m_InputOverride_8; }
inline BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D ** get_address_of_m_InputOverride_8() { return &___m_InputOverride_8; }
inline void set_m_InputOverride_8(BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D * value)
{
___m_InputOverride_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_InputOverride_8), (void*)value);
}
inline static int32_t get_offset_of_m_DefaultInput_9() { return static_cast<int32_t>(offsetof(BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924, ___m_DefaultInput_9)); }
inline BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D * get_m_DefaultInput_9() const { return ___m_DefaultInput_9; }
inline BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D ** get_address_of_m_DefaultInput_9() { return &___m_DefaultInput_9; }
inline void set_m_DefaultInput_9(BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D * value)
{
___m_DefaultInput_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultInput_9), (void*)value);
}
};
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E
{
public:
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.BaseRaycaster::m_RootRaycaster
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___m_RootRaycaster_4;
public:
inline static int32_t get_offset_of_m_RootRaycaster_4() { return static_cast<int32_t>(offsetof(BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876, ___m_RootRaycaster_4)); }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * get_m_RootRaycaster_4() const { return ___m_RootRaycaster_4; }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 ** get_address_of_m_RootRaycaster_4() { return &___m_RootRaycaster_4; }
inline void set_m_RootRaycaster_4(BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * value)
{
___m_RootRaycaster_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RootRaycaster_4), (void*)value);
}
};
// Mirror.Authenticators.BasicAuthenticator
struct BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309 : public NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF
{
public:
// System.String Mirror.Authenticators.BasicAuthenticator::username
String_t* ___username_6;
// System.String Mirror.Authenticators.BasicAuthenticator::password
String_t* ___password_7;
public:
inline static int32_t get_offset_of_username_6() { return static_cast<int32_t>(offsetof(BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309, ___username_6)); }
inline String_t* get_username_6() const { return ___username_6; }
inline String_t** get_address_of_username_6() { return &___username_6; }
inline void set_username_6(String_t* value)
{
___username_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___username_6), (void*)value);
}
inline static int32_t get_offset_of_password_7() { return static_cast<int32_t>(offsetof(BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309, ___password_7)); }
inline String_t* get_password_7() const { return ___password_7; }
inline String_t** get_address_of_password_7() { return &___password_7; }
inline void set_password_7(String_t* value)
{
___password_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___password_7), (void*)value);
}
};
// Mirror.Examples.Basic.BasicNetManager
struct BasicNetManager_tB15C500A2F664126167191661202A8EA20B64728 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// System.Collections.Generic.List`1<Mirror.Examples.Basic.Player> Mirror.Examples.Basic.BasicNetManager::playersList
List_1_t7EE8AD10A31DC45B87819C12220F9C5FCB9BC828 * ___playersList_34;
// UnityEngine.RectTransform Mirror.Examples.Basic.BasicNetManager::mainPanel
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___mainPanel_35;
// UnityEngine.RectTransform Mirror.Examples.Basic.BasicNetManager::playersPanel
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___playersPanel_36;
public:
inline static int32_t get_offset_of_playersList_34() { return static_cast<int32_t>(offsetof(BasicNetManager_tB15C500A2F664126167191661202A8EA20B64728, ___playersList_34)); }
inline List_1_t7EE8AD10A31DC45B87819C12220F9C5FCB9BC828 * get_playersList_34() const { return ___playersList_34; }
inline List_1_t7EE8AD10A31DC45B87819C12220F9C5FCB9BC828 ** get_address_of_playersList_34() { return &___playersList_34; }
inline void set_playersList_34(List_1_t7EE8AD10A31DC45B87819C12220F9C5FCB9BC828 * value)
{
___playersList_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playersList_34), (void*)value);
}
inline static int32_t get_offset_of_mainPanel_35() { return static_cast<int32_t>(offsetof(BasicNetManager_tB15C500A2F664126167191661202A8EA20B64728, ___mainPanel_35)); }
inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_mainPanel_35() const { return ___mainPanel_35; }
inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_mainPanel_35() { return &___mainPanel_35; }
inline void set_mainPanel_35(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value)
{
___mainPanel_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mainPanel_35), (void*)value);
}
inline static int32_t get_offset_of_playersPanel_36() { return static_cast<int32_t>(offsetof(BasicNetManager_tB15C500A2F664126167191661202A8EA20B64728, ___playersPanel_36)); }
inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_playersPanel_36() const { return ___playersPanel_36; }
inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_playersPanel_36() { return &___playersPanel_36; }
inline void set_playersPanel_36(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value)
{
___playersPanel_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playersPanel_36), (void*)value);
}
};
// Mirror.Examples.Benchmark.BenchmarkNetworkManager
struct BenchmarkNetworkManager_tB9D28DD802BEFE9ABA02BBB41CBD12CED54538C5 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// UnityEngine.GameObject Mirror.Examples.Benchmark.BenchmarkNetworkManager::spawnPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___spawnPrefab_34;
// System.Int32 Mirror.Examples.Benchmark.BenchmarkNetworkManager::spawnAmount
int32_t ___spawnAmount_35;
// System.Single Mirror.Examples.Benchmark.BenchmarkNetworkManager::interleave
float ___interleave_36;
public:
inline static int32_t get_offset_of_spawnPrefab_34() { return static_cast<int32_t>(offsetof(BenchmarkNetworkManager_tB9D28DD802BEFE9ABA02BBB41CBD12CED54538C5, ___spawnPrefab_34)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_spawnPrefab_34() const { return ___spawnPrefab_34; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_spawnPrefab_34() { return &___spawnPrefab_34; }
inline void set_spawnPrefab_34(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___spawnPrefab_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___spawnPrefab_34), (void*)value);
}
inline static int32_t get_offset_of_spawnAmount_35() { return static_cast<int32_t>(offsetof(BenchmarkNetworkManager_tB9D28DD802BEFE9ABA02BBB41CBD12CED54538C5, ___spawnAmount_35)); }
inline int32_t get_spawnAmount_35() const { return ___spawnAmount_35; }
inline int32_t* get_address_of_spawnAmount_35() { return &___spawnAmount_35; }
inline void set_spawnAmount_35(int32_t value)
{
___spawnAmount_35 = value;
}
inline static int32_t get_offset_of_interleave_36() { return static_cast<int32_t>(offsetof(BenchmarkNetworkManager_tB9D28DD802BEFE9ABA02BBB41CBD12CED54538C5, ___interleave_36)); }
inline float get_interleave_36() const { return ___interleave_36; }
inline float* get_address_of_interleave_36() { return &___interleave_36; }
inline void set_interleave_36(float value)
{
___interleave_36 = value;
}
};
// UnityEngine.InputSystem.Controls.ButtonControl
struct ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE : public AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD
{
public:
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::pressPoint
float ___pressPoint_33;
public:
inline static int32_t get_offset_of_pressPoint_33() { return static_cast<int32_t>(offsetof(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE, ___pressPoint_33)); }
inline float get_pressPoint_33() const { return ___pressPoint_33; }
inline float* get_address_of_pressPoint_33() { return &___pressPoint_33; }
inline void set_pressPoint_33(float value)
{
___pressPoint_33 = value;
}
};
struct ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE_StaticFields
{
public:
// System.Single UnityEngine.InputSystem.Controls.ButtonControl::s_GlobalDefaultButtonPressPoint
float ___s_GlobalDefaultButtonPressPoint_34;
public:
inline static int32_t get_offset_of_s_GlobalDefaultButtonPressPoint_34() { return static_cast<int32_t>(offsetof(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE_StaticFields, ___s_GlobalDefaultButtonPressPoint_34)); }
inline float get_s_GlobalDefaultButtonPressPoint_34() const { return ___s_GlobalDefaultButtonPressPoint_34; }
inline float* get_address_of_s_GlobalDefaultButtonPressPoint_34() { return &___s_GlobalDefaultButtonPressPoint_34; }
inline void set_s_GlobalDefaultButtonPressPoint_34(float value)
{
___s_GlobalDefaultButtonPressPoint_34 = value;
}
};
// Mirror.Examples.Chat.ChatNetworkManager
struct ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// Mirror.Examples.Chat.ChatWindow Mirror.Examples.Chat.ChatNetworkManager::chatWindow
ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B * ___chatWindow_34;
// System.String Mirror.Examples.Chat.ChatNetworkManager::<PlayerName>k__BackingField
String_t* ___U3CPlayerNameU3Ek__BackingField_35;
public:
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);
}
inline static int32_t get_offset_of_U3CPlayerNameU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355, ___U3CPlayerNameU3Ek__BackingField_35)); }
inline String_t* get_U3CPlayerNameU3Ek__BackingField_35() const { return ___U3CPlayerNameU3Ek__BackingField_35; }
inline String_t** get_address_of_U3CPlayerNameU3Ek__BackingField_35() { return &___U3CPlayerNameU3Ek__BackingField_35; }
inline void set_U3CPlayerNameU3Ek__BackingField_35(String_t* value)
{
___U3CPlayerNameU3Ek__BackingField_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CPlayerNameU3Ek__BackingField_35), (void*)value);
}
};
// Mirror.DistanceInterestManagement
struct DistanceInterestManagement_t0560BD33FFDEC8104EA226337743E0B61A9672E2 : public InterestManagement_tD79A9D8F926F818D953AD8C27ECF2FB03B6327A7
{
public:
// System.Int32 Mirror.DistanceInterestManagement::visRange
int32_t ___visRange_4;
// System.Single Mirror.DistanceInterestManagement::rebuildInterval
float ___rebuildInterval_5;
// System.Double Mirror.DistanceInterestManagement::lastRebuildTime
double ___lastRebuildTime_6;
public:
inline static int32_t get_offset_of_visRange_4() { return static_cast<int32_t>(offsetof(DistanceInterestManagement_t0560BD33FFDEC8104EA226337743E0B61A9672E2, ___visRange_4)); }
inline int32_t get_visRange_4() const { return ___visRange_4; }
inline int32_t* get_address_of_visRange_4() { return &___visRange_4; }
inline void set_visRange_4(int32_t value)
{
___visRange_4 = value;
}
inline static int32_t get_offset_of_rebuildInterval_5() { return static_cast<int32_t>(offsetof(DistanceInterestManagement_t0560BD33FFDEC8104EA226337743E0B61A9672E2, ___rebuildInterval_5)); }
inline float get_rebuildInterval_5() const { return ___rebuildInterval_5; }
inline float* get_address_of_rebuildInterval_5() { return &___rebuildInterval_5; }
inline void set_rebuildInterval_5(float value)
{
___rebuildInterval_5 = value;
}
inline static int32_t get_offset_of_lastRebuildTime_6() { return static_cast<int32_t>(offsetof(DistanceInterestManagement_t0560BD33FFDEC8104EA226337743E0B61A9672E2, ___lastRebuildTime_6)); }
inline double get_lastRebuildTime_6() const { return ___lastRebuildTime_6; }
inline double* get_address_of_lastRebuildTime_6() { return &___lastRebuildTime_6; }
inline void set_lastRebuildTime_6(double value)
{
___lastRebuildTime_6 = value;
}
};
// UnityEngine.InputSystem.Controls.DpadControl
struct DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049 : public Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.DpadControl::<up>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CupU3Ek__BackingField_24;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.DpadControl::<down>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CdownU3Ek__BackingField_25;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.DpadControl::<left>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CleftU3Ek__BackingField_26;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.DpadControl::<right>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CrightU3Ek__BackingField_27;
public:
inline static int32_t get_offset_of_U3CupU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049, ___U3CupU3Ek__BackingField_24)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CupU3Ek__BackingField_24() const { return ___U3CupU3Ek__BackingField_24; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CupU3Ek__BackingField_24() { return &___U3CupU3Ek__BackingField_24; }
inline void set_U3CupU3Ek__BackingField_24(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CupU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CupU3Ek__BackingField_24), (void*)value);
}
inline static int32_t get_offset_of_U3CdownU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049, ___U3CdownU3Ek__BackingField_25)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CdownU3Ek__BackingField_25() const { return ___U3CdownU3Ek__BackingField_25; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CdownU3Ek__BackingField_25() { return &___U3CdownU3Ek__BackingField_25; }
inline void set_U3CdownU3Ek__BackingField_25(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CdownU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdownU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_U3CleftU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049, ___U3CleftU3Ek__BackingField_26)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CleftU3Ek__BackingField_26() const { return ___U3CleftU3Ek__BackingField_26; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CleftU3Ek__BackingField_26() { return &___U3CleftU3Ek__BackingField_26; }
inline void set_U3CleftU3Ek__BackingField_26(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CleftU3Ek__BackingField_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftU3Ek__BackingField_26), (void*)value);
}
inline static int32_t get_offset_of_U3CrightU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049, ___U3CrightU3Ek__BackingField_27)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CrightU3Ek__BackingField_27() const { return ___U3CrightU3Ek__BackingField_27; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CrightU3Ek__BackingField_27() { return &___U3CrightU3Ek__BackingField_27; }
inline void set_U3CrightU3Ek__BackingField_27(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CrightU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightU3Ek__BackingField_27), (void*)value);
}
};
// UnityEngine.InputSystem.DualShock.DualShockGamepad
struct DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9 : public Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<touchpadButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CtouchpadButtonU3Ek__BackingField_54;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<optionsButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CoptionsButtonU3Ek__BackingField_55;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<shareButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CshareButtonU3Ek__BackingField_56;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<L1>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CL1U3Ek__BackingField_57;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<R1>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CR1U3Ek__BackingField_58;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<L2>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CL2U3Ek__BackingField_59;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<R2>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CR2U3Ek__BackingField_60;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<L3>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CL3U3Ek__BackingField_61;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShockGamepad::<R3>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CR3U3Ek__BackingField_62;
public:
inline static int32_t get_offset_of_U3CtouchpadButtonU3Ek__BackingField_54() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CtouchpadButtonU3Ek__BackingField_54)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CtouchpadButtonU3Ek__BackingField_54() const { return ___U3CtouchpadButtonU3Ek__BackingField_54; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CtouchpadButtonU3Ek__BackingField_54() { return &___U3CtouchpadButtonU3Ek__BackingField_54; }
inline void set_U3CtouchpadButtonU3Ek__BackingField_54(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CtouchpadButtonU3Ek__BackingField_54 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtouchpadButtonU3Ek__BackingField_54), (void*)value);
}
inline static int32_t get_offset_of_U3CoptionsButtonU3Ek__BackingField_55() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CoptionsButtonU3Ek__BackingField_55)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CoptionsButtonU3Ek__BackingField_55() const { return ___U3CoptionsButtonU3Ek__BackingField_55; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CoptionsButtonU3Ek__BackingField_55() { return &___U3CoptionsButtonU3Ek__BackingField_55; }
inline void set_U3CoptionsButtonU3Ek__BackingField_55(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CoptionsButtonU3Ek__BackingField_55 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CoptionsButtonU3Ek__BackingField_55), (void*)value);
}
inline static int32_t get_offset_of_U3CshareButtonU3Ek__BackingField_56() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CshareButtonU3Ek__BackingField_56)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CshareButtonU3Ek__BackingField_56() const { return ___U3CshareButtonU3Ek__BackingField_56; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CshareButtonU3Ek__BackingField_56() { return &___U3CshareButtonU3Ek__BackingField_56; }
inline void set_U3CshareButtonU3Ek__BackingField_56(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CshareButtonU3Ek__BackingField_56 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CshareButtonU3Ek__BackingField_56), (void*)value);
}
inline static int32_t get_offset_of_U3CL1U3Ek__BackingField_57() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CL1U3Ek__BackingField_57)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CL1U3Ek__BackingField_57() const { return ___U3CL1U3Ek__BackingField_57; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CL1U3Ek__BackingField_57() { return &___U3CL1U3Ek__BackingField_57; }
inline void set_U3CL1U3Ek__BackingField_57(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CL1U3Ek__BackingField_57 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CL1U3Ek__BackingField_57), (void*)value);
}
inline static int32_t get_offset_of_U3CR1U3Ek__BackingField_58() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CR1U3Ek__BackingField_58)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CR1U3Ek__BackingField_58() const { return ___U3CR1U3Ek__BackingField_58; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CR1U3Ek__BackingField_58() { return &___U3CR1U3Ek__BackingField_58; }
inline void set_U3CR1U3Ek__BackingField_58(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CR1U3Ek__BackingField_58 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CR1U3Ek__BackingField_58), (void*)value);
}
inline static int32_t get_offset_of_U3CL2U3Ek__BackingField_59() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CL2U3Ek__BackingField_59)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CL2U3Ek__BackingField_59() const { return ___U3CL2U3Ek__BackingField_59; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CL2U3Ek__BackingField_59() { return &___U3CL2U3Ek__BackingField_59; }
inline void set_U3CL2U3Ek__BackingField_59(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CL2U3Ek__BackingField_59 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CL2U3Ek__BackingField_59), (void*)value);
}
inline static int32_t get_offset_of_U3CR2U3Ek__BackingField_60() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CR2U3Ek__BackingField_60)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CR2U3Ek__BackingField_60() const { return ___U3CR2U3Ek__BackingField_60; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CR2U3Ek__BackingField_60() { return &___U3CR2U3Ek__BackingField_60; }
inline void set_U3CR2U3Ek__BackingField_60(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CR2U3Ek__BackingField_60 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CR2U3Ek__BackingField_60), (void*)value);
}
inline static int32_t get_offset_of_U3CL3U3Ek__BackingField_61() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CL3U3Ek__BackingField_61)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CL3U3Ek__BackingField_61() const { return ___U3CL3U3Ek__BackingField_61; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CL3U3Ek__BackingField_61() { return &___U3CL3U3Ek__BackingField_61; }
inline void set_U3CL3U3Ek__BackingField_61(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CL3U3Ek__BackingField_61 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CL3U3Ek__BackingField_61), (void*)value);
}
inline static int32_t get_offset_of_U3CR3U3Ek__BackingField_62() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9, ___U3CR3U3Ek__BackingField_62)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CR3U3Ek__BackingField_62() const { return ___U3CR3U3Ek__BackingField_62; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CR3U3Ek__BackingField_62() { return &___U3CR3U3Ek__BackingField_62; }
inline void set_U3CR3U3Ek__BackingField_62(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CR3U3Ek__BackingField_62 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CR3U3Ek__BackingField_62), (void*)value);
}
};
struct DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9_StaticFields
{
public:
// UnityEngine.InputSystem.DualShock.DualShockGamepad UnityEngine.InputSystem.DualShock.DualShockGamepad::<current>k__BackingField
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9 * ___U3CcurrentU3Ek__BackingField_63;
public:
inline static int32_t get_offset_of_U3CcurrentU3Ek__BackingField_63() { return static_cast<int32_t>(offsetof(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9_StaticFields, ___U3CcurrentU3Ek__BackingField_63)); }
inline DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9 * get_U3CcurrentU3Ek__BackingField_63() const { return ___U3CcurrentU3Ek__BackingField_63; }
inline DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9 ** get_address_of_U3CcurrentU3Ek__BackingField_63() { return &___U3CcurrentU3Ek__BackingField_63; }
inline void set_U3CcurrentU3Ek__BackingField_63(DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9 * value)
{
___U3CcurrentU3Ek__BackingField_63 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcurrentU3Ek__BackingField_63), (void*)value);
}
};
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule> UnityEngine.EventSystems.EventSystem::m_SystemInputModules
List_1_t39946D94B66FAE9B0DED5D3A84AD116AF9DDDCC1 * ___m_SystemInputModules_4;
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::m_CurrentInputModule
BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924 * ___m_CurrentInputModule_5;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_FirstSelected
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_FirstSelected_7;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_sendNavigationEvents
bool ___m_sendNavigationEvents_8;
// System.Int32 UnityEngine.EventSystems.EventSystem::m_DragThreshold
int32_t ___m_DragThreshold_9;
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_CurrentSelected
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_CurrentSelected_10;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_HasFocus
bool ___m_HasFocus_11;
// System.Boolean UnityEngine.EventSystems.EventSystem::m_SelectionGuard
bool ___m_SelectionGuard_12;
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.EventSystem::m_DummyData
BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E * ___m_DummyData_13;
public:
inline static int32_t get_offset_of_m_SystemInputModules_4() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_SystemInputModules_4)); }
inline List_1_t39946D94B66FAE9B0DED5D3A84AD116AF9DDDCC1 * get_m_SystemInputModules_4() const { return ___m_SystemInputModules_4; }
inline List_1_t39946D94B66FAE9B0DED5D3A84AD116AF9DDDCC1 ** get_address_of_m_SystemInputModules_4() { return &___m_SystemInputModules_4; }
inline void set_m_SystemInputModules_4(List_1_t39946D94B66FAE9B0DED5D3A84AD116AF9DDDCC1 * value)
{
___m_SystemInputModules_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SystemInputModules_4), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentInputModule_5() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_CurrentInputModule_5)); }
inline BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924 * get_m_CurrentInputModule_5() const { return ___m_CurrentInputModule_5; }
inline BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924 ** get_address_of_m_CurrentInputModule_5() { return &___m_CurrentInputModule_5; }
inline void set_m_CurrentInputModule_5(BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924 * value)
{
___m_CurrentInputModule_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentInputModule_5), (void*)value);
}
inline static int32_t get_offset_of_m_FirstSelected_7() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_FirstSelected_7)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_FirstSelected_7() const { return ___m_FirstSelected_7; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_FirstSelected_7() { return &___m_FirstSelected_7; }
inline void set_m_FirstSelected_7(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_FirstSelected_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FirstSelected_7), (void*)value);
}
inline static int32_t get_offset_of_m_sendNavigationEvents_8() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_sendNavigationEvents_8)); }
inline bool get_m_sendNavigationEvents_8() const { return ___m_sendNavigationEvents_8; }
inline bool* get_address_of_m_sendNavigationEvents_8() { return &___m_sendNavigationEvents_8; }
inline void set_m_sendNavigationEvents_8(bool value)
{
___m_sendNavigationEvents_8 = value;
}
inline static int32_t get_offset_of_m_DragThreshold_9() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_DragThreshold_9)); }
inline int32_t get_m_DragThreshold_9() const { return ___m_DragThreshold_9; }
inline int32_t* get_address_of_m_DragThreshold_9() { return &___m_DragThreshold_9; }
inline void set_m_DragThreshold_9(int32_t value)
{
___m_DragThreshold_9 = value;
}
inline static int32_t get_offset_of_m_CurrentSelected_10() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_CurrentSelected_10)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_CurrentSelected_10() const { return ___m_CurrentSelected_10; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_CurrentSelected_10() { return &___m_CurrentSelected_10; }
inline void set_m_CurrentSelected_10(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_CurrentSelected_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentSelected_10), (void*)value);
}
inline static int32_t get_offset_of_m_HasFocus_11() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_HasFocus_11)); }
inline bool get_m_HasFocus_11() const { return ___m_HasFocus_11; }
inline bool* get_address_of_m_HasFocus_11() { return &___m_HasFocus_11; }
inline void set_m_HasFocus_11(bool value)
{
___m_HasFocus_11 = value;
}
inline static int32_t get_offset_of_m_SelectionGuard_12() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_SelectionGuard_12)); }
inline bool get_m_SelectionGuard_12() const { return ___m_SelectionGuard_12; }
inline bool* get_address_of_m_SelectionGuard_12() { return &___m_SelectionGuard_12; }
inline void set_m_SelectionGuard_12(bool value)
{
___m_SelectionGuard_12 = value;
}
inline static int32_t get_offset_of_m_DummyData_13() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C, ___m_DummyData_13)); }
inline BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E * get_m_DummyData_13() const { return ___m_DummyData_13; }
inline BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E ** get_address_of_m_DummyData_13() { return &___m_DummyData_13; }
inline void set_m_DummyData_13(BaseEventData_t722C48843CF21B50E06CC0E2E679415E38A7444E * value)
{
___m_DummyData_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DummyData_13), (void*)value);
}
};
struct EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem> UnityEngine.EventSystems.EventSystem::m_EventSystems
List_1_tEF3D2378B547F18609950BEABF54AF34FBBC9733 * ___m_EventSystems_6;
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.EventSystem::s_RaycastComparer
Comparison_1_t47C8B3739FFDD51D29B281A2FD2C36A57DDF9E38 * ___s_RaycastComparer_14;
public:
inline static int32_t get_offset_of_m_EventSystems_6() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C_StaticFields, ___m_EventSystems_6)); }
inline List_1_tEF3D2378B547F18609950BEABF54AF34FBBC9733 * get_m_EventSystems_6() const { return ___m_EventSystems_6; }
inline List_1_tEF3D2378B547F18609950BEABF54AF34FBBC9733 ** get_address_of_m_EventSystems_6() { return &___m_EventSystems_6; }
inline void set_m_EventSystems_6(List_1_tEF3D2378B547F18609950BEABF54AF34FBBC9733 * value)
{
___m_EventSystems_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystems_6), (void*)value);
}
inline static int32_t get_offset_of_s_RaycastComparer_14() { return static_cast<int32_t>(offsetof(EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C_StaticFields, ___s_RaycastComparer_14)); }
inline Comparison_1_t47C8B3739FFDD51D29B281A2FD2C36A57DDF9E38 * get_s_RaycastComparer_14() const { return ___s_RaycastComparer_14; }
inline Comparison_1_t47C8B3739FFDD51D29B281A2FD2C36A57DDF9E38 ** get_address_of_s_RaycastComparer_14() { return &___s_RaycastComparer_14; }
inline void set_s_RaycastComparer_14(Comparison_1_t47C8B3739FFDD51D29B281A2FD2C36A57DDF9E38 * value)
{
___s_RaycastComparer_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_RaycastComparer_14), (void*)value);
}
};
// LocalPlayer
struct LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.GameObject LocalPlayer::rig
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rig_11;
// UnityEngine.GameObject LocalPlayer::camera
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___camera_12;
// UnityEngine.GameObject LocalPlayer::rightArm
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rightArm_13;
// UnityEngine.GameObject LocalPlayer::leftArm
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___leftArm_14;
public:
inline static int32_t get_offset_of_rig_11() { return static_cast<int32_t>(offsetof(LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC, ___rig_11)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_rig_11() const { return ___rig_11; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_rig_11() { return &___rig_11; }
inline void set_rig_11(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___rig_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rig_11), (void*)value);
}
inline static int32_t get_offset_of_camera_12() { return static_cast<int32_t>(offsetof(LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC, ___camera_12)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_camera_12() const { return ___camera_12; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_camera_12() { return &___camera_12; }
inline void set_camera_12(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___camera_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___camera_12), (void*)value);
}
inline static int32_t get_offset_of_rightArm_13() { return static_cast<int32_t>(offsetof(LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC, ___rightArm_13)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_rightArm_13() const { return ___rightArm_13; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_rightArm_13() { return &___rightArm_13; }
inline void set_rightArm_13(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___rightArm_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rightArm_13), (void*)value);
}
inline static int32_t get_offset_of_leftArm_14() { return static_cast<int32_t>(offsetof(LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC, ___leftArm_14)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_leftArm_14() const { return ___leftArm_14; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_leftArm_14() { return &___leftArm_14; }
inline void set_leftArm_14(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___leftArm_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___leftArm_14), (void*)value);
}
};
// Mirror.Examples.MultipleMatch.MatchController
struct MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// Mirror.SyncDictionary`2<Mirror.NetworkIdentity,Mirror.Examples.MultipleMatch.MatchPlayerData> Mirror.Examples.MultipleMatch.MatchController::matchPlayerData
SyncDictionary_2_t8A6D4F99FF2865D416595C6EEECC24FB3912BA20 * ___matchPlayerData_11;
// System.Collections.Generic.Dictionary`2<Mirror.Examples.MultipleMatch.CellValue,Mirror.Examples.MultipleMatch.CellGUI> Mirror.Examples.MultipleMatch.MatchController::MatchCells
Dictionary_2_t21A58570BF69142737A6DA95313A875D27EE6806 * ___MatchCells_12;
// Mirror.Examples.MultipleMatch.CellValue Mirror.Examples.MultipleMatch.MatchController::boardScore
uint16_t ___boardScore_13;
// System.Boolean Mirror.Examples.MultipleMatch.MatchController::playAgain
bool ___playAgain_14;
// UnityEngine.CanvasGroup Mirror.Examples.MultipleMatch.MatchController::canvasGroup
CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * ___canvasGroup_15;
// UnityEngine.UI.Text Mirror.Examples.MultipleMatch.MatchController::gameText
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___gameText_16;
// UnityEngine.UI.Button Mirror.Examples.MultipleMatch.MatchController::exitButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___exitButton_17;
// UnityEngine.UI.Button Mirror.Examples.MultipleMatch.MatchController::playAgainButton
Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___playAgainButton_18;
// UnityEngine.UI.Text Mirror.Examples.MultipleMatch.MatchController::winCountLocal
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___winCountLocal_19;
// UnityEngine.UI.Text Mirror.Examples.MultipleMatch.MatchController::winCountOpponent
Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___winCountOpponent_20;
// Mirror.Examples.MultipleMatch.CanvasController Mirror.Examples.MultipleMatch.MatchController::canvasController
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * ___canvasController_21;
// Mirror.NetworkIdentity Mirror.Examples.MultipleMatch.MatchController::player1
NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___player1_22;
// Mirror.NetworkIdentity Mirror.Examples.MultipleMatch.MatchController::player2
NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___player2_23;
// Mirror.NetworkIdentity Mirror.Examples.MultipleMatch.MatchController::startingPlayer
NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___startingPlayer_24;
// Mirror.NetworkIdentity Mirror.Examples.MultipleMatch.MatchController::currentPlayer
NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * ___currentPlayer_25;
// System.UInt32 Mirror.Examples.MultipleMatch.MatchController::___currentPlayerNetId
uint32_t ______currentPlayerNetId_26;
public:
inline static int32_t get_offset_of_matchPlayerData_11() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___matchPlayerData_11)); }
inline SyncDictionary_2_t8A6D4F99FF2865D416595C6EEECC24FB3912BA20 * get_matchPlayerData_11() const { return ___matchPlayerData_11; }
inline SyncDictionary_2_t8A6D4F99FF2865D416595C6EEECC24FB3912BA20 ** get_address_of_matchPlayerData_11() { return &___matchPlayerData_11; }
inline void set_matchPlayerData_11(SyncDictionary_2_t8A6D4F99FF2865D416595C6EEECC24FB3912BA20 * value)
{
___matchPlayerData_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchPlayerData_11), (void*)value);
}
inline static int32_t get_offset_of_MatchCells_12() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___MatchCells_12)); }
inline Dictionary_2_t21A58570BF69142737A6DA95313A875D27EE6806 * get_MatchCells_12() const { return ___MatchCells_12; }
inline Dictionary_2_t21A58570BF69142737A6DA95313A875D27EE6806 ** get_address_of_MatchCells_12() { return &___MatchCells_12; }
inline void set_MatchCells_12(Dictionary_2_t21A58570BF69142737A6DA95313A875D27EE6806 * value)
{
___MatchCells_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MatchCells_12), (void*)value);
}
inline static int32_t get_offset_of_boardScore_13() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___boardScore_13)); }
inline uint16_t get_boardScore_13() const { return ___boardScore_13; }
inline uint16_t* get_address_of_boardScore_13() { return &___boardScore_13; }
inline void set_boardScore_13(uint16_t value)
{
___boardScore_13 = value;
}
inline static int32_t get_offset_of_playAgain_14() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___playAgain_14)); }
inline bool get_playAgain_14() const { return ___playAgain_14; }
inline bool* get_address_of_playAgain_14() { return &___playAgain_14; }
inline void set_playAgain_14(bool value)
{
___playAgain_14 = value;
}
inline static int32_t get_offset_of_canvasGroup_15() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___canvasGroup_15)); }
inline CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * get_canvasGroup_15() const { return ___canvasGroup_15; }
inline CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F ** get_address_of_canvasGroup_15() { return &___canvasGroup_15; }
inline void set_canvasGroup_15(CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * value)
{
___canvasGroup_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___canvasGroup_15), (void*)value);
}
inline static int32_t get_offset_of_gameText_16() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___gameText_16)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_gameText_16() const { return ___gameText_16; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_gameText_16() { return &___gameText_16; }
inline void set_gameText_16(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___gameText_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___gameText_16), (void*)value);
}
inline static int32_t get_offset_of_exitButton_17() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___exitButton_17)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_exitButton_17() const { return ___exitButton_17; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_exitButton_17() { return &___exitButton_17; }
inline void set_exitButton_17(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___exitButton_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___exitButton_17), (void*)value);
}
inline static int32_t get_offset_of_playAgainButton_18() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___playAgainButton_18)); }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_playAgainButton_18() const { return ___playAgainButton_18; }
inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_playAgainButton_18() { return &___playAgainButton_18; }
inline void set_playAgainButton_18(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value)
{
___playAgainButton_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playAgainButton_18), (void*)value);
}
inline static int32_t get_offset_of_winCountLocal_19() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___winCountLocal_19)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_winCountLocal_19() const { return ___winCountLocal_19; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_winCountLocal_19() { return &___winCountLocal_19; }
inline void set_winCountLocal_19(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___winCountLocal_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___winCountLocal_19), (void*)value);
}
inline static int32_t get_offset_of_winCountOpponent_20() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___winCountOpponent_20)); }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_winCountOpponent_20() const { return ___winCountOpponent_20; }
inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_winCountOpponent_20() { return &___winCountOpponent_20; }
inline void set_winCountOpponent_20(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value)
{
___winCountOpponent_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___winCountOpponent_20), (void*)value);
}
inline static int32_t get_offset_of_canvasController_21() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___canvasController_21)); }
inline CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * get_canvasController_21() const { return ___canvasController_21; }
inline CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D ** get_address_of_canvasController_21() { return &___canvasController_21; }
inline void set_canvasController_21(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * value)
{
___canvasController_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___canvasController_21), (void*)value);
}
inline static int32_t get_offset_of_player1_22() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___player1_22)); }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_player1_22() const { return ___player1_22; }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_player1_22() { return &___player1_22; }
inline void set_player1_22(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value)
{
___player1_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___player1_22), (void*)value);
}
inline static int32_t get_offset_of_player2_23() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___player2_23)); }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_player2_23() const { return ___player2_23; }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_player2_23() { return &___player2_23; }
inline void set_player2_23(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value)
{
___player2_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___player2_23), (void*)value);
}
inline static int32_t get_offset_of_startingPlayer_24() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___startingPlayer_24)); }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_startingPlayer_24() const { return ___startingPlayer_24; }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_startingPlayer_24() { return &___startingPlayer_24; }
inline void set_startingPlayer_24(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value)
{
___startingPlayer_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___startingPlayer_24), (void*)value);
}
inline static int32_t get_offset_of_currentPlayer_25() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ___currentPlayer_25)); }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * get_currentPlayer_25() const { return ___currentPlayer_25; }
inline NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 ** get_address_of_currentPlayer_25() { return &___currentPlayer_25; }
inline void set_currentPlayer_25(NetworkIdentity_t70E508ECD2AC55E14D9D2BBD15BB341AEE0BB0B6 * value)
{
___currentPlayer_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentPlayer_25), (void*)value);
}
inline static int32_t get_offset_of____currentPlayerNetId_26() { return static_cast<int32_t>(offsetof(MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69, ______currentPlayerNetId_26)); }
inline uint32_t get____currentPlayerNetId_26() const { return ______currentPlayerNetId_26; }
inline uint32_t* get_address_of____currentPlayerNetId_26() { return &______currentPlayerNetId_26; }
inline void set____currentPlayerNetId_26(uint32_t value)
{
______currentPlayerNetId_26 = value;
}
};
// Mirror.Examples.MultipleMatch.MatchNetworkManager
struct MatchNetworkManager_tC3F4231D8DAA8AD8549A3E11A891FAEEBC66F258 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// UnityEngine.GameObject Mirror.Examples.MultipleMatch.MatchNetworkManager::canvas
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___canvas_34;
// Mirror.Examples.MultipleMatch.CanvasController Mirror.Examples.MultipleMatch.MatchNetworkManager::canvasController
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * ___canvasController_35;
public:
inline static int32_t get_offset_of_canvas_34() { return static_cast<int32_t>(offsetof(MatchNetworkManager_tC3F4231D8DAA8AD8549A3E11A891FAEEBC66F258, ___canvas_34)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_canvas_34() const { return ___canvas_34; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_canvas_34() { return &___canvas_34; }
inline void set_canvas_34(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___canvas_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___canvas_34), (void*)value);
}
inline static int32_t get_offset_of_canvasController_35() { return static_cast<int32_t>(offsetof(MatchNetworkManager_tC3F4231D8DAA8AD8549A3E11A891FAEEBC66F258, ___canvasController_35)); }
inline CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * get_canvasController_35() const { return ___canvasController_35; }
inline CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D ** get_address_of_canvasController_35() { return &___canvasController_35; }
inline void set_canvasController_35(CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D * value)
{
___canvasController_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___canvasController_35), (void*)value);
}
};
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork
struct MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03 : public BaseCommsNetwork_5_t5E4A3BE4BE026CD1E06A7DA4BB389D6E48E26E2E
{
public:
// Dissonance.Datastructures.ConcurrentPool`1<System.Byte[]> Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork::_loopbackBuffers
ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * ____loopbackBuffers_27;
// System.Collections.Generic.List`1<System.ArraySegment`1<System.Byte>> Dissonance.Integrations.MirrorIgnorance.MirrorIgnoranceCommsNetwork::_loopbackQueue
List_1_tAC5780506F34558E53CD51BF8B2E6633C667059B * ____loopbackQueue_28;
public:
inline static int32_t get_offset_of__loopbackBuffers_27() { return static_cast<int32_t>(offsetof(MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03, ____loopbackBuffers_27)); }
inline ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * get__loopbackBuffers_27() const { return ____loopbackBuffers_27; }
inline ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 ** get_address_of__loopbackBuffers_27() { return &____loopbackBuffers_27; }
inline void set__loopbackBuffers_27(ConcurrentPool_1_t02971BD0C6E717C6AFD29F216C3A0CECDF6A2B64 * value)
{
____loopbackBuffers_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&____loopbackBuffers_27), (void*)value);
}
inline static int32_t get_offset_of__loopbackQueue_28() { return static_cast<int32_t>(offsetof(MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03, ____loopbackQueue_28)); }
inline List_1_tAC5780506F34558E53CD51BF8B2E6633C667059B * get__loopbackQueue_28() const { return ____loopbackQueue_28; }
inline List_1_tAC5780506F34558E53CD51BF8B2E6633C667059B ** get_address_of__loopbackQueue_28() { return &____loopbackQueue_28; }
inline void set__loopbackQueue_28(List_1_tAC5780506F34558E53CD51BF8B2E6633C667059B * value)
{
____loopbackQueue_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&____loopbackQueue_28), (void*)value);
}
};
// Dissonance.Integrations.MirrorIgnorance.MirrorIgnorancePlayer
struct MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// Dissonance.DissonanceComms Dissonance.Integrations.MirrorIgnorance.MirrorIgnorancePlayer::_comms
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * ____comms_12;
// System.Boolean Dissonance.Integrations.MirrorIgnorance.MirrorIgnorancePlayer::<IsTracking>k__BackingField
bool ___U3CIsTrackingU3Ek__BackingField_13;
// System.String Dissonance.Integrations.MirrorIgnorance.MirrorIgnorancePlayer::_playerId
String_t* ____playerId_14;
public:
inline static int32_t get_offset_of__comms_12() { return static_cast<int32_t>(offsetof(MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465, ____comms_12)); }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * get__comms_12() const { return ____comms_12; }
inline DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 ** get_address_of__comms_12() { return &____comms_12; }
inline void set__comms_12(DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901 * value)
{
____comms_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comms_12), (void*)value);
}
inline static int32_t get_offset_of_U3CIsTrackingU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465, ___U3CIsTrackingU3Ek__BackingField_13)); }
inline bool get_U3CIsTrackingU3Ek__BackingField_13() const { return ___U3CIsTrackingU3Ek__BackingField_13; }
inline bool* get_address_of_U3CIsTrackingU3Ek__BackingField_13() { return &___U3CIsTrackingU3Ek__BackingField_13; }
inline void set_U3CIsTrackingU3Ek__BackingField_13(bool value)
{
___U3CIsTrackingU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of__playerId_14() { return static_cast<int32_t>(offsetof(MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465, ____playerId_14)); }
inline String_t* get__playerId_14() const { return ____playerId_14; }
inline String_t** get_address_of__playerId_14() { return &____playerId_14; }
inline void set__playerId_14(String_t* value)
{
____playerId_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerId_14), (void*)value);
}
};
struct MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465_StaticFields
{
public:
// Dissonance.Log Dissonance.Integrations.MirrorIgnorance.MirrorIgnorancePlayer::Log
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * ___Log_11;
public:
inline static int32_t get_offset_of_Log_11() { return static_cast<int32_t>(offsetof(MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465_StaticFields, ___Log_11)); }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * get_Log_11() const { return ___Log_11; }
inline Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 ** get_address_of_Log_11() { return &___Log_11; }
inline void set_Log_11(Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0 * value)
{
___Log_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_11), (void*)value);
}
};
// Dissonance.Integrations.MirrorIgnorance.Demo.MirrorIgnorancePlayerController
struct MirrorIgnorancePlayerController_tF6187B09DCC394F1A08F178476B769C04FD34E1C : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
public:
};
// Mirror.Examples.Benchmark.MonsterMovement
struct MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Examples.Benchmark.MonsterMovement::speed
float ___speed_11;
// System.Single Mirror.Examples.Benchmark.MonsterMovement::movementProbability
float ___movementProbability_12;
// System.Single Mirror.Examples.Benchmark.MonsterMovement::movementDistance
float ___movementDistance_13;
// System.Boolean Mirror.Examples.Benchmark.MonsterMovement::moving
bool ___moving_14;
// UnityEngine.Vector3 Mirror.Examples.Benchmark.MonsterMovement::start
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___start_15;
// UnityEngine.Vector3 Mirror.Examples.Benchmark.MonsterMovement::destination
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___destination_16;
public:
inline static int32_t get_offset_of_speed_11() { return static_cast<int32_t>(offsetof(MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E, ___speed_11)); }
inline float get_speed_11() const { return ___speed_11; }
inline float* get_address_of_speed_11() { return &___speed_11; }
inline void set_speed_11(float value)
{
___speed_11 = value;
}
inline static int32_t get_offset_of_movementProbability_12() { return static_cast<int32_t>(offsetof(MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E, ___movementProbability_12)); }
inline float get_movementProbability_12() const { return ___movementProbability_12; }
inline float* get_address_of_movementProbability_12() { return &___movementProbability_12; }
inline void set_movementProbability_12(float value)
{
___movementProbability_12 = value;
}
inline static int32_t get_offset_of_movementDistance_13() { return static_cast<int32_t>(offsetof(MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E, ___movementDistance_13)); }
inline float get_movementDistance_13() const { return ___movementDistance_13; }
inline float* get_address_of_movementDistance_13() { return &___movementDistance_13; }
inline void set_movementDistance_13(float value)
{
___movementDistance_13 = value;
}
inline static int32_t get_offset_of_moving_14() { return static_cast<int32_t>(offsetof(MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E, ___moving_14)); }
inline bool get_moving_14() const { return ___moving_14; }
inline bool* get_address_of_moving_14() { return &___moving_14; }
inline void set_moving_14(bool value)
{
___moving_14 = value;
}
inline static int32_t get_offset_of_start_15() { return static_cast<int32_t>(offsetof(MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E, ___start_15)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_start_15() const { return ___start_15; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_start_15() { return &___start_15; }
inline void set_start_15(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___start_15 = value;
}
inline static int32_t get_offset_of_destination_16() { return static_cast<int32_t>(offsetof(MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E, ___destination_16)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_destination_16() const { return ___destination_16; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_destination_16() { return &___destination_16; }
inline void set_destination_16(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___destination_16 = value;
}
};
// Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager
struct MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// UnityEngine.GameObject Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::rewardPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rewardPrefab_34;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::instances
int32_t ___instances_35;
// System.String Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::gameScene
String_t* ___gameScene_36;
// System.Boolean Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::subscenesLoaded
bool ___subscenesLoaded_37;
// System.Collections.Generic.List`1<UnityEngine.SceneManagement.Scene> Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::subScenes
List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * ___subScenes_38;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.MultiSceneNetManager::clientIndex
int32_t ___clientIndex_39;
public:
inline static int32_t get_offset_of_rewardPrefab_34() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___rewardPrefab_34)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_rewardPrefab_34() const { return ___rewardPrefab_34; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_rewardPrefab_34() { return &___rewardPrefab_34; }
inline void set_rewardPrefab_34(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___rewardPrefab_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rewardPrefab_34), (void*)value);
}
inline static int32_t get_offset_of_instances_35() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___instances_35)); }
inline int32_t get_instances_35() const { return ___instances_35; }
inline int32_t* get_address_of_instances_35() { return &___instances_35; }
inline void set_instances_35(int32_t value)
{
___instances_35 = value;
}
inline static int32_t get_offset_of_gameScene_36() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___gameScene_36)); }
inline String_t* get_gameScene_36() const { return ___gameScene_36; }
inline String_t** get_address_of_gameScene_36() { return &___gameScene_36; }
inline void set_gameScene_36(String_t* value)
{
___gameScene_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___gameScene_36), (void*)value);
}
inline static int32_t get_offset_of_subscenesLoaded_37() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___subscenesLoaded_37)); }
inline bool get_subscenesLoaded_37() const { return ___subscenesLoaded_37; }
inline bool* get_address_of_subscenesLoaded_37() { return &___subscenesLoaded_37; }
inline void set_subscenesLoaded_37(bool value)
{
___subscenesLoaded_37 = value;
}
inline static int32_t get_offset_of_subScenes_38() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___subScenes_38)); }
inline List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * get_subScenes_38() const { return ___subScenes_38; }
inline List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 ** get_address_of_subScenes_38() { return &___subScenes_38; }
inline void set_subScenes_38(List_1_tF5A06610AC52E0ED9B7CE8B210E3276277D82AB2 * value)
{
___subScenes_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subScenes_38), (void*)value);
}
inline static int32_t get_offset_of_clientIndex_39() { return static_cast<int32_t>(offsetof(MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F, ___clientIndex_39)); }
inline int32_t get_clientIndex_39() const { return ___clientIndex_39; }
inline int32_t* get_address_of_clientIndex_39() { return &___clientIndex_39; }
inline void set_clientIndex_39(int32_t value)
{
___clientIndex_39 = value;
}
};
// Mirror.NetworkAnimator
struct NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Boolean Mirror.NetworkAnimator::clientAuthority
bool ___clientAuthority_11;
// UnityEngine.Animator Mirror.NetworkAnimator::animator
Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___animator_12;
// System.Single Mirror.NetworkAnimator::animatorSpeed
float ___animatorSpeed_13;
// System.Single Mirror.NetworkAnimator::previousSpeed
float ___previousSpeed_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_11() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___clientAuthority_11)); }
inline bool get_clientAuthority_11() const { return ___clientAuthority_11; }
inline bool* get_address_of_clientAuthority_11() { return &___clientAuthority_11; }
inline void set_clientAuthority_11(bool value)
{
___clientAuthority_11 = value;
}
inline static int32_t get_offset_of_animator_12() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___animator_12)); }
inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_animator_12() const { return ___animator_12; }
inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_animator_12() { return &___animator_12; }
inline void set_animator_12(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value)
{
___animator_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___animator_12), (void*)value);
}
inline static int32_t get_offset_of_animatorSpeed_13() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___animatorSpeed_13)); }
inline float get_animatorSpeed_13() const { return ___animatorSpeed_13; }
inline float* get_address_of_animatorSpeed_13() { return &___animatorSpeed_13; }
inline void set_animatorSpeed_13(float value)
{
___animatorSpeed_13 = value;
}
inline static int32_t get_offset_of_previousSpeed_14() { return static_cast<int32_t>(offsetof(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550, ___previousSpeed_14)); }
inline float get_previousSpeed_14() const { return ___previousSpeed_14; }
inline float* get_address_of_previousSpeed_14() { return &___previousSpeed_14; }
inline void set_previousSpeed_14(float value)
{
___previousSpeed_14 = 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;
}
};
// Mirror.Discovery.NetworkDiscovery
struct NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26 : public NetworkDiscoveryBase_2_t7EF6657B649FD026E9C1CB0E1F0875C55076C66B
{
public:
// System.Int64 Mirror.Discovery.NetworkDiscovery::<ServerId>k__BackingField
int64_t ___U3CServerIdU3Ek__BackingField_9;
// Mirror.Transport Mirror.Discovery.NetworkDiscovery::transport
Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * ___transport_10;
// Mirror.Discovery.ServerFoundUnityEvent Mirror.Discovery.NetworkDiscovery::OnServerFound
ServerFoundUnityEvent_t4E4DCA48D70BC4E17D90B92E694B5C64F2BDDA43 * ___OnServerFound_11;
public:
inline static int32_t get_offset_of_U3CServerIdU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26, ___U3CServerIdU3Ek__BackingField_9)); }
inline int64_t get_U3CServerIdU3Ek__BackingField_9() const { return ___U3CServerIdU3Ek__BackingField_9; }
inline int64_t* get_address_of_U3CServerIdU3Ek__BackingField_9() { return &___U3CServerIdU3Ek__BackingField_9; }
inline void set_U3CServerIdU3Ek__BackingField_9(int64_t value)
{
___U3CServerIdU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_transport_10() { return static_cast<int32_t>(offsetof(NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26, ___transport_10)); }
inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * get_transport_10() const { return ___transport_10; }
inline Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D ** get_address_of_transport_10() { return &___transport_10; }
inline void set_transport_10(Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D * value)
{
___transport_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___transport_10), (void*)value);
}
inline static int32_t get_offset_of_OnServerFound_11() { return static_cast<int32_t>(offsetof(NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26, ___OnServerFound_11)); }
inline ServerFoundUnityEvent_t4E4DCA48D70BC4E17D90B92E694B5C64F2BDDA43 * get_OnServerFound_11() const { return ___OnServerFound_11; }
inline ServerFoundUnityEvent_t4E4DCA48D70BC4E17D90B92E694B5C64F2BDDA43 ** get_address_of_OnServerFound_11() { return &___OnServerFound_11; }
inline void set_OnServerFound_11(ServerFoundUnityEvent_t4E4DCA48D70BC4E17D90B92E694B5C64F2BDDA43 * value)
{
___OnServerFound_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnServerFound_11), (void*)value);
}
};
// Mirror.Experimental.NetworkLerpRigidbody
struct NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Rigidbody Mirror.Experimental.NetworkLerpRigidbody::target
Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___target_11;
// System.Single Mirror.Experimental.NetworkLerpRigidbody::lerpVelocityAmount
float ___lerpVelocityAmount_12;
// System.Single Mirror.Experimental.NetworkLerpRigidbody::lerpPositionAmount
float ___lerpPositionAmount_13;
// System.Boolean Mirror.Experimental.NetworkLerpRigidbody::clientAuthority
bool ___clientAuthority_14;
// System.Single Mirror.Experimental.NetworkLerpRigidbody::nextSyncTime
float ___nextSyncTime_15;
// UnityEngine.Vector3 Mirror.Experimental.NetworkLerpRigidbody::targetVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___targetVelocity_16;
// UnityEngine.Vector3 Mirror.Experimental.NetworkLerpRigidbody::targetPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___targetPosition_17;
public:
inline static int32_t get_offset_of_target_11() { return static_cast<int32_t>(offsetof(NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B, ___target_11)); }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_target_11() const { return ___target_11; }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_target_11() { return &___target_11; }
inline void set_target_11(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value)
{
___target_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_11), (void*)value);
}
inline static int32_t get_offset_of_lerpVelocityAmount_12() { return static_cast<int32_t>(offsetof(NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B, ___lerpVelocityAmount_12)); }
inline float get_lerpVelocityAmount_12() const { return ___lerpVelocityAmount_12; }
inline float* get_address_of_lerpVelocityAmount_12() { return &___lerpVelocityAmount_12; }
inline void set_lerpVelocityAmount_12(float value)
{
___lerpVelocityAmount_12 = value;
}
inline static int32_t get_offset_of_lerpPositionAmount_13() { return static_cast<int32_t>(offsetof(NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B, ___lerpPositionAmount_13)); }
inline float get_lerpPositionAmount_13() const { return ___lerpPositionAmount_13; }
inline float* get_address_of_lerpPositionAmount_13() { return &___lerpPositionAmount_13; }
inline void set_lerpPositionAmount_13(float value)
{
___lerpPositionAmount_13 = value;
}
inline static int32_t get_offset_of_clientAuthority_14() { return static_cast<int32_t>(offsetof(NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B, ___clientAuthority_14)); }
inline bool get_clientAuthority_14() const { return ___clientAuthority_14; }
inline bool* get_address_of_clientAuthority_14() { return &___clientAuthority_14; }
inline void set_clientAuthority_14(bool value)
{
___clientAuthority_14 = value;
}
inline static int32_t get_offset_of_nextSyncTime_15() { return static_cast<int32_t>(offsetof(NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B, ___nextSyncTime_15)); }
inline float get_nextSyncTime_15() const { return ___nextSyncTime_15; }
inline float* get_address_of_nextSyncTime_15() { return &___nextSyncTime_15; }
inline void set_nextSyncTime_15(float value)
{
___nextSyncTime_15 = value;
}
inline static int32_t get_offset_of_targetVelocity_16() { return static_cast<int32_t>(offsetof(NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B, ___targetVelocity_16)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_targetVelocity_16() const { return ___targetVelocity_16; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_targetVelocity_16() { return &___targetVelocity_16; }
inline void set_targetVelocity_16(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___targetVelocity_16 = value;
}
inline static int32_t get_offset_of_targetPosition_17() { return static_cast<int32_t>(offsetof(NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B, ___targetPosition_17)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_targetPosition_17() const { return ___targetPosition_17; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_targetPosition_17() { return &___targetPosition_17; }
inline void set_targetPosition_17(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___targetPosition_17 = value;
}
};
// Mirror.Cloud.Example.NetworkManagerListServer
struct NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// System.Action Mirror.Cloud.Example.NetworkManagerListServer::onServerStarted
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onServerStarted_34;
// System.Action Mirror.Cloud.Example.NetworkManagerListServer::onServerStopped
Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onServerStopped_35;
// Mirror.Cloud.Example.NetworkManagerListServer/OnPlayerListChanged Mirror.Cloud.Example.NetworkManagerListServer::onPlayerListChanged
OnPlayerListChanged_tAE9C3FA9011C49CF6D1CDE78E4B040C0DFEE50CF * ___onPlayerListChanged_36;
public:
inline static int32_t get_offset_of_onServerStarted_34() { return static_cast<int32_t>(offsetof(NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2, ___onServerStarted_34)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onServerStarted_34() const { return ___onServerStarted_34; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onServerStarted_34() { return &___onServerStarted_34; }
inline void set_onServerStarted_34(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___onServerStarted_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onServerStarted_34), (void*)value);
}
inline static int32_t get_offset_of_onServerStopped_35() { return static_cast<int32_t>(offsetof(NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2, ___onServerStopped_35)); }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onServerStopped_35() const { return ___onServerStopped_35; }
inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onServerStopped_35() { return &___onServerStopped_35; }
inline void set_onServerStopped_35(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
{
___onServerStopped_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onServerStopped_35), (void*)value);
}
inline static int32_t get_offset_of_onPlayerListChanged_36() { return static_cast<int32_t>(offsetof(NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2, ___onPlayerListChanged_36)); }
inline OnPlayerListChanged_tAE9C3FA9011C49CF6D1CDE78E4B040C0DFEE50CF * get_onPlayerListChanged_36() const { return ___onPlayerListChanged_36; }
inline OnPlayerListChanged_tAE9C3FA9011C49CF6D1CDE78E4B040C0DFEE50CF ** get_address_of_onPlayerListChanged_36() { return &___onPlayerListChanged_36; }
inline void set_onPlayerListChanged_36(OnPlayerListChanged_tAE9C3FA9011C49CF6D1CDE78E4B040C0DFEE50CF * value)
{
___onPlayerListChanged_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPlayerListChanged_36), (void*)value);
}
};
// Mirror.Examples.Pong.NetworkManagerPong
struct NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7 : public NetworkManager_t4FCA51C2717E9324BB66A81749DFB3D7EBFBFA15
{
public:
// UnityEngine.Transform Mirror.Examples.Pong.NetworkManagerPong::leftRacketSpawn
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___leftRacketSpawn_34;
// UnityEngine.Transform Mirror.Examples.Pong.NetworkManagerPong::rightRacketSpawn
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___rightRacketSpawn_35;
// UnityEngine.GameObject Mirror.Examples.Pong.NetworkManagerPong::ball
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___ball_36;
public:
inline static int32_t get_offset_of_leftRacketSpawn_34() { return static_cast<int32_t>(offsetof(NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7, ___leftRacketSpawn_34)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_leftRacketSpawn_34() const { return ___leftRacketSpawn_34; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_leftRacketSpawn_34() { return &___leftRacketSpawn_34; }
inline void set_leftRacketSpawn_34(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
___leftRacketSpawn_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___leftRacketSpawn_34), (void*)value);
}
inline static int32_t get_offset_of_rightRacketSpawn_35() { return static_cast<int32_t>(offsetof(NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7, ___rightRacketSpawn_35)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_rightRacketSpawn_35() const { return ___rightRacketSpawn_35; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_rightRacketSpawn_35() { return &___rightRacketSpawn_35; }
inline void set_rightRacketSpawn_35(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
___rightRacketSpawn_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rightRacketSpawn_35), (void*)value);
}
inline static int32_t get_offset_of_ball_36() { return static_cast<int32_t>(offsetof(NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7, ___ball_36)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_ball_36() const { return ___ball_36; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_ball_36() { return &___ball_36; }
inline void set_ball_36(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___ball_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ball_36), (void*)value);
}
};
// Mirror.Experimental.NetworkRigidbody
struct NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Rigidbody Mirror.Experimental.NetworkRigidbody::target
Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___target_11;
// System.Boolean Mirror.Experimental.NetworkRigidbody::clientAuthority
bool ___clientAuthority_12;
// System.Boolean Mirror.Experimental.NetworkRigidbody::syncVelocity
bool ___syncVelocity_13;
// System.Boolean Mirror.Experimental.NetworkRigidbody::clearVelocity
bool ___clearVelocity_14;
// System.Single Mirror.Experimental.NetworkRigidbody::velocitySensitivity
float ___velocitySensitivity_15;
// System.Boolean Mirror.Experimental.NetworkRigidbody::syncAngularVelocity
bool ___syncAngularVelocity_16;
// System.Boolean Mirror.Experimental.NetworkRigidbody::clearAngularVelocity
bool ___clearAngularVelocity_17;
// System.Single Mirror.Experimental.NetworkRigidbody::angularVelocitySensitivity
float ___angularVelocitySensitivity_18;
// Mirror.Experimental.NetworkRigidbody/ClientSyncState Mirror.Experimental.NetworkRigidbody::previousValue
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074 * ___previousValue_19;
// UnityEngine.Vector3 Mirror.Experimental.NetworkRigidbody::velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_20;
// UnityEngine.Vector3 Mirror.Experimental.NetworkRigidbody::angularVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___angularVelocity_21;
// System.Boolean Mirror.Experimental.NetworkRigidbody::isKinematic
bool ___isKinematic_22;
// System.Boolean Mirror.Experimental.NetworkRigidbody::useGravity
bool ___useGravity_23;
// System.Single Mirror.Experimental.NetworkRigidbody::drag
float ___drag_24;
// System.Single Mirror.Experimental.NetworkRigidbody::angularDrag
float ___angularDrag_25;
public:
inline static int32_t get_offset_of_target_11() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___target_11)); }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_target_11() const { return ___target_11; }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_target_11() { return &___target_11; }
inline void set_target_11(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value)
{
___target_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_11), (void*)value);
}
inline static int32_t get_offset_of_clientAuthority_12() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___clientAuthority_12)); }
inline bool get_clientAuthority_12() const { return ___clientAuthority_12; }
inline bool* get_address_of_clientAuthority_12() { return &___clientAuthority_12; }
inline void set_clientAuthority_12(bool value)
{
___clientAuthority_12 = value;
}
inline static int32_t get_offset_of_syncVelocity_13() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___syncVelocity_13)); }
inline bool get_syncVelocity_13() const { return ___syncVelocity_13; }
inline bool* get_address_of_syncVelocity_13() { return &___syncVelocity_13; }
inline void set_syncVelocity_13(bool value)
{
___syncVelocity_13 = value;
}
inline static int32_t get_offset_of_clearVelocity_14() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___clearVelocity_14)); }
inline bool get_clearVelocity_14() const { return ___clearVelocity_14; }
inline bool* get_address_of_clearVelocity_14() { return &___clearVelocity_14; }
inline void set_clearVelocity_14(bool value)
{
___clearVelocity_14 = value;
}
inline static int32_t get_offset_of_velocitySensitivity_15() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___velocitySensitivity_15)); }
inline float get_velocitySensitivity_15() const { return ___velocitySensitivity_15; }
inline float* get_address_of_velocitySensitivity_15() { return &___velocitySensitivity_15; }
inline void set_velocitySensitivity_15(float value)
{
___velocitySensitivity_15 = value;
}
inline static int32_t get_offset_of_syncAngularVelocity_16() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___syncAngularVelocity_16)); }
inline bool get_syncAngularVelocity_16() const { return ___syncAngularVelocity_16; }
inline bool* get_address_of_syncAngularVelocity_16() { return &___syncAngularVelocity_16; }
inline void set_syncAngularVelocity_16(bool value)
{
___syncAngularVelocity_16 = value;
}
inline static int32_t get_offset_of_clearAngularVelocity_17() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___clearAngularVelocity_17)); }
inline bool get_clearAngularVelocity_17() const { return ___clearAngularVelocity_17; }
inline bool* get_address_of_clearAngularVelocity_17() { return &___clearAngularVelocity_17; }
inline void set_clearAngularVelocity_17(bool value)
{
___clearAngularVelocity_17 = value;
}
inline static int32_t get_offset_of_angularVelocitySensitivity_18() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___angularVelocitySensitivity_18)); }
inline float get_angularVelocitySensitivity_18() const { return ___angularVelocitySensitivity_18; }
inline float* get_address_of_angularVelocitySensitivity_18() { return &___angularVelocitySensitivity_18; }
inline void set_angularVelocitySensitivity_18(float value)
{
___angularVelocitySensitivity_18 = value;
}
inline static int32_t get_offset_of_previousValue_19() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___previousValue_19)); }
inline ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074 * get_previousValue_19() const { return ___previousValue_19; }
inline ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074 ** get_address_of_previousValue_19() { return &___previousValue_19; }
inline void set_previousValue_19(ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074 * value)
{
___previousValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___previousValue_19), (void*)value);
}
inline static int32_t get_offset_of_velocity_20() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___velocity_20)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_20() const { return ___velocity_20; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_20() { return &___velocity_20; }
inline void set_velocity_20(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___velocity_20 = value;
}
inline static int32_t get_offset_of_angularVelocity_21() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___angularVelocity_21)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_angularVelocity_21() const { return ___angularVelocity_21; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_angularVelocity_21() { return &___angularVelocity_21; }
inline void set_angularVelocity_21(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___angularVelocity_21 = value;
}
inline static int32_t get_offset_of_isKinematic_22() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___isKinematic_22)); }
inline bool get_isKinematic_22() const { return ___isKinematic_22; }
inline bool* get_address_of_isKinematic_22() { return &___isKinematic_22; }
inline void set_isKinematic_22(bool value)
{
___isKinematic_22 = value;
}
inline static int32_t get_offset_of_useGravity_23() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___useGravity_23)); }
inline bool get_useGravity_23() const { return ___useGravity_23; }
inline bool* get_address_of_useGravity_23() { return &___useGravity_23; }
inline void set_useGravity_23(bool value)
{
___useGravity_23 = value;
}
inline static int32_t get_offset_of_drag_24() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___drag_24)); }
inline float get_drag_24() const { return ___drag_24; }
inline float* get_address_of_drag_24() { return &___drag_24; }
inline void set_drag_24(float value)
{
___drag_24 = value;
}
inline static int32_t get_offset_of_angularDrag_25() { return static_cast<int32_t>(offsetof(NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF, ___angularDrag_25)); }
inline float get_angularDrag_25() const { return ___angularDrag_25; }
inline float* get_address_of_angularDrag_25() { return &___angularDrag_25; }
inline void set_angularDrag_25(float value)
{
___angularDrag_25 = value;
}
};
// Mirror.Experimental.NetworkRigidbody2D
struct NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Rigidbody2D Mirror.Experimental.NetworkRigidbody2D::target
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * ___target_11;
// System.Boolean Mirror.Experimental.NetworkRigidbody2D::clientAuthority
bool ___clientAuthority_12;
// System.Boolean Mirror.Experimental.NetworkRigidbody2D::syncVelocity
bool ___syncVelocity_13;
// System.Boolean Mirror.Experimental.NetworkRigidbody2D::clearVelocity
bool ___clearVelocity_14;
// System.Single Mirror.Experimental.NetworkRigidbody2D::velocitySensitivity
float ___velocitySensitivity_15;
// System.Boolean Mirror.Experimental.NetworkRigidbody2D::syncAngularVelocity
bool ___syncAngularVelocity_16;
// System.Boolean Mirror.Experimental.NetworkRigidbody2D::clearAngularVelocity
bool ___clearAngularVelocity_17;
// System.Single Mirror.Experimental.NetworkRigidbody2D::angularVelocitySensitivity
float ___angularVelocitySensitivity_18;
// Mirror.Experimental.NetworkRigidbody2D/ClientSyncState Mirror.Experimental.NetworkRigidbody2D::previousValue
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98 * ___previousValue_19;
// UnityEngine.Vector2 Mirror.Experimental.NetworkRigidbody2D::velocity
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___velocity_20;
// System.Single Mirror.Experimental.NetworkRigidbody2D::angularVelocity
float ___angularVelocity_21;
// System.Boolean Mirror.Experimental.NetworkRigidbody2D::isKinematic
bool ___isKinematic_22;
// System.Single Mirror.Experimental.NetworkRigidbody2D::gravityScale
float ___gravityScale_23;
// System.Single Mirror.Experimental.NetworkRigidbody2D::drag
float ___drag_24;
// System.Single Mirror.Experimental.NetworkRigidbody2D::angularDrag
float ___angularDrag_25;
public:
inline static int32_t get_offset_of_target_11() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___target_11)); }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * get_target_11() const { return ___target_11; }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 ** get_address_of_target_11() { return &___target_11; }
inline void set_target_11(Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * value)
{
___target_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_11), (void*)value);
}
inline static int32_t get_offset_of_clientAuthority_12() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___clientAuthority_12)); }
inline bool get_clientAuthority_12() const { return ___clientAuthority_12; }
inline bool* get_address_of_clientAuthority_12() { return &___clientAuthority_12; }
inline void set_clientAuthority_12(bool value)
{
___clientAuthority_12 = value;
}
inline static int32_t get_offset_of_syncVelocity_13() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___syncVelocity_13)); }
inline bool get_syncVelocity_13() const { return ___syncVelocity_13; }
inline bool* get_address_of_syncVelocity_13() { return &___syncVelocity_13; }
inline void set_syncVelocity_13(bool value)
{
___syncVelocity_13 = value;
}
inline static int32_t get_offset_of_clearVelocity_14() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___clearVelocity_14)); }
inline bool get_clearVelocity_14() const { return ___clearVelocity_14; }
inline bool* get_address_of_clearVelocity_14() { return &___clearVelocity_14; }
inline void set_clearVelocity_14(bool value)
{
___clearVelocity_14 = value;
}
inline static int32_t get_offset_of_velocitySensitivity_15() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___velocitySensitivity_15)); }
inline float get_velocitySensitivity_15() const { return ___velocitySensitivity_15; }
inline float* get_address_of_velocitySensitivity_15() { return &___velocitySensitivity_15; }
inline void set_velocitySensitivity_15(float value)
{
___velocitySensitivity_15 = value;
}
inline static int32_t get_offset_of_syncAngularVelocity_16() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___syncAngularVelocity_16)); }
inline bool get_syncAngularVelocity_16() const { return ___syncAngularVelocity_16; }
inline bool* get_address_of_syncAngularVelocity_16() { return &___syncAngularVelocity_16; }
inline void set_syncAngularVelocity_16(bool value)
{
___syncAngularVelocity_16 = value;
}
inline static int32_t get_offset_of_clearAngularVelocity_17() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___clearAngularVelocity_17)); }
inline bool get_clearAngularVelocity_17() const { return ___clearAngularVelocity_17; }
inline bool* get_address_of_clearAngularVelocity_17() { return &___clearAngularVelocity_17; }
inline void set_clearAngularVelocity_17(bool value)
{
___clearAngularVelocity_17 = value;
}
inline static int32_t get_offset_of_angularVelocitySensitivity_18() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___angularVelocitySensitivity_18)); }
inline float get_angularVelocitySensitivity_18() const { return ___angularVelocitySensitivity_18; }
inline float* get_address_of_angularVelocitySensitivity_18() { return &___angularVelocitySensitivity_18; }
inline void set_angularVelocitySensitivity_18(float value)
{
___angularVelocitySensitivity_18 = value;
}
inline static int32_t get_offset_of_previousValue_19() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___previousValue_19)); }
inline ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98 * get_previousValue_19() const { return ___previousValue_19; }
inline ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98 ** get_address_of_previousValue_19() { return &___previousValue_19; }
inline void set_previousValue_19(ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98 * value)
{
___previousValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___previousValue_19), (void*)value);
}
inline static int32_t get_offset_of_velocity_20() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___velocity_20)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_velocity_20() const { return ___velocity_20; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_velocity_20() { return &___velocity_20; }
inline void set_velocity_20(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___velocity_20 = value;
}
inline static int32_t get_offset_of_angularVelocity_21() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___angularVelocity_21)); }
inline float get_angularVelocity_21() const { return ___angularVelocity_21; }
inline float* get_address_of_angularVelocity_21() { return &___angularVelocity_21; }
inline void set_angularVelocity_21(float value)
{
___angularVelocity_21 = value;
}
inline static int32_t get_offset_of_isKinematic_22() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___isKinematic_22)); }
inline bool get_isKinematic_22() const { return ___isKinematic_22; }
inline bool* get_address_of_isKinematic_22() { return &___isKinematic_22; }
inline void set_isKinematic_22(bool value)
{
___isKinematic_22 = value;
}
inline static int32_t get_offset_of_gravityScale_23() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___gravityScale_23)); }
inline float get_gravityScale_23() const { return ___gravityScale_23; }
inline float* get_address_of_gravityScale_23() { return &___gravityScale_23; }
inline void set_gravityScale_23(float value)
{
___gravityScale_23 = value;
}
inline static int32_t get_offset_of_drag_24() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___drag_24)); }
inline float get_drag_24() const { return ___drag_24; }
inline float* get_address_of_drag_24() { return &___drag_24; }
inline void set_drag_24(float value)
{
___drag_24 = value;
}
inline static int32_t get_offset_of_angularDrag_25() { return static_cast<int32_t>(offsetof(NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65, ___angularDrag_25)); }
inline float get_angularDrag_25() const { return ___angularDrag_25; }
inline float* get_address_of_angularDrag_25() { return &___angularDrag_25; }
inline void set_angularDrag_25(float value)
{
___angularDrag_25 = 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;
// System.Int32 Mirror.NetworkRoomManager::clientIndex
int32_t ___clientIndex_42;
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);
}
inline static int32_t get_offset_of_clientIndex_42() { return static_cast<int32_t>(offsetof(NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516, ___clientIndex_42)); }
inline int32_t get_clientIndex_42() const { return ___clientIndex_42; }
inline int32_t* get_address_of_clientIndex_42() { return &___clientIndex_42; }
inline void set_clientIndex_42(int32_t value)
{
___clientIndex_42 = value;
}
};
// Mirror.NetworkRoomPlayer
struct NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Boolean Mirror.NetworkRoomPlayer::showRoomGUI
bool ___showRoomGUI_11;
// System.Boolean Mirror.NetworkRoomPlayer::readyToBegin
bool ___readyToBegin_12;
// System.Int32 Mirror.NetworkRoomPlayer::index
int32_t ___index_13;
public:
inline static int32_t get_offset_of_showRoomGUI_11() { return static_cast<int32_t>(offsetof(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F, ___showRoomGUI_11)); }
inline bool get_showRoomGUI_11() const { return ___showRoomGUI_11; }
inline bool* get_address_of_showRoomGUI_11() { return &___showRoomGUI_11; }
inline void set_showRoomGUI_11(bool value)
{
___showRoomGUI_11 = value;
}
inline static int32_t get_offset_of_readyToBegin_12() { return static_cast<int32_t>(offsetof(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F, ___readyToBegin_12)); }
inline bool get_readyToBegin_12() const { return ___readyToBegin_12; }
inline bool* get_address_of_readyToBegin_12() { return &___readyToBegin_12; }
inline void set_readyToBegin_12(bool value)
{
___readyToBegin_12 = value;
}
inline static int32_t get_offset_of_index_13() { return static_cast<int32_t>(offsetof(NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F, ___index_13)); }
inline int32_t get_index_13() const { return ___index_13; }
inline int32_t* get_address_of_index_13() { return &___index_13; }
inline void set_index_13(int32_t value)
{
___index_13 = value;
}
};
// Mirror.NetworkTransformBase
struct NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Boolean Mirror.NetworkTransformBase::clientAuthority
bool ___clientAuthority_11;
// System.Boolean Mirror.NetworkTransformBase::clientAuthorityBeforeTeleport
bool ___clientAuthorityBeforeTeleport_12;
// System.Single Mirror.NetworkTransformBase::localPositionSensitivity
float ___localPositionSensitivity_13;
// System.Single Mirror.NetworkTransformBase::localRotationSensitivity
float ___localRotationSensitivity_14;
// System.Single Mirror.NetworkTransformBase::localScaleSensitivity
float ___localScaleSensitivity_15;
// UnityEngine.Vector3 Mirror.NetworkTransformBase::lastPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___lastPosition_16;
// UnityEngine.Quaternion Mirror.NetworkTransformBase::lastRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___lastRotation_17;
// UnityEngine.Vector3 Mirror.NetworkTransformBase::lastScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___lastScale_18;
// Mirror.NetworkTransformBase/DataPoint Mirror.NetworkTransformBase::start
DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 * ___start_19;
// Mirror.NetworkTransformBase/DataPoint Mirror.NetworkTransformBase::goal
DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 * ___goal_20;
// System.Single Mirror.NetworkTransformBase::lastClientSendTime
float ___lastClientSendTime_21;
public:
inline static int32_t get_offset_of_clientAuthority_11() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___clientAuthority_11)); }
inline bool get_clientAuthority_11() const { return ___clientAuthority_11; }
inline bool* get_address_of_clientAuthority_11() { return &___clientAuthority_11; }
inline void set_clientAuthority_11(bool value)
{
___clientAuthority_11 = value;
}
inline static int32_t get_offset_of_clientAuthorityBeforeTeleport_12() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___clientAuthorityBeforeTeleport_12)); }
inline bool get_clientAuthorityBeforeTeleport_12() const { return ___clientAuthorityBeforeTeleport_12; }
inline bool* get_address_of_clientAuthorityBeforeTeleport_12() { return &___clientAuthorityBeforeTeleport_12; }
inline void set_clientAuthorityBeforeTeleport_12(bool value)
{
___clientAuthorityBeforeTeleport_12 = value;
}
inline static int32_t get_offset_of_localPositionSensitivity_13() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___localPositionSensitivity_13)); }
inline float get_localPositionSensitivity_13() const { return ___localPositionSensitivity_13; }
inline float* get_address_of_localPositionSensitivity_13() { return &___localPositionSensitivity_13; }
inline void set_localPositionSensitivity_13(float value)
{
___localPositionSensitivity_13 = value;
}
inline static int32_t get_offset_of_localRotationSensitivity_14() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___localRotationSensitivity_14)); }
inline float get_localRotationSensitivity_14() const { return ___localRotationSensitivity_14; }
inline float* get_address_of_localRotationSensitivity_14() { return &___localRotationSensitivity_14; }
inline void set_localRotationSensitivity_14(float value)
{
___localRotationSensitivity_14 = value;
}
inline static int32_t get_offset_of_localScaleSensitivity_15() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___localScaleSensitivity_15)); }
inline float get_localScaleSensitivity_15() const { return ___localScaleSensitivity_15; }
inline float* get_address_of_localScaleSensitivity_15() { return &___localScaleSensitivity_15; }
inline void set_localScaleSensitivity_15(float value)
{
___localScaleSensitivity_15 = value;
}
inline static int32_t get_offset_of_lastPosition_16() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___lastPosition_16)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_lastPosition_16() const { return ___lastPosition_16; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_lastPosition_16() { return &___lastPosition_16; }
inline void set_lastPosition_16(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___lastPosition_16 = value;
}
inline static int32_t get_offset_of_lastRotation_17() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___lastRotation_17)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_lastRotation_17() const { return ___lastRotation_17; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_lastRotation_17() { return &___lastRotation_17; }
inline void set_lastRotation_17(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___lastRotation_17 = value;
}
inline static int32_t get_offset_of_lastScale_18() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___lastScale_18)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_lastScale_18() const { return ___lastScale_18; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_lastScale_18() { return &___lastScale_18; }
inline void set_lastScale_18(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___lastScale_18 = value;
}
inline static int32_t get_offset_of_start_19() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___start_19)); }
inline DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 * get_start_19() const { return ___start_19; }
inline DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 ** get_address_of_start_19() { return &___start_19; }
inline void set_start_19(DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 * value)
{
___start_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___start_19), (void*)value);
}
inline static int32_t get_offset_of_goal_20() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___goal_20)); }
inline DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 * get_goal_20() const { return ___goal_20; }
inline DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 ** get_address_of_goal_20() { return &___goal_20; }
inline void set_goal_20(DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003 * value)
{
___goal_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___goal_20), (void*)value);
}
inline static int32_t get_offset_of_lastClientSendTime_21() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F, ___lastClientSendTime_21)); }
inline float get_lastClientSendTime_21() const { return ___lastClientSendTime_21; }
inline float* get_address_of_lastClientSendTime_21() { return &___lastClientSendTime_21; }
inline void set_lastClientSendTime_21(float value)
{
___lastClientSendTime_21 = value;
}
};
// Mirror.Experimental.NetworkTransformBase
struct NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Boolean Mirror.Experimental.NetworkTransformBase::clientAuthority
bool ___clientAuthority_11;
// System.Boolean Mirror.Experimental.NetworkTransformBase::excludeOwnerUpdate
bool ___excludeOwnerUpdate_12;
// System.Boolean Mirror.Experimental.NetworkTransformBase::syncPosition
bool ___syncPosition_13;
// System.Boolean Mirror.Experimental.NetworkTransformBase::syncRotation
bool ___syncRotation_14;
// System.Boolean Mirror.Experimental.NetworkTransformBase::syncScale
bool ___syncScale_15;
// System.Boolean Mirror.Experimental.NetworkTransformBase::interpolatePosition
bool ___interpolatePosition_16;
// System.Boolean Mirror.Experimental.NetworkTransformBase::interpolateRotation
bool ___interpolateRotation_17;
// System.Boolean Mirror.Experimental.NetworkTransformBase::interpolateScale
bool ___interpolateScale_18;
// System.Single Mirror.Experimental.NetworkTransformBase::localPositionSensitivity
float ___localPositionSensitivity_19;
// System.Single Mirror.Experimental.NetworkTransformBase::localRotationSensitivity
float ___localRotationSensitivity_20;
// System.Single Mirror.Experimental.NetworkTransformBase::localScaleSensitivity
float ___localScaleSensitivity_21;
// UnityEngine.Vector3 Mirror.Experimental.NetworkTransformBase::lastPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___lastPosition_22;
// UnityEngine.Quaternion Mirror.Experimental.NetworkTransformBase::lastRotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___lastRotation_23;
// UnityEngine.Vector3 Mirror.Experimental.NetworkTransformBase::lastScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___lastScale_24;
// Mirror.Experimental.NetworkTransformBase/DataPoint Mirror.Experimental.NetworkTransformBase::start
DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 ___start_25;
// Mirror.Experimental.NetworkTransformBase/DataPoint Mirror.Experimental.NetworkTransformBase::goal
DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 ___goal_26;
// System.Boolean Mirror.Experimental.NetworkTransformBase::clientAuthorityBeforeTeleport
bool ___clientAuthorityBeforeTeleport_27;
public:
inline static int32_t get_offset_of_clientAuthority_11() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___clientAuthority_11)); }
inline bool get_clientAuthority_11() const { return ___clientAuthority_11; }
inline bool* get_address_of_clientAuthority_11() { return &___clientAuthority_11; }
inline void set_clientAuthority_11(bool value)
{
___clientAuthority_11 = value;
}
inline static int32_t get_offset_of_excludeOwnerUpdate_12() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___excludeOwnerUpdate_12)); }
inline bool get_excludeOwnerUpdate_12() const { return ___excludeOwnerUpdate_12; }
inline bool* get_address_of_excludeOwnerUpdate_12() { return &___excludeOwnerUpdate_12; }
inline void set_excludeOwnerUpdate_12(bool value)
{
___excludeOwnerUpdate_12 = value;
}
inline static int32_t get_offset_of_syncPosition_13() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___syncPosition_13)); }
inline bool get_syncPosition_13() const { return ___syncPosition_13; }
inline bool* get_address_of_syncPosition_13() { return &___syncPosition_13; }
inline void set_syncPosition_13(bool value)
{
___syncPosition_13 = value;
}
inline static int32_t get_offset_of_syncRotation_14() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___syncRotation_14)); }
inline bool get_syncRotation_14() const { return ___syncRotation_14; }
inline bool* get_address_of_syncRotation_14() { return &___syncRotation_14; }
inline void set_syncRotation_14(bool value)
{
___syncRotation_14 = value;
}
inline static int32_t get_offset_of_syncScale_15() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___syncScale_15)); }
inline bool get_syncScale_15() const { return ___syncScale_15; }
inline bool* get_address_of_syncScale_15() { return &___syncScale_15; }
inline void set_syncScale_15(bool value)
{
___syncScale_15 = value;
}
inline static int32_t get_offset_of_interpolatePosition_16() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___interpolatePosition_16)); }
inline bool get_interpolatePosition_16() const { return ___interpolatePosition_16; }
inline bool* get_address_of_interpolatePosition_16() { return &___interpolatePosition_16; }
inline void set_interpolatePosition_16(bool value)
{
___interpolatePosition_16 = value;
}
inline static int32_t get_offset_of_interpolateRotation_17() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___interpolateRotation_17)); }
inline bool get_interpolateRotation_17() const { return ___interpolateRotation_17; }
inline bool* get_address_of_interpolateRotation_17() { return &___interpolateRotation_17; }
inline void set_interpolateRotation_17(bool value)
{
___interpolateRotation_17 = value;
}
inline static int32_t get_offset_of_interpolateScale_18() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___interpolateScale_18)); }
inline bool get_interpolateScale_18() const { return ___interpolateScale_18; }
inline bool* get_address_of_interpolateScale_18() { return &___interpolateScale_18; }
inline void set_interpolateScale_18(bool value)
{
___interpolateScale_18 = value;
}
inline static int32_t get_offset_of_localPositionSensitivity_19() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___localPositionSensitivity_19)); }
inline float get_localPositionSensitivity_19() const { return ___localPositionSensitivity_19; }
inline float* get_address_of_localPositionSensitivity_19() { return &___localPositionSensitivity_19; }
inline void set_localPositionSensitivity_19(float value)
{
___localPositionSensitivity_19 = value;
}
inline static int32_t get_offset_of_localRotationSensitivity_20() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___localRotationSensitivity_20)); }
inline float get_localRotationSensitivity_20() const { return ___localRotationSensitivity_20; }
inline float* get_address_of_localRotationSensitivity_20() { return &___localRotationSensitivity_20; }
inline void set_localRotationSensitivity_20(float value)
{
___localRotationSensitivity_20 = value;
}
inline static int32_t get_offset_of_localScaleSensitivity_21() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___localScaleSensitivity_21)); }
inline float get_localScaleSensitivity_21() const { return ___localScaleSensitivity_21; }
inline float* get_address_of_localScaleSensitivity_21() { return &___localScaleSensitivity_21; }
inline void set_localScaleSensitivity_21(float value)
{
___localScaleSensitivity_21 = value;
}
inline static int32_t get_offset_of_lastPosition_22() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___lastPosition_22)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_lastPosition_22() const { return ___lastPosition_22; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_lastPosition_22() { return &___lastPosition_22; }
inline void set_lastPosition_22(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___lastPosition_22 = value;
}
inline static int32_t get_offset_of_lastRotation_23() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___lastRotation_23)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_lastRotation_23() const { return ___lastRotation_23; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_lastRotation_23() { return &___lastRotation_23; }
inline void set_lastRotation_23(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___lastRotation_23 = value;
}
inline static int32_t get_offset_of_lastScale_24() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___lastScale_24)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_lastScale_24() const { return ___lastScale_24; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_lastScale_24() { return &___lastScale_24; }
inline void set_lastScale_24(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___lastScale_24 = value;
}
inline static int32_t get_offset_of_start_25() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___start_25)); }
inline DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 get_start_25() const { return ___start_25; }
inline DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 * get_address_of_start_25() { return &___start_25; }
inline void set_start_25(DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 value)
{
___start_25 = value;
}
inline static int32_t get_offset_of_goal_26() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___goal_26)); }
inline DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 get_goal_26() const { return ___goal_26; }
inline DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 * get_address_of_goal_26() { return &___goal_26; }
inline void set_goal_26(DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7 value)
{
___goal_26 = value;
}
inline static int32_t get_offset_of_clientAuthorityBeforeTeleport_27() { return static_cast<int32_t>(offsetof(NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555, ___clientAuthorityBeforeTeleport_27)); }
inline bool get_clientAuthorityBeforeTeleport_27() const { return ___clientAuthorityBeforeTeleport_27; }
inline bool* get_address_of_clientAuthorityBeforeTeleport_27() { return &___clientAuthorityBeforeTeleport_27; }
inline void set_clientAuthorityBeforeTeleport_27(bool value)
{
___clientAuthorityBeforeTeleport_27 = value;
}
};
// Mirror.NetworkVisibility
struct NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
public:
};
// UnityEngine.InputSystem.OnScreen.OnScreenButton
struct OnScreenButton_tDBCB66F60C3CA58360018ED2E715A62FB3F6A02D : public OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381
{
public:
// System.String UnityEngine.InputSystem.OnScreen.OnScreenButton::m_ControlPath
String_t* ___m_ControlPath_8;
public:
inline static int32_t get_offset_of_m_ControlPath_8() { return static_cast<int32_t>(offsetof(OnScreenButton_tDBCB66F60C3CA58360018ED2E715A62FB3F6A02D, ___m_ControlPath_8)); }
inline String_t* get_m_ControlPath_8() const { return ___m_ControlPath_8; }
inline String_t** get_address_of_m_ControlPath_8() { return &___m_ControlPath_8; }
inline void set_m_ControlPath_8(String_t* value)
{
___m_ControlPath_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ControlPath_8), (void*)value);
}
};
// UnityEngine.InputSystem.OnScreen.OnScreenStick
struct OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F : public OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381
{
public:
// System.Single UnityEngine.InputSystem.OnScreen.OnScreenStick::m_MovementRange
float ___m_MovementRange_8;
// System.String UnityEngine.InputSystem.OnScreen.OnScreenStick::m_ControlPath
String_t* ___m_ControlPath_9;
// UnityEngine.Vector3 UnityEngine.InputSystem.OnScreen.OnScreenStick::m_StartPos
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_StartPos_10;
// UnityEngine.Vector2 UnityEngine.InputSystem.OnScreen.OnScreenStick::m_PointerDownPos
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_PointerDownPos_11;
public:
inline static int32_t get_offset_of_m_MovementRange_8() { return static_cast<int32_t>(offsetof(OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F, ___m_MovementRange_8)); }
inline float get_m_MovementRange_8() const { return ___m_MovementRange_8; }
inline float* get_address_of_m_MovementRange_8() { return &___m_MovementRange_8; }
inline void set_m_MovementRange_8(float value)
{
___m_MovementRange_8 = value;
}
inline static int32_t get_offset_of_m_ControlPath_9() { return static_cast<int32_t>(offsetof(OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F, ___m_ControlPath_9)); }
inline String_t* get_m_ControlPath_9() const { return ___m_ControlPath_9; }
inline String_t** get_address_of_m_ControlPath_9() { return &___m_ControlPath_9; }
inline void set_m_ControlPath_9(String_t* value)
{
___m_ControlPath_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ControlPath_9), (void*)value);
}
inline static int32_t get_offset_of_m_StartPos_10() { return static_cast<int32_t>(offsetof(OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F, ___m_StartPos_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_StartPos_10() const { return ___m_StartPos_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_StartPos_10() { return &___m_StartPos_10; }
inline void set_m_StartPos_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_StartPos_10 = value;
}
inline static int32_t get_offset_of_m_PointerDownPos_11() { return static_cast<int32_t>(offsetof(OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F, ___m_PointerDownPos_11)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_PointerDownPos_11() const { return ___m_PointerDownPos_11; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_PointerDownPos_11() { return &___m_PointerDownPos_11; }
inline void set_m_PointerDownPos_11(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_PointerDownPos_11 = value;
}
};
// Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision
struct PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::force
float ___force_11;
// UnityEngine.Rigidbody Mirror.Examples.MultipleAdditiveScenes.PhysicsCollision::rigidbody3D
Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___rigidbody3D_12;
public:
inline static int32_t get_offset_of_force_11() { return static_cast<int32_t>(offsetof(PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB, ___force_11)); }
inline float get_force_11() const { return ___force_11; }
inline float* get_address_of_force_11() { return &___force_11; }
inline void set_force_11(float value)
{
___force_11 = value;
}
inline static int32_t get_offset_of_rigidbody3D_12() { return static_cast<int32_t>(offsetof(PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB, ___rigidbody3D_12)); }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_rigidbody3D_12() const { return ___rigidbody3D_12; }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_rigidbody3D_12() { return &___rigidbody3D_12; }
inline void set_rigidbody3D_12(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value)
{
___rigidbody3D_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rigidbody3D_12), (void*)value);
}
};
// Mirror.Cloud.Examples.Pong.Player
struct Player_tC63B06645D652A2E530C1BDD46A3A130085E5592 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Cloud.Examples.Pong.Player::speed
float ___speed_11;
// UnityEngine.Rigidbody2D Mirror.Cloud.Examples.Pong.Player::rigidbody2d
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * ___rigidbody2d_12;
public:
inline static int32_t get_offset_of_speed_11() { return static_cast<int32_t>(offsetof(Player_tC63B06645D652A2E530C1BDD46A3A130085E5592, ___speed_11)); }
inline float get_speed_11() const { return ___speed_11; }
inline float* get_address_of_speed_11() { return &___speed_11; }
inline void set_speed_11(float value)
{
___speed_11 = value;
}
inline static int32_t get_offset_of_rigidbody2d_12() { return static_cast<int32_t>(offsetof(Player_tC63B06645D652A2E530C1BDD46A3A130085E5592, ___rigidbody2d_12)); }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * get_rigidbody2d_12() const { return ___rigidbody2d_12; }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 ** get_address_of_rigidbody2d_12() { return &___rigidbody2d_12; }
inline void set_rigidbody2d_12(Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * value)
{
___rigidbody2d_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rigidbody2d_12), (void*)value);
}
};
// Mirror.Examples.Basic.Player
struct Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Action`1<System.Int32> Mirror.Examples.Basic.Player::OnPlayerNumberChanged
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___OnPlayerNumberChanged_11;
// System.Action`1<UnityEngine.Color32> Mirror.Examples.Basic.Player::OnPlayerColorChanged
Action_1_tDE087FB8337F5181D6160B08FC098DCB4808E995 * ___OnPlayerColorChanged_12;
// System.Action`1<System.Int32> Mirror.Examples.Basic.Player::OnPlayerDataChanged
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___OnPlayerDataChanged_13;
// UnityEngine.GameObject Mirror.Examples.Basic.Player::playerUIPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerUIPrefab_14;
// UnityEngine.GameObject Mirror.Examples.Basic.Player::playerUI
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerUI_15;
// System.Int32 Mirror.Examples.Basic.Player::playerNumber
int32_t ___playerNumber_16;
// System.Int32 Mirror.Examples.Basic.Player::playerData
int32_t ___playerData_17;
// UnityEngine.Color32 Mirror.Examples.Basic.Player::playerColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___playerColor_18;
public:
inline static int32_t get_offset_of_OnPlayerNumberChanged_11() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___OnPlayerNumberChanged_11)); }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * get_OnPlayerNumberChanged_11() const { return ___OnPlayerNumberChanged_11; }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B ** get_address_of_OnPlayerNumberChanged_11() { return &___OnPlayerNumberChanged_11; }
inline void set_OnPlayerNumberChanged_11(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * value)
{
___OnPlayerNumberChanged_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerNumberChanged_11), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerColorChanged_12() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___OnPlayerColorChanged_12)); }
inline Action_1_tDE087FB8337F5181D6160B08FC098DCB4808E995 * get_OnPlayerColorChanged_12() const { return ___OnPlayerColorChanged_12; }
inline Action_1_tDE087FB8337F5181D6160B08FC098DCB4808E995 ** get_address_of_OnPlayerColorChanged_12() { return &___OnPlayerColorChanged_12; }
inline void set_OnPlayerColorChanged_12(Action_1_tDE087FB8337F5181D6160B08FC098DCB4808E995 * value)
{
___OnPlayerColorChanged_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerColorChanged_12), (void*)value);
}
inline static int32_t get_offset_of_OnPlayerDataChanged_13() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___OnPlayerDataChanged_13)); }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * get_OnPlayerDataChanged_13() const { return ___OnPlayerDataChanged_13; }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B ** get_address_of_OnPlayerDataChanged_13() { return &___OnPlayerDataChanged_13; }
inline void set_OnPlayerDataChanged_13(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * value)
{
___OnPlayerDataChanged_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnPlayerDataChanged_13), (void*)value);
}
inline static int32_t get_offset_of_playerUIPrefab_14() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerUIPrefab_14)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerUIPrefab_14() const { return ___playerUIPrefab_14; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerUIPrefab_14() { return &___playerUIPrefab_14; }
inline void set_playerUIPrefab_14(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___playerUIPrefab_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerUIPrefab_14), (void*)value);
}
inline static int32_t get_offset_of_playerUI_15() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerUI_15)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerUI_15() const { return ___playerUI_15; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerUI_15() { return &___playerUI_15; }
inline void set_playerUI_15(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___playerUI_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerUI_15), (void*)value);
}
inline static int32_t get_offset_of_playerNumber_16() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerNumber_16)); }
inline int32_t get_playerNumber_16() const { return ___playerNumber_16; }
inline int32_t* get_address_of_playerNumber_16() { return &___playerNumber_16; }
inline void set_playerNumber_16(int32_t value)
{
___playerNumber_16 = value;
}
inline static int32_t get_offset_of_playerData_17() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerData_17)); }
inline int32_t get_playerData_17() const { return ___playerData_17; }
inline int32_t* get_address_of_playerData_17() { return &___playerData_17; }
inline void set_playerData_17(int32_t value)
{
___playerData_17 = value;
}
inline static int32_t get_offset_of_playerColor_18() { return static_cast<int32_t>(offsetof(Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8, ___playerColor_18)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_playerColor_18() const { return ___playerColor_18; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_playerColor_18() { return &___playerColor_18; }
inline void set_playerColor_18(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___playerColor_18 = value;
}
};
// Mirror.Examples.Chat.Player
struct Player_tBEC4FFB14B3B261C1FFC7953264D930457898707 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.String Mirror.Examples.Chat.Player::playerName
String_t* ___playerName_11;
public:
inline static int32_t get_offset_of_playerName_11() { return static_cast<int32_t>(offsetof(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707, ___playerName_11)); }
inline String_t* get_playerName_11() const { return ___playerName_11; }
inline String_t** get_address_of_playerName_11() { return &___playerName_11; }
inline void set_playerName_11(String_t* value)
{
___playerName_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerName_11), (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_12;
public:
inline static int32_t get_offset_of_OnMessage_12() { return static_cast<int32_t>(offsetof(Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields, ___OnMessage_12)); }
inline Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * get_OnMessage_12() const { return ___OnMessage_12; }
inline Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE ** get_address_of_OnMessage_12() { return &___OnMessage_12; }
inline void set_OnMessage_12(Action_2_t9F5DC6F062AC6F3673C7A1A3EDF41E53976D17AE * value)
{
___OnMessage_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OnMessage_12), (void*)value);
}
};
// Mirror.Examples.Pong.Player
struct Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Examples.Pong.Player::speed
float ___speed_11;
// UnityEngine.Rigidbody2D Mirror.Examples.Pong.Player::rigidbody2d
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * ___rigidbody2d_12;
public:
inline static int32_t get_offset_of_speed_11() { return static_cast<int32_t>(offsetof(Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36, ___speed_11)); }
inline float get_speed_11() const { return ___speed_11; }
inline float* get_address_of_speed_11() { return &___speed_11; }
inline void set_speed_11(float value)
{
___speed_11 = value;
}
inline static int32_t get_offset_of_rigidbody2d_12() { return static_cast<int32_t>(offsetof(Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36, ___rigidbody2d_12)); }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * get_rigidbody2d_12() const { return ___rigidbody2d_12; }
inline Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 ** get_address_of_rigidbody2d_12() { return &___rigidbody2d_12; }
inline void set_rigidbody2d_12(Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * value)
{
___rigidbody2d_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rigidbody2d_12), (void*)value);
}
};
// Mirror.Examples.Additive.PlayerController
struct PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.CharacterController Mirror.Examples.Additive.PlayerController::characterController
CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * ___characterController_11;
// System.Single Mirror.Examples.Additive.PlayerController::moveSpeed
float ___moveSpeed_12;
// System.Single Mirror.Examples.Additive.PlayerController::turnSensitivity
float ___turnSensitivity_13;
// System.Single Mirror.Examples.Additive.PlayerController::maxTurnSpeed
float ___maxTurnSpeed_14;
// System.Single Mirror.Examples.Additive.PlayerController::horizontal
float ___horizontal_15;
// System.Single Mirror.Examples.Additive.PlayerController::vertical
float ___vertical_16;
// System.Single Mirror.Examples.Additive.PlayerController::turn
float ___turn_17;
// System.Single Mirror.Examples.Additive.PlayerController::jumpSpeed
float ___jumpSpeed_18;
// System.Boolean Mirror.Examples.Additive.PlayerController::isGrounded
bool ___isGrounded_19;
// System.Boolean Mirror.Examples.Additive.PlayerController::isFalling
bool ___isFalling_20;
// UnityEngine.Vector3 Mirror.Examples.Additive.PlayerController::velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_21;
public:
inline static int32_t get_offset_of_characterController_11() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___characterController_11)); }
inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * get_characterController_11() const { return ___characterController_11; }
inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E ** get_address_of_characterController_11() { return &___characterController_11; }
inline void set_characterController_11(CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * value)
{
___characterController_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___characterController_11), (void*)value);
}
inline static int32_t get_offset_of_moveSpeed_12() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___moveSpeed_12)); }
inline float get_moveSpeed_12() const { return ___moveSpeed_12; }
inline float* get_address_of_moveSpeed_12() { return &___moveSpeed_12; }
inline void set_moveSpeed_12(float value)
{
___moveSpeed_12 = value;
}
inline static int32_t get_offset_of_turnSensitivity_13() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___turnSensitivity_13)); }
inline float get_turnSensitivity_13() const { return ___turnSensitivity_13; }
inline float* get_address_of_turnSensitivity_13() { return &___turnSensitivity_13; }
inline void set_turnSensitivity_13(float value)
{
___turnSensitivity_13 = value;
}
inline static int32_t get_offset_of_maxTurnSpeed_14() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___maxTurnSpeed_14)); }
inline float get_maxTurnSpeed_14() const { return ___maxTurnSpeed_14; }
inline float* get_address_of_maxTurnSpeed_14() { return &___maxTurnSpeed_14; }
inline void set_maxTurnSpeed_14(float value)
{
___maxTurnSpeed_14 = value;
}
inline static int32_t get_offset_of_horizontal_15() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___horizontal_15)); }
inline float get_horizontal_15() const { return ___horizontal_15; }
inline float* get_address_of_horizontal_15() { return &___horizontal_15; }
inline void set_horizontal_15(float value)
{
___horizontal_15 = value;
}
inline static int32_t get_offset_of_vertical_16() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___vertical_16)); }
inline float get_vertical_16() const { return ___vertical_16; }
inline float* get_address_of_vertical_16() { return &___vertical_16; }
inline void set_vertical_16(float value)
{
___vertical_16 = value;
}
inline static int32_t get_offset_of_turn_17() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___turn_17)); }
inline float get_turn_17() const { return ___turn_17; }
inline float* get_address_of_turn_17() { return &___turn_17; }
inline void set_turn_17(float value)
{
___turn_17 = value;
}
inline static int32_t get_offset_of_jumpSpeed_18() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___jumpSpeed_18)); }
inline float get_jumpSpeed_18() const { return ___jumpSpeed_18; }
inline float* get_address_of_jumpSpeed_18() { return &___jumpSpeed_18; }
inline void set_jumpSpeed_18(float value)
{
___jumpSpeed_18 = value;
}
inline static int32_t get_offset_of_isGrounded_19() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___isGrounded_19)); }
inline bool get_isGrounded_19() const { return ___isGrounded_19; }
inline bool* get_address_of_isGrounded_19() { return &___isGrounded_19; }
inline void set_isGrounded_19(bool value)
{
___isGrounded_19 = value;
}
inline static int32_t get_offset_of_isFalling_20() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___isFalling_20)); }
inline bool get_isFalling_20() const { return ___isFalling_20; }
inline bool* get_address_of_isFalling_20() { return &___isFalling_20; }
inline void set_isFalling_20(bool value)
{
___isFalling_20 = value;
}
inline static int32_t get_offset_of_velocity_21() { return static_cast<int32_t>(offsetof(PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9, ___velocity_21)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_21() const { return ___velocity_21; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_21() { return &___velocity_21; }
inline void set_velocity_21(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___velocity_21 = value;
}
};
// Mirror.Examples.MultipleAdditiveScenes.PlayerController
struct PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.CharacterController Mirror.Examples.MultipleAdditiveScenes.PlayerController::characterController
CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * ___characterController_11;
// System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::moveSpeed
float ___moveSpeed_12;
// System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::turnSensitivity
float ___turnSensitivity_13;
// System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::maxTurnSpeed
float ___maxTurnSpeed_14;
// System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::horizontal
float ___horizontal_15;
// System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::vertical
float ___vertical_16;
// System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::turn
float ___turn_17;
// System.Single Mirror.Examples.MultipleAdditiveScenes.PlayerController::jumpSpeed
float ___jumpSpeed_18;
// System.Boolean Mirror.Examples.MultipleAdditiveScenes.PlayerController::isGrounded
bool ___isGrounded_19;
// System.Boolean Mirror.Examples.MultipleAdditiveScenes.PlayerController::isFalling
bool ___isFalling_20;
// UnityEngine.Vector3 Mirror.Examples.MultipleAdditiveScenes.PlayerController::velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_21;
public:
inline static int32_t get_offset_of_characterController_11() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___characterController_11)); }
inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * get_characterController_11() const { return ___characterController_11; }
inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E ** get_address_of_characterController_11() { return &___characterController_11; }
inline void set_characterController_11(CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * value)
{
___characterController_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___characterController_11), (void*)value);
}
inline static int32_t get_offset_of_moveSpeed_12() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___moveSpeed_12)); }
inline float get_moveSpeed_12() const { return ___moveSpeed_12; }
inline float* get_address_of_moveSpeed_12() { return &___moveSpeed_12; }
inline void set_moveSpeed_12(float value)
{
___moveSpeed_12 = value;
}
inline static int32_t get_offset_of_turnSensitivity_13() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___turnSensitivity_13)); }
inline float get_turnSensitivity_13() const { return ___turnSensitivity_13; }
inline float* get_address_of_turnSensitivity_13() { return &___turnSensitivity_13; }
inline void set_turnSensitivity_13(float value)
{
___turnSensitivity_13 = value;
}
inline static int32_t get_offset_of_maxTurnSpeed_14() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___maxTurnSpeed_14)); }
inline float get_maxTurnSpeed_14() const { return ___maxTurnSpeed_14; }
inline float* get_address_of_maxTurnSpeed_14() { return &___maxTurnSpeed_14; }
inline void set_maxTurnSpeed_14(float value)
{
___maxTurnSpeed_14 = value;
}
inline static int32_t get_offset_of_horizontal_15() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___horizontal_15)); }
inline float get_horizontal_15() const { return ___horizontal_15; }
inline float* get_address_of_horizontal_15() { return &___horizontal_15; }
inline void set_horizontal_15(float value)
{
___horizontal_15 = value;
}
inline static int32_t get_offset_of_vertical_16() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___vertical_16)); }
inline float get_vertical_16() const { return ___vertical_16; }
inline float* get_address_of_vertical_16() { return &___vertical_16; }
inline void set_vertical_16(float value)
{
___vertical_16 = value;
}
inline static int32_t get_offset_of_turn_17() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___turn_17)); }
inline float get_turn_17() const { return ___turn_17; }
inline float* get_address_of_turn_17() { return &___turn_17; }
inline void set_turn_17(float value)
{
___turn_17 = value;
}
inline static int32_t get_offset_of_jumpSpeed_18() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___jumpSpeed_18)); }
inline float get_jumpSpeed_18() const { return ___jumpSpeed_18; }
inline float* get_address_of_jumpSpeed_18() { return &___jumpSpeed_18; }
inline void set_jumpSpeed_18(float value)
{
___jumpSpeed_18 = value;
}
inline static int32_t get_offset_of_isGrounded_19() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___isGrounded_19)); }
inline bool get_isGrounded_19() const { return ___isGrounded_19; }
inline bool* get_address_of_isGrounded_19() { return &___isGrounded_19; }
inline void set_isGrounded_19(bool value)
{
___isGrounded_19 = value;
}
inline static int32_t get_offset_of_isFalling_20() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___isFalling_20)); }
inline bool get_isFalling_20() const { return ___isFalling_20; }
inline bool* get_address_of_isFalling_20() { return &___isFalling_20; }
inline void set_isFalling_20(bool value)
{
___isFalling_20 = value;
}
inline static int32_t get_offset_of_velocity_21() { return static_cast<int32_t>(offsetof(PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F, ___velocity_21)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_21() const { return ___velocity_21; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_21() { return &___velocity_21; }
inline void set_velocity_21(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___velocity_21 = value;
}
};
// Mirror.Examples.NetworkRoom.PlayerController
struct PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.CharacterController Mirror.Examples.NetworkRoom.PlayerController::characterController
CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * ___characterController_11;
// System.Single Mirror.Examples.NetworkRoom.PlayerController::moveSpeed
float ___moveSpeed_12;
// System.Single Mirror.Examples.NetworkRoom.PlayerController::turnSensitivity
float ___turnSensitivity_13;
// System.Single Mirror.Examples.NetworkRoom.PlayerController::maxTurnSpeed
float ___maxTurnSpeed_14;
// System.Single Mirror.Examples.NetworkRoom.PlayerController::horizontal
float ___horizontal_15;
// System.Single Mirror.Examples.NetworkRoom.PlayerController::vertical
float ___vertical_16;
// System.Single Mirror.Examples.NetworkRoom.PlayerController::turn
float ___turn_17;
// System.Single Mirror.Examples.NetworkRoom.PlayerController::jumpSpeed
float ___jumpSpeed_18;
// System.Boolean Mirror.Examples.NetworkRoom.PlayerController::isGrounded
bool ___isGrounded_19;
// System.Boolean Mirror.Examples.NetworkRoom.PlayerController::isFalling
bool ___isFalling_20;
// UnityEngine.Vector3 Mirror.Examples.NetworkRoom.PlayerController::velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___velocity_21;
public:
inline static int32_t get_offset_of_characterController_11() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___characterController_11)); }
inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * get_characterController_11() const { return ___characterController_11; }
inline CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E ** get_address_of_characterController_11() { return &___characterController_11; }
inline void set_characterController_11(CharacterController_tCCF68621C784CCB3391E0C66FE134F6F93DD6C2E * value)
{
___characterController_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___characterController_11), (void*)value);
}
inline static int32_t get_offset_of_moveSpeed_12() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___moveSpeed_12)); }
inline float get_moveSpeed_12() const { return ___moveSpeed_12; }
inline float* get_address_of_moveSpeed_12() { return &___moveSpeed_12; }
inline void set_moveSpeed_12(float value)
{
___moveSpeed_12 = value;
}
inline static int32_t get_offset_of_turnSensitivity_13() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___turnSensitivity_13)); }
inline float get_turnSensitivity_13() const { return ___turnSensitivity_13; }
inline float* get_address_of_turnSensitivity_13() { return &___turnSensitivity_13; }
inline void set_turnSensitivity_13(float value)
{
___turnSensitivity_13 = value;
}
inline static int32_t get_offset_of_maxTurnSpeed_14() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___maxTurnSpeed_14)); }
inline float get_maxTurnSpeed_14() const { return ___maxTurnSpeed_14; }
inline float* get_address_of_maxTurnSpeed_14() { return &___maxTurnSpeed_14; }
inline void set_maxTurnSpeed_14(float value)
{
___maxTurnSpeed_14 = value;
}
inline static int32_t get_offset_of_horizontal_15() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___horizontal_15)); }
inline float get_horizontal_15() const { return ___horizontal_15; }
inline float* get_address_of_horizontal_15() { return &___horizontal_15; }
inline void set_horizontal_15(float value)
{
___horizontal_15 = value;
}
inline static int32_t get_offset_of_vertical_16() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___vertical_16)); }
inline float get_vertical_16() const { return ___vertical_16; }
inline float* get_address_of_vertical_16() { return &___vertical_16; }
inline void set_vertical_16(float value)
{
___vertical_16 = value;
}
inline static int32_t get_offset_of_turn_17() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___turn_17)); }
inline float get_turn_17() const { return ___turn_17; }
inline float* get_address_of_turn_17() { return &___turn_17; }
inline void set_turn_17(float value)
{
___turn_17 = value;
}
inline static int32_t get_offset_of_jumpSpeed_18() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___jumpSpeed_18)); }
inline float get_jumpSpeed_18() const { return ___jumpSpeed_18; }
inline float* get_address_of_jumpSpeed_18() { return &___jumpSpeed_18; }
inline void set_jumpSpeed_18(float value)
{
___jumpSpeed_18 = value;
}
inline static int32_t get_offset_of_isGrounded_19() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___isGrounded_19)); }
inline bool get_isGrounded_19() const { return ___isGrounded_19; }
inline bool* get_address_of_isGrounded_19() { return &___isGrounded_19; }
inline void set_isGrounded_19(bool value)
{
___isGrounded_19 = value;
}
inline static int32_t get_offset_of_isFalling_20() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___isFalling_20)); }
inline bool get_isFalling_20() const { return ___isFalling_20; }
inline bool* get_address_of_isFalling_20() { return &___isFalling_20; }
inline void set_isFalling_20(bool value)
{
___isFalling_20 = value;
}
inline static int32_t get_offset_of_velocity_21() { return static_cast<int32_t>(offsetof(PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B, ___velocity_21)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_velocity_21() const { return ___velocity_21; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_velocity_21() { return &___velocity_21; }
inline void set_velocity_21(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___velocity_21 = value;
}
};
// Mirror.Examples.Benchmark.PlayerMovement
struct PlayerMovement_t84B7DCFE51F6D83D3D38E0ECDAD7DE6894751BBF : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Examples.Benchmark.PlayerMovement::speed
float ___speed_11;
public:
inline static int32_t get_offset_of_speed_11() { return static_cast<int32_t>(offsetof(PlayerMovement_t84B7DCFE51F6D83D3D38E0ECDAD7DE6894751BBF, ___speed_11)); }
inline float get_speed_11() const { return ___speed_11; }
inline float* get_address_of_speed_11() { return &___speed_11; }
inline void set_speed_11(float value)
{
___speed_11 = value;
}
};
// Mirror.Examples.MultipleAdditiveScenes.PlayerScore
struct PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::playerNumber
int32_t ___playerNumber_11;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::scoreIndex
int32_t ___scoreIndex_12;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::matchIndex
int32_t ___matchIndex_13;
// System.UInt32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::score
uint32_t ___score_14;
// System.Int32 Mirror.Examples.MultipleAdditiveScenes.PlayerScore::clientMatchIndex
int32_t ___clientMatchIndex_15;
public:
inline static int32_t get_offset_of_playerNumber_11() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___playerNumber_11)); }
inline int32_t get_playerNumber_11() const { return ___playerNumber_11; }
inline int32_t* get_address_of_playerNumber_11() { return &___playerNumber_11; }
inline void set_playerNumber_11(int32_t value)
{
___playerNumber_11 = value;
}
inline static int32_t get_offset_of_scoreIndex_12() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___scoreIndex_12)); }
inline int32_t get_scoreIndex_12() const { return ___scoreIndex_12; }
inline int32_t* get_address_of_scoreIndex_12() { return &___scoreIndex_12; }
inline void set_scoreIndex_12(int32_t value)
{
___scoreIndex_12 = value;
}
inline static int32_t get_offset_of_matchIndex_13() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___matchIndex_13)); }
inline int32_t get_matchIndex_13() const { return ___matchIndex_13; }
inline int32_t* get_address_of_matchIndex_13() { return &___matchIndex_13; }
inline void set_matchIndex_13(int32_t value)
{
___matchIndex_13 = value;
}
inline static int32_t get_offset_of_score_14() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___score_14)); }
inline uint32_t get_score_14() const { return ___score_14; }
inline uint32_t* get_address_of_score_14() { return &___score_14; }
inline void set_score_14(uint32_t value)
{
___score_14 = value;
}
inline static int32_t get_offset_of_clientMatchIndex_15() { return static_cast<int32_t>(offsetof(PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD, ___clientMatchIndex_15)); }
inline int32_t get_clientMatchIndex_15() const { return ___clientMatchIndex_15; }
inline int32_t* get_address_of_clientMatchIndex_15() { return &___clientMatchIndex_15; }
inline void set_clientMatchIndex_15(int32_t value)
{
___clientMatchIndex_15 = value;
}
};
// Mirror.Examples.NetworkRoom.PlayerScore
struct PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Int32 Mirror.Examples.NetworkRoom.PlayerScore::index
int32_t ___index_11;
// System.UInt32 Mirror.Examples.NetworkRoom.PlayerScore::score
uint32_t ___score_12;
public:
inline static int32_t get_offset_of_index_11() { return static_cast<int32_t>(offsetof(PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6, ___index_11)); }
inline int32_t get_index_11() const { return ___index_11; }
inline int32_t* get_address_of_index_11() { return &___index_11; }
inline void set_index_11(int32_t value)
{
___index_11 = value;
}
inline static int32_t get_offset_of_score_12() { return static_cast<int32_t>(offsetof(PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6, ___score_12)); }
inline uint32_t get_score_12() const { return ___score_12; }
inline uint32_t* get_address_of_score_12() { return &___score_12; }
inline void set_score_12(uint32_t value)
{
___score_12 = value;
}
};
// Mirror.Examples.Tanks.Projectile
struct Projectile_t1C5430FC42935877498341CC359F93F1987C4586 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single Mirror.Examples.Tanks.Projectile::destroyAfter
float ___destroyAfter_11;
// UnityEngine.Rigidbody Mirror.Examples.Tanks.Projectile::rigidBody
Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___rigidBody_12;
// System.Single Mirror.Examples.Tanks.Projectile::force
float ___force_13;
public:
inline static int32_t get_offset_of_destroyAfter_11() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___destroyAfter_11)); }
inline float get_destroyAfter_11() const { return ___destroyAfter_11; }
inline float* get_address_of_destroyAfter_11() { return &___destroyAfter_11; }
inline void set_destroyAfter_11(float value)
{
___destroyAfter_11 = value;
}
inline static int32_t get_offset_of_rigidBody_12() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___rigidBody_12)); }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_rigidBody_12() const { return ___rigidBody_12; }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_rigidBody_12() { return &___rigidBody_12; }
inline void set_rigidBody_12(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value)
{
___rigidBody_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rigidBody_12), (void*)value);
}
inline static int32_t get_offset_of_force_13() { return static_cast<int32_t>(offsetof(Projectile_t1C5430FC42935877498341CC359F93F1987C4586, ___force_13)); }
inline float get_force_13() const { return ___force_13; }
inline float* get_address_of_force_13() { return &___force_13; }
inline void set_force_13(float value)
{
___force_13 = value;
}
};
// Mirror.Examples.Additive.RandomColor
struct RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Color32 Mirror.Examples.Additive.RandomColor::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_11;
// UnityEngine.Material Mirror.Examples.Additive.RandomColor::cachedMaterial
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___cachedMaterial_12;
public:
inline static int32_t get_offset_of_color_11() { return static_cast<int32_t>(offsetof(RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6, ___color_11)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_11() const { return ___color_11; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_11() { return &___color_11; }
inline void set_color_11(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_11 = value;
}
inline static int32_t get_offset_of_cachedMaterial_12() { return static_cast<int32_t>(offsetof(RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6, ___cachedMaterial_12)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_cachedMaterial_12() const { return ___cachedMaterial_12; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_cachedMaterial_12() { return &___cachedMaterial_12; }
inline void set_cachedMaterial_12(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___cachedMaterial_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cachedMaterial_12), (void*)value);
}
};
// Mirror.Examples.MultipleAdditiveScenes.RandomColor
struct RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Color32 Mirror.Examples.MultipleAdditiveScenes.RandomColor::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_11;
// UnityEngine.Material Mirror.Examples.MultipleAdditiveScenes.RandomColor::cachedMaterial
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___cachedMaterial_12;
public:
inline static int32_t get_offset_of_color_11() { return static_cast<int32_t>(offsetof(RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455, ___color_11)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_11() const { return ___color_11; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_11() { return &___color_11; }
inline void set_color_11(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_11 = value;
}
inline static int32_t get_offset_of_cachedMaterial_12() { return static_cast<int32_t>(offsetof(RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455, ___cachedMaterial_12)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_cachedMaterial_12() const { return ___cachedMaterial_12; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_cachedMaterial_12() { return &___cachedMaterial_12; }
inline void set_cachedMaterial_12(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___cachedMaterial_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cachedMaterial_12), (void*)value);
}
};
// Mirror.Examples.NetworkRoom.RandomColor
struct RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Color32 Mirror.Examples.NetworkRoom.RandomColor::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_11;
// UnityEngine.Material Mirror.Examples.NetworkRoom.RandomColor::cachedMaterial
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___cachedMaterial_12;
public:
inline static int32_t get_offset_of_color_11() { return static_cast<int32_t>(offsetof(RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F, ___color_11)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_11() const { return ___color_11; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_11() { return &___color_11; }
inline void set_color_11(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_11 = value;
}
inline static int32_t get_offset_of_cachedMaterial_12() { return static_cast<int32_t>(offsetof(RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F, ___cachedMaterial_12)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_cachedMaterial_12() const { return ___cachedMaterial_12; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_cachedMaterial_12() { return &___cachedMaterial_12; }
inline void set_cachedMaterial_12(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___cachedMaterial_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cachedMaterial_12), (void*)value);
}
};
// Mirror.Examples.MultipleAdditiveScenes.Reward
struct Reward_t82A40753189BAB49A979289A29CEC56AE94399D2 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Boolean Mirror.Examples.MultipleAdditiveScenes.Reward::available
bool ___available_11;
// Mirror.Examples.MultipleAdditiveScenes.RandomColor Mirror.Examples.MultipleAdditiveScenes.Reward::randomColor
RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * ___randomColor_12;
public:
inline static int32_t get_offset_of_available_11() { return static_cast<int32_t>(offsetof(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2, ___available_11)); }
inline bool get_available_11() const { return ___available_11; }
inline bool* get_address_of_available_11() { return &___available_11; }
inline void set_available_11(bool value)
{
___available_11 = value;
}
inline static int32_t get_offset_of_randomColor_12() { return static_cast<int32_t>(offsetof(Reward_t82A40753189BAB49A979289A29CEC56AE94399D2, ___randomColor_12)); }
inline RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * get_randomColor_12() const { return ___randomColor_12; }
inline RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 ** get_address_of_randomColor_12() { return &___randomColor_12; }
inline void set_randomColor_12(RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455 * value)
{
___randomColor_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___randomColor_12), (void*)value);
}
};
// Mirror.Examples.NetworkRoom.Reward
struct Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Boolean Mirror.Examples.NetworkRoom.Reward::available
bool ___available_11;
// Mirror.Examples.NetworkRoom.RandomColor Mirror.Examples.NetworkRoom.Reward::randomColor
RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * ___randomColor_12;
public:
inline static int32_t get_offset_of_available_11() { return static_cast<int32_t>(offsetof(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4, ___available_11)); }
inline bool get_available_11() const { return ___available_11; }
inline bool* get_address_of_available_11() { return &___available_11; }
inline void set_available_11(bool value)
{
___available_11 = value;
}
inline static int32_t get_offset_of_randomColor_12() { return static_cast<int32_t>(offsetof(Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4, ___randomColor_12)); }
inline RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * get_randomColor_12() const { return ___randomColor_12; }
inline RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F ** get_address_of_randomColor_12() { return &___randomColor_12; }
inline void set_randomColor_12(RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F * value)
{
___randomColor_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___randomColor_12), (void*)value);
}
};
// Mirror.Examples.Additive.ShootingTankBehaviour
struct ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.Quaternion Mirror.Examples.Additive.ShootingTankBehaviour::rotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_11;
// Mirror.NetworkAnimator Mirror.Examples.Additive.ShootingTankBehaviour::networkAnimator
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * ___networkAnimator_12;
// System.Single Mirror.Examples.Additive.ShootingTankBehaviour::turnSpeed
float ___turnSpeed_13;
public:
inline static int32_t get_offset_of_rotation_11() { return static_cast<int32_t>(offsetof(ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF, ___rotation_11)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_11() const { return ___rotation_11; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_11() { return &___rotation_11; }
inline void set_rotation_11(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___rotation_11 = value;
}
inline static int32_t get_offset_of_networkAnimator_12() { return static_cast<int32_t>(offsetof(ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF, ___networkAnimator_12)); }
inline NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * get_networkAnimator_12() const { return ___networkAnimator_12; }
inline NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 ** get_address_of_networkAnimator_12() { return &___networkAnimator_12; }
inline void set_networkAnimator_12(NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550 * value)
{
___networkAnimator_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___networkAnimator_12), (void*)value);
}
inline static int32_t get_offset_of_turnSpeed_13() { return static_cast<int32_t>(offsetof(ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF, ___turnSpeed_13)); }
inline float get_turnSpeed_13() const { return ___turnSpeed_13; }
inline float* get_address_of_turnSpeed_13() { return &___turnSpeed_13; }
inline void set_turnSpeed_13(float value)
{
___turnSpeed_13 = value;
}
};
// Mirror.SimpleWeb.SimpleWebTransport
struct SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5 : public Transport_t426FCBB81EC1C49127D5442573876AF4F83E0A1D
{
public:
// System.UInt16 Mirror.SimpleWeb.SimpleWebTransport::port
uint16_t ___port_15;
// System.Int32 Mirror.SimpleWeb.SimpleWebTransport::maxMessageSize
int32_t ___maxMessageSize_16;
// System.Int32 Mirror.SimpleWeb.SimpleWebTransport::handshakeMaxSize
int32_t ___handshakeMaxSize_17;
// System.Boolean Mirror.SimpleWeb.SimpleWebTransport::noDelay
bool ___noDelay_18;
// System.Int32 Mirror.SimpleWeb.SimpleWebTransport::sendTimeout
int32_t ___sendTimeout_19;
// System.Int32 Mirror.SimpleWeb.SimpleWebTransport::receiveTimeout
int32_t ___receiveTimeout_20;
// System.Int32 Mirror.SimpleWeb.SimpleWebTransport::serverMaxMessagesPerTick
int32_t ___serverMaxMessagesPerTick_21;
// System.Int32 Mirror.SimpleWeb.SimpleWebTransport::clientMaxMessagesPerTick
int32_t ___clientMaxMessagesPerTick_22;
// System.Boolean Mirror.SimpleWeb.SimpleWebTransport::batchSend
bool ___batchSend_23;
// System.Boolean Mirror.SimpleWeb.SimpleWebTransport::waitBeforeSend
bool ___waitBeforeSend_24;
// System.Boolean Mirror.SimpleWeb.SimpleWebTransport::clientUseWss
bool ___clientUseWss_25;
// System.Boolean Mirror.SimpleWeb.SimpleWebTransport::sslEnabled
bool ___sslEnabled_26;
// System.String Mirror.SimpleWeb.SimpleWebTransport::sslCertJson
String_t* ___sslCertJson_27;
// System.Security.Authentication.SslProtocols Mirror.SimpleWeb.SimpleWebTransport::sslProtocols
int32_t ___sslProtocols_28;
// Mirror.SimpleWeb.Log/Levels Mirror.SimpleWeb.SimpleWebTransport::_logLevels
int32_t ____logLevels_29;
// Mirror.SimpleWeb.SimpleWebClient Mirror.SimpleWeb.SimpleWebTransport::client
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0 * ___client_30;
// Mirror.SimpleWeb.SimpleWebServer Mirror.SimpleWeb.SimpleWebTransport::server
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881 * ___server_31;
public:
inline static int32_t get_offset_of_port_15() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___port_15)); }
inline uint16_t get_port_15() const { return ___port_15; }
inline uint16_t* get_address_of_port_15() { return &___port_15; }
inline void set_port_15(uint16_t value)
{
___port_15 = value;
}
inline static int32_t get_offset_of_maxMessageSize_16() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___maxMessageSize_16)); }
inline int32_t get_maxMessageSize_16() const { return ___maxMessageSize_16; }
inline int32_t* get_address_of_maxMessageSize_16() { return &___maxMessageSize_16; }
inline void set_maxMessageSize_16(int32_t value)
{
___maxMessageSize_16 = value;
}
inline static int32_t get_offset_of_handshakeMaxSize_17() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___handshakeMaxSize_17)); }
inline int32_t get_handshakeMaxSize_17() const { return ___handshakeMaxSize_17; }
inline int32_t* get_address_of_handshakeMaxSize_17() { return &___handshakeMaxSize_17; }
inline void set_handshakeMaxSize_17(int32_t value)
{
___handshakeMaxSize_17 = value;
}
inline static int32_t get_offset_of_noDelay_18() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___noDelay_18)); }
inline bool get_noDelay_18() const { return ___noDelay_18; }
inline bool* get_address_of_noDelay_18() { return &___noDelay_18; }
inline void set_noDelay_18(bool value)
{
___noDelay_18 = value;
}
inline static int32_t get_offset_of_sendTimeout_19() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___sendTimeout_19)); }
inline int32_t get_sendTimeout_19() const { return ___sendTimeout_19; }
inline int32_t* get_address_of_sendTimeout_19() { return &___sendTimeout_19; }
inline void set_sendTimeout_19(int32_t value)
{
___sendTimeout_19 = value;
}
inline static int32_t get_offset_of_receiveTimeout_20() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___receiveTimeout_20)); }
inline int32_t get_receiveTimeout_20() const { return ___receiveTimeout_20; }
inline int32_t* get_address_of_receiveTimeout_20() { return &___receiveTimeout_20; }
inline void set_receiveTimeout_20(int32_t value)
{
___receiveTimeout_20 = value;
}
inline static int32_t get_offset_of_serverMaxMessagesPerTick_21() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___serverMaxMessagesPerTick_21)); }
inline int32_t get_serverMaxMessagesPerTick_21() const { return ___serverMaxMessagesPerTick_21; }
inline int32_t* get_address_of_serverMaxMessagesPerTick_21() { return &___serverMaxMessagesPerTick_21; }
inline void set_serverMaxMessagesPerTick_21(int32_t value)
{
___serverMaxMessagesPerTick_21 = value;
}
inline static int32_t get_offset_of_clientMaxMessagesPerTick_22() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___clientMaxMessagesPerTick_22)); }
inline int32_t get_clientMaxMessagesPerTick_22() const { return ___clientMaxMessagesPerTick_22; }
inline int32_t* get_address_of_clientMaxMessagesPerTick_22() { return &___clientMaxMessagesPerTick_22; }
inline void set_clientMaxMessagesPerTick_22(int32_t value)
{
___clientMaxMessagesPerTick_22 = value;
}
inline static int32_t get_offset_of_batchSend_23() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___batchSend_23)); }
inline bool get_batchSend_23() const { return ___batchSend_23; }
inline bool* get_address_of_batchSend_23() { return &___batchSend_23; }
inline void set_batchSend_23(bool value)
{
___batchSend_23 = value;
}
inline static int32_t get_offset_of_waitBeforeSend_24() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___waitBeforeSend_24)); }
inline bool get_waitBeforeSend_24() const { return ___waitBeforeSend_24; }
inline bool* get_address_of_waitBeforeSend_24() { return &___waitBeforeSend_24; }
inline void set_waitBeforeSend_24(bool value)
{
___waitBeforeSend_24 = value;
}
inline static int32_t get_offset_of_clientUseWss_25() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___clientUseWss_25)); }
inline bool get_clientUseWss_25() const { return ___clientUseWss_25; }
inline bool* get_address_of_clientUseWss_25() { return &___clientUseWss_25; }
inline void set_clientUseWss_25(bool value)
{
___clientUseWss_25 = value;
}
inline static int32_t get_offset_of_sslEnabled_26() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___sslEnabled_26)); }
inline bool get_sslEnabled_26() const { return ___sslEnabled_26; }
inline bool* get_address_of_sslEnabled_26() { return &___sslEnabled_26; }
inline void set_sslEnabled_26(bool value)
{
___sslEnabled_26 = value;
}
inline static int32_t get_offset_of_sslCertJson_27() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___sslCertJson_27)); }
inline String_t* get_sslCertJson_27() const { return ___sslCertJson_27; }
inline String_t** get_address_of_sslCertJson_27() { return &___sslCertJson_27; }
inline void set_sslCertJson_27(String_t* value)
{
___sslCertJson_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sslCertJson_27), (void*)value);
}
inline static int32_t get_offset_of_sslProtocols_28() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___sslProtocols_28)); }
inline int32_t get_sslProtocols_28() const { return ___sslProtocols_28; }
inline int32_t* get_address_of_sslProtocols_28() { return &___sslProtocols_28; }
inline void set_sslProtocols_28(int32_t value)
{
___sslProtocols_28 = value;
}
inline static int32_t get_offset_of__logLevels_29() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ____logLevels_29)); }
inline int32_t get__logLevels_29() const { return ____logLevels_29; }
inline int32_t* get_address_of__logLevels_29() { return &____logLevels_29; }
inline void set__logLevels_29(int32_t value)
{
____logLevels_29 = value;
}
inline static int32_t get_offset_of_client_30() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___client_30)); }
inline SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0 * get_client_30() const { return ___client_30; }
inline SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0 ** get_address_of_client_30() { return &___client_30; }
inline void set_client_30(SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0 * value)
{
___client_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___client_30), (void*)value);
}
inline static int32_t get_offset_of_server_31() { return static_cast<int32_t>(offsetof(SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5, ___server_31)); }
inline SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881 * get_server_31() const { return ___server_31; }
inline SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881 ** get_address_of_server_31() { return &___server_31; }
inline void set_server_31(SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881 * value)
{
___server_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___server_31), (void*)value);
}
};
// Mirror.SpatialHashingInterestManagement
struct SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912 : public InterestManagement_tD79A9D8F926F818D953AD8C27ECF2FB03B6327A7
{
public:
// System.Int32 Mirror.SpatialHashingInterestManagement::visRange
int32_t ___visRange_4;
// System.Single Mirror.SpatialHashingInterestManagement::rebuildInterval
float ___rebuildInterval_5;
// System.Double Mirror.SpatialHashingInterestManagement::lastRebuildTime
double ___lastRebuildTime_6;
// Mirror.SpatialHashingInterestManagement/CheckMethod Mirror.SpatialHashingInterestManagement::checkMethod
int32_t ___checkMethod_7;
// System.Boolean Mirror.SpatialHashingInterestManagement::showSlider
bool ___showSlider_8;
// Mirror.Grid2D`1<Mirror.NetworkConnection> Mirror.SpatialHashingInterestManagement::grid
Grid2D_1_tC786F7DED4BEF8B433939EB9BCC28385BD615D2A * ___grid_9;
public:
inline static int32_t get_offset_of_visRange_4() { return static_cast<int32_t>(offsetof(SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912, ___visRange_4)); }
inline int32_t get_visRange_4() const { return ___visRange_4; }
inline int32_t* get_address_of_visRange_4() { return &___visRange_4; }
inline void set_visRange_4(int32_t value)
{
___visRange_4 = value;
}
inline static int32_t get_offset_of_rebuildInterval_5() { return static_cast<int32_t>(offsetof(SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912, ___rebuildInterval_5)); }
inline float get_rebuildInterval_5() const { return ___rebuildInterval_5; }
inline float* get_address_of_rebuildInterval_5() { return &___rebuildInterval_5; }
inline void set_rebuildInterval_5(float value)
{
___rebuildInterval_5 = value;
}
inline static int32_t get_offset_of_lastRebuildTime_6() { return static_cast<int32_t>(offsetof(SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912, ___lastRebuildTime_6)); }
inline double get_lastRebuildTime_6() const { return ___lastRebuildTime_6; }
inline double* get_address_of_lastRebuildTime_6() { return &___lastRebuildTime_6; }
inline void set_lastRebuildTime_6(double value)
{
___lastRebuildTime_6 = value;
}
inline static int32_t get_offset_of_checkMethod_7() { return static_cast<int32_t>(offsetof(SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912, ___checkMethod_7)); }
inline int32_t get_checkMethod_7() const { return ___checkMethod_7; }
inline int32_t* get_address_of_checkMethod_7() { return &___checkMethod_7; }
inline void set_checkMethod_7(int32_t value)
{
___checkMethod_7 = value;
}
inline static int32_t get_offset_of_showSlider_8() { return static_cast<int32_t>(offsetof(SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912, ___showSlider_8)); }
inline bool get_showSlider_8() const { return ___showSlider_8; }
inline bool* get_address_of_showSlider_8() { return &___showSlider_8; }
inline void set_showSlider_8(bool value)
{
___showSlider_8 = value;
}
inline static int32_t get_offset_of_grid_9() { return static_cast<int32_t>(offsetof(SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912, ___grid_9)); }
inline Grid2D_1_tC786F7DED4BEF8B433939EB9BCC28385BD615D2A * get_grid_9() const { return ___grid_9; }
inline Grid2D_1_tC786F7DED4BEF8B433939EB9BCC28385BD615D2A ** get_address_of_grid_9() { return &___grid_9; }
inline void set_grid_9(Grid2D_1_tC786F7DED4BEF8B433939EB9BCC28385BD615D2A * value)
{
___grid_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___grid_9), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.StickControl
struct StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49 : public Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.StickControl::<up>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CupU3Ek__BackingField_24;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.StickControl::<down>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CdownU3Ek__BackingField_25;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.StickControl::<left>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CleftU3Ek__BackingField_26;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.Controls.StickControl::<right>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CrightU3Ek__BackingField_27;
public:
inline static int32_t get_offset_of_U3CupU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49, ___U3CupU3Ek__BackingField_24)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CupU3Ek__BackingField_24() const { return ___U3CupU3Ek__BackingField_24; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CupU3Ek__BackingField_24() { return &___U3CupU3Ek__BackingField_24; }
inline void set_U3CupU3Ek__BackingField_24(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CupU3Ek__BackingField_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CupU3Ek__BackingField_24), (void*)value);
}
inline static int32_t get_offset_of_U3CdownU3Ek__BackingField_25() { return static_cast<int32_t>(offsetof(StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49, ___U3CdownU3Ek__BackingField_25)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CdownU3Ek__BackingField_25() const { return ___U3CdownU3Ek__BackingField_25; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CdownU3Ek__BackingField_25() { return &___U3CdownU3Ek__BackingField_25; }
inline void set_U3CdownU3Ek__BackingField_25(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CdownU3Ek__BackingField_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdownU3Ek__BackingField_25), (void*)value);
}
inline static int32_t get_offset_of_U3CleftU3Ek__BackingField_26() { return static_cast<int32_t>(offsetof(StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49, ___U3CleftU3Ek__BackingField_26)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CleftU3Ek__BackingField_26() const { return ___U3CleftU3Ek__BackingField_26; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CleftU3Ek__BackingField_26() { return &___U3CleftU3Ek__BackingField_26; }
inline void set_U3CleftU3Ek__BackingField_26(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CleftU3Ek__BackingField_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftU3Ek__BackingField_26), (void*)value);
}
inline static int32_t get_offset_of_U3CrightU3Ek__BackingField_27() { return static_cast<int32_t>(offsetof(StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49, ___U3CrightU3Ek__BackingField_27)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CrightU3Ek__BackingField_27() const { return ___U3CrightU3Ek__BackingField_27; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CrightU3Ek__BackingField_27() { return &___U3CrightU3Ek__BackingField_27; }
inline void set_U3CrightU3Ek__BackingField_27(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CrightU3Ek__BackingField_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightU3Ek__BackingField_27), (void*)value);
}
};
// UnityEngine.InputSystem.Switch.SwitchProControllerHID
struct SwitchProControllerHID_t6B2D8B689E14A713B613289E46B596266C94E011 : public Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C
{
public:
public:
};
// Mirror.Examples.Tanks.Tank
struct Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// UnityEngine.AI.NavMeshAgent Mirror.Examples.Tanks.Tank::agent
NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * ___agent_11;
// UnityEngine.Animator Mirror.Examples.Tanks.Tank::animator
Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___animator_12;
// System.Single Mirror.Examples.Tanks.Tank::rotationSpeed
float ___rotationSpeed_13;
// UnityEngine.KeyCode Mirror.Examples.Tanks.Tank::shootKey
int32_t ___shootKey_14;
// UnityEngine.GameObject Mirror.Examples.Tanks.Tank::projectilePrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___projectilePrefab_15;
// UnityEngine.Transform Mirror.Examples.Tanks.Tank::projectileMount
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___projectileMount_16;
public:
inline static int32_t get_offset_of_agent_11() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___agent_11)); }
inline NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * get_agent_11() const { return ___agent_11; }
inline NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B ** get_address_of_agent_11() { return &___agent_11; }
inline void set_agent_11(NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * value)
{
___agent_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___agent_11), (void*)value);
}
inline static int32_t get_offset_of_animator_12() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___animator_12)); }
inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_animator_12() const { return ___animator_12; }
inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_animator_12() { return &___animator_12; }
inline void set_animator_12(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value)
{
___animator_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___animator_12), (void*)value);
}
inline static int32_t get_offset_of_rotationSpeed_13() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___rotationSpeed_13)); }
inline float get_rotationSpeed_13() const { return ___rotationSpeed_13; }
inline float* get_address_of_rotationSpeed_13() { return &___rotationSpeed_13; }
inline void set_rotationSpeed_13(float value)
{
___rotationSpeed_13 = value;
}
inline static int32_t get_offset_of_shootKey_14() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___shootKey_14)); }
inline int32_t get_shootKey_14() const { return ___shootKey_14; }
inline int32_t* get_address_of_shootKey_14() { return &___shootKey_14; }
inline void set_shootKey_14(int32_t value)
{
___shootKey_14 = value;
}
inline static int32_t get_offset_of_projectilePrefab_15() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___projectilePrefab_15)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_projectilePrefab_15() const { return ___projectilePrefab_15; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_projectilePrefab_15() { return &___projectilePrefab_15; }
inline void set_projectilePrefab_15(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___projectilePrefab_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___projectilePrefab_15), (void*)value);
}
inline static int32_t get_offset_of_projectileMount_16() { return static_cast<int32_t>(offsetof(Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8, ___projectileMount_16)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_projectileMount_16() const { return ___projectileMount_16; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_projectileMount_16() { return &___projectileMount_16; }
inline void set_projectileMount_16(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
___projectileMount_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___projectileMount_16), (void*)value);
}
};
// Mirror.Authenticators.TimeoutAuthenticator
struct TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01 : public NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF
{
public:
// Mirror.NetworkAuthenticator Mirror.Authenticators.TimeoutAuthenticator::authenticator
NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * ___authenticator_6;
// System.Single Mirror.Authenticators.TimeoutAuthenticator::timeout
float ___timeout_7;
public:
inline static int32_t get_offset_of_authenticator_6() { return static_cast<int32_t>(offsetof(TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01, ___authenticator_6)); }
inline NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * get_authenticator_6() const { return ___authenticator_6; }
inline NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF ** get_address_of_authenticator_6() { return &___authenticator_6; }
inline void set_authenticator_6(NetworkAuthenticator_t6A4A785E3C44826F033B6E4DC140A784D32341DF * value)
{
___authenticator_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___authenticator_6), (void*)value);
}
inline static int32_t get_offset_of_timeout_7() { return static_cast<int32_t>(offsetof(TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01, ___timeout_7)); }
inline float get_timeout_7() const { return ___timeout_7; }
inline float* get_address_of_timeout_7() { return &___timeout_7; }
inline void set_timeout_7(float value)
{
___timeout_7 = value;
}
};
// VRPlayerController
struct VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817 : public NetworkBehaviour_t47DD4FB3737F8D6119DC03C10E899E61DFBDD9C4
{
public:
// System.Single VRPlayerController::playerSpeed
float ___playerSpeed_11;
// System.Single VRPlayerController::moveSens
float ___moveSens_12;
// UnityEngine.Collider VRPlayerController::col
Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * ___col_13;
// UnityEngine.Rigidbody VRPlayerController::rb
Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___rb_14;
// UnityEngine.GameObject VRPlayerController::playerRig
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerRig_15;
// UnityEngine.GameObject VRPlayerController::playerCamera
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___playerCamera_16;
// UnityEngine.GameObject VRPlayerController::leftHand
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___leftHand_17;
// UnityEngine.GameObject VRPlayerController::rightHand
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rightHand_18;
// UnityEngine.Vector3 VRPlayerController::prevPlayerLoc
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___prevPlayerLoc_19;
// UnityEngine.Vector3 VRPlayerController::prevLeftHandLoc
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___prevLeftHandLoc_20;
// UnityEngine.Vector3 VRPlayerController::prevRightHandLoc
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___prevRightHandLoc_21;
public:
inline static int32_t get_offset_of_playerSpeed_11() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___playerSpeed_11)); }
inline float get_playerSpeed_11() const { return ___playerSpeed_11; }
inline float* get_address_of_playerSpeed_11() { return &___playerSpeed_11; }
inline void set_playerSpeed_11(float value)
{
___playerSpeed_11 = value;
}
inline static int32_t get_offset_of_moveSens_12() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___moveSens_12)); }
inline float get_moveSens_12() const { return ___moveSens_12; }
inline float* get_address_of_moveSens_12() { return &___moveSens_12; }
inline void set_moveSens_12(float value)
{
___moveSens_12 = value;
}
inline static int32_t get_offset_of_col_13() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___col_13)); }
inline Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * get_col_13() const { return ___col_13; }
inline Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 ** get_address_of_col_13() { return &___col_13; }
inline void set_col_13(Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 * value)
{
___col_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___col_13), (void*)value);
}
inline static int32_t get_offset_of_rb_14() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___rb_14)); }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_rb_14() const { return ___rb_14; }
inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_rb_14() { return &___rb_14; }
inline void set_rb_14(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value)
{
___rb_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rb_14), (void*)value);
}
inline static int32_t get_offset_of_playerRig_15() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___playerRig_15)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerRig_15() const { return ___playerRig_15; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerRig_15() { return &___playerRig_15; }
inline void set_playerRig_15(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___playerRig_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerRig_15), (void*)value);
}
inline static int32_t get_offset_of_playerCamera_16() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___playerCamera_16)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_playerCamera_16() const { return ___playerCamera_16; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_playerCamera_16() { return &___playerCamera_16; }
inline void set_playerCamera_16(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___playerCamera_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___playerCamera_16), (void*)value);
}
inline static int32_t get_offset_of_leftHand_17() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___leftHand_17)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_leftHand_17() const { return ___leftHand_17; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_leftHand_17() { return &___leftHand_17; }
inline void set_leftHand_17(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___leftHand_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___leftHand_17), (void*)value);
}
inline static int32_t get_offset_of_rightHand_18() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___rightHand_18)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_rightHand_18() const { return ___rightHand_18; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_rightHand_18() { return &___rightHand_18; }
inline void set_rightHand_18(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___rightHand_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rightHand_18), (void*)value);
}
inline static int32_t get_offset_of_prevPlayerLoc_19() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___prevPlayerLoc_19)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_prevPlayerLoc_19() const { return ___prevPlayerLoc_19; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_prevPlayerLoc_19() { return &___prevPlayerLoc_19; }
inline void set_prevPlayerLoc_19(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___prevPlayerLoc_19 = value;
}
inline static int32_t get_offset_of_prevLeftHandLoc_20() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___prevLeftHandLoc_20)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_prevLeftHandLoc_20() const { return ___prevLeftHandLoc_20; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_prevLeftHandLoc_20() { return &___prevLeftHandLoc_20; }
inline void set_prevLeftHandLoc_20(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___prevLeftHandLoc_20 = value;
}
inline static int32_t get_offset_of_prevRightHandLoc_21() { return static_cast<int32_t>(offsetof(VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817, ___prevRightHandLoc_21)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_prevRightHandLoc_21() const { return ___prevRightHandLoc_21; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_prevRightHandLoc_21() { return &___prevRightHandLoc_21; }
inline void set_prevRightHandLoc_21(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___prevRightHandLoc_21 = value;
}
};
// Dissonance.VoiceBroadcastTrigger
struct VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395 : public BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369
{
public:
// System.Boolean Dissonance.VoiceBroadcastTrigger::_channelTypeExpanded
bool ____channelTypeExpanded_10;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_metadataExpanded
bool ____metadataExpanded_11;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_activationModeExpanded
bool ____activationModeExpanded_12;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_tokensExpanded
bool ____tokensExpanded_13;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_ampExpanded
bool ____ampExpanded_14;
// System.Nullable`1<Dissonance.PlayerChannel> Dissonance.VoiceBroadcastTrigger::_playerChannel
Nullable_1_t96D5A796058E93F989EA6EEBE7F2B97D2D8E6DD1 ____playerChannel_15;
// System.Nullable`1<Dissonance.RoomChannel> Dissonance.VoiceBroadcastTrigger::_roomChannel
Nullable_1_t920FB56DD6CAE002766365D23C8F133E469A847F ____roomChannel_16;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_isVadSpeaking
bool ____isVadSpeaking_17;
// System.Nullable`1<Dissonance.CommActivationMode> Dissonance.VoiceBroadcastTrigger::_previousMode
Nullable_1_t04BECB249AA93D9676B1D8CDC288E0D6D758FA51 ____previousMode_18;
// Dissonance.IDissonancePlayer Dissonance.VoiceBroadcastTrigger::_self
RuntimeObject* ____self_19;
// Dissonance.Audio.Fader Dissonance.VoiceBroadcastTrigger::_activationFader
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 ____activationFader_20;
// Dissonance.VolumeFaderSettings Dissonance.VoiceBroadcastTrigger::_activationFaderSettings
VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 * ____activationFaderSettings_21;
// Dissonance.Audio.Fader Dissonance.VoiceBroadcastTrigger::_triggerFader
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 ____triggerFader_22;
// Dissonance.VolumeFaderSettings Dissonance.VoiceBroadcastTrigger::_triggerFaderSettings
VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 * ____triggerFaderSettings_23;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_broadcastPosition
bool ____broadcastPosition_24;
// Dissonance.CommTriggerTarget Dissonance.VoiceBroadcastTrigger::_channelType
int32_t ____channelType_25;
// System.String Dissonance.VoiceBroadcastTrigger::_inputName
String_t* ____inputName_26;
// Dissonance.CommActivationMode Dissonance.VoiceBroadcastTrigger::_mode
int32_t ____mode_27;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_muted
bool ____muted_28;
// System.String Dissonance.VoiceBroadcastTrigger::_playerId
String_t* ____playerId_29;
// System.Boolean Dissonance.VoiceBroadcastTrigger::_useTrigger
bool ____useTrigger_30;
// System.String Dissonance.VoiceBroadcastTrigger::_roomName
String_t* ____roomName_31;
// Dissonance.ChannelPriority Dissonance.VoiceBroadcastTrigger::_priority
int32_t ____priority_32;
public:
inline static int32_t get_offset_of__channelTypeExpanded_10() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____channelTypeExpanded_10)); }
inline bool get__channelTypeExpanded_10() const { return ____channelTypeExpanded_10; }
inline bool* get_address_of__channelTypeExpanded_10() { return &____channelTypeExpanded_10; }
inline void set__channelTypeExpanded_10(bool value)
{
____channelTypeExpanded_10 = value;
}
inline static int32_t get_offset_of__metadataExpanded_11() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____metadataExpanded_11)); }
inline bool get__metadataExpanded_11() const { return ____metadataExpanded_11; }
inline bool* get_address_of__metadataExpanded_11() { return &____metadataExpanded_11; }
inline void set__metadataExpanded_11(bool value)
{
____metadataExpanded_11 = value;
}
inline static int32_t get_offset_of__activationModeExpanded_12() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____activationModeExpanded_12)); }
inline bool get__activationModeExpanded_12() const { return ____activationModeExpanded_12; }
inline bool* get_address_of__activationModeExpanded_12() { return &____activationModeExpanded_12; }
inline void set__activationModeExpanded_12(bool value)
{
____activationModeExpanded_12 = value;
}
inline static int32_t get_offset_of__tokensExpanded_13() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____tokensExpanded_13)); }
inline bool get__tokensExpanded_13() const { return ____tokensExpanded_13; }
inline bool* get_address_of__tokensExpanded_13() { return &____tokensExpanded_13; }
inline void set__tokensExpanded_13(bool value)
{
____tokensExpanded_13 = value;
}
inline static int32_t get_offset_of__ampExpanded_14() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____ampExpanded_14)); }
inline bool get__ampExpanded_14() const { return ____ampExpanded_14; }
inline bool* get_address_of__ampExpanded_14() { return &____ampExpanded_14; }
inline void set__ampExpanded_14(bool value)
{
____ampExpanded_14 = value;
}
inline static int32_t get_offset_of__playerChannel_15() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____playerChannel_15)); }
inline Nullable_1_t96D5A796058E93F989EA6EEBE7F2B97D2D8E6DD1 get__playerChannel_15() const { return ____playerChannel_15; }
inline Nullable_1_t96D5A796058E93F989EA6EEBE7F2B97D2D8E6DD1 * get_address_of__playerChannel_15() { return &____playerChannel_15; }
inline void set__playerChannel_15(Nullable_1_t96D5A796058E93F989EA6EEBE7F2B97D2D8E6DD1 value)
{
____playerChannel_15 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&____playerChannel_15))->___value_0))->____playerId_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&____playerChannel_15))->___value_0))->____properties_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&____playerChannel_15))->___value_0))->____channels_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of__roomChannel_16() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____roomChannel_16)); }
inline Nullable_1_t920FB56DD6CAE002766365D23C8F133E469A847F get__roomChannel_16() const { return ____roomChannel_16; }
inline Nullable_1_t920FB56DD6CAE002766365D23C8F133E469A847F * get_address_of__roomChannel_16() { return &____roomChannel_16; }
inline void set__roomChannel_16(Nullable_1_t920FB56DD6CAE002766365D23C8F133E469A847F value)
{
____roomChannel_16 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&____roomChannel_16))->___value_0))->____roomId_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&____roomChannel_16))->___value_0))->____properties_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&____roomChannel_16))->___value_0))->____channels_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of__isVadSpeaking_17() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____isVadSpeaking_17)); }
inline bool get__isVadSpeaking_17() const { return ____isVadSpeaking_17; }
inline bool* get_address_of__isVadSpeaking_17() { return &____isVadSpeaking_17; }
inline void set__isVadSpeaking_17(bool value)
{
____isVadSpeaking_17 = value;
}
inline static int32_t get_offset_of__previousMode_18() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____previousMode_18)); }
inline Nullable_1_t04BECB249AA93D9676B1D8CDC288E0D6D758FA51 get__previousMode_18() const { return ____previousMode_18; }
inline Nullable_1_t04BECB249AA93D9676B1D8CDC288E0D6D758FA51 * get_address_of__previousMode_18() { return &____previousMode_18; }
inline void set__previousMode_18(Nullable_1_t04BECB249AA93D9676B1D8CDC288E0D6D758FA51 value)
{
____previousMode_18 = value;
}
inline static int32_t get_offset_of__self_19() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____self_19)); }
inline RuntimeObject* get__self_19() const { return ____self_19; }
inline RuntimeObject** get_address_of__self_19() { return &____self_19; }
inline void set__self_19(RuntimeObject* value)
{
____self_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&____self_19), (void*)value);
}
inline static int32_t get_offset_of__activationFader_20() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____activationFader_20)); }
inline Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 get__activationFader_20() const { return ____activationFader_20; }
inline Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 * get_address_of__activationFader_20() { return &____activationFader_20; }
inline void set__activationFader_20(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 value)
{
____activationFader_20 = value;
}
inline static int32_t get_offset_of__activationFaderSettings_21() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____activationFaderSettings_21)); }
inline VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 * get__activationFaderSettings_21() const { return ____activationFaderSettings_21; }
inline VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 ** get_address_of__activationFaderSettings_21() { return &____activationFaderSettings_21; }
inline void set__activationFaderSettings_21(VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 * value)
{
____activationFaderSettings_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activationFaderSettings_21), (void*)value);
}
inline static int32_t get_offset_of__triggerFader_22() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____triggerFader_22)); }
inline Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 get__triggerFader_22() const { return ____triggerFader_22; }
inline Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 * get_address_of__triggerFader_22() { return &____triggerFader_22; }
inline void set__triggerFader_22(Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818 value)
{
____triggerFader_22 = value;
}
inline static int32_t get_offset_of__triggerFaderSettings_23() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____triggerFaderSettings_23)); }
inline VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 * get__triggerFaderSettings_23() const { return ____triggerFaderSettings_23; }
inline VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 ** get_address_of__triggerFaderSettings_23() { return &____triggerFaderSettings_23; }
inline void set__triggerFaderSettings_23(VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3 * value)
{
____triggerFaderSettings_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&____triggerFaderSettings_23), (void*)value);
}
inline static int32_t get_offset_of__broadcastPosition_24() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____broadcastPosition_24)); }
inline bool get__broadcastPosition_24() const { return ____broadcastPosition_24; }
inline bool* get_address_of__broadcastPosition_24() { return &____broadcastPosition_24; }
inline void set__broadcastPosition_24(bool value)
{
____broadcastPosition_24 = value;
}
inline static int32_t get_offset_of__channelType_25() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____channelType_25)); }
inline int32_t get__channelType_25() const { return ____channelType_25; }
inline int32_t* get_address_of__channelType_25() { return &____channelType_25; }
inline void set__channelType_25(int32_t value)
{
____channelType_25 = value;
}
inline static int32_t get_offset_of__inputName_26() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____inputName_26)); }
inline String_t* get__inputName_26() const { return ____inputName_26; }
inline String_t** get_address_of__inputName_26() { return &____inputName_26; }
inline void set__inputName_26(String_t* value)
{
____inputName_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inputName_26), (void*)value);
}
inline static int32_t get_offset_of__mode_27() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____mode_27)); }
inline int32_t get__mode_27() const { return ____mode_27; }
inline int32_t* get_address_of__mode_27() { return &____mode_27; }
inline void set__mode_27(int32_t value)
{
____mode_27 = value;
}
inline static int32_t get_offset_of__muted_28() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____muted_28)); }
inline bool get__muted_28() const { return ____muted_28; }
inline bool* get_address_of__muted_28() { return &____muted_28; }
inline void set__muted_28(bool value)
{
____muted_28 = value;
}
inline static int32_t get_offset_of__playerId_29() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____playerId_29)); }
inline String_t* get__playerId_29() const { return ____playerId_29; }
inline String_t** get_address_of__playerId_29() { return &____playerId_29; }
inline void set__playerId_29(String_t* value)
{
____playerId_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&____playerId_29), (void*)value);
}
inline static int32_t get_offset_of__useTrigger_30() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____useTrigger_30)); }
inline bool get__useTrigger_30() const { return ____useTrigger_30; }
inline bool* get_address_of__useTrigger_30() { return &____useTrigger_30; }
inline void set__useTrigger_30(bool value)
{
____useTrigger_30 = value;
}
inline static int32_t get_offset_of__roomName_31() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____roomName_31)); }
inline String_t* get__roomName_31() const { return ____roomName_31; }
inline String_t** get_address_of__roomName_31() { return &____roomName_31; }
inline void set__roomName_31(String_t* value)
{
____roomName_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomName_31), (void*)value);
}
inline static int32_t get_offset_of__priority_32() { return static_cast<int32_t>(offsetof(VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395, ____priority_32)); }
inline int32_t get__priority_32() const { return ____priority_32; }
inline int32_t* get_address_of__priority_32() { return &____priority_32; }
inline void set__priority_32(int32_t value)
{
____priority_32 = value;
}
};
// Dissonance.VoiceReceiptTrigger
struct VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00 : public BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369
{
public:
// System.Nullable`1<Dissonance.RoomMembership> Dissonance.VoiceReceiptTrigger::_membership
Nullable_1_t93F3D032CAA3D83B431DBD56752DF5343783B822 ____membership_10;
// System.String Dissonance.VoiceReceiptTrigger::_roomName
String_t* ____roomName_11;
// System.Boolean Dissonance.VoiceReceiptTrigger::_scriptDeactivated
bool ____scriptDeactivated_12;
// System.Boolean Dissonance.VoiceReceiptTrigger::_useTrigger
bool ____useTrigger_13;
public:
inline static int32_t get_offset_of__membership_10() { return static_cast<int32_t>(offsetof(VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00, ____membership_10)); }
inline Nullable_1_t93F3D032CAA3D83B431DBD56752DF5343783B822 get__membership_10() const { return ____membership_10; }
inline Nullable_1_t93F3D032CAA3D83B431DBD56752DF5343783B822 * get_address_of__membership_10() { return &____membership_10; }
inline void set__membership_10(Nullable_1_t93F3D032CAA3D83B431DBD56752DF5343783B822 value)
{
____membership_10 = value;
Il2CppCodeGenWriteBarrier((void**)&((&(((&____membership_10))->___value_0))->____name_0), (void*)NULL);
}
inline static int32_t get_offset_of__roomName_11() { return static_cast<int32_t>(offsetof(VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00, ____roomName_11)); }
inline String_t* get__roomName_11() const { return ____roomName_11; }
inline String_t** get_address_of__roomName_11() { return &____roomName_11; }
inline void set__roomName_11(String_t* value)
{
____roomName_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____roomName_11), (void*)value);
}
inline static int32_t get_offset_of__scriptDeactivated_12() { return static_cast<int32_t>(offsetof(VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00, ____scriptDeactivated_12)); }
inline bool get__scriptDeactivated_12() const { return ____scriptDeactivated_12; }
inline bool* get_address_of__scriptDeactivated_12() { return &____scriptDeactivated_12; }
inline void set__scriptDeactivated_12(bool value)
{
____scriptDeactivated_12 = value;
}
inline static int32_t get_offset_of__useTrigger_13() { return static_cast<int32_t>(offsetof(VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00, ____useTrigger_13)); }
inline bool get__useTrigger_13() const { return ____useTrigger_13; }
inline bool* get_address_of__useTrigger_13() { return &____useTrigger_13; }
inline void set__useTrigger_13(bool value)
{
____useTrigger_13 = value;
}
};
// UnityEngine.InputSystem.XInput.XInputController
struct XInputController_t94348C741719B01624FCFDF01E4DE883533672C9 : public Gamepad_tDBB9DE4AD002786A36DC20801CB40E99925AD41C
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.XInput.XInputController::<menu>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CmenuU3Ek__BackingField_54;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.XInput.XInputController::<view>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CviewU3Ek__BackingField_55;
// System.Boolean UnityEngine.InputSystem.XInput.XInputController::m_HaveParsedCapabilities
bool ___m_HaveParsedCapabilities_56;
// UnityEngine.InputSystem.XInput.XInputController/DeviceSubType UnityEngine.InputSystem.XInput.XInputController::m_SubType
int32_t ___m_SubType_57;
// UnityEngine.InputSystem.XInput.XInputController/DeviceFlags UnityEngine.InputSystem.XInput.XInputController::m_Flags
int32_t ___m_Flags_58;
public:
inline static int32_t get_offset_of_U3CmenuU3Ek__BackingField_54() { return static_cast<int32_t>(offsetof(XInputController_t94348C741719B01624FCFDF01E4DE883533672C9, ___U3CmenuU3Ek__BackingField_54)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CmenuU3Ek__BackingField_54() const { return ___U3CmenuU3Ek__BackingField_54; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CmenuU3Ek__BackingField_54() { return &___U3CmenuU3Ek__BackingField_54; }
inline void set_U3CmenuU3Ek__BackingField_54(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CmenuU3Ek__BackingField_54 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmenuU3Ek__BackingField_54), (void*)value);
}
inline static int32_t get_offset_of_U3CviewU3Ek__BackingField_55() { return static_cast<int32_t>(offsetof(XInputController_t94348C741719B01624FCFDF01E4DE883533672C9, ___U3CviewU3Ek__BackingField_55)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CviewU3Ek__BackingField_55() const { return ___U3CviewU3Ek__BackingField_55; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CviewU3Ek__BackingField_55() { return &___U3CviewU3Ek__BackingField_55; }
inline void set_U3CviewU3Ek__BackingField_55(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CviewU3Ek__BackingField_55 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CviewU3Ek__BackingField_55), (void*)value);
}
inline static int32_t get_offset_of_m_HaveParsedCapabilities_56() { return static_cast<int32_t>(offsetof(XInputController_t94348C741719B01624FCFDF01E4DE883533672C9, ___m_HaveParsedCapabilities_56)); }
inline bool get_m_HaveParsedCapabilities_56() const { return ___m_HaveParsedCapabilities_56; }
inline bool* get_address_of_m_HaveParsedCapabilities_56() { return &___m_HaveParsedCapabilities_56; }
inline void set_m_HaveParsedCapabilities_56(bool value)
{
___m_HaveParsedCapabilities_56 = value;
}
inline static int32_t get_offset_of_m_SubType_57() { return static_cast<int32_t>(offsetof(XInputController_t94348C741719B01624FCFDF01E4DE883533672C9, ___m_SubType_57)); }
inline int32_t get_m_SubType_57() const { return ___m_SubType_57; }
inline int32_t* get_address_of_m_SubType_57() { return &___m_SubType_57; }
inline void set_m_SubType_57(int32_t value)
{
___m_SubType_57 = value;
}
inline static int32_t get_offset_of_m_Flags_58() { return static_cast<int32_t>(offsetof(XInputController_t94348C741719B01624FCFDF01E4DE883533672C9, ___m_Flags_58)); }
inline int32_t get_m_Flags_58() const { return ___m_Flags_58; }
inline int32_t* get_address_of_m_Flags_58() { return &___m_Flags_58; }
inline void set_m_Flags_58(int32_t value)
{
___m_Flags_58 = value;
}
};
// UnityEngine.InputSystem.XR.XRController
struct XRController_t9EBFEF7BFFBA776D4678170BC68991F6FE09B88C : public TrackedDevice_tA0CE9D169CAC53A0ECDD355892DC4212C2A59EAA
{
public:
public:
};
// UnityEngine.InputSystem.XR.XRHMD
struct XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5 : public TrackedDevice_tA0CE9D169CAC53A0ECDD355892DC4212C2A59EAA
{
public:
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.XR.XRHMD::<leftEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CleftEyePositionU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.XR.XRHMD::<leftEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CleftEyeRotationU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.XR.XRHMD::<rightEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CrightEyePositionU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.XR.XRHMD::<rightEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CrightEyeRotationU3Ek__BackingField_42;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.InputSystem.XR.XRHMD::<centerEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CcenterEyePositionU3Ek__BackingField_43;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.InputSystem.XR.XRHMD::<centerEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CcenterEyeRotationU3Ek__BackingField_44;
public:
inline static int32_t get_offset_of_U3CleftEyePositionU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5, ___U3CleftEyePositionU3Ek__BackingField_39)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CleftEyePositionU3Ek__BackingField_39() const { return ___U3CleftEyePositionU3Ek__BackingField_39; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CleftEyePositionU3Ek__BackingField_39() { return &___U3CleftEyePositionU3Ek__BackingField_39; }
inline void set_U3CleftEyePositionU3Ek__BackingField_39(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CleftEyePositionU3Ek__BackingField_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyePositionU3Ek__BackingField_39), (void*)value);
}
inline static int32_t get_offset_of_U3CleftEyeRotationU3Ek__BackingField_40() { return static_cast<int32_t>(offsetof(XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5, ___U3CleftEyeRotationU3Ek__BackingField_40)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CleftEyeRotationU3Ek__BackingField_40() const { return ___U3CleftEyeRotationU3Ek__BackingField_40; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CleftEyeRotationU3Ek__BackingField_40() { return &___U3CleftEyeRotationU3Ek__BackingField_40; }
inline void set_U3CleftEyeRotationU3Ek__BackingField_40(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CleftEyeRotationU3Ek__BackingField_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyeRotationU3Ek__BackingField_40), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyePositionU3Ek__BackingField_41() { return static_cast<int32_t>(offsetof(XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5, ___U3CrightEyePositionU3Ek__BackingField_41)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CrightEyePositionU3Ek__BackingField_41() const { return ___U3CrightEyePositionU3Ek__BackingField_41; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CrightEyePositionU3Ek__BackingField_41() { return &___U3CrightEyePositionU3Ek__BackingField_41; }
inline void set_U3CrightEyePositionU3Ek__BackingField_41(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CrightEyePositionU3Ek__BackingField_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyePositionU3Ek__BackingField_41), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyeRotationU3Ek__BackingField_42() { return static_cast<int32_t>(offsetof(XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5, ___U3CrightEyeRotationU3Ek__BackingField_42)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CrightEyeRotationU3Ek__BackingField_42() const { return ___U3CrightEyeRotationU3Ek__BackingField_42; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CrightEyeRotationU3Ek__BackingField_42() { return &___U3CrightEyeRotationU3Ek__BackingField_42; }
inline void set_U3CrightEyeRotationU3Ek__BackingField_42(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CrightEyeRotationU3Ek__BackingField_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyeRotationU3Ek__BackingField_42), (void*)value);
}
inline static int32_t get_offset_of_U3CcenterEyePositionU3Ek__BackingField_43() { return static_cast<int32_t>(offsetof(XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5, ___U3CcenterEyePositionU3Ek__BackingField_43)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CcenterEyePositionU3Ek__BackingField_43() const { return ___U3CcenterEyePositionU3Ek__BackingField_43; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CcenterEyePositionU3Ek__BackingField_43() { return &___U3CcenterEyePositionU3Ek__BackingField_43; }
inline void set_U3CcenterEyePositionU3Ek__BackingField_43(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CcenterEyePositionU3Ek__BackingField_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcenterEyePositionU3Ek__BackingField_43), (void*)value);
}
inline static int32_t get_offset_of_U3CcenterEyeRotationU3Ek__BackingField_44() { return static_cast<int32_t>(offsetof(XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5, ___U3CcenterEyeRotationU3Ek__BackingField_44)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CcenterEyeRotationU3Ek__BackingField_44() const { return ___U3CcenterEyeRotationU3Ek__BackingField_44; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CcenterEyeRotationU3Ek__BackingField_44() { return &___U3CcenterEyeRotationU3Ek__BackingField_44; }
inline void set_U3CcenterEyeRotationU3Ek__BackingField_44(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CcenterEyeRotationU3Ek__BackingField_44 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcenterEyeRotationU3Ek__BackingField_44), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.DpadControl/DpadAxisControl
struct DpadAxisControl_tFB8C1F34720E0C4BD908F8626C40AEE266E909A9 : public AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD
{
public:
// System.Int32 UnityEngine.InputSystem.Controls.DpadControl/DpadAxisControl::component
int32_t ___component_33;
public:
inline static int32_t get_offset_of_component_33() { return static_cast<int32_t>(offsetof(DpadAxisControl_tFB8C1F34720E0C4BD908F8626C40AEE266E909A9, ___component_33)); }
inline int32_t get_component_33() const { return ___component_33; }
inline int32_t* get_address_of_component_33() { return &___component_33; }
inline void set_component_33(int32_t value)
{
___component_33 = value;
}
};
// UnityEngine.InputSystem.Controls.AnyKeyControl
struct AnyKeyControl_tD9E832967BE315CB24E2BC9D90EEAB5DC05E37B2 : public ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE
{
public:
public:
};
// UnityEngine.InputSystem.UI.BaseInputOverride
struct BaseInputOverride_t239FC28B8DD30E6D6B23DE898EA770465A2DED7E : public BaseInput_tEF29D9AD913DF0552A9C51AF200B4FEB08AF737D
{
public:
// System.String UnityEngine.InputSystem.UI.BaseInputOverride::<compositionString>k__BackingField
String_t* ___U3CcompositionStringU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CcompositionStringU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(BaseInputOverride_t239FC28B8DD30E6D6B23DE898EA770465A2DED7E, ___U3CcompositionStringU3Ek__BackingField_4)); }
inline String_t* get_U3CcompositionStringU3Ek__BackingField_4() const { return ___U3CcompositionStringU3Ek__BackingField_4; }
inline String_t** get_address_of_U3CcompositionStringU3Ek__BackingField_4() { return &___U3CcompositionStringU3Ek__BackingField_4; }
inline void set_U3CcompositionStringU3Ek__BackingField_4(String_t* value)
{
___U3CcompositionStringU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcompositionStringU3Ek__BackingField_4), (void*)value);
}
};
// UnityEngine.InputSystem.Controls.DiscreteButtonControl
struct DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039 : public ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE
{
public:
// System.Int32 UnityEngine.InputSystem.Controls.DiscreteButtonControl::minValue
int32_t ___minValue_35;
// System.Int32 UnityEngine.InputSystem.Controls.DiscreteButtonControl::maxValue
int32_t ___maxValue_36;
// System.Int32 UnityEngine.InputSystem.Controls.DiscreteButtonControl::wrapAtValue
int32_t ___wrapAtValue_37;
// System.Int32 UnityEngine.InputSystem.Controls.DiscreteButtonControl::nullValue
int32_t ___nullValue_38;
public:
inline static int32_t get_offset_of_minValue_35() { return static_cast<int32_t>(offsetof(DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039, ___minValue_35)); }
inline int32_t get_minValue_35() const { return ___minValue_35; }
inline int32_t* get_address_of_minValue_35() { return &___minValue_35; }
inline void set_minValue_35(int32_t value)
{
___minValue_35 = value;
}
inline static int32_t get_offset_of_maxValue_36() { return static_cast<int32_t>(offsetof(DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039, ___maxValue_36)); }
inline int32_t get_maxValue_36() const { return ___maxValue_36; }
inline int32_t* get_address_of_maxValue_36() { return &___maxValue_36; }
inline void set_maxValue_36(int32_t value)
{
___maxValue_36 = value;
}
inline static int32_t get_offset_of_wrapAtValue_37() { return static_cast<int32_t>(offsetof(DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039, ___wrapAtValue_37)); }
inline int32_t get_wrapAtValue_37() const { return ___wrapAtValue_37; }
inline int32_t* get_address_of_wrapAtValue_37() { return &___wrapAtValue_37; }
inline void set_wrapAtValue_37(int32_t value)
{
___wrapAtValue_37 = value;
}
inline static int32_t get_offset_of_nullValue_38() { return static_cast<int32_t>(offsetof(DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039, ___nullValue_38)); }
inline int32_t get_nullValue_38() const { return ___nullValue_38; }
inline int32_t* get_address_of_nullValue_38() { return &___nullValue_38; }
inline void set_nullValue_38(int32_t value)
{
___nullValue_38 = value;
}
};
// UnityEngine.InputSystem.DualShock.DualShock3GamepadHID
struct DualShock3GamepadHID_t30F00FC07D0D495B82F6DE163A8C71A8E3F790C9 : public DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShock3GamepadHID::<leftTriggerButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CleftTriggerButtonU3Ek__BackingField_64;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShock3GamepadHID::<rightTriggerButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CrightTriggerButtonU3Ek__BackingField_65;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShock3GamepadHID::<playStationButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CplayStationButtonU3Ek__BackingField_66;
public:
inline static int32_t get_offset_of_U3CleftTriggerButtonU3Ek__BackingField_64() { return static_cast<int32_t>(offsetof(DualShock3GamepadHID_t30F00FC07D0D495B82F6DE163A8C71A8E3F790C9, ___U3CleftTriggerButtonU3Ek__BackingField_64)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CleftTriggerButtonU3Ek__BackingField_64() const { return ___U3CleftTriggerButtonU3Ek__BackingField_64; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CleftTriggerButtonU3Ek__BackingField_64() { return &___U3CleftTriggerButtonU3Ek__BackingField_64; }
inline void set_U3CleftTriggerButtonU3Ek__BackingField_64(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CleftTriggerButtonU3Ek__BackingField_64 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftTriggerButtonU3Ek__BackingField_64), (void*)value);
}
inline static int32_t get_offset_of_U3CrightTriggerButtonU3Ek__BackingField_65() { return static_cast<int32_t>(offsetof(DualShock3GamepadHID_t30F00FC07D0D495B82F6DE163A8C71A8E3F790C9, ___U3CrightTriggerButtonU3Ek__BackingField_65)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CrightTriggerButtonU3Ek__BackingField_65() const { return ___U3CrightTriggerButtonU3Ek__BackingField_65; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CrightTriggerButtonU3Ek__BackingField_65() { return &___U3CrightTriggerButtonU3Ek__BackingField_65; }
inline void set_U3CrightTriggerButtonU3Ek__BackingField_65(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CrightTriggerButtonU3Ek__BackingField_65 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightTriggerButtonU3Ek__BackingField_65), (void*)value);
}
inline static int32_t get_offset_of_U3CplayStationButtonU3Ek__BackingField_66() { return static_cast<int32_t>(offsetof(DualShock3GamepadHID_t30F00FC07D0D495B82F6DE163A8C71A8E3F790C9, ___U3CplayStationButtonU3Ek__BackingField_66)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CplayStationButtonU3Ek__BackingField_66() const { return ___U3CplayStationButtonU3Ek__BackingField_66; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CplayStationButtonU3Ek__BackingField_66() { return &___U3CplayStationButtonU3Ek__BackingField_66; }
inline void set_U3CplayStationButtonU3Ek__BackingField_66(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CplayStationButtonU3Ek__BackingField_66 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CplayStationButtonU3Ek__BackingField_66), (void*)value);
}
};
// UnityEngine.InputSystem.DualShock.DualShock4GamepadHID
struct DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD : public DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShock4GamepadHID::<leftTriggerButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CleftTriggerButtonU3Ek__BackingField_64;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShock4GamepadHID::<rightTriggerButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CrightTriggerButtonU3Ek__BackingField_65;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.InputSystem.DualShock.DualShock4GamepadHID::<playStationButton>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CplayStationButtonU3Ek__BackingField_66;
// System.Nullable`1<System.Single> UnityEngine.InputSystem.DualShock.DualShock4GamepadHID::m_LowFrequencyMotorSpeed
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___m_LowFrequencyMotorSpeed_67;
// System.Nullable`1<System.Single> UnityEngine.InputSystem.DualShock.DualShock4GamepadHID::m_HighFrequenceyMotorSpeed
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___m_HighFrequenceyMotorSpeed_68;
// System.Nullable`1<UnityEngine.Color> UnityEngine.InputSystem.DualShock.DualShock4GamepadHID::m_LightBarColor
Nullable_1_tA06400BA484934D9CEBAF66D0E71C822EF09A498 ___m_LightBarColor_69;
public:
inline static int32_t get_offset_of_U3CleftTriggerButtonU3Ek__BackingField_64() { return static_cast<int32_t>(offsetof(DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD, ___U3CleftTriggerButtonU3Ek__BackingField_64)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CleftTriggerButtonU3Ek__BackingField_64() const { return ___U3CleftTriggerButtonU3Ek__BackingField_64; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CleftTriggerButtonU3Ek__BackingField_64() { return &___U3CleftTriggerButtonU3Ek__BackingField_64; }
inline void set_U3CleftTriggerButtonU3Ek__BackingField_64(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CleftTriggerButtonU3Ek__BackingField_64 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftTriggerButtonU3Ek__BackingField_64), (void*)value);
}
inline static int32_t get_offset_of_U3CrightTriggerButtonU3Ek__BackingField_65() { return static_cast<int32_t>(offsetof(DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD, ___U3CrightTriggerButtonU3Ek__BackingField_65)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CrightTriggerButtonU3Ek__BackingField_65() const { return ___U3CrightTriggerButtonU3Ek__BackingField_65; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CrightTriggerButtonU3Ek__BackingField_65() { return &___U3CrightTriggerButtonU3Ek__BackingField_65; }
inline void set_U3CrightTriggerButtonU3Ek__BackingField_65(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CrightTriggerButtonU3Ek__BackingField_65 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightTriggerButtonU3Ek__BackingField_65), (void*)value);
}
inline static int32_t get_offset_of_U3CplayStationButtonU3Ek__BackingField_66() { return static_cast<int32_t>(offsetof(DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD, ___U3CplayStationButtonU3Ek__BackingField_66)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CplayStationButtonU3Ek__BackingField_66() const { return ___U3CplayStationButtonU3Ek__BackingField_66; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CplayStationButtonU3Ek__BackingField_66() { return &___U3CplayStationButtonU3Ek__BackingField_66; }
inline void set_U3CplayStationButtonU3Ek__BackingField_66(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CplayStationButtonU3Ek__BackingField_66 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CplayStationButtonU3Ek__BackingField_66), (void*)value);
}
inline static int32_t get_offset_of_m_LowFrequencyMotorSpeed_67() { return static_cast<int32_t>(offsetof(DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD, ___m_LowFrequencyMotorSpeed_67)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get_m_LowFrequencyMotorSpeed_67() const { return ___m_LowFrequencyMotorSpeed_67; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of_m_LowFrequencyMotorSpeed_67() { return &___m_LowFrequencyMotorSpeed_67; }
inline void set_m_LowFrequencyMotorSpeed_67(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
___m_LowFrequencyMotorSpeed_67 = value;
}
inline static int32_t get_offset_of_m_HighFrequenceyMotorSpeed_68() { return static_cast<int32_t>(offsetof(DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD, ___m_HighFrequenceyMotorSpeed_68)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get_m_HighFrequenceyMotorSpeed_68() const { return ___m_HighFrequenceyMotorSpeed_68; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of_m_HighFrequenceyMotorSpeed_68() { return &___m_HighFrequenceyMotorSpeed_68; }
inline void set_m_HighFrequenceyMotorSpeed_68(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
___m_HighFrequenceyMotorSpeed_68 = value;
}
inline static int32_t get_offset_of_m_LightBarColor_69() { return static_cast<int32_t>(offsetof(DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD, ___m_LightBarColor_69)); }
inline Nullable_1_tA06400BA484934D9CEBAF66D0E71C822EF09A498 get_m_LightBarColor_69() const { return ___m_LightBarColor_69; }
inline Nullable_1_tA06400BA484934D9CEBAF66D0E71C822EF09A498 * get_address_of_m_LightBarColor_69() { return &___m_LightBarColor_69; }
inline void set_m_LightBarColor_69(Nullable_1_tA06400BA484934D9CEBAF66D0E71C822EF09A498 value)
{
___m_LightBarColor_69 = value;
}
};
// UnityEngine.XR.WindowsMR.Input.HololensHand
struct HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022 : public XRController_t9EBFEF7BFFBA776D4678170BC68991F6FE09B88C
{
public:
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.XR.WindowsMR.Input.HololensHand::<trackingState>k__BackingField
IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * ___U3CtrackingStateU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.HololensHand::<isTracked>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CisTrackedU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.HololensHand::<devicePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdevicePositionU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.WindowsMR.Input.HololensHand::<deviceRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CdeviceRotationU3Ek__BackingField_42;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.HololensHand::<deviceVelocity>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdeviceVelocityU3Ek__BackingField_43;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.HololensHand::<airTap>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CairTapU3Ek__BackingField_44;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.XR.WindowsMR.Input.HololensHand::<sourceLossRisk>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CsourceLossRiskU3Ek__BackingField_45;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.HololensHand::<sourceLossMitigationDirection>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CsourceLossMitigationDirectionU3Ek__BackingField_46;
public:
inline static int32_t get_offset_of_U3CtrackingStateU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CtrackingStateU3Ek__BackingField_39)); }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * get_U3CtrackingStateU3Ek__BackingField_39() const { return ___U3CtrackingStateU3Ek__BackingField_39; }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 ** get_address_of_U3CtrackingStateU3Ek__BackingField_39() { return &___U3CtrackingStateU3Ek__BackingField_39; }
inline void set_U3CtrackingStateU3Ek__BackingField_39(IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * value)
{
___U3CtrackingStateU3Ek__BackingField_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackingStateU3Ek__BackingField_39), (void*)value);
}
inline static int32_t get_offset_of_U3CisTrackedU3Ek__BackingField_40() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CisTrackedU3Ek__BackingField_40)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CisTrackedU3Ek__BackingField_40() const { return ___U3CisTrackedU3Ek__BackingField_40; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CisTrackedU3Ek__BackingField_40() { return &___U3CisTrackedU3Ek__BackingField_40; }
inline void set_U3CisTrackedU3Ek__BackingField_40(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CisTrackedU3Ek__BackingField_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CisTrackedU3Ek__BackingField_40), (void*)value);
}
inline static int32_t get_offset_of_U3CdevicePositionU3Ek__BackingField_41() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CdevicePositionU3Ek__BackingField_41)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdevicePositionU3Ek__BackingField_41() const { return ___U3CdevicePositionU3Ek__BackingField_41; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdevicePositionU3Ek__BackingField_41() { return &___U3CdevicePositionU3Ek__BackingField_41; }
inline void set_U3CdevicePositionU3Ek__BackingField_41(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdevicePositionU3Ek__BackingField_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdevicePositionU3Ek__BackingField_41), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceRotationU3Ek__BackingField_42() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CdeviceRotationU3Ek__BackingField_42)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CdeviceRotationU3Ek__BackingField_42() const { return ___U3CdeviceRotationU3Ek__BackingField_42; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CdeviceRotationU3Ek__BackingField_42() { return &___U3CdeviceRotationU3Ek__BackingField_42; }
inline void set_U3CdeviceRotationU3Ek__BackingField_42(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CdeviceRotationU3Ek__BackingField_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceRotationU3Ek__BackingField_42), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceVelocityU3Ek__BackingField_43() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CdeviceVelocityU3Ek__BackingField_43)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdeviceVelocityU3Ek__BackingField_43() const { return ___U3CdeviceVelocityU3Ek__BackingField_43; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdeviceVelocityU3Ek__BackingField_43() { return &___U3CdeviceVelocityU3Ek__BackingField_43; }
inline void set_U3CdeviceVelocityU3Ek__BackingField_43(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdeviceVelocityU3Ek__BackingField_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceVelocityU3Ek__BackingField_43), (void*)value);
}
inline static int32_t get_offset_of_U3CairTapU3Ek__BackingField_44() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CairTapU3Ek__BackingField_44)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CairTapU3Ek__BackingField_44() const { return ___U3CairTapU3Ek__BackingField_44; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CairTapU3Ek__BackingField_44() { return &___U3CairTapU3Ek__BackingField_44; }
inline void set_U3CairTapU3Ek__BackingField_44(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CairTapU3Ek__BackingField_44 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CairTapU3Ek__BackingField_44), (void*)value);
}
inline static int32_t get_offset_of_U3CsourceLossRiskU3Ek__BackingField_45() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CsourceLossRiskU3Ek__BackingField_45)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CsourceLossRiskU3Ek__BackingField_45() const { return ___U3CsourceLossRiskU3Ek__BackingField_45; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CsourceLossRiskU3Ek__BackingField_45() { return &___U3CsourceLossRiskU3Ek__BackingField_45; }
inline void set_U3CsourceLossRiskU3Ek__BackingField_45(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CsourceLossRiskU3Ek__BackingField_45 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsourceLossRiskU3Ek__BackingField_45), (void*)value);
}
inline static int32_t get_offset_of_U3CsourceLossMitigationDirectionU3Ek__BackingField_46() { return static_cast<int32_t>(offsetof(HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022, ___U3CsourceLossMitigationDirectionU3Ek__BackingField_46)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CsourceLossMitigationDirectionU3Ek__BackingField_46() const { return ___U3CsourceLossMitigationDirectionU3Ek__BackingField_46; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CsourceLossMitigationDirectionU3Ek__BackingField_46() { return &___U3CsourceLossMitigationDirectionU3Ek__BackingField_46; }
inline void set_U3CsourceLossMitigationDirectionU3Ek__BackingField_46(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CsourceLossMitigationDirectionU3Ek__BackingField_46 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsourceLossMitigationDirectionU3Ek__BackingField_46), (void*)value);
}
};
// UnityEngine.InputSystem.UI.InputSystemUIInputModule
struct InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB : public BaseInputModule_t395DEB45C225A941B2C831CBDB000A23E5899924
{
public:
// System.Single UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_MoveRepeatDelay
float ___m_MoveRepeatDelay_10;
// System.Single UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_MoveRepeatRate
float ___m_MoveRepeatRate_11;
// System.Single UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_TrackedDeviceDragThresholdMultiplier
float ___m_TrackedDeviceDragThresholdMultiplier_12;
// UnityEngine.InputSystem.InputActionAsset UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_ActionsAsset
InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF * ___m_ActionsAsset_14;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_PointAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_PointAction_15;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_MoveAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_MoveAction_16;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_SubmitAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_SubmitAction_17;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_CancelAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_CancelAction_18;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_LeftClickAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_LeftClickAction_19;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_MiddleClickAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_MiddleClickAction_20;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_RightClickAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_RightClickAction_21;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_ScrollWheelAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_ScrollWheelAction_22;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_TrackedDevicePositionAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_TrackedDevicePositionAction_23;
// UnityEngine.InputSystem.InputActionReference UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_TrackedDeviceOrientationAction
InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * ___m_TrackedDeviceOrientationAction_24;
// System.Boolean UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_DeselectOnBackgroundClick
bool ___m_DeselectOnBackgroundClick_25;
// UnityEngine.InputSystem.UI.UIPointerBehavior UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_PointerBehavior
int32_t ___m_PointerBehavior_26;
// System.Boolean UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OwnsEnabledState
bool ___m_OwnsEnabledState_27;
// System.Boolean UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_ActionsHooked
bool ___m_ActionsHooked_28;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnPointDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnPointDelegate_29;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnMoveDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnMoveDelegate_30;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnSubmitDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnSubmitDelegate_31;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnCancelDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnCancelDelegate_32;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnLeftClickDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnLeftClickDelegate_33;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnRightClickDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnRightClickDelegate_34;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnMiddleClickDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnMiddleClickDelegate_35;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnScrollWheelDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnScrollWheelDelegate_36;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnTrackedDevicePositionDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnTrackedDevicePositionDelegate_37;
// System.Action`1<UnityEngine.InputSystem.InputAction/CallbackContext> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnTrackedDeviceOrientationDelegate
Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * ___m_OnTrackedDeviceOrientationDelegate_38;
// System.Action`1<System.Object> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_OnControlsChangedDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___m_OnControlsChangedDelegate_39;
// System.Int32 UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_CurrentPointerId
int32_t ___m_CurrentPointerId_40;
// System.Int32 UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_CurrentPointerIndex
int32_t ___m_CurrentPointerIndex_41;
// UnityEngine.InputSystem.UI.UIPointerType UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_CurrentPointerType
int32_t ___m_CurrentPointerType_42;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<System.Int32> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_PointerIds
InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD ___m_PointerIds_43;
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.UI.PointerModel> UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_PointerStates
InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B ___m_PointerStates_44;
// UnityEngine.InputSystem.UI.NavigationModel UnityEngine.InputSystem.UI.InputSystemUIInputModule::m_NavigationState
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB ___m_NavigationState_45;
public:
inline static int32_t get_offset_of_m_MoveRepeatDelay_10() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_MoveRepeatDelay_10)); }
inline float get_m_MoveRepeatDelay_10() const { return ___m_MoveRepeatDelay_10; }
inline float* get_address_of_m_MoveRepeatDelay_10() { return &___m_MoveRepeatDelay_10; }
inline void set_m_MoveRepeatDelay_10(float value)
{
___m_MoveRepeatDelay_10 = value;
}
inline static int32_t get_offset_of_m_MoveRepeatRate_11() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_MoveRepeatRate_11)); }
inline float get_m_MoveRepeatRate_11() const { return ___m_MoveRepeatRate_11; }
inline float* get_address_of_m_MoveRepeatRate_11() { return &___m_MoveRepeatRate_11; }
inline void set_m_MoveRepeatRate_11(float value)
{
___m_MoveRepeatRate_11 = value;
}
inline static int32_t get_offset_of_m_TrackedDeviceDragThresholdMultiplier_12() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_TrackedDeviceDragThresholdMultiplier_12)); }
inline float get_m_TrackedDeviceDragThresholdMultiplier_12() const { return ___m_TrackedDeviceDragThresholdMultiplier_12; }
inline float* get_address_of_m_TrackedDeviceDragThresholdMultiplier_12() { return &___m_TrackedDeviceDragThresholdMultiplier_12; }
inline void set_m_TrackedDeviceDragThresholdMultiplier_12(float value)
{
___m_TrackedDeviceDragThresholdMultiplier_12 = value;
}
inline static int32_t get_offset_of_m_ActionsAsset_14() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_ActionsAsset_14)); }
inline InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF * get_m_ActionsAsset_14() const { return ___m_ActionsAsset_14; }
inline InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF ** get_address_of_m_ActionsAsset_14() { return &___m_ActionsAsset_14; }
inline void set_m_ActionsAsset_14(InputActionAsset_t5619310AF721C81874BAE3D10504E63A140274DF * value)
{
___m_ActionsAsset_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ActionsAsset_14), (void*)value);
}
inline static int32_t get_offset_of_m_PointAction_15() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_PointAction_15)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_PointAction_15() const { return ___m_PointAction_15; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_PointAction_15() { return &___m_PointAction_15; }
inline void set_m_PointAction_15(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_PointAction_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointAction_15), (void*)value);
}
inline static int32_t get_offset_of_m_MoveAction_16() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_MoveAction_16)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_MoveAction_16() const { return ___m_MoveAction_16; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_MoveAction_16() { return &___m_MoveAction_16; }
inline void set_m_MoveAction_16(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_MoveAction_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MoveAction_16), (void*)value);
}
inline static int32_t get_offset_of_m_SubmitAction_17() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_SubmitAction_17)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_SubmitAction_17() const { return ___m_SubmitAction_17; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_SubmitAction_17() { return &___m_SubmitAction_17; }
inline void set_m_SubmitAction_17(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_SubmitAction_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SubmitAction_17), (void*)value);
}
inline static int32_t get_offset_of_m_CancelAction_18() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_CancelAction_18)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_CancelAction_18() const { return ___m_CancelAction_18; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_CancelAction_18() { return &___m_CancelAction_18; }
inline void set_m_CancelAction_18(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_CancelAction_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CancelAction_18), (void*)value);
}
inline static int32_t get_offset_of_m_LeftClickAction_19() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_LeftClickAction_19)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_LeftClickAction_19() const { return ___m_LeftClickAction_19; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_LeftClickAction_19() { return &___m_LeftClickAction_19; }
inline void set_m_LeftClickAction_19(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_LeftClickAction_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LeftClickAction_19), (void*)value);
}
inline static int32_t get_offset_of_m_MiddleClickAction_20() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_MiddleClickAction_20)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_MiddleClickAction_20() const { return ___m_MiddleClickAction_20; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_MiddleClickAction_20() { return &___m_MiddleClickAction_20; }
inline void set_m_MiddleClickAction_20(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_MiddleClickAction_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MiddleClickAction_20), (void*)value);
}
inline static int32_t get_offset_of_m_RightClickAction_21() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_RightClickAction_21)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_RightClickAction_21() const { return ___m_RightClickAction_21; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_RightClickAction_21() { return &___m_RightClickAction_21; }
inline void set_m_RightClickAction_21(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_RightClickAction_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RightClickAction_21), (void*)value);
}
inline static int32_t get_offset_of_m_ScrollWheelAction_22() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_ScrollWheelAction_22)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_ScrollWheelAction_22() const { return ___m_ScrollWheelAction_22; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_ScrollWheelAction_22() { return &___m_ScrollWheelAction_22; }
inline void set_m_ScrollWheelAction_22(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_ScrollWheelAction_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ScrollWheelAction_22), (void*)value);
}
inline static int32_t get_offset_of_m_TrackedDevicePositionAction_23() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_TrackedDevicePositionAction_23)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_TrackedDevicePositionAction_23() const { return ___m_TrackedDevicePositionAction_23; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_TrackedDevicePositionAction_23() { return &___m_TrackedDevicePositionAction_23; }
inline void set_m_TrackedDevicePositionAction_23(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_TrackedDevicePositionAction_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedDevicePositionAction_23), (void*)value);
}
inline static int32_t get_offset_of_m_TrackedDeviceOrientationAction_24() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_TrackedDeviceOrientationAction_24)); }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * get_m_TrackedDeviceOrientationAction_24() const { return ___m_TrackedDeviceOrientationAction_24; }
inline InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 ** get_address_of_m_TrackedDeviceOrientationAction_24() { return &___m_TrackedDeviceOrientationAction_24; }
inline void set_m_TrackedDeviceOrientationAction_24(InputActionReference_t643BDCDD658A47AA9CCB387E66F3EFCAC038FCE5 * value)
{
___m_TrackedDeviceOrientationAction_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedDeviceOrientationAction_24), (void*)value);
}
inline static int32_t get_offset_of_m_DeselectOnBackgroundClick_25() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_DeselectOnBackgroundClick_25)); }
inline bool get_m_DeselectOnBackgroundClick_25() const { return ___m_DeselectOnBackgroundClick_25; }
inline bool* get_address_of_m_DeselectOnBackgroundClick_25() { return &___m_DeselectOnBackgroundClick_25; }
inline void set_m_DeselectOnBackgroundClick_25(bool value)
{
___m_DeselectOnBackgroundClick_25 = value;
}
inline static int32_t get_offset_of_m_PointerBehavior_26() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_PointerBehavior_26)); }
inline int32_t get_m_PointerBehavior_26() const { return ___m_PointerBehavior_26; }
inline int32_t* get_address_of_m_PointerBehavior_26() { return &___m_PointerBehavior_26; }
inline void set_m_PointerBehavior_26(int32_t value)
{
___m_PointerBehavior_26 = value;
}
inline static int32_t get_offset_of_m_OwnsEnabledState_27() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OwnsEnabledState_27)); }
inline bool get_m_OwnsEnabledState_27() const { return ___m_OwnsEnabledState_27; }
inline bool* get_address_of_m_OwnsEnabledState_27() { return &___m_OwnsEnabledState_27; }
inline void set_m_OwnsEnabledState_27(bool value)
{
___m_OwnsEnabledState_27 = value;
}
inline static int32_t get_offset_of_m_ActionsHooked_28() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_ActionsHooked_28)); }
inline bool get_m_ActionsHooked_28() const { return ___m_ActionsHooked_28; }
inline bool* get_address_of_m_ActionsHooked_28() { return &___m_ActionsHooked_28; }
inline void set_m_ActionsHooked_28(bool value)
{
___m_ActionsHooked_28 = value;
}
inline static int32_t get_offset_of_m_OnPointDelegate_29() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnPointDelegate_29)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnPointDelegate_29() const { return ___m_OnPointDelegate_29; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnPointDelegate_29() { return &___m_OnPointDelegate_29; }
inline void set_m_OnPointDelegate_29(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnPointDelegate_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnPointDelegate_29), (void*)value);
}
inline static int32_t get_offset_of_m_OnMoveDelegate_30() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnMoveDelegate_30)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnMoveDelegate_30() const { return ___m_OnMoveDelegate_30; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnMoveDelegate_30() { return &___m_OnMoveDelegate_30; }
inline void set_m_OnMoveDelegate_30(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnMoveDelegate_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnMoveDelegate_30), (void*)value);
}
inline static int32_t get_offset_of_m_OnSubmitDelegate_31() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnSubmitDelegate_31)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnSubmitDelegate_31() const { return ___m_OnSubmitDelegate_31; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnSubmitDelegate_31() { return &___m_OnSubmitDelegate_31; }
inline void set_m_OnSubmitDelegate_31(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnSubmitDelegate_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnSubmitDelegate_31), (void*)value);
}
inline static int32_t get_offset_of_m_OnCancelDelegate_32() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnCancelDelegate_32)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnCancelDelegate_32() const { return ___m_OnCancelDelegate_32; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnCancelDelegate_32() { return &___m_OnCancelDelegate_32; }
inline void set_m_OnCancelDelegate_32(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnCancelDelegate_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnCancelDelegate_32), (void*)value);
}
inline static int32_t get_offset_of_m_OnLeftClickDelegate_33() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnLeftClickDelegate_33)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnLeftClickDelegate_33() const { return ___m_OnLeftClickDelegate_33; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnLeftClickDelegate_33() { return &___m_OnLeftClickDelegate_33; }
inline void set_m_OnLeftClickDelegate_33(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnLeftClickDelegate_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnLeftClickDelegate_33), (void*)value);
}
inline static int32_t get_offset_of_m_OnRightClickDelegate_34() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnRightClickDelegate_34)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnRightClickDelegate_34() const { return ___m_OnRightClickDelegate_34; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnRightClickDelegate_34() { return &___m_OnRightClickDelegate_34; }
inline void set_m_OnRightClickDelegate_34(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnRightClickDelegate_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnRightClickDelegate_34), (void*)value);
}
inline static int32_t get_offset_of_m_OnMiddleClickDelegate_35() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnMiddleClickDelegate_35)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnMiddleClickDelegate_35() const { return ___m_OnMiddleClickDelegate_35; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnMiddleClickDelegate_35() { return &___m_OnMiddleClickDelegate_35; }
inline void set_m_OnMiddleClickDelegate_35(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnMiddleClickDelegate_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnMiddleClickDelegate_35), (void*)value);
}
inline static int32_t get_offset_of_m_OnScrollWheelDelegate_36() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnScrollWheelDelegate_36)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnScrollWheelDelegate_36() const { return ___m_OnScrollWheelDelegate_36; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnScrollWheelDelegate_36() { return &___m_OnScrollWheelDelegate_36; }
inline void set_m_OnScrollWheelDelegate_36(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnScrollWheelDelegate_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnScrollWheelDelegate_36), (void*)value);
}
inline static int32_t get_offset_of_m_OnTrackedDevicePositionDelegate_37() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnTrackedDevicePositionDelegate_37)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnTrackedDevicePositionDelegate_37() const { return ___m_OnTrackedDevicePositionDelegate_37; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnTrackedDevicePositionDelegate_37() { return &___m_OnTrackedDevicePositionDelegate_37; }
inline void set_m_OnTrackedDevicePositionDelegate_37(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnTrackedDevicePositionDelegate_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnTrackedDevicePositionDelegate_37), (void*)value);
}
inline static int32_t get_offset_of_m_OnTrackedDeviceOrientationDelegate_38() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnTrackedDeviceOrientationDelegate_38)); }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * get_m_OnTrackedDeviceOrientationDelegate_38() const { return ___m_OnTrackedDeviceOrientationDelegate_38; }
inline Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E ** get_address_of_m_OnTrackedDeviceOrientationDelegate_38() { return &___m_OnTrackedDeviceOrientationDelegate_38; }
inline void set_m_OnTrackedDeviceOrientationDelegate_38(Action_1_tC24661ECA36DF965C3115021DD6D1BF68AD4107E * value)
{
___m_OnTrackedDeviceOrientationDelegate_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnTrackedDeviceOrientationDelegate_38), (void*)value);
}
inline static int32_t get_offset_of_m_OnControlsChangedDelegate_39() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_OnControlsChangedDelegate_39)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_m_OnControlsChangedDelegate_39() const { return ___m_OnControlsChangedDelegate_39; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_m_OnControlsChangedDelegate_39() { return &___m_OnControlsChangedDelegate_39; }
inline void set_m_OnControlsChangedDelegate_39(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
___m_OnControlsChangedDelegate_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnControlsChangedDelegate_39), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentPointerId_40() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_CurrentPointerId_40)); }
inline int32_t get_m_CurrentPointerId_40() const { return ___m_CurrentPointerId_40; }
inline int32_t* get_address_of_m_CurrentPointerId_40() { return &___m_CurrentPointerId_40; }
inline void set_m_CurrentPointerId_40(int32_t value)
{
___m_CurrentPointerId_40 = value;
}
inline static int32_t get_offset_of_m_CurrentPointerIndex_41() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_CurrentPointerIndex_41)); }
inline int32_t get_m_CurrentPointerIndex_41() const { return ___m_CurrentPointerIndex_41; }
inline int32_t* get_address_of_m_CurrentPointerIndex_41() { return &___m_CurrentPointerIndex_41; }
inline void set_m_CurrentPointerIndex_41(int32_t value)
{
___m_CurrentPointerIndex_41 = value;
}
inline static int32_t get_offset_of_m_CurrentPointerType_42() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_CurrentPointerType_42)); }
inline int32_t get_m_CurrentPointerType_42() const { return ___m_CurrentPointerType_42; }
inline int32_t* get_address_of_m_CurrentPointerType_42() { return &___m_CurrentPointerType_42; }
inline void set_m_CurrentPointerType_42(int32_t value)
{
___m_CurrentPointerType_42 = value;
}
inline static int32_t get_offset_of_m_PointerIds_43() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_PointerIds_43)); }
inline InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD get_m_PointerIds_43() const { return ___m_PointerIds_43; }
inline InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD * get_address_of_m_PointerIds_43() { return &___m_PointerIds_43; }
inline void set_m_PointerIds_43(InlinedArray_1_t936DCDBC2C330C6B5B0B59311A19BA05C2C0ECFD value)
{
___m_PointerIds_43 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_PointerIds_43))->___additionalValues_2), (void*)NULL);
}
inline static int32_t get_offset_of_m_PointerStates_44() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_PointerStates_44)); }
inline InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B get_m_PointerStates_44() const { return ___m_PointerStates_44; }
inline InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B * get_address_of_m_PointerStates_44() { return &___m_PointerStates_44; }
inline void set_m_PointerStates_44(InlinedArray_1_tEA34F7837160598C39FCAE1273B6CEEAFD44CB2B value)
{
___m_PointerStates_44 = value;
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___leftButton_1))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___leftButton_1))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___leftButton_1))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___leftButton_1))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___leftButton_1))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___leftButton_1))->___dragObject_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___rightButton_2))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___rightButton_2))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___rightButton_2))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___rightButton_2))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___rightButton_2))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___rightButton_2))->___dragObject_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___middleButton_3))->___pressRaycast_2))->___m_GameObject_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___middleButton_3))->___pressRaycast_2))->___module_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___middleButton_3))->___pressObject_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___middleButton_3))->___rawPressObject_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___middleButton_3))->___lastPressObject_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_PointerStates_44))->___firstValue_1))->___middleButton_3))->___dragObject_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_PointerStates_44))->___firstValue_1))->___eventData_4), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_PointerStates_44))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_NavigationState_45() { return static_cast<int32_t>(offsetof(InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB, ___m_NavigationState_45)); }
inline NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB get_m_NavigationState_45() const { return ___m_NavigationState_45; }
inline NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB * get_address_of_m_NavigationState_45() { return &___m_NavigationState_45; }
inline void set_m_NavigationState_45(NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB value)
{
___m_NavigationState_45 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_NavigationState_45))->___eventData_6), (void*)NULL);
}
};
// UnityEngine.InputSystem.Controls.KeyControl
struct KeyControl_tC3F1A68E257325945EC5074D5E8F5158C7A4BAAE : public ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE
{
public:
// UnityEngine.InputSystem.Key UnityEngine.InputSystem.Controls.KeyControl::<keyCode>k__BackingField
int32_t ___U3CkeyCodeU3Ek__BackingField_35;
// System.Int32 UnityEngine.InputSystem.Controls.KeyControl::m_ScanCode
int32_t ___m_ScanCode_36;
public:
inline static int32_t get_offset_of_U3CkeyCodeU3Ek__BackingField_35() { return static_cast<int32_t>(offsetof(KeyControl_tC3F1A68E257325945EC5074D5E8F5158C7A4BAAE, ___U3CkeyCodeU3Ek__BackingField_35)); }
inline int32_t get_U3CkeyCodeU3Ek__BackingField_35() const { return ___U3CkeyCodeU3Ek__BackingField_35; }
inline int32_t* get_address_of_U3CkeyCodeU3Ek__BackingField_35() { return &___U3CkeyCodeU3Ek__BackingField_35; }
inline void set_U3CkeyCodeU3Ek__BackingField_35(int32_t value)
{
___U3CkeyCodeU3Ek__BackingField_35 = value;
}
inline static int32_t get_offset_of_m_ScanCode_36() { return static_cast<int32_t>(offsetof(KeyControl_tC3F1A68E257325945EC5074D5E8F5158C7A4BAAE, ___m_ScanCode_36)); }
inline int32_t get_m_ScanCode_36() const { return ___m_ScanCode_36; }
inline int32_t* get_address_of_m_ScanCode_36() { return &___m_ScanCode_36; }
inline void set_m_ScanCode_36(int32_t value)
{
___m_ScanCode_36 = value;
}
};
// UnityEngine.InputSystem.UI.MultiplayerEventSystem
struct MultiplayerEventSystem_tE02F0ADF42949523C45951EAFC49797B8B9B2718 : public EventSystem_t5DC458FCD0355A74CDCCE79287B38B9C4278E39C
{
public:
// UnityEngine.GameObject UnityEngine.InputSystem.UI.MultiplayerEventSystem::m_PlayerRoot
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_PlayerRoot_15;
public:
inline static int32_t get_offset_of_m_PlayerRoot_15() { return static_cast<int32_t>(offsetof(MultiplayerEventSystem_tE02F0ADF42949523C45951EAFC49797B8B9B2718, ___m_PlayerRoot_15)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_PlayerRoot_15() const { return ___m_PlayerRoot_15; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_PlayerRoot_15() { return &___m_PlayerRoot_15; }
inline void set_m_PlayerRoot_15(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_PlayerRoot_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PlayerRoot_15), (void*)value);
}
};
// Mirror.NetworkLobbyManager
struct NetworkLobbyManager_t2319898CAFFD2E5959223A60BBF01EE080DA4FFB : public NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516
{
public:
public:
};
// Mirror.NetworkLobbyPlayer
struct NetworkLobbyPlayer_t26FEE6276770BD7EC5177B79CF9EB78B607EAF22 : public NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F
{
public:
public:
};
// Mirror.Cloud.Example.NetworkManagerListServerPong
struct NetworkManagerListServerPong_tFD0529F7ADF9CE633C97C0815CBA838C5A5D8BD5 : public NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2
{
public:
public:
};
// Mirror.NetworkMatchChecker
struct NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2 : public NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07
{
public:
// System.Guid Mirror.NetworkMatchChecker::currentMatch
Guid_t ___currentMatch_12;
// System.String Mirror.NetworkMatchChecker::currentMatchDebug
String_t* ___currentMatchDebug_13;
public:
inline static int32_t get_offset_of_currentMatch_12() { return static_cast<int32_t>(offsetof(NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2, ___currentMatch_12)); }
inline Guid_t get_currentMatch_12() const { return ___currentMatch_12; }
inline Guid_t * get_address_of_currentMatch_12() { return &___currentMatch_12; }
inline void set_currentMatch_12(Guid_t value)
{
___currentMatch_12 = value;
}
inline static int32_t get_offset_of_currentMatchDebug_13() { return static_cast<int32_t>(offsetof(NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2, ___currentMatchDebug_13)); }
inline String_t* get_currentMatchDebug_13() const { return ___currentMatchDebug_13; }
inline String_t** get_address_of_currentMatchDebug_13() { return &___currentMatchDebug_13; }
inline void set_currentMatchDebug_13(String_t* value)
{
___currentMatchDebug_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentMatchDebug_13), (void*)value);
}
};
struct NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Guid,System.Collections.Generic.HashSet`1<Mirror.NetworkIdentity>> Mirror.NetworkMatchChecker::matchPlayers
Dictionary_2_t0AD6F3FBC670F3334FD89A23E535548066E3E249 * ___matchPlayers_11;
public:
inline static int32_t get_offset_of_matchPlayers_11() { return static_cast<int32_t>(offsetof(NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2_StaticFields, ___matchPlayers_11)); }
inline Dictionary_2_t0AD6F3FBC670F3334FD89A23E535548066E3E249 * get_matchPlayers_11() const { return ___matchPlayers_11; }
inline Dictionary_2_t0AD6F3FBC670F3334FD89A23E535548066E3E249 ** get_address_of_matchPlayers_11() { return &___matchPlayers_11; }
inline void set_matchPlayers_11(Dictionary_2_t0AD6F3FBC670F3334FD89A23E535548066E3E249 * value)
{
___matchPlayers_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchPlayers_11), (void*)value);
}
};
// Mirror.NetworkOwnerChecker
struct NetworkOwnerChecker_t7CE28D3FAB2275AE70306EA079C4028903E38EAA : public NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07
{
public:
public:
};
// Mirror.NetworkProximityChecker
struct NetworkProximityChecker_tE89F7560E4C73A4D5F10730A5B71A909BECB8D01 : public NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07
{
public:
// System.Int32 Mirror.NetworkProximityChecker::visRange
int32_t ___visRange_11;
// System.Single Mirror.NetworkProximityChecker::visUpdateInterval
float ___visUpdateInterval_12;
public:
inline static int32_t get_offset_of_visRange_11() { return static_cast<int32_t>(offsetof(NetworkProximityChecker_tE89F7560E4C73A4D5F10730A5B71A909BECB8D01, ___visRange_11)); }
inline int32_t get_visRange_11() const { return ___visRange_11; }
inline int32_t* get_address_of_visRange_11() { return &___visRange_11; }
inline void set_visRange_11(int32_t value)
{
___visRange_11 = value;
}
inline static int32_t get_offset_of_visUpdateInterval_12() { return static_cast<int32_t>(offsetof(NetworkProximityChecker_tE89F7560E4C73A4D5F10730A5B71A909BECB8D01, ___visUpdateInterval_12)); }
inline float get_visUpdateInterval_12() const { return ___visUpdateInterval_12; }
inline float* get_address_of_visUpdateInterval_12() { return &___visUpdateInterval_12; }
inline void set_visUpdateInterval_12(float value)
{
___visUpdateInterval_12 = value;
}
};
// Mirror.Examples.NetworkRoom.NetworkRoomManagerExt
struct NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B : public NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516
{
public:
// UnityEngine.GameObject Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::rewardPrefab
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rewardPrefab_43;
// System.Boolean Mirror.Examples.NetworkRoom.NetworkRoomManagerExt::showStartButton
bool ___showStartButton_44;
public:
inline static int32_t get_offset_of_rewardPrefab_43() { return static_cast<int32_t>(offsetof(NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B, ___rewardPrefab_43)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_rewardPrefab_43() const { return ___rewardPrefab_43; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_rewardPrefab_43() { return &___rewardPrefab_43; }
inline void set_rewardPrefab_43(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___rewardPrefab_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rewardPrefab_43), (void*)value);
}
inline static int32_t get_offset_of_showStartButton_44() { return static_cast<int32_t>(offsetof(NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B, ___showStartButton_44)); }
inline bool get_showStartButton_44() const { return ___showStartButton_44; }
inline bool* get_address_of_showStartButton_44() { return &___showStartButton_44; }
inline void set_showStartButton_44(bool value)
{
___showStartButton_44 = value;
}
};
// Mirror.Examples.NetworkRoom.NetworkRoomPlayerExt
struct NetworkRoomPlayerExt_t2E165B583684C8471EBAD2F36237BD5C92D8DF0C : public NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F
{
public:
public:
};
// Mirror.NetworkSceneChecker
struct NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0 : public NetworkVisibility_t11F3E314460EB47EA3971A1B1B3C88D6B69B1B07
{
public:
// System.Boolean Mirror.NetworkSceneChecker::forceHidden
bool ___forceHidden_11;
// UnityEngine.SceneManagement.Scene Mirror.NetworkSceneChecker::currentScene
Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___currentScene_13;
public:
inline static int32_t get_offset_of_forceHidden_11() { return static_cast<int32_t>(offsetof(NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0, ___forceHidden_11)); }
inline bool get_forceHidden_11() const { return ___forceHidden_11; }
inline bool* get_address_of_forceHidden_11() { return &___forceHidden_11; }
inline void set_forceHidden_11(bool value)
{
___forceHidden_11 = value;
}
inline static int32_t get_offset_of_currentScene_13() { return static_cast<int32_t>(offsetof(NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0, ___currentScene_13)); }
inline Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE get_currentScene_13() const { return ___currentScene_13; }
inline Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE * get_address_of_currentScene_13() { return &___currentScene_13; }
inline void set_currentScene_13(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE value)
{
___currentScene_13 = value;
}
};
struct NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<UnityEngine.SceneManagement.Scene,System.Collections.Generic.HashSet`1<Mirror.NetworkIdentity>> Mirror.NetworkSceneChecker::sceneCheckerObjects
Dictionary_2_tBD3DEFDAD6ABE2273F932674C3C8035AAE714A97 * ___sceneCheckerObjects_12;
public:
inline static int32_t get_offset_of_sceneCheckerObjects_12() { return static_cast<int32_t>(offsetof(NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0_StaticFields, ___sceneCheckerObjects_12)); }
inline Dictionary_2_tBD3DEFDAD6ABE2273F932674C3C8035AAE714A97 * get_sceneCheckerObjects_12() const { return ___sceneCheckerObjects_12; }
inline Dictionary_2_tBD3DEFDAD6ABE2273F932674C3C8035AAE714A97 ** get_address_of_sceneCheckerObjects_12() { return &___sceneCheckerObjects_12; }
inline void set_sceneCheckerObjects_12(Dictionary_2_tBD3DEFDAD6ABE2273F932674C3C8035AAE714A97 * value)
{
___sceneCheckerObjects_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sceneCheckerObjects_12), (void*)value);
}
};
// Mirror.NetworkTransform
struct NetworkTransform_t73D1B47F84C73C6EA1C665382B0677A689955969 : public NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F
{
public:
public:
};
// Mirror.Experimental.NetworkTransform
struct NetworkTransform_t536DA8B49053939F808F06FFB6243144309FB26D : public NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555
{
public:
public:
};
// Mirror.NetworkTransformChild
struct NetworkTransformChild_t5BCF31DB1CF06B9E4A05637871E288D51765466E : public NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F
{
public:
// UnityEngine.Transform Mirror.NetworkTransformChild::target
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___target_22;
public:
inline static int32_t get_offset_of_target_22() { return static_cast<int32_t>(offsetof(NetworkTransformChild_t5BCF31DB1CF06B9E4A05637871E288D51765466E, ___target_22)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_target_22() const { return ___target_22; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_target_22() { return &___target_22; }
inline void set_target_22(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
___target_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_22), (void*)value);
}
};
// Mirror.Experimental.NetworkTransformChild
struct NetworkTransformChild_t00AFAFB0CC0AF80437BC4B989B85FC80BAE83379 : public NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555
{
public:
// UnityEngine.Transform Mirror.Experimental.NetworkTransformChild::target
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___target_28;
public:
inline static int32_t get_offset_of_target_28() { return static_cast<int32_t>(offsetof(NetworkTransformChild_t00AFAFB0CC0AF80437BC4B989B85FC80BAE83379, ___target_28)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_target_28() const { return ___target_28; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_target_28() { return &___target_28; }
inline void set_target_28(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
___target_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_28), (void*)value);
}
};
// UnityEngine.XR.LegacyInputHelpers.SwingArmModel
struct SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F : public ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768
{
public:
// System.Single UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_ShoulderRotationRatio
float ___m_ShoulderRotationRatio_37;
// System.Single UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_ElbowRotationRatio
float ___m_ElbowRotationRatio_38;
// System.Single UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_WristRotationRatio
float ___m_WristRotationRatio_39;
// UnityEngine.Vector2 UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_JointShiftAngle
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_JointShiftAngle_40;
// System.Single UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_JointShiftExponent
float ___m_JointShiftExponent_41;
// System.Single UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_ShiftedShoulderRotationRatio
float ___m_ShiftedShoulderRotationRatio_42;
// System.Single UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_ShiftedElbowRotationRatio
float ___m_ShiftedElbowRotationRatio_43;
// System.Single UnityEngine.XR.LegacyInputHelpers.SwingArmModel::m_ShiftedWristRotationRatio
float ___m_ShiftedWristRotationRatio_44;
public:
inline static int32_t get_offset_of_m_ShoulderRotationRatio_37() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_ShoulderRotationRatio_37)); }
inline float get_m_ShoulderRotationRatio_37() const { return ___m_ShoulderRotationRatio_37; }
inline float* get_address_of_m_ShoulderRotationRatio_37() { return &___m_ShoulderRotationRatio_37; }
inline void set_m_ShoulderRotationRatio_37(float value)
{
___m_ShoulderRotationRatio_37 = value;
}
inline static int32_t get_offset_of_m_ElbowRotationRatio_38() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_ElbowRotationRatio_38)); }
inline float get_m_ElbowRotationRatio_38() const { return ___m_ElbowRotationRatio_38; }
inline float* get_address_of_m_ElbowRotationRatio_38() { return &___m_ElbowRotationRatio_38; }
inline void set_m_ElbowRotationRatio_38(float value)
{
___m_ElbowRotationRatio_38 = value;
}
inline static int32_t get_offset_of_m_WristRotationRatio_39() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_WristRotationRatio_39)); }
inline float get_m_WristRotationRatio_39() const { return ___m_WristRotationRatio_39; }
inline float* get_address_of_m_WristRotationRatio_39() { return &___m_WristRotationRatio_39; }
inline void set_m_WristRotationRatio_39(float value)
{
___m_WristRotationRatio_39 = value;
}
inline static int32_t get_offset_of_m_JointShiftAngle_40() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_JointShiftAngle_40)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_JointShiftAngle_40() const { return ___m_JointShiftAngle_40; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_JointShiftAngle_40() { return &___m_JointShiftAngle_40; }
inline void set_m_JointShiftAngle_40(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_JointShiftAngle_40 = value;
}
inline static int32_t get_offset_of_m_JointShiftExponent_41() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_JointShiftExponent_41)); }
inline float get_m_JointShiftExponent_41() const { return ___m_JointShiftExponent_41; }
inline float* get_address_of_m_JointShiftExponent_41() { return &___m_JointShiftExponent_41; }
inline void set_m_JointShiftExponent_41(float value)
{
___m_JointShiftExponent_41 = value;
}
inline static int32_t get_offset_of_m_ShiftedShoulderRotationRatio_42() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_ShiftedShoulderRotationRatio_42)); }
inline float get_m_ShiftedShoulderRotationRatio_42() const { return ___m_ShiftedShoulderRotationRatio_42; }
inline float* get_address_of_m_ShiftedShoulderRotationRatio_42() { return &___m_ShiftedShoulderRotationRatio_42; }
inline void set_m_ShiftedShoulderRotationRatio_42(float value)
{
___m_ShiftedShoulderRotationRatio_42 = value;
}
inline static int32_t get_offset_of_m_ShiftedElbowRotationRatio_43() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_ShiftedElbowRotationRatio_43)); }
inline float get_m_ShiftedElbowRotationRatio_43() const { return ___m_ShiftedElbowRotationRatio_43; }
inline float* get_address_of_m_ShiftedElbowRotationRatio_43() { return &___m_ShiftedElbowRotationRatio_43; }
inline void set_m_ShiftedElbowRotationRatio_43(float value)
{
___m_ShiftedElbowRotationRatio_43 = value;
}
inline static int32_t get_offset_of_m_ShiftedWristRotationRatio_44() { return static_cast<int32_t>(offsetof(SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F, ___m_ShiftedWristRotationRatio_44)); }
inline float get_m_ShiftedWristRotationRatio_44() const { return ___m_ShiftedWristRotationRatio_44; }
inline float* get_address_of_m_ShiftedWristRotationRatio_44() { return &___m_ShiftedWristRotationRatio_44; }
inline void set_m_ShiftedWristRotationRatio_44(float value)
{
___m_ShiftedWristRotationRatio_44 = value;
}
};
// UnityEngine.InputSystem.Controls.TouchPressControl
struct TouchPressControl_tAB19A027BD716995BDE06B0DD1BA1BD05777D45E : public ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE
{
public:
public:
};
// UnityEngine.InputSystem.UI.TrackedDeviceRaycaster
struct TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C : public BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876
{
public:
// System.Collections.Generic.List`1<UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData> UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::m_RaycastResultsCache
List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 * ___m_RaycastResultsCache_5;
// System.Boolean UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::m_IgnoreReversedGraphics
bool ___m_IgnoreReversedGraphics_8;
// System.Boolean UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::m_CheckFor2DOcclusion
bool ___m_CheckFor2DOcclusion_9;
// System.Boolean UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::m_CheckFor3DOcclusion
bool ___m_CheckFor3DOcclusion_10;
// System.Single UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::m_MaxDistance
float ___m_MaxDistance_11;
// UnityEngine.LayerMask UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::m_BlockingMask
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___m_BlockingMask_12;
// UnityEngine.Canvas UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::m_Canvas
Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___m_Canvas_13;
public:
inline static int32_t get_offset_of_m_RaycastResultsCache_5() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C, ___m_RaycastResultsCache_5)); }
inline List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 * get_m_RaycastResultsCache_5() const { return ___m_RaycastResultsCache_5; }
inline List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 ** get_address_of_m_RaycastResultsCache_5() { return &___m_RaycastResultsCache_5; }
inline void set_m_RaycastResultsCache_5(List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 * value)
{
___m_RaycastResultsCache_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RaycastResultsCache_5), (void*)value);
}
inline static int32_t get_offset_of_m_IgnoreReversedGraphics_8() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C, ___m_IgnoreReversedGraphics_8)); }
inline bool get_m_IgnoreReversedGraphics_8() const { return ___m_IgnoreReversedGraphics_8; }
inline bool* get_address_of_m_IgnoreReversedGraphics_8() { return &___m_IgnoreReversedGraphics_8; }
inline void set_m_IgnoreReversedGraphics_8(bool value)
{
___m_IgnoreReversedGraphics_8 = value;
}
inline static int32_t get_offset_of_m_CheckFor2DOcclusion_9() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C, ___m_CheckFor2DOcclusion_9)); }
inline bool get_m_CheckFor2DOcclusion_9() const { return ___m_CheckFor2DOcclusion_9; }
inline bool* get_address_of_m_CheckFor2DOcclusion_9() { return &___m_CheckFor2DOcclusion_9; }
inline void set_m_CheckFor2DOcclusion_9(bool value)
{
___m_CheckFor2DOcclusion_9 = value;
}
inline static int32_t get_offset_of_m_CheckFor3DOcclusion_10() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C, ___m_CheckFor3DOcclusion_10)); }
inline bool get_m_CheckFor3DOcclusion_10() const { return ___m_CheckFor3DOcclusion_10; }
inline bool* get_address_of_m_CheckFor3DOcclusion_10() { return &___m_CheckFor3DOcclusion_10; }
inline void set_m_CheckFor3DOcclusion_10(bool value)
{
___m_CheckFor3DOcclusion_10 = value;
}
inline static int32_t get_offset_of_m_MaxDistance_11() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C, ___m_MaxDistance_11)); }
inline float get_m_MaxDistance_11() const { return ___m_MaxDistance_11; }
inline float* get_address_of_m_MaxDistance_11() { return &___m_MaxDistance_11; }
inline void set_m_MaxDistance_11(float value)
{
___m_MaxDistance_11 = value;
}
inline static int32_t get_offset_of_m_BlockingMask_12() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C, ___m_BlockingMask_12)); }
inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 get_m_BlockingMask_12() const { return ___m_BlockingMask_12; }
inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 * get_address_of_m_BlockingMask_12() { return &___m_BlockingMask_12; }
inline void set_m_BlockingMask_12(LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 value)
{
___m_BlockingMask_12 = value;
}
inline static int32_t get_offset_of_m_Canvas_13() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C, ___m_Canvas_13)); }
inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * get_m_Canvas_13() const { return ___m_Canvas_13; }
inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA ** get_address_of_m_Canvas_13() { return &___m_Canvas_13; }
inline void set_m_Canvas_13(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * value)
{
___m_Canvas_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_13), (void*)value);
}
};
struct TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C_StaticFields
{
public:
// UnityEngine.InputSystem.Utilities.InlinedArray`1<UnityEngine.InputSystem.UI.TrackedDeviceRaycaster> UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::s_Instances
InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079 ___s_Instances_6;
// System.Collections.Generic.List`1<UnityEngine.InputSystem.UI.TrackedDeviceRaycaster/RaycastHitData> UnityEngine.InputSystem.UI.TrackedDeviceRaycaster::s_SortedGraphics
List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 * ___s_SortedGraphics_7;
public:
inline static int32_t get_offset_of_s_Instances_6() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C_StaticFields, ___s_Instances_6)); }
inline InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079 get_s_Instances_6() const { return ___s_Instances_6; }
inline InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079 * get_address_of_s_Instances_6() { return &___s_Instances_6; }
inline void set_s_Instances_6(InlinedArray_1_tD408F591478C6C2915F69DFEC4ABE558EEF35079 value)
{
___s_Instances_6 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Instances_6))->___firstValue_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___s_Instances_6))->___additionalValues_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_SortedGraphics_7() { return static_cast<int32_t>(offsetof(TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C_StaticFields, ___s_SortedGraphics_7)); }
inline List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 * get_s_SortedGraphics_7() const { return ___s_SortedGraphics_7; }
inline List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 ** get_address_of_s_SortedGraphics_7() { return &___s_SortedGraphics_7; }
inline void set_s_SortedGraphics_7(List_1_t346A4398199DF77337DC6F4722671C87FFC58E36 * value)
{
___s_SortedGraphics_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SortedGraphics_7), (void*)value);
}
};
// UnityEngine.XR.LegacyInputHelpers.TransitionArmModel
struct TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411 : public ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768
{
public:
// UnityEngine.XR.LegacyInputHelpers.ArmModel UnityEngine.XR.LegacyInputHelpers.TransitionArmModel::m_CurrentArmModelComponent
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * ___m_CurrentArmModelComponent_37;
// System.Collections.Generic.List`1<UnityEngine.XR.LegacyInputHelpers.ArmModelTransition> UnityEngine.XR.LegacyInputHelpers.TransitionArmModel::m_ArmModelTransitions
List_1_t4AD417C23F654717B58D1A5F4AC2744627D6749F * ___m_ArmModelTransitions_38;
// System.Collections.Generic.List`1<UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData> UnityEngine.XR.LegacyInputHelpers.TransitionArmModel::armModelBlendData
List_1_t60B9CBF17F0BC53257EC16939D6BA3B183B58E3F * ___armModelBlendData_44;
// UnityEngine.XR.LegacyInputHelpers.TransitionArmModel/ArmModelBlendData UnityEngine.XR.LegacyInputHelpers.TransitionArmModel::currentBlendingArmModel
ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4 ___currentBlendingArmModel_45;
public:
inline static int32_t get_offset_of_m_CurrentArmModelComponent_37() { return static_cast<int32_t>(offsetof(TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411, ___m_CurrentArmModelComponent_37)); }
inline ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * get_m_CurrentArmModelComponent_37() const { return ___m_CurrentArmModelComponent_37; }
inline ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 ** get_address_of_m_CurrentArmModelComponent_37() { return &___m_CurrentArmModelComponent_37; }
inline void set_m_CurrentArmModelComponent_37(ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768 * value)
{
___m_CurrentArmModelComponent_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentArmModelComponent_37), (void*)value);
}
inline static int32_t get_offset_of_m_ArmModelTransitions_38() { return static_cast<int32_t>(offsetof(TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411, ___m_ArmModelTransitions_38)); }
inline List_1_t4AD417C23F654717B58D1A5F4AC2744627D6749F * get_m_ArmModelTransitions_38() const { return ___m_ArmModelTransitions_38; }
inline List_1_t4AD417C23F654717B58D1A5F4AC2744627D6749F ** get_address_of_m_ArmModelTransitions_38() { return &___m_ArmModelTransitions_38; }
inline void set_m_ArmModelTransitions_38(List_1_t4AD417C23F654717B58D1A5F4AC2744627D6749F * value)
{
___m_ArmModelTransitions_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ArmModelTransitions_38), (void*)value);
}
inline static int32_t get_offset_of_armModelBlendData_44() { return static_cast<int32_t>(offsetof(TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411, ___armModelBlendData_44)); }
inline List_1_t60B9CBF17F0BC53257EC16939D6BA3B183B58E3F * get_armModelBlendData_44() const { return ___armModelBlendData_44; }
inline List_1_t60B9CBF17F0BC53257EC16939D6BA3B183B58E3F ** get_address_of_armModelBlendData_44() { return &___armModelBlendData_44; }
inline void set_armModelBlendData_44(List_1_t60B9CBF17F0BC53257EC16939D6BA3B183B58E3F * value)
{
___armModelBlendData_44 = value;
Il2CppCodeGenWriteBarrier((void**)(&___armModelBlendData_44), (void*)value);
}
inline static int32_t get_offset_of_currentBlendingArmModel_45() { return static_cast<int32_t>(offsetof(TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411, ___currentBlendingArmModel_45)); }
inline ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4 get_currentBlendingArmModel_45() const { return ___currentBlendingArmModel_45; }
inline ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4 * get_address_of_currentBlendingArmModel_45() { return &___currentBlendingArmModel_45; }
inline void set_currentBlendingArmModel_45(ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4 value)
{
___currentBlendingArmModel_45 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___currentBlendingArmModel_45))->___armModel_0), (void*)NULL);
}
};
// UnityEngine.XR.WindowsMR.Input.WMRHMD
struct WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C : public XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5
{
public:
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRHMD::<userPresence>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CuserPresenceU3Ek__BackingField_45;
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.XR.WindowsMR.Input.WMRHMD::<trackingState>k__BackingField
IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * ___U3CtrackingStateU3Ek__BackingField_46;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRHMD::<isTracked>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CisTrackedU3Ek__BackingField_47;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRHMD::<devicePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdevicePositionU3Ek__BackingField_48;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.WindowsMR.Input.WMRHMD::<deviceRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CdeviceRotationU3Ek__BackingField_49;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRHMD::<leftEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CleftEyePositionU3Ek__BackingField_50;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.WindowsMR.Input.WMRHMD::<leftEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CleftEyeRotationU3Ek__BackingField_51;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRHMD::<rightEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CrightEyePositionU3Ek__BackingField_52;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.WindowsMR.Input.WMRHMD::<rightEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CrightEyeRotationU3Ek__BackingField_53;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRHMD::<centerEyePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CcenterEyePositionU3Ek__BackingField_54;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.WindowsMR.Input.WMRHMD::<centerEyeRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CcenterEyeRotationU3Ek__BackingField_55;
public:
inline static int32_t get_offset_of_U3CuserPresenceU3Ek__BackingField_45() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CuserPresenceU3Ek__BackingField_45)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CuserPresenceU3Ek__BackingField_45() const { return ___U3CuserPresenceU3Ek__BackingField_45; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CuserPresenceU3Ek__BackingField_45() { return &___U3CuserPresenceU3Ek__BackingField_45; }
inline void set_U3CuserPresenceU3Ek__BackingField_45(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CuserPresenceU3Ek__BackingField_45 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CuserPresenceU3Ek__BackingField_45), (void*)value);
}
inline static int32_t get_offset_of_U3CtrackingStateU3Ek__BackingField_46() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CtrackingStateU3Ek__BackingField_46)); }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * get_U3CtrackingStateU3Ek__BackingField_46() const { return ___U3CtrackingStateU3Ek__BackingField_46; }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 ** get_address_of_U3CtrackingStateU3Ek__BackingField_46() { return &___U3CtrackingStateU3Ek__BackingField_46; }
inline void set_U3CtrackingStateU3Ek__BackingField_46(IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * value)
{
___U3CtrackingStateU3Ek__BackingField_46 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackingStateU3Ek__BackingField_46), (void*)value);
}
inline static int32_t get_offset_of_U3CisTrackedU3Ek__BackingField_47() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CisTrackedU3Ek__BackingField_47)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CisTrackedU3Ek__BackingField_47() const { return ___U3CisTrackedU3Ek__BackingField_47; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CisTrackedU3Ek__BackingField_47() { return &___U3CisTrackedU3Ek__BackingField_47; }
inline void set_U3CisTrackedU3Ek__BackingField_47(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CisTrackedU3Ek__BackingField_47 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CisTrackedU3Ek__BackingField_47), (void*)value);
}
inline static int32_t get_offset_of_U3CdevicePositionU3Ek__BackingField_48() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CdevicePositionU3Ek__BackingField_48)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdevicePositionU3Ek__BackingField_48() const { return ___U3CdevicePositionU3Ek__BackingField_48; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdevicePositionU3Ek__BackingField_48() { return &___U3CdevicePositionU3Ek__BackingField_48; }
inline void set_U3CdevicePositionU3Ek__BackingField_48(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdevicePositionU3Ek__BackingField_48 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdevicePositionU3Ek__BackingField_48), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceRotationU3Ek__BackingField_49() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CdeviceRotationU3Ek__BackingField_49)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CdeviceRotationU3Ek__BackingField_49() const { return ___U3CdeviceRotationU3Ek__BackingField_49; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CdeviceRotationU3Ek__BackingField_49() { return &___U3CdeviceRotationU3Ek__BackingField_49; }
inline void set_U3CdeviceRotationU3Ek__BackingField_49(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CdeviceRotationU3Ek__BackingField_49 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceRotationU3Ek__BackingField_49), (void*)value);
}
inline static int32_t get_offset_of_U3CleftEyePositionU3Ek__BackingField_50() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CleftEyePositionU3Ek__BackingField_50)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CleftEyePositionU3Ek__BackingField_50() const { return ___U3CleftEyePositionU3Ek__BackingField_50; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CleftEyePositionU3Ek__BackingField_50() { return &___U3CleftEyePositionU3Ek__BackingField_50; }
inline void set_U3CleftEyePositionU3Ek__BackingField_50(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CleftEyePositionU3Ek__BackingField_50 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyePositionU3Ek__BackingField_50), (void*)value);
}
inline static int32_t get_offset_of_U3CleftEyeRotationU3Ek__BackingField_51() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CleftEyeRotationU3Ek__BackingField_51)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CleftEyeRotationU3Ek__BackingField_51() const { return ___U3CleftEyeRotationU3Ek__BackingField_51; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CleftEyeRotationU3Ek__BackingField_51() { return &___U3CleftEyeRotationU3Ek__BackingField_51; }
inline void set_U3CleftEyeRotationU3Ek__BackingField_51(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CleftEyeRotationU3Ek__BackingField_51 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyeRotationU3Ek__BackingField_51), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyePositionU3Ek__BackingField_52() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CrightEyePositionU3Ek__BackingField_52)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CrightEyePositionU3Ek__BackingField_52() const { return ___U3CrightEyePositionU3Ek__BackingField_52; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CrightEyePositionU3Ek__BackingField_52() { return &___U3CrightEyePositionU3Ek__BackingField_52; }
inline void set_U3CrightEyePositionU3Ek__BackingField_52(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CrightEyePositionU3Ek__BackingField_52 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyePositionU3Ek__BackingField_52), (void*)value);
}
inline static int32_t get_offset_of_U3CrightEyeRotationU3Ek__BackingField_53() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CrightEyeRotationU3Ek__BackingField_53)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CrightEyeRotationU3Ek__BackingField_53() const { return ___U3CrightEyeRotationU3Ek__BackingField_53; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CrightEyeRotationU3Ek__BackingField_53() { return &___U3CrightEyeRotationU3Ek__BackingField_53; }
inline void set_U3CrightEyeRotationU3Ek__BackingField_53(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CrightEyeRotationU3Ek__BackingField_53 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyeRotationU3Ek__BackingField_53), (void*)value);
}
inline static int32_t get_offset_of_U3CcenterEyePositionU3Ek__BackingField_54() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CcenterEyePositionU3Ek__BackingField_54)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CcenterEyePositionU3Ek__BackingField_54() const { return ___U3CcenterEyePositionU3Ek__BackingField_54; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CcenterEyePositionU3Ek__BackingField_54() { return &___U3CcenterEyePositionU3Ek__BackingField_54; }
inline void set_U3CcenterEyePositionU3Ek__BackingField_54(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CcenterEyePositionU3Ek__BackingField_54 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcenterEyePositionU3Ek__BackingField_54), (void*)value);
}
inline static int32_t get_offset_of_U3CcenterEyeRotationU3Ek__BackingField_55() { return static_cast<int32_t>(offsetof(WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C, ___U3CcenterEyeRotationU3Ek__BackingField_55)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CcenterEyeRotationU3Ek__BackingField_55() const { return ___U3CcenterEyeRotationU3Ek__BackingField_55; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CcenterEyeRotationU3Ek__BackingField_55() { return &___U3CcenterEyeRotationU3Ek__BackingField_55; }
inline void set_U3CcenterEyeRotationU3Ek__BackingField_55(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CcenterEyeRotationU3Ek__BackingField_55 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CcenterEyeRotationU3Ek__BackingField_55), (void*)value);
}
};
// UnityEngine.InputSystem.XInput.XInputControllerWindows
struct XInputControllerWindows_t0313CB204FEE7155DC2AB067E13E14593FFEA3F0 : public XInputController_t94348C741719B01624FCFDF01E4DE883533672C9
{
public:
public:
};
// UnityEngine.InputSystem.XR.XRControllerWithRumble
struct XRControllerWithRumble_t5E1AA687771D775B253F20000B1B3037B9748E33 : public XRController_t9EBFEF7BFFBA776D4678170BC68991F6FE09B88C
{
public:
public:
};
// UnityEngine.XR.WindowsMR.Input.WMRSpatialController
struct WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6 : public XRControllerWithRumble_t5E1AA687771D775B253F20000B1B3037B9748E33
{
public:
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<joystick>k__BackingField
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * ___U3CjoystickU3Ek__BackingField_39;
// UnityEngine.InputSystem.Controls.Vector2Control UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<touchpad>k__BackingField
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * ___U3CtouchpadU3Ek__BackingField_40;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<grip>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CgripU3Ek__BackingField_41;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<gripPressed>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CgripPressedU3Ek__BackingField_42;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<menu>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CmenuU3Ek__BackingField_43;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<trigger>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CtriggerU3Ek__BackingField_44;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<triggerPressed>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CtriggerPressedU3Ek__BackingField_45;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<joystickClicked>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CjoystickClickedU3Ek__BackingField_46;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<touchpadClicked>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CtouchpadClickedU3Ek__BackingField_47;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<touchpadTouched>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CtouchpadTouchedU3Ek__BackingField_48;
// UnityEngine.InputSystem.Controls.IntegerControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<trackingState>k__BackingField
IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * ___U3CtrackingStateU3Ek__BackingField_49;
// UnityEngine.InputSystem.Controls.ButtonControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<isTracked>k__BackingField
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * ___U3CisTrackedU3Ek__BackingField_50;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<devicePosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdevicePositionU3Ek__BackingField_51;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<deviceRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CdeviceRotationU3Ek__BackingField_52;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<deviceVelocity>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdeviceVelocityU3Ek__BackingField_53;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<deviceAngularVelocity>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CdeviceAngularVelocityU3Ek__BackingField_54;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<batteryLevel>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CbatteryLevelU3Ek__BackingField_55;
// UnityEngine.InputSystem.Controls.AxisControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<sourceLossRisk>k__BackingField
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * ___U3CsourceLossRiskU3Ek__BackingField_56;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<sourceLossMitigationDirection>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CsourceLossMitigationDirectionU3Ek__BackingField_57;
// UnityEngine.InputSystem.Controls.Vector3Control UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<pointerPosition>k__BackingField
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * ___U3CpointerPositionU3Ek__BackingField_58;
// UnityEngine.InputSystem.Controls.QuaternionControl UnityEngine.XR.WindowsMR.Input.WMRSpatialController::<pointerRotation>k__BackingField
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * ___U3CpointerRotationU3Ek__BackingField_59;
public:
inline static int32_t get_offset_of_U3CjoystickU3Ek__BackingField_39() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CjoystickU3Ek__BackingField_39)); }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * get_U3CjoystickU3Ek__BackingField_39() const { return ___U3CjoystickU3Ek__BackingField_39; }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 ** get_address_of_U3CjoystickU3Ek__BackingField_39() { return &___U3CjoystickU3Ek__BackingField_39; }
inline void set_U3CjoystickU3Ek__BackingField_39(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * value)
{
___U3CjoystickU3Ek__BackingField_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CjoystickU3Ek__BackingField_39), (void*)value);
}
inline static int32_t get_offset_of_U3CtouchpadU3Ek__BackingField_40() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CtouchpadU3Ek__BackingField_40)); }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * get_U3CtouchpadU3Ek__BackingField_40() const { return ___U3CtouchpadU3Ek__BackingField_40; }
inline Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 ** get_address_of_U3CtouchpadU3Ek__BackingField_40() { return &___U3CtouchpadU3Ek__BackingField_40; }
inline void set_U3CtouchpadU3Ek__BackingField_40(Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11 * value)
{
___U3CtouchpadU3Ek__BackingField_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtouchpadU3Ek__BackingField_40), (void*)value);
}
inline static int32_t get_offset_of_U3CgripU3Ek__BackingField_41() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CgripU3Ek__BackingField_41)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CgripU3Ek__BackingField_41() const { return ___U3CgripU3Ek__BackingField_41; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CgripU3Ek__BackingField_41() { return &___U3CgripU3Ek__BackingField_41; }
inline void set_U3CgripU3Ek__BackingField_41(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CgripU3Ek__BackingField_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgripU3Ek__BackingField_41), (void*)value);
}
inline static int32_t get_offset_of_U3CgripPressedU3Ek__BackingField_42() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CgripPressedU3Ek__BackingField_42)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CgripPressedU3Ek__BackingField_42() const { return ___U3CgripPressedU3Ek__BackingField_42; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CgripPressedU3Ek__BackingField_42() { return &___U3CgripPressedU3Ek__BackingField_42; }
inline void set_U3CgripPressedU3Ek__BackingField_42(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CgripPressedU3Ek__BackingField_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CgripPressedU3Ek__BackingField_42), (void*)value);
}
inline static int32_t get_offset_of_U3CmenuU3Ek__BackingField_43() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CmenuU3Ek__BackingField_43)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CmenuU3Ek__BackingField_43() const { return ___U3CmenuU3Ek__BackingField_43; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CmenuU3Ek__BackingField_43() { return &___U3CmenuU3Ek__BackingField_43; }
inline void set_U3CmenuU3Ek__BackingField_43(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CmenuU3Ek__BackingField_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmenuU3Ek__BackingField_43), (void*)value);
}
inline static int32_t get_offset_of_U3CtriggerU3Ek__BackingField_44() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CtriggerU3Ek__BackingField_44)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CtriggerU3Ek__BackingField_44() const { return ___U3CtriggerU3Ek__BackingField_44; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CtriggerU3Ek__BackingField_44() { return &___U3CtriggerU3Ek__BackingField_44; }
inline void set_U3CtriggerU3Ek__BackingField_44(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CtriggerU3Ek__BackingField_44 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtriggerU3Ek__BackingField_44), (void*)value);
}
inline static int32_t get_offset_of_U3CtriggerPressedU3Ek__BackingField_45() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CtriggerPressedU3Ek__BackingField_45)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CtriggerPressedU3Ek__BackingField_45() const { return ___U3CtriggerPressedU3Ek__BackingField_45; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CtriggerPressedU3Ek__BackingField_45() { return &___U3CtriggerPressedU3Ek__BackingField_45; }
inline void set_U3CtriggerPressedU3Ek__BackingField_45(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CtriggerPressedU3Ek__BackingField_45 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtriggerPressedU3Ek__BackingField_45), (void*)value);
}
inline static int32_t get_offset_of_U3CjoystickClickedU3Ek__BackingField_46() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CjoystickClickedU3Ek__BackingField_46)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CjoystickClickedU3Ek__BackingField_46() const { return ___U3CjoystickClickedU3Ek__BackingField_46; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CjoystickClickedU3Ek__BackingField_46() { return &___U3CjoystickClickedU3Ek__BackingField_46; }
inline void set_U3CjoystickClickedU3Ek__BackingField_46(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CjoystickClickedU3Ek__BackingField_46 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CjoystickClickedU3Ek__BackingField_46), (void*)value);
}
inline static int32_t get_offset_of_U3CtouchpadClickedU3Ek__BackingField_47() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CtouchpadClickedU3Ek__BackingField_47)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CtouchpadClickedU3Ek__BackingField_47() const { return ___U3CtouchpadClickedU3Ek__BackingField_47; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CtouchpadClickedU3Ek__BackingField_47() { return &___U3CtouchpadClickedU3Ek__BackingField_47; }
inline void set_U3CtouchpadClickedU3Ek__BackingField_47(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CtouchpadClickedU3Ek__BackingField_47 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtouchpadClickedU3Ek__BackingField_47), (void*)value);
}
inline static int32_t get_offset_of_U3CtouchpadTouchedU3Ek__BackingField_48() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CtouchpadTouchedU3Ek__BackingField_48)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CtouchpadTouchedU3Ek__BackingField_48() const { return ___U3CtouchpadTouchedU3Ek__BackingField_48; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CtouchpadTouchedU3Ek__BackingField_48() { return &___U3CtouchpadTouchedU3Ek__BackingField_48; }
inline void set_U3CtouchpadTouchedU3Ek__BackingField_48(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CtouchpadTouchedU3Ek__BackingField_48 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtouchpadTouchedU3Ek__BackingField_48), (void*)value);
}
inline static int32_t get_offset_of_U3CtrackingStateU3Ek__BackingField_49() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CtrackingStateU3Ek__BackingField_49)); }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * get_U3CtrackingStateU3Ek__BackingField_49() const { return ___U3CtrackingStateU3Ek__BackingField_49; }
inline IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 ** get_address_of_U3CtrackingStateU3Ek__BackingField_49() { return &___U3CtrackingStateU3Ek__BackingField_49; }
inline void set_U3CtrackingStateU3Ek__BackingField_49(IntegerControl_t60CC1832B04A17B7393624AC03EFED35CE99B7F5 * value)
{
___U3CtrackingStateU3Ek__BackingField_49 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackingStateU3Ek__BackingField_49), (void*)value);
}
inline static int32_t get_offset_of_U3CisTrackedU3Ek__BackingField_50() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CisTrackedU3Ek__BackingField_50)); }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * get_U3CisTrackedU3Ek__BackingField_50() const { return ___U3CisTrackedU3Ek__BackingField_50; }
inline ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE ** get_address_of_U3CisTrackedU3Ek__BackingField_50() { return &___U3CisTrackedU3Ek__BackingField_50; }
inline void set_U3CisTrackedU3Ek__BackingField_50(ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE * value)
{
___U3CisTrackedU3Ek__BackingField_50 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CisTrackedU3Ek__BackingField_50), (void*)value);
}
inline static int32_t get_offset_of_U3CdevicePositionU3Ek__BackingField_51() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CdevicePositionU3Ek__BackingField_51)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdevicePositionU3Ek__BackingField_51() const { return ___U3CdevicePositionU3Ek__BackingField_51; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdevicePositionU3Ek__BackingField_51() { return &___U3CdevicePositionU3Ek__BackingField_51; }
inline void set_U3CdevicePositionU3Ek__BackingField_51(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdevicePositionU3Ek__BackingField_51 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdevicePositionU3Ek__BackingField_51), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceRotationU3Ek__BackingField_52() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CdeviceRotationU3Ek__BackingField_52)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CdeviceRotationU3Ek__BackingField_52() const { return ___U3CdeviceRotationU3Ek__BackingField_52; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CdeviceRotationU3Ek__BackingField_52() { return &___U3CdeviceRotationU3Ek__BackingField_52; }
inline void set_U3CdeviceRotationU3Ek__BackingField_52(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CdeviceRotationU3Ek__BackingField_52 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceRotationU3Ek__BackingField_52), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceVelocityU3Ek__BackingField_53() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CdeviceVelocityU3Ek__BackingField_53)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdeviceVelocityU3Ek__BackingField_53() const { return ___U3CdeviceVelocityU3Ek__BackingField_53; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdeviceVelocityU3Ek__BackingField_53() { return &___U3CdeviceVelocityU3Ek__BackingField_53; }
inline void set_U3CdeviceVelocityU3Ek__BackingField_53(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdeviceVelocityU3Ek__BackingField_53 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceVelocityU3Ek__BackingField_53), (void*)value);
}
inline static int32_t get_offset_of_U3CdeviceAngularVelocityU3Ek__BackingField_54() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CdeviceAngularVelocityU3Ek__BackingField_54)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CdeviceAngularVelocityU3Ek__BackingField_54() const { return ___U3CdeviceAngularVelocityU3Ek__BackingField_54; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CdeviceAngularVelocityU3Ek__BackingField_54() { return &___U3CdeviceAngularVelocityU3Ek__BackingField_54; }
inline void set_U3CdeviceAngularVelocityU3Ek__BackingField_54(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CdeviceAngularVelocityU3Ek__BackingField_54 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdeviceAngularVelocityU3Ek__BackingField_54), (void*)value);
}
inline static int32_t get_offset_of_U3CbatteryLevelU3Ek__BackingField_55() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CbatteryLevelU3Ek__BackingField_55)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CbatteryLevelU3Ek__BackingField_55() const { return ___U3CbatteryLevelU3Ek__BackingField_55; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CbatteryLevelU3Ek__BackingField_55() { return &___U3CbatteryLevelU3Ek__BackingField_55; }
inline void set_U3CbatteryLevelU3Ek__BackingField_55(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CbatteryLevelU3Ek__BackingField_55 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CbatteryLevelU3Ek__BackingField_55), (void*)value);
}
inline static int32_t get_offset_of_U3CsourceLossRiskU3Ek__BackingField_56() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CsourceLossRiskU3Ek__BackingField_56)); }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * get_U3CsourceLossRiskU3Ek__BackingField_56() const { return ___U3CsourceLossRiskU3Ek__BackingField_56; }
inline AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD ** get_address_of_U3CsourceLossRiskU3Ek__BackingField_56() { return &___U3CsourceLossRiskU3Ek__BackingField_56; }
inline void set_U3CsourceLossRiskU3Ek__BackingField_56(AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD * value)
{
___U3CsourceLossRiskU3Ek__BackingField_56 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsourceLossRiskU3Ek__BackingField_56), (void*)value);
}
inline static int32_t get_offset_of_U3CsourceLossMitigationDirectionU3Ek__BackingField_57() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CsourceLossMitigationDirectionU3Ek__BackingField_57)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CsourceLossMitigationDirectionU3Ek__BackingField_57() const { return ___U3CsourceLossMitigationDirectionU3Ek__BackingField_57; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CsourceLossMitigationDirectionU3Ek__BackingField_57() { return &___U3CsourceLossMitigationDirectionU3Ek__BackingField_57; }
inline void set_U3CsourceLossMitigationDirectionU3Ek__BackingField_57(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CsourceLossMitigationDirectionU3Ek__BackingField_57 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsourceLossMitigationDirectionU3Ek__BackingField_57), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerPositionU3Ek__BackingField_58() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CpointerPositionU3Ek__BackingField_58)); }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * get_U3CpointerPositionU3Ek__BackingField_58() const { return ___U3CpointerPositionU3Ek__BackingField_58; }
inline Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 ** get_address_of_U3CpointerPositionU3Ek__BackingField_58() { return &___U3CpointerPositionU3Ek__BackingField_58; }
inline void set_U3CpointerPositionU3Ek__BackingField_58(Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475 * value)
{
___U3CpointerPositionU3Ek__BackingField_58 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerPositionU3Ek__BackingField_58), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerRotationU3Ek__BackingField_59() { return static_cast<int32_t>(offsetof(WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6, ___U3CpointerRotationU3Ek__BackingField_59)); }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * get_U3CpointerRotationU3Ek__BackingField_59() const { return ___U3CpointerRotationU3Ek__BackingField_59; }
inline QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 ** get_address_of_U3CpointerRotationU3Ek__BackingField_59() { return &___U3CpointerRotationU3Ek__BackingField_59; }
inline void set_U3CpointerRotationU3Ek__BackingField_59(QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6 * value)
{
___U3CpointerRotationU3Ek__BackingField_59 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerRotationU3Ek__BackingField_59), (void*)value);
}
};
#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
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3543[41] =
{
0,
0,
0,
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_Actions_7(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_NotificationBehavior_8(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_UIInputModule_9(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_DeviceLostEvent_10(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_DeviceRegainedEvent_11(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_ControlsChangedEvent_12(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_ActionEvents_13(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_NeverAutoSwitchControlSchemes_14(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_DefaultControlScheme_15(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_DefaultActionMap_16(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_SplitScreenIndex_17(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_Camera_18(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_InputValueObject_19(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_CurrentActionMap_20(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_PlayerIndex_21(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_InputActive_22(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_Enabled_23(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_ActionsInitialized_24(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_ActionMessageNames_25(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_InputUser_26(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_ActionTriggeredDelegate_27(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_DeviceLostCallbacks_28(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_DeviceRegainedCallbacks_29(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_ControlsChangedCallbacks_30(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_ActionTriggeredCallbacks_31(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_UnpairedDeviceUsedDelegate_32(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_OnUnpairedDeviceUsedHooked_33(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_DeviceChangeDelegate_34(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965::get_offset_of_m_OnDeviceChangeHooked_35(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_AllActivePlayersCount_36(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_AllActivePlayers_37(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_UserChangeDelegate_38(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_InitPairWithDevicesCount_39(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_InitPairWithDevices_40(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_InitPlayerIndex_41(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_InitSplitScreenIndex_42(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_InitControlScheme_43(),
PlayerInput_t93DEEA8758DF3A1A86D2E2F751D8798F9EBFB965_StaticFields::get_offset_of_s_DestroyIfDeviceSetupUnsuccessful_44(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3546[21] =
{
0,
0,
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E_StaticFields::get_offset_of_U3CinstanceU3Ek__BackingField_6(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_NotificationBehavior_7(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_MaxPlayerCount_8(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_AllowJoining_9(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_JoinBehavior_10(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_PlayerJoinedEvent_11(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_PlayerLeftEvent_12(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_JoinAction_13(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_PlayerPrefab_14(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_SplitScreen_15(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_MaintainAspectRatioInSplitScreen_16(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_FixedNumberOfSplitScreens_17(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_SplitScreenRect_18(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_JoinActionDelegateHooked_19(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_UnpairedDeviceUsedDelegateHooked_20(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_JoinActionDelegate_21(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_UnpairedDeviceUsedDelegate_22(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_PlayerJoinedCallbacks_23(),
PlayerInputManager_tED459ECA5C9A3D5879A4DE4F28F1BDBE88B6686E::get_offset_of_m_PlayerLeftCallbacks_24(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3547[4] =
{
PlayerJoinBehavior_tC208855AAA12E44FF9B91A55B2C66905C1ABE7FD::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3548[5] =
{
PlayerNotifications_tEA221E61C149E5FFFF8FF5C8562F543C14114B0C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3549[2] =
{
DynamicBitfield_tA51C2E6A95C3CBCFCC726BE62AD1A1802D6711BB::get_offset_of_array_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DynamicBitfield_tA51C2E6A95C3CBCFCC726BE62AD1A1802D6711BB::get_offset_of_length_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3550[6] =
{
XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5::get_offset_of_U3CleftEyePositionU3Ek__BackingField_39(),
XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5::get_offset_of_U3CleftEyeRotationU3Ek__BackingField_40(),
XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5::get_offset_of_U3CrightEyePositionU3Ek__BackingField_41(),
XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5::get_offset_of_U3CrightEyeRotationU3Ek__BackingField_42(),
XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5::get_offset_of_U3CcenterEyePositionU3Ek__BackingField_43(),
XRHMD_t6EF232AD658EAAC614833DBC6E3C6B4B7122ABE5::get_offset_of_U3CcenterEyeRotationU3Ek__BackingField_44(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3553[4] =
{
TrackingType_t9669D7A30F2D34D70EDB7FDEDC8B11AA8B8D0F2A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3554[4] =
{
UpdateType_t6800E301B17273814D84B729FC920444AA91B440::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3555[8] =
{
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_TrackingType_4(),
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_UpdateType_5(),
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_PositionAction_6(),
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_RotationAction_7(),
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_CurrentPosition_8(),
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_CurrentRotation_9(),
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_RotationBound_10(),
TrackedPoseDriver_tD67AE8275FF4A4BEB9F9AFF20B30A6AA7B2F6BCE::get_offset_of_m_PositionBound_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3556[1] =
{
U3CU3Ec__DisplayClass5_0_t1A1FF12D477102EDA83D13C0BF4CA4DA88F1C0CC::get_offset_of_layout_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3557[3] =
{
XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745::get_offset_of_parentLayout_0(),
XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745::get_offset_of_interfaceName_1(),
XRLayoutBuilder_tDA7D1228F29EAE0705A924C3CF2BD26820F65745::get_offset_of_descriptor_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3558[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3559[11] =
{
FeatureType_t2CCEB5A9410DC11158496FC1DB18C9A9792533F0::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3560[1] =
{
UsageHint_t83A289C8F03488FF6A5515D37C8F605CEED3C09B::get_offset_of_content_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3561[4] =
{
XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861::get_offset_of_name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861::get_offset_of_usageHints_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861::get_offset_of_featureType_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRFeatureDescriptor_t50BF571D5DAE9F5C12F8822A27059AB1EFA17861::get_offset_of_customSize_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3562[6] =
{
XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D::get_offset_of_deviceName_0(),
XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D::get_offset_of_manufacturer_1(),
XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D::get_offset_of_serialNumber_2(),
XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D::get_offset_of_characteristics_3(),
XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D::get_offset_of_deviceId_4(),
XRDeviceDescriptor_tEAB0F32C726BFA3A46518AF714A1C3E522DC519D::get_offset_of_inputFeatures_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3563[3] =
{
Bone_t351837659425A759E2D538ECDB43373FEC1E6121::get_offset_of_U3CparentBoneIndexU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Bone_t351837659425A759E2D538ECDB43373FEC1E6121::get_offset_of_U3CpositionU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Bone_t351837659425A759E2D538ECDB43373FEC1E6121::get_offset_of_U3CrotationU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3564[7] =
{
Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0::get_offset_of_U3CleftEyePositionU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0::get_offset_of_U3CleftEyeRotationU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0::get_offset_of_U3CrightEyePositionU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0::get_offset_of_U3CrightEyeRotationU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0::get_offset_of_U3CfixationPointU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0::get_offset_of_U3CleftEyeOpenAmountU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
Eyes_t89C4551C9AC2E89DFAEBC4E8C1A7891408BD56F0::get_offset_of_U3CrightEyeOpenAmountU3Ek__BackingField_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3565[3] =
{
BoneControl_tA03A78E913DE235701B928117ADFA08CF0E182DF::get_offset_of_U3CparentBoneIndexU3Ek__BackingField_22(),
BoneControl_tA03A78E913DE235701B928117ADFA08CF0E182DF::get_offset_of_U3CpositionU3Ek__BackingField_23(),
BoneControl_tA03A78E913DE235701B928117ADFA08CF0E182DF::get_offset_of_U3CrotationU3Ek__BackingField_24(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3566[7] =
{
EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952::get_offset_of_U3CleftEyePositionU3Ek__BackingField_22(),
EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952::get_offset_of_U3CleftEyeRotationU3Ek__BackingField_23(),
EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952::get_offset_of_U3CrightEyePositionU3Ek__BackingField_24(),
EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952::get_offset_of_U3CrightEyeRotationU3Ek__BackingField_25(),
EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952::get_offset_of_U3CfixationPointU3Ek__BackingField_26(),
EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952::get_offset_of_U3CleftEyeOpenAmountU3Ek__BackingField_27(),
EyesControl_tB42EC41B4495011A0794221B78AB180949CC1952::get_offset_of_U3CrightEyeOpenAmountU3Ek__BackingField_28(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3568[2] =
{
BufferedRumble_t7CAEFC39A57256B8119174B6FD9DA6F7A315AA9C::get_offset_of_U3CcapabilitiesU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
BufferedRumble_t7CAEFC39A57256B8119174B6FD9DA6F7A315AA9C::get_offset_of_U3CdeviceU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3569[2] =
{
HapticState_tA9578F993FC3B87EF20D1C93637807BF84FF2360::get_offset_of_U3CsamplesQueuedU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HapticState_tA9578F993FC3B87EF20D1C93637807BF84FF2360::get_offset_of_U3CsamplesAvailableU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3570[4] =
{
0,
GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3::get_offset_of_samplesQueued_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
GetCurrentHapticStateCommand_t916EC5A67E39A4EA4ED5CB11975C77A0781A09B3::get_offset_of_samplesAvailable_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3571[3] =
{
HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB::get_offset_of_U3CnumChannelsU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB::get_offset_of_U3CfrequencyHzU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HapticCapabilities_t63031856DF08D7E5453A28EA0F9E2EF2346711FB::get_offset_of_U3CmaxBufferSizeU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3572[5] =
{
0,
GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C::get_offset_of_numChannels_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C::get_offset_of_frequencyHz_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
GetHapticCapabilitiesCommand_t53BFCE329D2112353C4F93D9FF3CF14A303C647C::get_offset_of_maxBufferSize_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3573[1] =
{
U3CbufferU3Ee__FixedBuffer_t646A2A732415D1E582E894C76FE0241F86032B02::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3574[6] =
{
0,
0,
SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018::get_offset_of_baseCommand_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018::get_offset_of_channel_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018::get_offset_of_bufferSize_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
SendBufferedHapticCommand_t84FBD4528521AFD1B650D6B67C0B2D917C020018::get_offset_of_buffer_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3575[5] =
{
0,
SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275::get_offset_of_channel_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275::get_offset_of_amplitude_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
SendHapticImpulseCommand_tFDB346AABAFD6B4B7F798A594757CDD336448275::get_offset_of_duration_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3577[2] =
{
DeviceType_t1ACE8FEFA03D8CD73F8A4C3EF27BF4815F63A56C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3578[12] =
{
DeviceSubType_t83425FF0D79811B5EEB97D007268E188FC96035F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3579[6] =
{
DeviceFlags_t884887EC0C502D363A7B6ABBECF97DD1E5330C98::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3580[3] =
{
Capabilities_tDDC2BC698C43106900EACA2DB3310A3B64158BB9::get_offset_of_type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Capabilities_tDDC2BC698C43106900EACA2DB3310A3B64158BB9::get_offset_of_subType_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Capabilities_tDDC2BC698C43106900EACA2DB3310A3B64158BB9::get_offset_of_flags_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3581[5] =
{
XInputController_t94348C741719B01624FCFDF01E4DE883533672C9::get_offset_of_U3CmenuU3Ek__BackingField_54(),
XInputController_t94348C741719B01624FCFDF01E4DE883533672C9::get_offset_of_U3CviewU3Ek__BackingField_55(),
XInputController_t94348C741719B01624FCFDF01E4DE883533672C9::get_offset_of_m_HaveParsedCapabilities_56(),
XInputController_t94348C741719B01624FCFDF01E4DE883533672C9::get_offset_of_m_SubType_57(),
XInputController_t94348C741719B01624FCFDF01E4DE883533672C9::get_offset_of_m_Flags_58(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3584[15] =
{
Button_t55C4224F27F2FC12BCAE43DB315FF948A688BDF9::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3585[7] =
{
XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D::get_offset_of_buttons_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D::get_offset_of_leftTrigger_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D::get_offset_of_rightTrigger_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D::get_offset_of_leftStickX_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D::get_offset_of_leftStickY_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D::get_offset_of_rightStickX_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
XInputControllerWindowsState_t8658834286362F8ACA0D9E337154A760787E7D2D::get_offset_of_rightStickY_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3586[1] =
{
ControlSchemeChangeSyntax_t34B932298F654EB42D6C2F74DEF6A83384B6EB11::get_offset_of_m_UserIndex_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3587[3] =
{
UserFlags_t375A9018783898F7DB7B6519CB7B9825D01E8F0B::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3588[11] =
{
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_platformUserAccountHandle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_platformUserAccountName_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_platformUserAccountId_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_deviceCount_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_deviceStartIndex_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_actions_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_controlScheme_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_controlSchemeMatch_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_lostDeviceCount_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_lostDeviceStartIndex_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserData_t35ACB60AA3EF123F5400F959786062D95ABE1AFA::get_offset_of_flags_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3589[1] =
{
CompareDevicesByUserAccount_t4B08B44539DF6B841E2E282B8EFC3561D9201357::get_offset_of_platformUserAccountHandle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3590[2] =
{
OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8::get_offset_of_device_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
OngoingAccountSelection_t24EA04191037B29E46620005C84AEE9D24DFD8A8::get_offset_of_userId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3591[21] =
{
0,
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17::get_offset_of_m_Id_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_PairingStateVersion_2(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_LastUserId_3(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_AllUserCount_4(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_AllPairedDeviceCount_5(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_AllLostDeviceCount_6(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_AllUsers_7(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_AllUserData_8(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_AllPairedDevices_9(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_AllLostDevices_10(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OngoingAccountSelections_11(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OnChange_12(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OnUnpairedDeviceUsed_13(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_ActionChangeDelegate_14(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OnDeviceChangeDelegate_15(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OnEventDelegate_16(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OnActionChangeHooked_17(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OnDeviceChangeHooked_18(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_OnEventHooked_19(),
InputUser_t46E8A5807DD7330EA729C53445D93A6521348F17_StaticFields::get_offset_of_s_ListenForUnpairedDeviceActivity_20(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3592[2] =
{
InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9::get_offset_of_m_ApiName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputUserAccountHandle_t4F4A8C86EA9AE425B6B844220BF3747BB5F449A9::get_offset_of_m_Handle_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3593[14] =
{
InputUserChange_t662B024D9EA4DC794CD0632284E18322E640F76F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3594[5] =
{
InputUserPairingOptions_tFE46EF2C7D3B9CA945612261D132AC3B43A9463A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3595[13] =
{
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CcustomBindingsU3Ek__BackingField_0(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CinvertMouseXU3Ek__BackingField_1(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CinvertMouseYU3Ek__BackingField_2(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CmouseSmoothingU3Ek__BackingField_3(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CmouseSensitivityU3Ek__BackingField_4(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CinvertStickXU3Ek__BackingField_5(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CinvertStickYU3Ek__BackingField_6(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CswapSticksU3Ek__BackingField_7(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CswapBumpersU3Ek__BackingField_8(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CswapTriggersU3Ek__BackingField_9(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CswapDpadAndLeftStickU3Ek__BackingField_10(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_U3CvibrationStrengthU3Ek__BackingField_11(),
InputUserSettings_t46C284CCF30A4D8F7C4EAF0C23CB38025A574E75::get_offset_of_m_CustomBindings_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3596[1] =
{
BaseInputOverride_t239FC28B8DD30E6D6B23DE898EA770465A2DED7E::get_offset_of_U3CcompositionStringU3Ek__BackingField_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3597[5] =
{
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F::get_offset_of_U3CdeviceU3Ek__BackingField_24(),
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F::get_offset_of_U3CtouchIdU3Ek__BackingField_25(),
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F::get_offset_of_U3CpointerTypeU3Ek__BackingField_26(),
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F::get_offset_of_U3CtrackedDevicePositionU3Ek__BackingField_27(),
ExtendedPointerEventData_tD12C029206E48087104A17166FCB35D1A064D86F::get_offset_of_U3CtrackedDeviceOrientationU3Ek__BackingField_28(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3598[5] =
{
UIPointerType_t972927F1BA6CEBC28D15A95D7E8C515380D688F0::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3599[4] =
{
UIPointerBehavior_tB75AA99444461CC194976F706E7383368FF6170C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3600[36] =
{
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_MoveRepeatDelay_10(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_MoveRepeatRate_11(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_TrackedDeviceDragThresholdMultiplier_12(),
0,
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_ActionsAsset_14(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_PointAction_15(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_MoveAction_16(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_SubmitAction_17(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_CancelAction_18(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_LeftClickAction_19(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_MiddleClickAction_20(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_RightClickAction_21(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_ScrollWheelAction_22(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_TrackedDevicePositionAction_23(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_TrackedDeviceOrientationAction_24(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_DeselectOnBackgroundClick_25(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_PointerBehavior_26(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OwnsEnabledState_27(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_ActionsHooked_28(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnPointDelegate_29(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnMoveDelegate_30(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnSubmitDelegate_31(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnCancelDelegate_32(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnLeftClickDelegate_33(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnRightClickDelegate_34(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnMiddleClickDelegate_35(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnScrollWheelDelegate_36(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnTrackedDevicePositionDelegate_37(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnTrackedDeviceOrientationDelegate_38(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_OnControlsChangedDelegate_39(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_CurrentPointerId_40(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_CurrentPointerIndex_41(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_CurrentPointerType_42(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_PointerIds_43(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_PointerStates_44(),
InputSystemUIInputModule_tEA08A56501320998C1D94AA0367B783DB229EDCB::get_offset_of_m_NavigationState_45(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3601[1] =
{
MultiplayerEventSystem_tE02F0ADF42949523C45951EAFC49797B8B9B2718::get_offset_of_m_PlayerRoot_15(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3602[2] =
{
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC::get_offset_of_m_IsPressed_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t1111D966A99C4921DF63B9D9C13A370A6EE1F3CC::get_offset_of_m_FramePressState_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3603[7] =
{
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB::get_offset_of_move_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB::get_offset_of_consecutiveMoveCount_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB::get_offset_of_lastMoveDirection_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB::get_offset_of_lastMoveTime_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB::get_offset_of_submitButton_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB::get_offset_of_cancelButton_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
NavigationModel_t3EDB56CBB69E64D9B044F7790AA08BB9A297F6BB::get_offset_of_eventData_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3604[11] =
{
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_m_IsPressed_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_m_FramePressState_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_pressRaycast_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_pressObject_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_rawPressObject_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_lastPressObject_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_dragObject_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_pressPosition_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_clickTime_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_clickCount_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
ButtonState_t2BAB1640D2D35B756C0400F3B642F97457554073::get_offset_of_dragging_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3605[9] =
{
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_changedThisFrame_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_leftButton_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_rightButton_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_middleButton_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_eventData_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_m_ScreenPosition_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_m_ScrollDelta_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_m_WorldPosition_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerModel_t738ABE6C6630FF3DE118A1C118C69A2186555CC6::get_offset_of_m_WorldOrientation_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3606[4] =
{
RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E::get_offset_of_U3CgraphicU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E::get_offset_of_U3CworldHitPositionU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E::get_offset_of_U3CscreenPositionU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
RaycastHitData_tC40B85672EFF51DC18FD4418B8665B63F786635E::get_offset_of_U3CdistanceU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3607[2] =
{
U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t855897F606C3920ADC95C7ACFA928FEAF18E1465_StaticFields::get_offset_of_U3CU3E9__25_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3608[9] =
{
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C::get_offset_of_m_RaycastResultsCache_5(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C_StaticFields::get_offset_of_s_Instances_6(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C_StaticFields::get_offset_of_s_SortedGraphics_7(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C::get_offset_of_m_IgnoreReversedGraphics_8(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C::get_offset_of_m_CheckFor2DOcclusion_9(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C::get_offset_of_m_CheckFor3DOcclusion_10(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C::get_offset_of_m_MaxDistance_11(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C::get_offset_of_m_BlockingMask_12(),
TrackedDeviceRaycaster_t1838B2E9CA7B671FA55590592D359404EE6F738C::get_offset_of_m_Canvas_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3611[17] =
{
Button_t7B7E9C4E9B39CBC9F6476AB00B4D11928F69DCDC::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3612[5] =
{
SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF::get_offset_of_buttons_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF::get_offset_of_leftStickX_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF::get_offset_of_leftStickY_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF::get_offset_of_rightStickX_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
SwitchProControllerHIDInputState_t92C70AC15B28F314CFA17F720C80899696BA8BFF::get_offset_of_rightStickY_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3613[1] =
{
OnScreenButton_tDBCB66F60C3CA58360018ED2E715A62FB3F6A02D::get_offset_of_m_ControlPath_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3614[4] =
{
OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501::get_offset_of_eventPtr_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501::get_offset_of_buffer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501::get_offset_of_device_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
OnScreenDeviceInfo_t090F3619AA994847899C9E369E2BE1B629031501::get_offset_of_firstControl_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3615[4] =
{
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381::get_offset_of_m_Control_4(),
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381::get_offset_of_m_NextControlOnDevice_5(),
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381::get_offset_of_m_InputEventPtr_6(),
OnScreenControl_t4C00E2039C09356B7699CBB825DE79E7E6253381_StaticFields::get_offset_of_s_OnScreenDevices_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3616[4] =
{
OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F::get_offset_of_m_MovementRange_8(),
OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F::get_offset_of_m_ControlPath_9(),
OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F::get_offset_of_m_StartPos_10(),
OnScreenStick_t543A51C5675EF104C334A7E679AE6F652FC1EF3F::get_offset_of_m_PointerDownPos_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3617[4] =
{
U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields::get_offset_of_U3CU3E9__4_0_1(),
U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields::get_offset_of_U3CU3E9__4_1_2(),
U3CU3Ec_t588B81A3481A2C83A1F3B5CFEB25325A0CEDC86E_StaticFields::get_offset_of_U3CU3E9__4_2_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3618[4] =
{
HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB::get_offset_of_displayName_0(),
HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB::get_offset_of_hidDescriptor_1(),
HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB::get_offset_of_parentLayout_2(),
HIDLayoutBuilder_tC6DA424E990587405CDFA0ED316BA2171C60E7DB::get_offset_of_deviceType_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3619[5] =
{
HIDReportType_tCB969577ED4CDFE7B6649224F57410E2C9D0C343::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3620[8] =
{
HIDCollectionType_tB606FD6158193D1A1779A54E1D79E62A8B305008::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3621[10] =
{
HIDElementFlags_t040F7D7848019230713D29456541AA8FC84F72AB::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3622[16] =
{
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_usage_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_usagePage_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_unit_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_unitExponent_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_logicalMin_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_logicalMax_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_physicalMin_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_physicalMax_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_reportType_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_collectionIndex_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_reportId_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_reportSizeInBits_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_reportOffsetInBits_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_flags_13() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_usageMin_14() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDElementDescriptor_t31827A726FAE0469BAF386B9B1FF0C52E87C8D0B::get_offset_of_usageMax_15() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3623[6] =
{
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756::get_offset_of_type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756::get_offset_of_usage_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756::get_offset_of_usagePage_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756::get_offset_of_parent_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756::get_offset_of_childCount_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDCollectionDescriptor_t1FC6F8D8EA478D9331246B26683AC2A336AF7756::get_offset_of_firstChild_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3624[9] =
{
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_vendorId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_productId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_usage_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_usagePage_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_inputReportSize_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_outputReportSize_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_featureReportSize_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_elements_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptor_t392CDAB58264A326FB115D76E1C05FF8BA287F4E::get_offset_of_collections_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3625[10] =
{
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_usagePage_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_usage_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_CurrentReportId_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_CurrentReportType_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_CurrentReportOffsetInBits_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_Elements_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_Collections_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_InputReportSize_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_OutputReportSize_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDDeviceDescriptorBuilder_t85A538F11EE2B003157F43D252C116E73DBAFA4A::get_offset_of_m_FeatureReportSize_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3626[26] =
{
UsagePage_t4A3EF6CBE7B3C43331616B1E1B6CD06E9942E034::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3627[72] =
{
GenericDesktop_t60700AC3F4460FB57599645C5BB75FA2B2EABA56::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3628[53] =
{
Simulation_tAF663C451BC0EB0550F877A7CED1A0BC9E438B21::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3629[5] =
{
Button_t4958901F776AAA75E2045E83A5E0E79D8753A106::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3630[1] =
{
U3CU3Ec__DisplayClass12_0_t8EFD7F852209E9D455FB6360BED3E833B11014D9::get_offset_of_layout_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3631[4] =
{
0,
0,
HID_t3BDFC9796891CA6625D5BC65DBC2DC22FDBC0A21::get_offset_of_m_HaveParsedHIDDescriptor_37(),
HID_t3BDFC9796891CA6625D5BC65DBC2DC22FDBC0A21::get_offset_of_m_HIDDescriptor_38(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3632[3] =
{
HIDReportData_tAA452F70F96A0349D99B1A4876F7A33F8BDFAFD1::get_offset_of_reportId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDReportData_tAA452F70F96A0349D99B1A4876F7A33F8BDFAFD1::get_offset_of_reportType_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDReportData_tAA452F70F96A0349D99B1A4876F7A33F8BDFAFD1::get_offset_of_currentBitOffset_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3633[28] =
{
HIDItemTypeAndTag_t9ABEA30FE9BD6F3C84F7E170A10331930D5F8E62::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3634[10] =
{
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_usage_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_usageMinimum_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_usageMaximum_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_designatorIndex_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_designatorMinimum_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_designatorMaximum_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_stringIndex_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_stringMinimum_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_stringMaximum_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateLocal_t9E179A74A474CDD25D22A915A10713785AE05D08::get_offset_of_usageList_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3635[10] =
{
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_usagePage_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_logicalMinimum_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_logicalMaximum_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_physicalMinimum_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_physicalMaximum_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_unitExponent_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_unit_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_reportSize_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_reportCount_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDItemStateGlobal_tBFEFF65F07569E2181ECD02692A2271D4A1B44F6::get_offset_of_reportId_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3637[2] =
{
HIDPageUsage_t554CE7F941C1DEB107742F1B2702369AAC7CDA26::get_offset_of_page_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
HIDPageUsage_t554CE7F941C1DEB107742F1B2702369AAC7CDA26::get_offset_of_usage_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3638[1] =
{
HIDSupport_t43762F934A959612C7332695E5C2FFE18956FA19_StaticFields::get_offset_of_s_SupportedHIDUsages_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3639[2] =
{
EnhancedTouchSupport_t75A6C0561539A82990093AF61BE73C4BEE6E555E_StaticFields::get_offset_of_s_Enabled_0(),
EnhancedTouchSupport_t75A6C0561539A82990093AF61BE73C4BEE6E555E_StaticFields::get_offset_of_s_UpdateMode_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3640[3] =
{
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB::get_offset_of_U3CscreenU3Ek__BackingField_0(),
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB::get_offset_of_U3CindexU3Ek__BackingField_1(),
Finger_tF545568F106D79C7BA461F2ABF91B86E0358D7CB::get_offset_of_m_StateHistory_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3641[11] =
{
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_updateMask_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_updateStepCount_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_fingers_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_activeFingers_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_activeTouches_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_activeFingerCount_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_activeTouchCount_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_totalFingerCount_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_lastId_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_haveBuiltActiveTouches_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
FingerAndTouchState_t6EB43FD10A2EE9DD6D0450DB5340B3B80F8B7F63::get_offset_of_activeTouchState_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3642[3] =
{
ExtraDataPerTouchState_t7FF50463670E6181F4A2C0E2E69E04C723E777D4::get_offset_of_accumulatedDelta_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ExtraDataPerTouchState_t7FF50463670E6181F4A2C0E2E69E04C723E777D4::get_offset_of_updateStepCount_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ExtraDataPerTouchState_t7FF50463670E6181F4A2C0E2E69E04C723E777D4::get_offset_of_uniqueId_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3643[8] =
{
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF::get_offset_of_m_Finger_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF::get_offset_of_m_TouchRecord_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields::get_offset_of_s_Touchscreens_2(),
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields::get_offset_of_s_HistoryLengthPerFinger_3(),
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields::get_offset_of_s_OnFingerDown_4(),
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields::get_offset_of_s_OnFingerMove_5(),
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields::get_offset_of_s_OnFingerUp_6(),
Touch_t23FA2B575107C413A63210A8F071D429CFC8FDDF_StaticFields::get_offset_of_s_PlayerState_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3644[2] =
{
Enumerator_tC6C4D7C3C654077A7E2618DF6B3C95EF0F5E32A2::get_offset_of_m_Owner_0(),
Enumerator_tC6C4D7C3C654077A7E2618DF6B3C95EF0F5E32A2::get_offset_of_m_Index_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3645[5] =
{
TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0::get_offset_of_m_History_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0::get_offset_of_m_Finger_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0::get_offset_of_m_Count_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0::get_offset_of_m_StartIndex_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchHistory_t893C31D3782B73D91EFFB11A75DD40B6F14006D0::get_offset_of_m_Version_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3646[3] =
{
SimulatedTouch_tBEC96843AFC4D9C67509A3AAAC9FD6C23FE5A288::get_offset_of_sourceIndex_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SimulatedTouch_tBEC96843AFC4D9C67509A3AAAC9FD6C23FE5A288::get_offset_of_buttonIndex_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SimulatedTouch_tBEC96843AFC4D9C67509A3AAAC9FD6C23FE5A288::get_offset_of_touchId_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3647[8] =
{
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974::get_offset_of_U3CsimulatedTouchscreenU3Ek__BackingField_4(),
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974::get_offset_of_m_NumSources_5(),
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974::get_offset_of_m_Sources_6(),
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974::get_offset_of_m_CurrentPositions_7(),
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974::get_offset_of_m_Touches_8(),
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974::get_offset_of_m_LastTouchId_9(),
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974::get_offset_of_m_PrimaryTouchIndex_10(),
TouchSimulation_t29B998811653F07E4FA7A3C95C8FEB247542E974_StaticFields::get_offset_of_s_Instance_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3648[10] =
{
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CtouchpadButtonU3Ek__BackingField_54(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CoptionsButtonU3Ek__BackingField_55(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CshareButtonU3Ek__BackingField_56(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CL1U3Ek__BackingField_57(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CR1U3Ek__BackingField_58(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CL2U3Ek__BackingField_59(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CR2U3Ek__BackingField_60(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CL3U3Ek__BackingField_61(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9::get_offset_of_U3CR3U3Ek__BackingField_62(),
DualShockGamepad_t9AF08B3ACF6042349633CAD061CBBE6474187CD9_StaticFields::get_offset_of_U3CcurrentU3Ek__BackingField_63(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3649[6] =
{
DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD::get_offset_of_U3CleftTriggerButtonU3Ek__BackingField_64(),
DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD::get_offset_of_U3CrightTriggerButtonU3Ek__BackingField_65(),
DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD::get_offset_of_U3CplayStationButtonU3Ek__BackingField_66(),
DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD::get_offset_of_m_LowFrequencyMotorSpeed_67(),
DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD::get_offset_of_m_HighFrequenceyMotorSpeed_68(),
DualShock4GamepadHID_tFB26D2EFC8436D0B88AD972A53AB682078C630DD::get_offset_of_m_LightBarColor_69(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3650[3] =
{
DualShock3GamepadHID_t30F00FC07D0D495B82F6DE163A8C71A8E3F790C9::get_offset_of_U3CleftTriggerButtonU3Ek__BackingField_64(),
DualShock3GamepadHID_t30F00FC07D0D495B82F6DE163A8C71A8E3F790C9::get_offset_of_U3CrightTriggerButtonU3Ek__BackingField_65(),
DualShock3GamepadHID_t30F00FC07D0D495B82F6DE163A8C71A8E3F790C9::get_offset_of_U3CplayStationButtonU3Ek__BackingField_66(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3653[11] =
{
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_reportId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_leftStickX_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_leftStickY_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_rightStickX_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_rightStickY_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_buttons1_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_buttons2_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_buttons3_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_leftTrigger_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_rightTrigger_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock4HIDInputReport_t2C3E2E1D9E3E17C4782B44F8C1A22E1326DF899F::get_offset_of_batteryLevel_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3654[1] =
{
U3Cpadding3U3Ee__FixedBuffer_t240C43CA83B25C1A5EE73DA3BCC5CD67EFCE3794::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3655[12] =
{
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_padding1_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_buttons1_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_buttons2_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_buttons3_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_padding2_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_leftStickX_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_leftStickY_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_rightStickX_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_rightStickY_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_padding3_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_leftTrigger_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShock3HIDInputReport_t8CD7F87BA83566F674CCC9B72F218A305715AC32::get_offset_of_rightTrigger_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3656[3] =
{
Flags_t659FEBAC288B861B300D1EB272065E50CBA7E75F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3657[1] =
{
U3Cunknown1U3Ee__FixedBuffer_tEE2F8AE54C521F989A174A8AF9848248F1C39EFE::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3658[1] =
{
U3Cunknown2U3Ee__FixedBuffer_t732D224A27130009C07AD066FFEA9673834DB50A::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3659[12] =
{
0,
0,
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_baseCommand_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_reportId_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_flags_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_unknown1_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_highFrequencyMotorSpeed_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_lowFrequencyMotorSpeed_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_redColor_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_greenColor_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_blueColor_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualShockHIDOutputReport_tF6EFF2B808604C2392A14F41686A8BC504AF61E5::get_offset_of_unknown2_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3660[2] =
{
DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84::get_offset_of_U3ClowFrequencyMotorSpeedU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualMotorRumble_tCB5A220EB97601FD281C293070E2A6BB56D7FE84::get_offset_of_U3ChighFrequencyMotorSpeedU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3663[2] =
{
0,
DisableDeviceCommand_t96BE1137A3F34A2DF8411B1BCA90EA5ED7635183::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3664[2] =
{
0,
EnableDeviceCommand_t3FD5A01AF615C22D2758900C3E6ACE1BDEF4CA43::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3665[3] =
{
0,
EnableIMECompositionCommand_tE827DDF322750637D10FBF4AD66E9862A6F0FDC8::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
EnableIMECompositionCommand_tE827DDF322750637D10FBF4AD66E9862A6F0FDC8::get_offset_of_m_ImeEnabled_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3667[4] =
{
Result_t7BA974CC6F6D66F6AF87B02D18EFE31FC9FEEC2D::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3668[2] =
{
0,
InitiateUserAccountPairingCommand_t28FA5884EF6EBE626E1463E9FEF54EEC57CF4822::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3671[6] =
{
0,
0,
0,
0,
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854::get_offset_of_type_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceCommand_t629FCBE3CA34C6E9222CCF978A480CC799BF3854::get_offset_of_sizeInBytes_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3672[3] =
{
0,
QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryCanRunInBackground_tBFB964632369D35C4A7BC9442E00F2C50D872A72::get_offset_of_canRunInBackground_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3673[3] =
{
0,
QueryDimensionsCommand_t0E031DEECEEF59B1C5507AC481A3E6DC8FBC3A5E::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryDimensionsCommand_t0E031DEECEEF59B1C5507AC481A3E6DC8FBC3A5E::get_offset_of_outDimensions_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3674[3] =
{
0,
QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryEnabledStateCommand_tD2E74CBE05891EF30D1501EEDD34B307C3C2642E::get_offset_of_isEnabled_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3675[1] =
{
U3CnameBufferU3Ee__FixedBuffer_t01EEB9634E4CA6DA1C4F2699818F5C1DA39D1339::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3676[5] =
{
0,
0,
QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4::get_offset_of_baseCommand_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4::get_offset_of_scanOrKeyCode_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryKeyNameCommand_tF2470AD933B169BD0D438C162C841C20AEE2B7B4::get_offset_of_nameBuffer_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3677[1] =
{
U3CnameBufferU3Ee__FixedBuffer_t00A12FAADB52FC8169CB64767A2DEFB0AE4F09A5::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3678[3] =
{
0,
QueryKeyboardLayoutCommand_tF1DBDF759561BEEFAAD77F75DDC33AF53D42432E::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryKeyboardLayoutCommand_tF1DBDF759561BEEFAAD77F75DDC33AF53D42432E::get_offset_of_nameBuffer_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3679[5] =
{
Result_tD4081CE96CD4649DF45DEB74E40A070EED04EB1A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3680[1] =
{
U3CnameBufferU3Ee__FixedBuffer_tE0267AAB6D0376B67CC40D1DC1D7A30F2C5044AC::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3681[1] =
{
U3CidBufferU3Ee__FixedBuffer_t0ED683B9449AAD3E10DCA1B3955444B5247CEB24::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3682[7] =
{
0,
0,
0,
QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C::get_offset_of_baseCommand_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C::get_offset_of_handle_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C::get_offset_of_nameBuffer_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryPairedUserAccountCommand_t9C85F690235FD4F83E2EE0E700000BF012BD2A6C::get_offset_of_idBuffer_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3683[3] =
{
0,
QuerySamplingFrequencyCommand_t52483AF4CD9878F5A6635204A6F379A086E6ED5E::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
QuerySamplingFrequencyCommand_t52483AF4CD9878F5A6635204A6F379A086E6ED5E::get_offset_of_frequency_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3684[1] =
{
U3CidBufferU3Ee__FixedBuffer_t60349F397316BB03DFC45C8217321C8270259186::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3685[4] =
{
0,
0,
QueryUserIdCommand_t234F6EA495581CC8C20FADDD7740E780BDAD5AF4::get_offset_of_baseCommand_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
QueryUserIdCommand_t234F6EA495581CC8C20FADDD7740E780BDAD5AF4::get_offset_of_idBuffer_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3686[2] =
{
0,
RequestResetCommand_tD32E7197FD26E2F444C93AA53128E38397742AFE::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3687[2] =
{
0,
RequestSyncCommand_tA04ABF377971AB379657465B5322119DEA4D2417::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3688[3] =
{
0,
SetIMECursorPositionCommand_tA62B5AA0BD68C41DEE62967C4C1EBFB8DB5D089E::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SetIMECursorPositionCommand_tA62B5AA0BD68C41DEE62967C4C1EBFB8DB5D089E::get_offset_of_m_Position_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3689[3] =
{
0,
SetSamplingFrequencyCommand_tA3035562D90638A0F24D50E91310CD6D3A930255::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SetSamplingFrequencyCommand_tA3035562D90638A0F24D50E91310CD6D3A930255::get_offset_of_frequency_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3690[3] =
{
0,
WarpMousePositionCommand_tBE1DF0C052CA59FF569BAA581F68D3D2C2BAE242::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WarpMousePositionCommand_tBE1DF0C052CA59FF569BAA581F68D3D2C2BAE242::get_offset_of_warpPositionInPlayerDisplaySpace_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3691[13] =
{
0,
0,
0,
0,
0,
0,
0,
0,
GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1::get_offset_of_buttons_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1::get_offset_of_leftStick_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1::get_offset_of_rightStick_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1::get_offset_of_leftTrigger_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
GamepadState_t860F79C871A6D36074A5F3D0E84EFFF3B68B98A1::get_offset_of_rightTrigger_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3692[25] =
{
GamepadButton_tBFE7DB6CD58F9B6D7B9CED39B15F35F70C8FC1C7::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3693[4] =
{
0,
DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03::get_offset_of_baseCommand_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03::get_offset_of_lowFrequencyMotorSpeed_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DualMotorRumbleCommand_tC34260759ABE7C0D8CCFA4D053C34675FEE9DF03::get_offset_of_highFrequencyMotorSpeed_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3696[6] =
{
Button_tA7DBF9F356F2CC9395B76D592AE705213318A86C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3697[2] =
{
JoystickState_t583D04A243176B4616A15F1A2D8B3440F93B0EAF::get_offset_of_buttons_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
JoystickState_t583D04A243176B4616A15F1A2D8B3440F93B0EAF::get_offset_of_stick_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3698[1] =
{
U3CkeysU3Ee__FixedBuffer_t880C13F82F3C43D70D2EC0B665512B9D618A3371::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3699[3] =
{
0,
0,
KeyboardState_tDC52E6B6A7F643842BEDB525DCD2FEC77FFC735A::get_offset_of_keys_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3700[6] =
{
MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2::get_offset_of_position_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2::get_offset_of_delta_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2::get_offset_of_scroll_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2::get_offset_of_buttons_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2::get_offset_of_displayIndex_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
MouseState_t7292464B29075EE6D042D54EAEE645F462E33AA2::get_offset_of_clickCount_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3701[6] =
{
MouseButton_tE3B2140867D7F8A59667245C147E92D1A7E6B27D::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3702[7] =
{
PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3::get_offset_of_position_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3::get_offset_of_delta_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3::get_offset_of_tilt_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3::get_offset_of_pressure_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3::get_offset_of_twist_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3::get_offset_of_buttons_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
PenState_tAEF56A71E1E6254AE117D2C9188B370171E743F3::get_offset_of_displayIndex_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3703[6] =
{
PointerState_t0585A210633466F8BD33F0F854E0E2D364336564::get_offset_of_pointerId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerState_t0585A210633466F8BD33F0F854E0E2D364336564::get_offset_of_position_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerState_t0585A210633466F8BD33F0F854E0E2D364336564::get_offset_of_delta_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerState_t0585A210633466F8BD33F0F854E0E2D364336564::get_offset_of_pressure_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerState_t0585A210633466F8BD33F0F854E0E2D364336564::get_offset_of_radius_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
PointerState_t0585A210633466F8BD33F0F854E0E2D364336564::get_offset_of_buttons_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3704[1] =
{
AccelerometerState_t3DCF3AF8808830DB8A0AA8F46B9F7270056C28B9::get_offset_of_acceleration_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3705[1] =
{
GyroscopeState_tEC80136C0306CA468B296734EF814E8BA3C7897A::get_offset_of_angularVelocity_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3706[1] =
{
GravityState_tF57272682CCE64C1683677C707355170CDFEFBF2::get_offset_of_gravity_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3707[1] =
{
AttitudeState_tECDFB2A782FC7EB0991AFE84C9C87371A9A867A2::get_offset_of_attitude_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3708[1] =
{
LinearAccelerationState_t6ADDC654D390AB566A7CD00BE7B80A3EC6EE32D7::get_offset_of_acceleration_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3709[5] =
{
TouchFlags_tDB9302FC3B9066A4B428F60FE159A5D41AC9AFAA::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3710[13] =
{
0,
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_touchId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_position_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_delta_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_pressure_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_radius_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_phaseId_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_tapCount_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_displayIndex_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_flags_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_padding_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_startTime_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
TouchState_t2FB8AB3EF40F640A6CD05A56A62F2E8CB07F739A::get_offset_of_startPosition_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3711[1] =
{
U3CprimaryTouchDataU3Ee__FixedBuffer_tDA321296C09562810059ED23B5C495210B078C14::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3712[1] =
{
U3CtouchDataU3Ee__FixedBuffer_t2036CF01714810A559B779893E94EC5FF96C6A7D::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3713[4] =
{
0,
TouchscreenState_t4E8FE1DC956443362DA6C8664791FA2CB69322EB::get_offset_of_primaryTouchData_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
TouchscreenState_t4E8FE1DC956443362DA6C8664791FA2CB69322EB::get_offset_of_touchData_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3714[1] =
{
U3Cm_ValueDataU3Ee__FixedBuffer_tB0063B2377588A6540465D7E3213629CBEA6314B::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3715[8] =
{
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_baseEvent_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_m_ControlIndex_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_m_BindingIndex_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_m_InteractionIndex_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_m_StateIndex_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_m_Phase_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_m_StartTime_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEvent_t5BA1D615D847C730CAF5E50F96C8ADE88E96B0DF::get_offset_of_m_ValueData_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3716[1] =
{
U3CstateDataU3Ee__FixedBuffer_t4121CB3AB938349D2651CE8591558199D8C4835F::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3717[5] =
{
0,
DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2::get_offset_of_baseEvent_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2::get_offset_of_stateFormat_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2::get_offset_of_stateOffset_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeltaStateEvent_t91F90F0CDF1EE402F9024F835C28DC8C56ECE1D2::get_offset_of_stateData_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3718[2] =
{
0,
DeviceConfigurationEvent_t230D41A2E6EE5FED09EBFC586A8FB84D66ECE866::get_offset_of_baseEvent_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3719[2] =
{
0,
DeviceRemoveEvent_tB9FCAB5041C20B18281FC3EC8300CEDF77D7EBA9::get_offset_of_baseEvent_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3721[4] =
{
0,
0,
IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E::get_offset_of_baseEvent_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
IMECompositionEvent_t51F238408BB0509A2E8F0A12FFE7EBA4594A426E::get_offset_of_compositionString_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3722[3] =
{
Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457::get_offset_of_m_CompositionString_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457::get_offset_of_m_CurrentCharacter_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_tDB64B28D999492C8F59F37D385F82CB461A5F457::get_offset_of_m_CurrentIndex_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3723[1] =
{
U3CbufferU3Ee__FixedBuffer_t4AFE822936153D6C2346E3A2AEDD9E2B906F0C08::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3724[2] =
{
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D::get_offset_of_size_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
IMECompositionString_tAB1AA670321CD5DCDEE6978A5493773904F5E63D::get_offset_of_buffer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3725[6] =
{
0,
0,
0,
0,
0,
InputEvent_t13008CBAC4E5FE67A657C34B90407AF3D875FE96::get_offset_of_m_Event_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3726[4] =
{
Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357::get_offset_of_m_Buffer_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357::get_offset_of_m_EventCount_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357::get_offset_of_m_CurrentEvent_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_tF5D3D094F378B018F7F5152EFC465ECEF783F357::get_offset_of_m_CurrentIndex_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3727[5] =
{
0,
InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E::get_offset_of_m_Buffer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E::get_offset_of_m_SizeInBytes_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E::get_offset_of_m_EventCount_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputEventBuffer_t7379150CBC333C375C2E7C8A32AD477383D4352E::get_offset_of_m_WeOwnTheBuffer_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3728[1] =
{
InputEventPtr_t9BE350A472A9E4801F3E82DB6E70185F75AF7190::get_offset_of_m_EventPtr_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3729[3] =
{
Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF::get_offset_of_m_Trace_0(),
Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF::get_offset_of_m_ChangeCounter_1(),
Enumerator_tD1B80D65D39934F251E7D34B98F84DF91304D0BF::get_offset_of_m_Current_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3730[2] =
{
FileFlags_t7EDED89BD64C59BC93A21AC5D4C9E3D4833E9D40::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3731[2] =
{
U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t45B24FC88C6848E813E6B10DA6B021D6A1DAF14E_StaticFields::get_offset_of_U3CU3E9__38_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3732[1] =
{
U3CU3Ec__DisplayClass43_0_t44586241FA877F1B10AE5C9329962BBAB9CF9FC1::get_offset_of_originalDeviceId_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3733[14] =
{
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_U3CfinishedU3Ek__BackingField_0(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_U3CpausedU3Ek__BackingField_1(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_U3CpositionU3Ek__BackingField_2(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_EventTrace_3(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_Enumerator_4(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_DeviceIDMappings_5(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_CreateNewDevices_6(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_CreatedDevices_7(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_OnFinished_8(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_OnEvent_9(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_StartTimeAsPerFirstEvent_10(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_StartTimeAsPerRuntime_11(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_AllEventsByTimeIndex_12(),
ReplayController_tA2DA540824FD883AA3995928664A1AD9C7D8CC41::get_offset_of_m_AllEventsByTime_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3734[5] =
{
DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23::get_offset_of_m_DeviceId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23::get_offset_of_m_Layout_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23::get_offset_of_m_StateFormat_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23::get_offset_of_m_StateSizeInBytes_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceInfo_t45F38012ADA6AFC3C00064C316B11CB7AFA38B23::get_offset_of_m_FullLayoutJson_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3735[18] =
{
0,
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_ChangeCounter_1(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_Enabled_2(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_OnFilterEvent_3(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_DeviceId_4(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_EventListeners_5(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_EventBufferSize_6(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_MaxEventBufferSize_7(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_GrowIncrementSize_8(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_EventCount_9(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_EventSizeInBytes_10(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_EventBufferStorage_11(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_EventBufferHeadStorage_12(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_EventBufferTailStorage_13(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_HasWrapped_14(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_RecordFrameMarkers_15(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2::get_offset_of_m_DeviceInfos_16(),
InputEventTrace_t30F41BE35BC87144EAE0C6A1D86C150A2022B2E2_StaticFields::get_offset_of_kFileVersion_17(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3736[1] =
{
U3CstateDataU3Ee__FixedBuffer_t45994130CEB5F865B2EF2849609EDC3CF11C1825::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3737[5] =
{
0,
0,
StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C::get_offset_of_baseEvent_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C::get_offset_of_stateFormat_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
StateEvent_tA4CD24374EBD8BEC3A6A2876BA6731A6516E8E6C::get_offset_of_stateData_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3738[3] =
{
0,
TextEvent_tBED9020242EA5258049BA0EDBB2370162FDBB0C9::get_offset_of_baseEvent_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
TextEvent_tBED9020242EA5258049BA0EDBB2370162FDBB0C9::get_offset_of_character_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3741[2] =
{
InputRuntime_t6DA0C21F743E96EA00319B761990461A6974754F_StaticFields::get_offset_of_s_Instance_0(),
InputRuntime_t6DA0C21F743E96EA00319B761990461A6974754F_StaticFields::get_offset_of_s_CurrentTimeOffsetToRealtimeSinceStartup_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3743[11] =
{
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CmaxNumDevicesU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CcurrentNumDevicesU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CmaxStateSizeInBytesU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CcurrentStateSizeInBytesU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CcurrentControlCountU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CcurrentLayoutCountU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CtotalEventBytesU3Ek__BackingField_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CtotalEventCountU3Ek__BackingField_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CtotalUpdateCountU3Ek__BackingField_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CtotalEventProcessingTimeU3Ek__BackingField_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputMetrics_t3872DA5222A4E305EA5B2C0D8B24255B382B2354::get_offset_of_U3CtotalEventLagTimeU3Ek__BackingField_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3744[8] =
{
InputUpdateType_tB8BBAA96C9BA1DF27CD58B346C2B3356C2C4205E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3745[4] =
{
SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A::get_offset_of_lastUpdateType_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A::get_offset_of_updateStepCount_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A::get_offset_of_lastUpdateRetainedEventBytes_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SerializedState_tA2D0DC2F312DF9DE3B9ED506FB5FC56BEC0B859A::get_offset_of_lastUpdateRetainedEventCount_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3746[4] =
{
InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields::get_offset_of_s_LastUpdateType_0(),
InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields::get_offset_of_s_UpdateStepCount_1(),
InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields::get_offset_of_s_LastUpdateRetainedEventBytes_2(),
InputUpdate_t4F12443C27816E916E1FAB63BC3694107BEE8B7E_StaticFields::get_offset_of_s_LastUpdateRetainedEventCount_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3747[1] =
{
U3CU3Ec__DisplayClass7_0_tE4036860C7709D04E7345194754D2C7A21A68550::get_offset_of_value_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3748[1] =
{
U3CU3Ec__DisplayClass10_0_t978A9D40EECD3A2F77B67E7EA6320F58545E06A1::get_offset_of_value_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3749[1] =
{
U3CU3Ec__DisplayClass13_0_tE6C51C1CF921CBD9477E5B6062162F1FF38E1702::get_offset_of_value_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3750[8] =
{
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C_StaticFields::get_offset_of_instance_0(),
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C::get_offset_of_m_ShutdownMethod_1(),
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C::get_offset_of_m_OnUpdate_2(),
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C::get_offset_of_m_OnBeforeUpdate_3(),
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C::get_offset_of_m_OnShouldRunUpdate_4(),
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C::get_offset_of_m_PollingFrequency_5(),
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C::get_offset_of_m_DidCallOnShutdown_6(),
NativeInputRuntime_t3A289D373786B5E66D1B65C7144FDF4E016B7B0C::get_offset_of_m_FocusChangedMethod_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3754[2] =
{
StateChangeMonitorDelegate_t43A6147733167726CA5260FEB32F0A4466A16DE9::get_offset_of_valueChangeCallback_0(),
StateChangeMonitorDelegate_t43A6147733167726CA5260FEB32F0A4466A16DE9::get_offset_of_timerExpiredCallback_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3756[25] =
{
0,
0,
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatBit_2(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatSBit_3(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatInt_4(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatUInt_5(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatShort_6(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatUShort_7(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatByte_8(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatSByte_9(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatLong_10(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatULong_11(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatFloat_12(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatDouble_13(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatVector2_14(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatVector3_15(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatQuaternion_16(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatVector2Short_17(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatVector3Short_18(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatVector2Byte_19(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42_StaticFields::get_offset_of_FormatVector3Byte_20(),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42::get_offset_of_U3CformatU3Ek__BackingField_21() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42::get_offset_of_U3CbyteOffsetU3Ek__BackingField_22() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42::get_offset_of_U3CbitOffsetU3Ek__BackingField_23() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBlock_t2BD10899DB8A30C774EF8B0DEA4D2F31A8CE6A42::get_offset_of_U3CsizeInBitsU3Ek__BackingField_24() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3757[1] =
{
DoubleBuffers_t3A333F759063D89820F0D550FB179CEF6898A82E::get_offset_of_deviceToBufferMapping_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3758[9] =
{
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB::get_offset_of_sizePerBuffer_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB::get_offset_of_totalSize_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB::get_offset_of_defaultStateBuffer_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB::get_offset_of_noiseMaskBuffer_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB::get_offset_of_m_AllBuffers_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB::get_offset_of_m_PlayerStateBuffers_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB_StaticFields::get_offset_of_s_DefaultStateBuffer_6(),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB_StaticFields::get_offset_of_s_NoiseMaskBuffer_7(),
InputStateBuffers_tABE38B4C3E302BCEAC07B7FAE86F04945539CDDB_StaticFields::get_offset_of_s_CurrentBuffers_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3759[2] =
{
Enumerator_tDDC4537D5BFC2C3A09BB1E887C3FCDD91B720216::get_offset_of_m_History_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_tDDC4537D5BFC2C3A09BB1E887C3FCDD91B720216::get_offset_of_m_Index_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3760[1] =
{
U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tF690F797E72B83494582821CB534D3D07A5C4114::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3761[1] =
{
U3Cm_StateWithControlIndexU3Ee__FixedBuffer_tA7CAB3C227A35536F0C395ED2ABB04406F9B8166::get_offset_of_FixedElementField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3762[7] =
{
RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D::get_offset_of_time_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D::get_offset_of_version_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D::get_offset_of_controlIndex_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D::get_offset_of_m_StateWithoutControlIndex_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
RecordHeader_tF9D8AD864FC0FAA588111250D5D511D249AD325D::get_offset_of_m_StateWithControlIndex_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3763[3] =
{
Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B::get_offset_of_m_Owner_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B::get_offset_of_m_IndexPlusOne_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Record_tFA0D85D27AAC79DAAADDFB3A27B9FA014B25659B::get_offset_of_m_Version_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3764[14] =
{
0,
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_U3ConRecordAddedU3Ek__BackingField_1(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_U3ConShouldRecordStateChangeU3Ek__BackingField_2(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_Controls_3(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_ControlCount_4(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_RecordBuffer_5(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_StateSizeInBytes_6(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_RecordCount_7(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_HistoryDepth_8(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_ExtraMemoryPerRecord_9(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_HeadIndex_10(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_CurrentVersion_11(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_UpdateMask_12(),
InputStateHistory_t1583C05CB712DF6544CF72E495C1E36AB95F0ECA::get_offset_of_m_AddNewControls_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3765[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3766[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3768[2] =
{
AxisDeadzoneProcessor_t5B5BE075AD08CE2C90D75FAA9A6067B60FDB05FA::get_offset_of_min_1(),
AxisDeadzoneProcessor_t5B5BE075AD08CE2C90D75FAA9A6067B60FDB05FA::get_offset_of_max_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3769[2] =
{
ClampProcessor_t5DDBEC6D936692C0819961A89618E64555F46D05::get_offset_of_min_1(),
ClampProcessor_t5DDBEC6D936692C0819961A89618E64555F46D05::get_offset_of_max_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3773[2] =
{
InvertVector2Processor_t4D570D13262FE691342ECB75924E5B10FD6342B4::get_offset_of_invertX_1(),
InvertVector2Processor_t4D570D13262FE691342ECB75924E5B10FD6342B4::get_offset_of_invertY_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3774[3] =
{
InvertVector3Processor_tD43B0DECC78DC3DD009E898CE80EE8AC331C9B42::get_offset_of_invertX_1(),
InvertVector3Processor_tD43B0DECC78DC3DD009E898CE80EE8AC331C9B42::get_offset_of_invertY_2(),
InvertVector3Processor_tD43B0DECC78DC3DD009E898CE80EE8AC331C9B42::get_offset_of_invertZ_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3775[3] =
{
NormalizeProcessor_tC8CD5CA9B53D0915FC6B1107AA7E1664824B05C8::get_offset_of_min_1(),
NormalizeProcessor_tC8CD5CA9B53D0915FC6B1107AA7E1664824B05C8::get_offset_of_max_2(),
NormalizeProcessor_tC8CD5CA9B53D0915FC6B1107AA7E1664824B05C8::get_offset_of_zero_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3778[1] =
{
ScaleProcessor_t1C7BBC0166B10499BEF1B1B09A98B78AC46CE418::get_offset_of_factor_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3779[2] =
{
ScaleVector2Processor_t79A2D86F045918369FFD2A145FD7D17AC569D944::get_offset_of_x_1(),
ScaleVector2Processor_t79A2D86F045918369FFD2A145FD7D17AC569D944::get_offset_of_y_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3780[3] =
{
ScaleVector3Processor_tD3506BC1BA7FDD2F48B903D2544C8CACD4555407::get_offset_of_x_1(),
ScaleVector3Processor_tD3506BC1BA7FDD2F48B903D2544C8CACD4555407::get_offset_of_y_2(),
ScaleVector3Processor_tD3506BC1BA7FDD2F48B903D2544C8CACD4555407::get_offset_of_z_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3781[2] =
{
StickDeadzoneProcessor_t8A9735A6EA8979FF0C3694BC6C99CD512083F6A7::get_offset_of_min_1(),
StickDeadzoneProcessor_t8A9735A6EA8979FF0C3694BC6C99CD512083F6A7::get_offset_of_max_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3782[22] =
{
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3ClayoutU3Ek__BackingField_0(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CvariantsU3Ek__BackingField_1(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CnameU3Ek__BackingField_2(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CformatU3Ek__BackingField_3(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CusageU3Ek__BackingField_4(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CusagesU3Ek__BackingField_5(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CparametersU3Ek__BackingField_6(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CprocessorsU3Ek__BackingField_7(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CaliasU3Ek__BackingField_8(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CaliasesU3Ek__BackingField_9(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CuseStateFromU3Ek__BackingField_10(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CbitU3Ek__BackingField_11(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CoffsetU3Ek__BackingField_12(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CsizeInBitsU3Ek__BackingField_13(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CarraySizeU3Ek__BackingField_14(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CdisplayNameU3Ek__BackingField_15(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CshortDisplayNameU3Ek__BackingField_16(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CnoisyU3Ek__BackingField_17(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CsyntheticU3Ek__BackingField_18(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CdefaultStateU3Ek__BackingField_19(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CminValueU3Ek__BackingField_20(),
InputControlAttribute_t24E9D957C918101FEB20F66BCBFED8549E85B51F::get_offset_of_U3CmaxValueU3Ek__BackingField_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3784[5] =
{
Flags_t49E4D39A26453F2C6C1E224F6A7D1437292625C1::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3785[19] =
{
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CnameU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3ClayoutU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CvariantsU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CuseStateFromU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CdisplayNameU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CshortDisplayNameU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CusagesU3Ek__BackingField_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CaliasesU3Ek__BackingField_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CparametersU3Ek__BackingField_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CprocessorsU3Ek__BackingField_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CoffsetU3Ek__BackingField_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CbitU3Ek__BackingField_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CsizeInBitsU3Ek__BackingField_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CformatU3Ek__BackingField_13() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CflagsU3Ek__BackingField_14() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CarraySizeU3Ek__BackingField_15() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CdefaultStateU3Ek__BackingField_16() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CminValueU3Ek__BackingField_17() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlItem_tE05A5CD795E5F9F7EA868D5D8F2EBD0C8618C0DB::get_offset_of_U3CmaxValueU3Ek__BackingField_18() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3786[2] =
{
U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t0CD996052AE6EA9A32078861CDC235C7F748A5B2_StaticFields::get_offset_of_U3CU3E9__12_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3787[2] =
{
ControlBuilder_t7F30262917B7807EF0606E18E05EEA76D5C5862D::get_offset_of_builder_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ControlBuilder_t7F30262917B7807EF0606E18E05EEA76D5C5862D::get_offset_of_index_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3788[9] =
{
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_U3CnameU3Ek__BackingField_0(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_U3CdisplayNameU3Ek__BackingField_1(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_U3CtypeU3Ek__BackingField_2(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_U3CstateFormatU3Ek__BackingField_3(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_U3CstateSizeInBytesU3Ek__BackingField_4(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_U3CextendsLayoutU3Ek__BackingField_5(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_U3CupdateBeforeRenderU3Ek__BackingField_6(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_m_ControlCount_7(),
Builder_t418AFD66746C01473F7D61A5D4588BEDE51BDA2E::get_offset_of_m_Controls_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3789[4] =
{
Flags_tA3F44ADBCBCD055AA48A3F8CB4B8F78F7BA56365::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3790[4] =
{
LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05::get_offset_of_name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05::get_offset_of_extend_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05::get_offset_of_extendMultiple_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJsonNameAndDescriptorOnly_t7A1B8B44CCC8B2C6A6842E993823E5B1F7546D05::get_offset_of_device_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3791[3] =
{
U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043_StaticFields::get_offset_of_U3CU3E9__13_0_1(),
U3CU3Ec_tF4A5B0DCCBAE6DAFDA031F0C5A323F6292B48043_StaticFields::get_offset_of_U3CU3E9__14_0_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3792[13] =
{
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_extend_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_extendMultiple_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_format_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_beforeRender_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_commonUsages_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_displayName_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_description_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_type_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_variant_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_isGenericTypeOfDevice_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_hideInUI_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutJson_tBBED1B86C2DC7F1CAC1C73F1D74807ACCCA31974::get_offset_of_controls_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3793[7] =
{
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields::get_offset_of_U3CU3E9__23_0_1(),
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields::get_offset_of_U3CU3E9__23_1_2(),
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields::get_offset_of_U3CU3E9__24_0_3(),
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields::get_offset_of_U3CU3E9__24_1_4(),
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields::get_offset_of_U3CU3E9__24_2_5(),
U3CU3Ec_tEA28C3251BA8806D7F57EBBBBBFB9BF35F021224_StaticFields::get_offset_of_U3CU3E9__24_3_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3794[22] =
{
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_name_0(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_layout_1(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_variants_2(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_usage_3(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_alias_4(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_useStateFrom_5(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_offset_6(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_bit_7(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_sizeInBits_8(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_format_9(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_arraySize_10(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_usages_11(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_aliases_12(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_parameters_13(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_processors_14(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_displayName_15(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_shortDisplayName_16(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_noisy_17(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_synthetic_18(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_defaultState_19(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_minValue_20(),
ControlItemJson_t36B40624B26587FA2000260B1553FCDCE9CC1EBC::get_offset_of_maxValue_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3795[2] =
{
LayoutMatcher_tAB5FBA3B3CFEFA6C5CA20F2AE53C3F563573136B::get_offset_of_layoutName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
LayoutMatcher_tAB5FBA3B3CFEFA6C5CA20F2AE53C3F563573136B::get_offset_of_deviceMatcher_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3796[8] =
{
0,
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09::get_offset_of_layoutTypes_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09::get_offset_of_layoutStrings_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09::get_offset_of_layoutBuilders_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09::get_offset_of_baseLayoutTable_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09::get_offset_of_layoutOverrides_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09::get_offset_of_layoutOverrideNames_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
Collection_tD3F85C7BFB30DD71246FC1246980038C1657DC09::get_offset_of_layoutMatchers_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3797[1] =
{
LayoutNotFoundException_t3880CDEF7D5713570D1782DFA4BF91464E1CC481::get_offset_of_U3ClayoutU3Ek__BackingField_17(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3798[1] =
{
Cache_t110DB9169C3FAB4B28542406BA97C24F300CEF01::get_offset_of_table_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3799[1] =
{
CacheRefInstance_tACBE3EF8CE8545FD82B9E119C24E52188151FEE6::get_offset_of_valid_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3800[4] =
{
U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields::get_offset_of_U3CU3E9__46_0_1(),
U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields::get_offset_of_U3CU3E9__69_0_2(),
U3CU3Ec_t8543B17082A1082B06B365F8E9C3ADC94F2F42F7_StaticFields::get_offset_of_U3CU3E9__69_1_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3801[18] =
{
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields::get_offset_of_s_DefaultVariant_0(),
0,
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_Name_2(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_Type_3(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_Variants_4(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_StateFormat_5(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_StateSizeInBytes_6(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_UpdateBeforeRender_7(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_BaseLayouts_8(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_AppliedOverrides_9(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_CommonUsages_10(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_Controls_11(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_DisplayName_12(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_Description_13(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B::get_offset_of_m_Flags_14(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields::get_offset_of_s_Layouts_15(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields::get_offset_of_s_CacheInstance_16(),
InputControlLayout_t6A54EB394D5D493747D6B6CF883B51100A0C927B_StaticFields::get_offset_of_s_CacheInstanceRef_17(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3802[9] =
{
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3CstateTypeU3Ek__BackingField_0(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3CstateFormatU3Ek__BackingField_1(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3CcommonUsagesU3Ek__BackingField_2(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3CvariantsU3Ek__BackingField_3(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_updateBeforeRenderInternal_4(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3CisGenericTypeOfDeviceU3Ek__BackingField_5(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3CdisplayNameU3Ek__BackingField_6(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3CdescriptionU3Ek__BackingField_7(),
InputControlLayoutAttribute_t20B5EE58D650759DB67B1A417C014B6464A8BBE5::get_offset_of_U3ChideInUIU3Ek__BackingField_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3804[7] =
{
InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643::get_offset_of_m_Device_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643::get_offset_of_m_LayoutCacheRef_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643::get_offset_of_m_ChildControlOverrides_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643::get_offset_of_m_StringBuilder_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643_StaticFields::get_offset_of_s_Instance_5(),
InputDeviceBuilder_t49B43A8A1CBB85F40C13E54AFB7BD9010BAB0643_StaticFields::get_offset_of_s_InstanceRef_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3805[7] =
{
DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356::get_offset_of_interface_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356::get_offset_of_type_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356::get_offset_of_product_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356::get_offset_of_serial_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356::get_offset_of_version_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356::get_offset_of_manufacturer_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
DeviceDescriptionJson_t6D33F13D41ADC21FA771DDA88A3C30418BA84356::get_offset_of_capabilities_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3806[7] =
{
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD::get_offset_of_m_InterfaceName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD::get_offset_of_m_DeviceClass_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD::get_offset_of_m_Manufacturer_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD::get_offset_of_m_Product_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD::get_offset_of_m_Serial_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD::get_offset_of_m_Version_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceDescription_tF22DB325EA68989C6B859AC9E96EDDC43143F6DD::get_offset_of_m_Capabilities_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3807[2] =
{
Capability_tF5B6FF984626974127E090122C8E72283DEAE653::get_offset_of_path_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Capability_tF5B6FF984626974127E090122C8E72283DEAE653::get_offset_of_value_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3808[11] =
{
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_interface_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_interfaces_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_deviceClass_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_deviceClasses_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_manufacturer_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_manufacturers_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_product_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_products_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_version_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_versions_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatcherJson_t59F55FE39D5FBCD93BED214CC155042876F376D2::get_offset_of_capabilities_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3809[7] =
{
U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016::get_offset_of_U3CU3E1__state_0(),
U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016::get_offset_of_U3CU3E2__current_1(),
U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016::get_offset_of_U3CU3El__initialThreadId_2(),
U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016::get_offset_of_U3CU3E4__this_3(),
U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016::get_offset_of_U3CU3E3__U3CU3E4__this_4(),
U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016::get_offset_of_U3CcountU3E5__2_5(),
U3Cget_patternsU3Ed__4_t6D59DFBE17708B8E4DFF1D3C596D08E6F2AFF016::get_offset_of_U3CiU3E5__3_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3810[2] =
{
U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t7AEACC33AA90A9E0E7E6130B704FEA5449DAFB04_StaticFields::get_offset_of_U3CU3E9__11_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3811[6] =
{
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0::get_offset_of_m_Patterns_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields::get_offset_of_kInterfaceKey_1(),
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields::get_offset_of_kDeviceClassKey_2(),
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields::get_offset_of_kManufacturerKey_3(),
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields::get_offset_of_kProductKey_4(),
InputDeviceMatcher_t3B784BE1F521EAD23962C35C4D24ABE343930EA0_StaticFields::get_offset_of_kVersionKey_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3813[5] =
{
Clamp_t704AE5BAE42103937DBCFD8268214DB043B03D2F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3814[11] =
{
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_clamp_22(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_clampMin_23(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_clampMax_24(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_clampConstant_25(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_invert_26(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_normalize_27(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_normalizeMin_28(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_normalizeMax_29(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_normalizeZero_30(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_scale_31(),
AxisControl_t514B0C75ECBA099491925C201578A170FBEF86AD::get_offset_of_scaleFactor_32(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3815[2] =
{
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE::get_offset_of_pressPoint_33(),
ButtonControl_t820395A2AFDBCF8EF6547705A46CF68BCD271AAE_StaticFields::get_offset_of_s_GlobalDefaultButtonPressPoint_34(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3816[4] =
{
DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039::get_offset_of_minValue_35(),
DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039::get_offset_of_maxValue_36(),
DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039::get_offset_of_wrapAtValue_37(),
DiscreteButtonControl_tE140E23FBF74CA9B08FC9734CB3F04EAC0D11039::get_offset_of_nullValue_38(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3818[1] =
{
DpadAxisControl_tFB8C1F34720E0C4BD908F8626C40AEE266E909A9::get_offset_of_component_33(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3819[5] =
{
ButtonBits_t350FD4912589B335B86973EB719C3644810C9BD4::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3820[4] =
{
DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049::get_offset_of_U3CupU3Ek__BackingField_24(),
DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049::get_offset_of_U3CdownU3Ek__BackingField_25(),
DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049::get_offset_of_U3CleftU3Ek__BackingField_26(),
DpadControl_t40DD1C4170EE456E48F7E2BE65FD6DF6D4884049::get_offset_of_U3CrightU3Ek__BackingField_27(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3822[2] =
{
KeyControl_tC3F1A68E257325945EC5074D5E8F5158C7A4BAAE::get_offset_of_U3CkeyCodeU3Ek__BackingField_35(),
KeyControl_tC3F1A68E257325945EC5074D5E8F5158C7A4BAAE::get_offset_of_m_ScanCode_36(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3823[4] =
{
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6::get_offset_of_U3CxU3Ek__BackingField_22(),
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6::get_offset_of_U3CyU3Ek__BackingField_23(),
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6::get_offset_of_U3CzU3Ek__BackingField_24(),
QuaternionControl_t448594A1AFFA579920169FCEAC56131F2A1C5DE6::get_offset_of_U3CwU3Ek__BackingField_25(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3824[4] =
{
StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49::get_offset_of_U3CupU3Ek__BackingField_24(),
StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49::get_offset_of_U3CdownU3Ek__BackingField_25(),
StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49::get_offset_of_U3CleftU3Ek__BackingField_26(),
StickControl_tFBF7480C82C3CE03F30A28E80C8CC6B8AA129B49::get_offset_of_U3CrightU3Ek__BackingField_27(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3825[12] =
{
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CpressU3Ek__BackingField_22(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CtouchIdU3Ek__BackingField_23(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CpositionU3Ek__BackingField_24(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CdeltaU3Ek__BackingField_25(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CpressureU3Ek__BackingField_26(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CradiusU3Ek__BackingField_27(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CphaseU3Ek__BackingField_28(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CindirectTouchU3Ek__BackingField_29(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CtapU3Ek__BackingField_30(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CtapCountU3Ek__BackingField_31(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CstartTimeU3Ek__BackingField_32(),
TouchControl_t501565DEC4BD2EB0080A9DF06C9ADA491B8D8200::get_offset_of_U3CstartPositionU3Ek__BackingField_33(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3828[2] =
{
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11::get_offset_of_U3CxU3Ek__BackingField_22(),
Vector2Control_t8A88B5463CDA667F812D4F9D5F06B6D71A9F1A11::get_offset_of_U3CyU3Ek__BackingField_23(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3829[3] =
{
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475::get_offset_of_U3CxU3Ek__BackingField_22(),
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475::get_offset_of_U3CyU3Ek__BackingField_23(),
Vector3Control_tCAB797D46E432644C62D87B15789A82A23928475::get_offset_of_U3CzU3Ek__BackingField_24(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3830[3] =
{
HoldInteraction_tF0BCC4B032E233A71599B68FF0FC7EE7B1C21EE2::get_offset_of_duration_0(),
HoldInteraction_tF0BCC4B032E233A71599B68FF0FC7EE7B1C21EE2::get_offset_of_pressPoint_1(),
HoldInteraction_tF0BCC4B032E233A71599B68FF0FC7EE7B1C21EE2::get_offset_of_m_TimePressed_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3831[4] =
{
TapPhase_tDE590EEA44F1B5939E7BE0232DD118B760450375::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3832[8] =
{
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_tapTime_0(),
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_tapDelay_1(),
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_tapCount_2(),
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_pressPoint_3(),
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_m_CurrentTapPhase_4(),
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_m_CurrentTapCount_5(),
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_m_CurrentTapStartTime_6(),
MultiTapInteraction_t18925EE59132779A0D73DCBA3B93B2534BF7B375::get_offset_of_m_LastTapReleaseTime_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3833[3] =
{
PressInteraction_t5E1384771E1F4D5B233F5BE176EF5A4C1EA2B1C3::get_offset_of_pressPoint_0(),
PressInteraction_t5E1384771E1F4D5B233F5BE176EF5A4C1EA2B1C3::get_offset_of_behavior_1(),
PressInteraction_t5E1384771E1F4D5B233F5BE176EF5A4C1EA2B1C3::get_offset_of_m_WaitingForRelease_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3834[4] =
{
PressBehavior_t11F9CED64CCCBF14FCFB235FF37D71797DA95807::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3835[3] =
{
SlowTapInteraction_tE0F79FB3F9BBA707AC9E4416CAFFA8890CEC0CDD::get_offset_of_duration_0(),
SlowTapInteraction_tE0F79FB3F9BBA707AC9E4416CAFFA8890CEC0CDD::get_offset_of_pressPoint_1(),
SlowTapInteraction_tE0F79FB3F9BBA707AC9E4416CAFFA8890CEC0CDD::get_offset_of_m_SlowTapStartTime_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3836[3] =
{
TapInteraction_tE6AA7FF389E0EB2A39025C1FD9970D329C51520E::get_offset_of_duration_0(),
TapInteraction_tE6AA7FF389E0EB2A39025C1FD9970D329C51520E::get_offset_of_pressPoint_1(),
TapInteraction_tE6AA7FF389E0EB2A39025C1FD9970D329C51520E::get_offset_of_m_TapStartTime_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3837[2] =
{
ActionEventPtr_t6AC96D1777BC558C798E71FD26B4A4C7A3505862::get_offset_of_m_State_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActionEventPtr_t6AC96D1777BC558C798E71FD26B4A4C7A3505862::get_offset_of_m_Ptr_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3838[5] =
{
Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64::get_offset_of_m_Trace_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64::get_offset_of_m_Buffer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64::get_offset_of_m_EventCount_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64::get_offset_of_m_CurrentEvent_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Enumerator_t08D9C28536F0004760F91205BE7FA1D0FEBD6C64::get_offset_of_m_CurrentIndex_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3839[9] =
{
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_SubscribedToAll_0(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_OnActionChangeHooked_1(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_SubscribedActions_2(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_SubscribedActionMaps_3(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_EventBuffer_4(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_ActionMapStates_5(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_ActionMapStateClones_6(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_CallbackDelegate_7(),
InputActionTrace_tBE6C86118BFBC817512FDE26CF807808A9DCAFF8::get_offset_of_m_ActionChangeDelegate_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3840[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3841[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3842[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3848[1] =
{
DisplayStringFormatAttribute_t12861667E37FA6F83C7D9D78EDD83B5A2FF28CB9::get_offset_of_U3CformatStringU3Ek__BackingField_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3850[1] =
{
FourCC_t731FAA764F72570AE9C01AC8D0C14F1DFC5852F1::get_offset_of_m_Code_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3851[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3852[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3854[2] =
{
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1::get_offset_of_m_StringOriginalCase_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
InternedString_tC23C81E4342DFA8CE6FA557EA05E7E6A5051DBD1::get_offset_of_m_StringLowerCase_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3855[9] =
{
JsonValueType_t39B788AAB8FE80D9F5C62AF19458D4E9E5FA2061::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3856[2] =
{
JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80::get_offset_of_text_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonString_tA5FD3C1DF588CBE0CAA6A2AB99F339021020BE80::get_offset_of_hasEscapes_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3857[3] =
{
U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A_StaticFields::get_offset_of_U3CU3E9__11_0_1(),
U3CU3Ec_tEAF67772F05B2AADCBF7BF0CD1D0F092B3949C7A_StaticFields::get_offset_of_U3CU3E9__11_1_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3858[8] =
{
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_boolValue_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_realValue_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_integerValue_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_stringValue_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_arrayValue_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_objectValue_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonValue_tFCE0E151F573EEEFC440A88A05A153CCF365AA5B::get_offset_of_anyValue_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3859[5] =
{
JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24::get_offset_of_m_Text_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24::get_offset_of_m_Length_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24::get_offset_of_m_Position_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24::get_offset_of_m_MatchAnyElementInArray_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
JsonParser_t3E4A47693C3822E870FE9789DF25EDE51A413E24::get_offset_of_m_DryRun_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3860[2] =
{
BitRegion_t28F94274AF21C6224D51AD683FE6E5A05CC83D7A::get_offset_of_bitOffset_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
BitRegion_t28F94274AF21C6224D51AD683FE6E5A05CC83D7A::get_offset_of_sizeInBits_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3862[2] =
{
U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t45677D3F67AB9EB962A7F4911CB56302138CE7F9_StaticFields::get_offset_of_U3CU3E9__8_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3863[2] =
{
NameAndParameters_t07BD7EC876CD2097E8D8FB69E37C0F57EFCFF8C8::get_offset_of_U3CnameU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NameAndParameters_t07BD7EC876CD2097E8D8FB69E37C0F57EFCFF8C8::get_offset_of_U3CparametersU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3864[3] =
{
0,
NamedValue_tFE9E50F7512511784882DB401C83F2419ADCC13A::get_offset_of_U3CnameU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NamedValue_tFE9E50F7512511784882DB401C83F2419ADCC13A::get_offset_of_U3CvalueU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3866[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3867[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3868[13] =
{
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_Type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_BoolValue_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_CharValue_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_ByteValue_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_SByteValue_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_ShortValue_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_UShortValue_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_IntValue_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_UIntValue_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_LongValue_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_ULongValue_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_FloatValue_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
PrimitiveValue_tC801E3D3B5335D40AE654BEAC46CD142630060F3::get_offset_of_m_DoubleValue_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3869[4] =
{
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3870[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3872[7] =
{
U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753::get_offset_of_U3CU3E1__state_0(),
U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753::get_offset_of_U3CU3E2__current_1(),
U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753::get_offset_of_U3CU3El__initialThreadId_2(),
U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753::get_offset_of_str_3(),
U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753::get_offset_of_U3CU3E3__str_4(),
U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753::get_offset_of_U3ClengthU3E5__2_5(),
U3CTokenizeU3Ed__8_tC2827A74CEF6166B1EA33D76F7FD3CEF7B31F753::get_offset_of_U3CendPosU3E5__3_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3873[9] =
{
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_U3CU3E1__state_0(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_U3CU3E2__current_1(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_U3CU3El__initialThreadId_2(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_str_3(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_U3CU3E3__str_4(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_predicate_5(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_U3CU3E3__predicate_6(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_U3ClengthU3E5__2_7(),
U3CSplitU3Ed__9_t1A8768F8A67E504CA185D2B02E8AC284747C3056::get_offset_of_U3CpositionU3E5__3_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3875[3] =
{
Substring_t67485753F4F24B456382D330F071E9A152C4E473::get_offset_of_m_String_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Substring_t67485753F4F24B456382D330F071E9A152C4E473::get_offset_of_m_Index_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Substring_t67485753F4F24B456382D330F071E9A152C4E473::get_offset_of_m_Length_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3877[2] =
{
U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tFEA314254D80D8E4A6763229D889BF8E4BE50089_StaticFields::get_offset_of_U3CU3E9__2_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3878[1] =
{
TypeTable_t319FA2845B0F9D6096B13C7956503DD34FD2BA57::get_offset_of_table_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3879[4] =
{
WhichSideWins_t7AC8AC4BDE8FFCD7F70EEED6006FE378E14F858E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3880[5] =
{
AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A::get_offset_of_negative_1(),
AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A::get_offset_of_positive_2(),
AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A::get_offset_of_minValue_3(),
AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A::get_offset_of_maxValue_4(),
AxisComposite_t8F32DBC4B99FFF6641446BDE69909330E3D0263A::get_offset_of_whichSideWins_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3881[2] =
{
ButtonWithOneModifier_t4ED65CD0B2E81A82F229A9AF59BDB124B45FA816::get_offset_of_modifier_1(),
ButtonWithOneModifier_t4ED65CD0B2E81A82F229A9AF59BDB124B45FA816::get_offset_of_button_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3882[3] =
{
ButtonWithTwoModifiers_tE76C5B06D579DA90A0615B0D9CFC79267CD5ECB7::get_offset_of_modifier1_1(),
ButtonWithTwoModifiers_tE76C5B06D579DA90A0615B0D9CFC79267CD5ECB7::get_offset_of_modifier2_2(),
ButtonWithTwoModifiers_tE76C5B06D579DA90A0615B0D9CFC79267CD5ECB7::get_offset_of_button_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3883[4] =
{
Mode_tE6ECF7C5C80334098C7427BC5F08D88808E7C309::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3884[6] =
{
Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950::get_offset_of_up_1(),
Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950::get_offset_of_down_2(),
Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950::get_offset_of_left_3(),
Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950::get_offset_of_right_4(),
Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950::get_offset_of_normalize_5(),
Vector2Composite_tFEF4CB6FC0CD7A9F21A81E07C295D1B0B2BFA950::get_offset_of_mode_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3886[1] =
{
SubsystemRegistration_tC119E4E15B2EA84DE58F44840EBED3221FF8CFF2_StaticFields::get_offset_of_k_SubsystemDescriptors_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3888[5] =
{
PoseStatus_tE2709BBA5C636A8485BD0FB152CD936CACA9336C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3889[8] =
{
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_orientation_x_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_orientation_y_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_orientation_z_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_orientation_w_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_translation_x_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_translation_y_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_translation_z_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t291D206DDA816BEA210B5659CEB0E5953912809E::get_offset_of_statusCode_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3892[9] =
{
AudioSpeakerMode_tFB0F4469E8C6A7FE319AA072D7CAA6006E57B80E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3893[5] =
{
AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D::get_offset_of_speakerMode_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D::get_offset_of_dspBufferSize_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D::get_offset_of_sampleRate_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D::get_offset_of_numRealVoices_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
AudioConfiguration_t1840C84E21194E4E533BD41F32C78C02F6252B1D::get_offset_of_numVirtualVoices_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3894[4] =
{
AudioRolloffMode_tF03AAD2EA769530A00736FF411F5A77B8C753CA1::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3896[1] =
{
AudioSettings_t1941E7DE9FEF65F7742713EB862D3025244FCB08_StaticFields::get_offset_of_OnAudioConfigurationChanged_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3899[2] =
{
AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE::get_offset_of_m_PCMReaderCallback_4(),
AudioClip_t16D2E573E7CC1C5118D8EE0F0692D46866A1C0EE::get_offset_of_m_PCMSetPositionCallback_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3904[1] =
{
AudioClipPlayable_t3574B22284CE09FDEAD15BD18D66C4A21D59FA5F::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3905[1] =
{
AudioMixerPlayable_t80531461F1E238E237D7BB2BAE7E031ABDE95C4A::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3906[1] =
{
AudioPlayableOutput_t9809407FDE5B55DD34088A665C8C53346AC76EE8::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3908[2] =
{
AudioSampleProvider_tD8B613D55D09D6CE86B851A5D8F33560FFCC705B::get_offset_of_sampleFramesAvailable_0(),
AudioSampleProvider_tD8B613D55D09D6CE86B851A5D8F33560FFCC705B::get_offset_of_sampleFramesOverflow_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3912[7] =
{
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4::get_offset_of_m_fpos_0(),
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4::get_offset_of_m_a1_1(),
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4::get_offset_of_m_a2_2(),
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4::get_offset_of_m_b0_3(),
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4::get_offset_of_m_b1_4(),
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4::get_offset_of_m_b2_5(),
WDL_Resampler_IIRFilter_t0A3DCCAE13407E083375592F04667366EA1809C4::get_offset_of_m_hist_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3913[23] =
{
0,
0,
0,
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_sratein_3(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_srateout_4(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_fracpos_5(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_ratio_6(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_filter_ratio_7(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_filterq_8(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_filterpos_9(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_rsinbuf_10(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_filter_coeffs_11(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_iirfilter_12(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_filter_coeffs_size_13(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_last_requested_14(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_filtlatency_15(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_samples_in_rsinbuf_16(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_lp_oversize_17(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_sincsize_18(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_filtercnt_19(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_sincoversize_20(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_interp_21(),
WdlResampler_t4005470E3B38148F1656F1B969C16F8601FB83D2::get_offset_of_m_feedmode_22(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3915[7] =
{
WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49::get_offset_of__outStream_5(),
WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49::get_offset_of__writer_6(),
WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49::get_offset_of__dataSizePos_7(),
WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49::get_offset_of__factSampleCountPos_8(),
WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49::get_offset_of__dataChunkSize_9(),
WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49::get_offset_of_U3CFilenameU3Ek__BackingField_10(),
WaveFileWriter_t8DE7B297CA2AE1D8AC8315D33376D7D2401CEE49::get_offset_of_U3CWaveFormatU3Ek__BackingField_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3916[2] =
{
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC::get_offset_of__channels_0(),
WaveFormat_tDF3BE10B53D16646903C0AF010F45600096CA6EC::get_offset_of__sampleRate_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3918[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3919[4] =
{
AudioQuality_tEA0F031D710B08E09C808B481641473E0D224315::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3920[6] =
{
BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369::get_offset_of_Log_4(),
BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369::get_offset_of__wasColliderTriggered_5(),
BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369::get_offset_of__entitiesInCollider_6(),
BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369::get_offset_of__tokens_7(),
BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369::get_offset_of__cachedTokenActivation_8(),
BaseCommsTrigger_t3C4ADB3738F1266EC50576DBDA90C3E01D92C369::get_offset_of__comms_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3921[6] =
{
ChannelPriority_t5B17C0F5D34916D8CBBE882A6D55B4D4DE985E56::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3922[5] =
{
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8::get_offset_of__defaultPriority_0(),
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8::get_offset_of_U3CIdU3Ek__BackingField_1(),
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8::get_offset_of_U3CPositionalU3Ek__BackingField_2(),
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8::get_offset_of_U3CPriorityU3Ek__BackingField_3(),
ChannelProperties_t628A485724D8BB3CC403ACAE968C008C5AB64FD8::get_offset_of__amplitudeMultiplier_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3923[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3924[6] =
{
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3926[4] =
{
PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5::get_offset_of__subscriptionId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5::get_offset_of__playerId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5::get_offset_of__properties_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayerChannel_tBF38C69E990808BEA14DAFAAFEAFC023ABC4CCA5::get_offset_of__channels_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3927[3] =
{
U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6_StaticFields::get_offset_of_U3CU3E9__0_0_1(),
U3CU3Ec_tAD9C78E0F1A5DBFE747F1AFAFF1A786B14ED90B6_StaticFields::get_offset_of_U3CU3E9__0_1_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3929[3] =
{
RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB::get_offset_of__target_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB::get_offset_of__type_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RemoteChannel_t157BE3580361D729EBA7C542E8F6C9A80CD261EB::get_offset_of__options_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3930[5] =
{
RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74_StaticFields::get_offset_of_Log_0(),
RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74::get_offset_of__subscriptionId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74::get_offset_of__roomId_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74::get_offset_of__properties_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomChannel_tEFA86DD03CE7125AF8F85EB25820B87A5FD0EB74::get_offset_of__channels_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3931[3] =
{
U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185_StaticFields::get_offset_of_U3CU3E9__0_0_1(),
U3CU3Ec_tBBBEC6B0D45E06A11D4A555433C96115ECE5E185_StaticFields::get_offset_of_U3CU3E9__0_1_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3933[3] =
{
ChannelType_t556347B15E30BA8303B2B48A775D40EF572B4852::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3934[3] =
{
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131::get_offset_of__codec_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131::get_offset_of__frameSize_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
CodecSettings_tC2166F3F9A2DFF4609DD672D011F945D17F24131::get_offset_of__sampleRate_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3935[9] =
{
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619_StaticFields::get_offset_of_Log_0(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__started_1(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__settingsReady_2(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__settingsWriteLock_3(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__config_4(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__encoderQuality_5(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__encoderFrameSize_6(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__codec_7(),
CodecSettingsLoader_t1F4F0A445F3C220F20CA6F14ACEB00757CC4E619::get_offset_of__encodeFec_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3936[5] =
{
CommActivationMode_t9B44FFFD638B6AD5AD781F7DD393719DA870CFB8::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3937[4] =
{
CommTriggerTarget_t0702EECACB333BE97A96F120E18B56C13158F841::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3938[4] =
{
U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F::get_offset_of_U3CU3E1__state_0(),
U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F::get_offset_of_U3CU3E2__current_1(),
U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F::get_offset_of_U3CU3E4__this_2(),
U3CCoResumePlaybackU3Ed__94_tBE4C04AF33F1FC3E24CC1DBDE975BF09B778B63F::get_offset_of_U3CiU3E5__2_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3939[34] =
{
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901_StaticFields::get_offset_of_Log_4(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__lastPrefabError_5(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__started_6(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__rooms_7(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__playerChannels_8(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__roomChannels_9(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__text_10(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__autoChannelDuck_11(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__playerTrackers_12(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__playbackPool_13(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__players_14(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__codecSettingsLoader_15(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__playbackPriorityManager_16(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__capture_17(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__net_18(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__localPlayerName_19(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__isMuted_20(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__isDeafened_21(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__oneMinusBaseRemoteVoiceVolume_22(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__playbackPrefab_23(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__playbackPrefab2_24(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__micName_25(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__playerPriority_26(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__tokens_27(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of_OnPlayerJoinedSession_28(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of_OnPlayerLeftSession_29(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of_OnPlayerStartedSpeaking_30(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of_OnPlayerStoppedSpeaking_31(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of_OnPlayerEnteredRoom_32(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of_OnPlayerExitedRoom_33(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of_LocalPlayerNameChanged_34(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__muteAllRemoteVoices_35(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901::get_offset_of__resumeCo_36(),
DissonanceComms_t8E8BC768AF83CE685904C6019C05F27EE328D901_StaticFields::get_offset_of_Version_37(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3941[5] =
{
FrameSize_t244A42B2E1127A46F62DF37A15D127D527332529::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3942[8] =
{
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5_StaticFields::get_offset_of_MetricFrameTime_0(),
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5::get_offset_of__maxFrameTime_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5::get_offset_of__minimumBreakerDuration_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5::get_offset_of__maxBreakerDuration_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5::get_offset_of__breakerResetPerSecond_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5::get_offset_of__breakerCloseTimer_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5::get_offset_of__currentBreakerDuration_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameSkipDetector_tCC8677544F01BD277A6CF91123CA0E103B629CC5::get_offset_of__breakerClosed_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3943[4] =
{
NetworkPlayerType_t3445BA48958A28E366C27CBA1F3E9814B29EC845::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3946[2] =
{
LogMessage_t149D86E6C0C01B6167C04F1BAF1C68AE14BD3569::get_offset_of__level_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
LogMessage_t149D86E6C0C01B6167C04F1BAF1C68AE14BD3569::get_offset_of__message_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3947[3] =
{
Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9_StaticFields::get_offset_of_U3CDisableU3Ek__BackingField_0(),
Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9_StaticFields::get_offset_of_LogsFromOtherThreads_1(),
Logs_tA19A8BB46BED6B2825ADF0A290E360025F74E2A9_StaticFields::get_offset_of__main_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3948[4] =
{
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0::get_offset_of__traceFormat_0(),
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0::get_offset_of__debugFormat_1(),
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0::get_offset_of__basicFormat_2(),
Log_tB2F7F97F70D43030412AC8CCF9F66601EFA25BE0::get_offset_of__category_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3949[5] =
{
LogCategory_t28F205D3E34D38069F756D5B8D23C71E2C51E672::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3950[6] =
{
LogLevel_t436713582703DA14D3A50CAC93386BECDB0A506B::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3951[2] =
{
MetricEvent_tD50103F48FA5DDB42890D785640DDFE2E6549556::get_offset_of_Name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MetricEvent_tD50103F48FA5DDB42890D785640DDFE2E6549556::get_offset_of_Value_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3952[2] =
{
Metrics_tDF1305845E3755026F43FE5BE145047F1EC2F151_StaticFields::get_offset_of_Log_0(),
Metrics_tDF1305845E3755026F43FE5BE145047F1EC2F151_StaticFields::get_offset_of__main_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3953[5] =
{
PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97::get_offset_of__players_0(),
PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97::get_offset_of__lastUpdatedPacketLoss_1(),
PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97::get_offset_of__lastUpdatedPlayerCount_2(),
PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97::get_offset_of__tmpLossValues_3(),
PacketLossMonitor_t03A5AFCB3595BE7E7FA29B2D1AFB2A45271D9D97::get_offset_of_U3CPacketLossU3Ek__BackingField_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3954[5] =
{
PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA::get_offset_of__pool_0(),
PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA::get_offset_of__priority_1(),
PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA::get_offset_of__volume_2(),
PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA::get_offset_of__prefab_3(),
PlaybackPool_tE15B8E2950CD4E09B93DE89F02CA754BA4CD97FA::get_offset_of__parent_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3955[5] =
{
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8_StaticFields::get_offset_of_Log_0(),
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8::get_offset_of__playersLookup_1(),
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8::get_offset_of__players_2(),
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8::get_offset_of__playersReadOnly_3(),
PlayerCollection_t169103D417B73658A4917B6E114E9623F6E54CE8::get_offset_of_U3CLocalU3Ek__BackingField_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3956[3] =
{
PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1_StaticFields::get_offset_of_Log_0(),
PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1::get_offset_of__unlinkedPlayerTrackers_1(),
PlayerTrackerManager_t62E05848FA27D09CB50D8DCC0C28C4D4BF95C2E1::get_offset_of__players_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3958[7] =
{
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872_StaticFields::get_offset_of_Log_0(),
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872_StaticFields::get_offset_of_Comparer_1(),
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872::get_offset_of__rooms_2(),
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872::get_offset_of__roomNames_3(),
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872::get_offset_of__roomNamesReadonly_4(),
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872::get_offset_of_JoinedRoom_5(),
Rooms_tE5F30D8757066FFDD1F79C3CBBDFB4F8A6C92872::get_offset_of_LeftRoom_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3959[3] =
{
RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF::get_offset_of__name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF::get_offset_of__roomId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomMembership_tEAF20F7D3DEDC64E75A14F989500644C0042D2BF::get_offset_of_Count_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3961[4] =
{
SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592::get_offset_of__major_0(),
SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592::get_offset_of__minor_1(),
SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592::get_offset_of__patch_2(),
SemanticVersion_tA6B64F33983A7385FDD6C27648B376C9CCA00592::get_offset_of__tag_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3962[2] =
{
TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04::get_offset_of__getNetwork_0(),
TextChat_t52CA97F1E2E3CDB48A97B81FC54B0E4BC92E7A04::get_offset_of_MessageReceived_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3963[4] =
{
TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0_StaticFields::get_offset_of_SortOrder_0(),
TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0::get_offset_of__tokens_1(),
TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0::get_offset_of_TokenRemoved_2(),
TokenSet_tF5A6D9DBE13965DCE8BBF37E3FEE74417F80CFB0::get_offset_of_TokenAdded_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3965[1] =
{
Unit_t5784216E1DBF6B44E3579FB196E513B08D227195_StaticFields::get_offset_of_None_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3966[7] =
{
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3_StaticFields::get_offset_of_Log_0(),
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3::get_offset_of__name_1(),
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3::get_offset_of_OnStartedSpeaking_2(),
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3::get_offset_of_OnStoppedSpeaking_3(),
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3::get_offset_of_OnEnteredRoom_4(),
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3::get_offset_of_OnExitedRoom_5(),
VoicePlayerState_t1A9F265CCA8957716EE6E596BAE8FE54AA48F0D3::get_offset_of_OnLeftSession_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3967[8] =
{
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1_StaticFields::get_offset_of_Log_7(),
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1::get_offset_of__micAmplitude_8(),
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1::get_offset_of__rooms_9(),
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1::get_offset_of__roomChannels_10(),
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1::get_offset_of__playerChannels_11(),
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1::get_offset_of__loss_12(),
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1::get_offset_of__network_13(),
LocalVoicePlayerState_t04577C6E934368332B31D64BACD246E9522D62B1::get_offset_of_U3CTrackerU3Ek__BackingField_14(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3968[5] =
{
RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1_StaticFields::get_offset_of_Log_7(),
RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1::get_offset_of__playback_8(),
RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1::get_offset_of__player_9(),
RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1_StaticFields::get_offset_of_EmptyRoomsList_10(),
RemoteVoicePlayerState_t1DF9254FCB010F1B1D3B966B2D57D3191997F3D1::get_offset_of__rooms_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3969[3] =
{
VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3::get_offset_of__volume_0(),
VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3::get_offset_of__fadeInTicks_1(),
VolumeFaderSettings_t95CA27E119AD986AE5D1C96B828B62F316C8ECD3::get_offset_of__fadeOutTicks_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3970[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3971[23] =
{
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__channelTypeExpanded_10(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__metadataExpanded_11(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__activationModeExpanded_12(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__tokensExpanded_13(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__ampExpanded_14(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__playerChannel_15(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__roomChannel_16(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__isVadSpeaking_17(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__previousMode_18(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__self_19(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__activationFader_20(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__activationFaderSettings_21(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__triggerFader_22(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__triggerFaderSettings_23(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__broadcastPosition_24(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__channelType_25(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__inputName_26(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__mode_27(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__muted_28(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__playerId_29(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__useTrigger_30(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__roomName_31(),
VoiceBroadcastTrigger_tCF3342238B44776DD98AC77DCE84A79E4986F395::get_offset_of__priority_32(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3972[4] =
{
VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00::get_offset_of__membership_10(),
VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00::get_offset_of__roomName_11(),
VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00::get_offset_of__scriptDeactivated_12(),
VoiceReceiptTrigger_t7584B48878BFEFF59AB89617F34E361CB499DF00::get_offset_of__useTrigger_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3973[2] =
{
U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t51D7A6C70925C7861E24E64DD8AD3BF3A111E352_StaticFields::get_offset_of_U3CU3E9__7_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3974[7] =
{
ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136::get_offset_of__isInputtingText_4(),
ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136::get_offset_of__targetChannel_5(),
ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136::get_offset_of_Comms_6(),
ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136::get_offset_of_Team1Channel_7(),
ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136::get_offset_of_Team2Channel_8(),
ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136::get_offset_of__input_9(),
ChatInputController_t82901A754BB33A99D47038A6E3E52EAE49300136::get_offset_of__log_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3975[5] =
{
ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8::get_offset_of__txt_0(),
ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8::get_offset_of__transform_1(),
ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8::get_offset_of__transitionProgress_2(),
ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8::get_offset_of_U3CIsTransitioningOutU3Ek__BackingField_3(),
ChatLogEntry_t9D1BEF937045C6743D184869A23ED1B1B30599A8::get_offset_of_U3CIsTransitionCompleteU3Ek__BackingField_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3976[7] =
{
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4::get_offset_of_Comms_4(),
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4::get_offset_of__textPrototype_5(),
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4::get_offset_of__canvas_6(),
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4::get_offset_of__heightLimit_7(),
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4::get_offset_of__entries_8(),
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4::get_offset_of_U3CForceShowU3Ek__BackingField_9(),
ChatLogController_t55E8F029742225744C7A6A3125633AFD82033FE4::get_offset_of__fadeOutStartTime_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3977[1] =
{
Logo_t38C4E18ED8EAE2129BFF1F457DFFFC147189B834::get_offset_of__logo_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3978[3] =
{
U3CFindPlayerStateU3Ed__10_t67C50ACF6050D6B1937F279CAF27D7F1466540E6::get_offset_of_U3CU3E1__state_0(),
U3CFindPlayerStateU3Ed__10_t67C50ACF6050D6B1937F279CAF27D7F1466540E6::get_offset_of_U3CU3E2__current_1(),
U3CFindPlayerStateU3Ed__10_t67C50ACF6050D6B1937F279CAF27D7F1466540E6::get_offset_of_U3CU3E4__this_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3979[6] =
{
SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC::get_offset_of__indicator_4(),
SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC::get_offset_of__light_5(),
SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC::get_offset_of__transform_6(),
SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC::get_offset_of__intensity_7(),
SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC::get_offset_of__player_8(),
SpeakerIndicator_tCF7CD465659E2EBAEE2DF788870E743156A3AFAC::get_offset_of__state_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3980[1] =
{
ToggleInvertMute_t26EE91D165B5285EAE793FF33F241C031FFE4949::get_offset_of_Trigger_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3981[3] =
{
U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37_StaticFields::get_offset_of_U3CU3E9__7_0_1(),
U3CU3Ec_t777698B1FDC359F4DDCDD85C672FF40EC9E91F37_StaticFields::get_offset_of_U3CU3E9__7_1_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3982[6] =
{
TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2::get_offset_of__visualisations_4(),
TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2::get_offset_of__triggers_5(),
TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2::get_offset_of__fillMaterial_6(),
TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2::get_offset_of__outlineMaterial_7(),
TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2::get_offset_of__alpha_8(),
TriggerVisualizer_t66AF24BA4A7FCF131EAC42D1752A8921C2DC41A2::get_offset_of_Color_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3985[2] =
{
DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42::get_offset_of__thread_0(),
DThread_t531F752BB438EFF6F41B5B5A52C9100F2819DE42::get_offset_of_U3CIsStartedU3Ek__BackingField_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3986[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3987[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3988[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3989[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3990[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3991[20] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3992[6] =
{
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3995[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3996[6] =
{
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3997[21] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3998[11] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable3999[10] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
ChannelBitField_t3FB09D5AE7EC4E0103D6F76794D27F7377CA8996::get_offset_of__bitfield_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4000[3] =
{
U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A_StaticFields::get_offset_of_U3CU3E9__6_0_1(),
U3CU3Ec_tADDFDC70EC6C9175EF14CF998FB2A39AAE18091A_StaticFields::get_offset_of_U3CU3E9__6_1_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4001[4] =
{
ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525_StaticFields::get_offset_of_Log_0(),
ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525::get_offset_of__items_1(),
ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525::get_offset_of__freeIds_2(),
ClientIdCollection_tE08AF64A0F512086E5F3879BE30BAF76B32F4525::get_offset_of__alive_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4003[3] =
{
ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2::get_offset_of_U3CPlayerNameU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2::get_offset_of_U3CPlayerIdU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ClientInfo_tDD9391189961D7BBBE867A8FB61CF80109AD5ED2::get_offset_of_U3CCodecSettingsU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4004[9] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4005[5] =
{
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480::get_offset_of_SenderPlayerId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480::get_offset_of_EncodedAudioFrame_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480::get_offset_of_SequenceNumber_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480::get_offset_of_Channels_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
VoicePacket_t08AC27674201670DA32F603D7EB67A538DF01480::get_offset_of__options_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4006[4] =
{
TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138::get_offset_of_Sender_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138::get_offset_of_RecipientType_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138::get_offset_of_Recipient_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
TextMessage_t08BC945B732CAB91EC570E735B39340E696F4138::get_offset_of_Message_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4007[4] =
{
RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1::get_offset_of_PlayerName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1::get_offset_of_Room_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1::get_offset_of_Joined_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
RoomEvent_t052CAF21728EA95E1F43B6656E708773E52803F1::get_offset_of_Rooms_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4008[5] =
{
NetworkMode_tE758574731E2678B330207DB3D78ECD7AB6683C5::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4009[4] =
{
ConnectionStatus_tFE19E20579FA162EDDB48CEE417D2F5C3C1D3749::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4013[12] =
{
MessageTypes_t5CE7D34B3CD7575793534714BA096D5BB07745B5::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4014[3] =
{
PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1_StaticFields::get_offset_of_Log_0(),
PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1::get_offset_of__array_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PacketReader_tFFE1EC23F5494FAC3756A0BD4EF7FE1B2EB285E1::get_offset_of__count_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4015[4] =
{
PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1_StaticFields::get_offset_of_Log_0(),
0,
PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1::get_offset_of__array_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PacketWriter_t205CAD3FD24DB0583A27267AA05CE5231407CBA1::get_offset_of__count_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4017[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4018[4] =
{
TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9::get_offset_of_Sender_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9::get_offset_of_RecipientType_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9::get_offset_of_Recipient_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
TextPacket_tE3E3C1055C793FFCD8BE7946D424CE4C030421A9::get_offset_of_Text_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4019[5] =
{
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2::get_offset_of_U3CPacketsU3Ek__BackingField_0(),
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2::get_offset_of_U3CBytesU3Ek__BackingField_1(),
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2::get_offset_of_U3CBytesPerSecondU3Ek__BackingField_2(),
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2::get_offset_of__runningTotal_3(),
TrafficCounter_tBFD1A82733FEB699D2AF7E55B0B190C3976037C2::get_offset_of__updated_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4021[6] =
{
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4022[5] =
{
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4023[3] =
{
ServerState_tE0C9CC6950B29F9788F82E66494D5154BFDCE8D0::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4024[3] =
{
ClientStatus_t62E90A891D60D0F1318E4ED9417937CB59B3DABE::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4025[5] =
{
ConnectionState_t8E155C4E07BE420924F9222FDEA0E26C39CFDB5E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4026[10] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4028[9] =
{
EventType_tE235D013A1E8D3AA70BE89515C95CBD95D5B2BED::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4029[7] =
{
NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2::get_offset_of_Type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2::get_offset_of__playerName_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2::get_offset_of__codecSettings_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2::get_offset_of__room_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2::get_offset_of__allRooms_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2::get_offset_of__voicePacket_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
NetworkEvent_t35F8D3E1C6AD90BD0071918B74BBF0C1BF0C49D2::get_offset_of__textMessage_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4030[18] =
{
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3_StaticFields::get_offset_of_Log_0(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of__queuedEvents_1(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of__byteArrayPool_2(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of__channelsListPool_3(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_PlayerJoined_4(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_PlayerLeft_5(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_PlayerEnteredRoom_6(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_PlayerExitedRoom_7(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_VoicePacketReceived_8(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_TextMessageReceived_9(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_PlayerStartedSpeaking_10(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_PlayerStoppedSpeaking_11(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of_OnEnqueuePlayerLeft_12(),
0,
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3_StaticFields::get_offset_of_MinWarnDispatchTimeThreshold_14(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of__voicePacketWarnThreshold_15(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of__pendingVoicePackets_16(),
EventQueue_t1EE89BDE048E726ACB6ABAED4D3153D1A7C9D3D3::get_offset_of__previousFlush_17(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4032[8] =
{
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7_StaticFields::get_offset_of_Log_0(),
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7::get_offset_of__config_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7::get_offset_of__type_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7::get_offset_of__recipient_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7::get_offset_of__name_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7::get_offset_of__isClosing_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7::get_offset_of__sessionId_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpenChannel_t4DB86BED4542E8C80FCF50143B7665E2BE91F3E7::get_offset_of__sent_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4033[1] =
{
PacketDelaySimulator_t43AFBBE946BC318B4FEAE9774BEC6B8356F9BD6A::get_offset_of__rnd_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4034[3] =
{
ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321::get_offset_of_IsPositional_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321::get_offset_of_AmplitudeMultiplier_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ChannelsMetadata_t8A2ACC6AD0B914663D2A22545AFD11FA5343D321::get_offset_of_Priority_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4035[15] =
{
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44_StaticFields::get_offset_of_Log_0(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__name_1(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__events_2(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__localListeningRooms_3(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__channelListPool_4(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__localId_5(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__localName_6(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__lastReceiptTime_7(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__remoteSequenceNumber_8(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__localSequenceNumber_9(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of_U3COpenU3Ek__BackingField_10(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__receivedInitialPacket_11(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__currentChannelSession_12(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__expectedPerChannelSessions_13(),
PeerVoiceReceiver_tDF372EF2A13ED3FC3F2866BEA1B0EF51F4FB7E44::get_offset_of__tmpCompositeIdBuffer_14(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4036[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4037[9] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4039[9] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4040[4] =
{
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4041[5] =
{
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4042[2] =
{
0,
VoicePacketOptions_t0C429968A3E59EC5F770CDC8B13DCBF7F23A0B02::get_offset_of__bitfield_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4043[8] =
{
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4044[5] =
{
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4045[16] =
{
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4046[2] =
{
DisposableHandle_tD86A03360E4EDF69EB86290DD7266F9FA18ADC4A::get_offset_of__ptr_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DisposableHandle_tD86A03360E4EDF69EB86290DD7266F9FA18ADC4A::get_offset_of__handle_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4048[8] =
{
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4052[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4053[4] =
{
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4054[3] =
{
POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A::get_offset_of__buffers_0(),
POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A::get_offset_of_U3CMaxCountU3Ek__BackingField_1(),
POTBuffer_t7AC642C22BA721592AAE6E33DA2D3130A0841F3A::get_offset_of_U3CCountU3Ek__BackingField_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4055[1] =
{
PacketLossCalculator_t706B2FE92A9DD43B06EAC613F98C74B619F2B0AE::get_offset_of__lost_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4056[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4058[3] =
{
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4059[7] =
{
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4060[3] =
{
Union16_t324DC17FB7D0D571A92483256A0D1F27F7002E32::get_offset_of__ushort_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Union16_t324DC17FB7D0D571A92483256A0D1F27F7002E32::get_offset_of__byte1_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Union16_t324DC17FB7D0D571A92483256A0D1F27F7002E32::get_offset_of__byte2_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4061[5] =
{
Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B::get_offset_of__uint_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B::get_offset_of__byte1_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B::get_offset_of__byte2_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B::get_offset_of__byte3_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Union32_tE687FA911BFEE360D21A6CF3E4B8C284B9DBE09B::get_offset_of__byte4_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4062[4] =
{
WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F::get_offset_of__sum_1(),
WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F::get_offset_of__sumOfSquares_2(),
WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F::get_offset_of_U3CStdDevU3Ek__BackingField_3(),
WindowDeviationCalculator_tC04236270F84E62C3ACFE5A425FF201A961F9A1F::get_offset_of_U3CMeanU3Ek__BackingField_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4063[6] =
{
0,
ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB_StaticFields::get_offset_of_SettingsFilePath_5(),
ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB_StaticFields::get_offset_of_DefaultRooms_6(),
ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB::get_offset_of_Names_7(),
ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB::get_offset_of__nameLookup_8(),
ChatRoomSettings_tBC4FEC8666147E63D90B108AFA87E30672A0D4BB_StaticFields::get_offset_of__instance_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4064[2] =
{
U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t874B1AD44CE5A792C8D8B3B314A648865482F0E2_StaticFields::get_offset_of_U3CU3E9__15_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4065[13] =
{
0,
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750_StaticFields::get_offset_of_SettingsFilePath_5(),
0,
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of__levels_7(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_EnableRecordingDiagnostics_8(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_RecordMicrophoneRawAudio_9(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_RecordPreprocessorOutput_10(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_EnablePlaybackDiagnostics_11(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_RecordDecodedAudio_12(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_RecordFinalAudio_13(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_EnableNetworkSimulation_14(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750::get_offset_of_PacketLoss_15(),
DebugSettings_tFB74F39166844658DD81A85DC2708C3E17994750_StaticFields::get_offset_of__instance_16(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4067[5] =
{
U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields::get_offset_of_U3CU3E9__18_0_1(),
U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields::get_offset_of_U3CU3E9__22_0_2(),
U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields::get_offset_of_U3CU3E9__74_0_3(),
U3CU3Ec_t4EE0FD7F1CD7EC1F97DD8E2D808A36D5C1A65204_StaticFields::get_offset_of_U3CU3E9__74_1_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4068[29] =
{
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1_StaticFields::get_offset_of_Log_4(),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1_StaticFields::get_offset_of_SettingsFilePath_18(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__quality_19(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__frameSize_20(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__forwardErrorCorrection_21(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__denoiseAmount_22(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__vadSensitivity_23(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__aecAmount_24(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__aecDelayAgnostic_25(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__aecExtendedFilter_26(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__aecRefinedAdaptiveFilter_27(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__aecmRoutingMode_28(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__aecmComfortNoise_29(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of__voiceDuckLevel_30(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1::get_offset_of_PropertyChanged_31(),
VoiceSettings_t9A596F2D580C2E6E79BD11780EB1D903EBCD68D1_StaticFields::get_offset_of__instance_32(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4069[10] =
{
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_DelayMedian_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_DelayStdDev_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_FractionPoorDelays_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_EchoReturnLossAverage_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_EchoReturnLossMin_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_EchoReturnLossMax_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_EchoReturnLossEnhancementAverage_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_EchoReturnLossEnhancementMin_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_EchoReturnLossEnhancementMax_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
AecStats_tA17910BA6F38A8257D23AAA58190099E8499B5E2::get_offset_of_ResidualEchoLikelihood_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4070[5] =
{
AecState_tD9B65A909A572F8E4411626DA315069E74322C70::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4072[1] =
{
ArvCalculator_t37426E5C165B02C59593A05AEB4A7AC83811455D::get_offset_of_U3CARVU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4073[1] =
{
AudioFileWriter_t4514454EC28189ABB507ABC3A0733860F34A7B9A::get_offset_of__lock_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4074[4] =
{
AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075_StaticFields::get_offset_of_Singleton_0(),
AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075::get_offset_of__lock_1(),
AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075::get_offset_of__started_2(),
AudioSettingsWatcher_tF3366A1ABEC1BEC503CFBCD9B8E7350D57AEB075::get_offset_of__config_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4075[5] =
{
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818::get_offset_of_U3CVolumeU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818::get_offset_of__fadeTime_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818::get_offset_of_U3CEndVolumeU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818::get_offset_of_U3CStartVolumeU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Fader_t7A089B0D7022DC1A002B43ADDDC9723B7AFFE818::get_offset_of__elapsedTime_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4076[5] =
{
0,
0,
OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1::get_offset_of__rooms_2(),
OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1::get_offset_of__players_3(),
OpenChannelVolumeDuck_tDBF462C7E33CFBE683699EC78D199D1FC23BD0A1::get_offset_of__fader_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4077[10] =
{
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__buffer_0(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__decoder_1(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__frameSize_2(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__waveFormat_3(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__recycleFrame_4(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__diagnosticOutput_5(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__options_6(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__receivedFirstPacket_7(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__approxChannelCount_8(),
BufferedDecoder_t824621B8C829A8D36A1652C2703CA6E8FD1F43BB::get_offset_of__channels_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4078[1] =
{
DecoderFactory_t22B8AF664A67E4EA8A30752B2767C96CF9ABE095_StaticFields::get_offset_of_Log_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4079[2] =
{
U3CU3Ec__DisplayClass33_0_tBB0BD13D7D7C16F0CFA8195F9D0CD5093920258B::get_offset_of_inputFrameSize_0(),
U3CU3Ec__DisplayClass33_0_tBB0BD13D7D7C16F0CFA8195F9D0CD5093920258B::get_offset_of_decoder_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4080[2] =
{
U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tB935642E1E81EBCB4B467F08E9CF8D60B43ACF51_StaticFields::get_offset_of_U3CU3E9__33_1_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4081[16] =
{
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED_StaticFields::get_offset_of_Log_0(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__completionHandler_1(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__inputBuffer_2(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__bytePool_3(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__channelListPool_4(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__source_5(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__synchronizer_6(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__output_7(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__prepared_8(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__complete_9(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__sourceClosed_10(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__frameDuration_11(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__firstFrameArrival_12(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__firstFrameSeq_13(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of__id_14(),
DecoderPipeline_tBE9E318A3D830A622B8C4F47F78532486DEAE7ED::get_offset_of_U3CVolumeProviderU3Ek__BackingField_15(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4082[2] =
{
U3CU3Ec__DisplayClass2_0_t5AF87663FB0CE6D0A94A9F189E9D5A206C900E00::get_offset_of_format_0(),
U3CU3Ec__DisplayClass2_0_t5AF87663FB0CE6D0A94A9F189E9D5A206C900E00::get_offset_of_U3CU3E9__1_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4083[2] =
{
DecoderPipelinePool_t736A122F218D8B3DCDD8717A1ED3D8DB63536082_StaticFields::get_offset_of_Pools_0(),
DecoderPipelinePool_t736A122F218D8B3DCDD8717A1ED3D8DB63536082_StaticFields::get_offset_of__nextPipelineId_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4084[3] =
{
0,
0,
DesyncCalculator_t7E3967F1C184C0B336D03D29617725A51F053CF1::get_offset_of_U3CDesyncMillisecondsU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4086[7] =
{
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43_StaticFields::get_offset_of_Log_0(),
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43::get_offset_of__heap_1(),
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43::get_offset_of__droppedFrameHandler_2(),
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43::get_offset_of__complete_3(),
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43::get_offset_of__count_4(),
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43::get_offset_of_U3CSequenceNumberU3Ek__BackingField_5(),
EncodedAudioBuffer_t8D1CAEBBEF3DEC5757618C3CEE65EA029B900A43::get_offset_of__loss_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4087[3] =
{
FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226::get_offset_of_Codec_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226::get_offset_of_WaveFormat_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
FrameFormat_tF1753949E12691CB040DE3AD3FFC1DA955CD4226::get_offset_of_FrameSize_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4088[6] =
{
FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6_StaticFields::get_offset_of_Log_0(),
FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6::get_offset_of__source_1(),
FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6::get_offset_of__temp_2(),
FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6::get_offset_of__upstreamComplete_3(),
FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6::get_offset_of__firstSample_4(),
FrameToSampleConverter_t6EEE7EB5879626FC318DE260995CECAE39A40CE6::get_offset_of__lastSample_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4092[3] =
{
PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB_StaticFields::get_offset_of_Log_0(),
PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB::get_offset_of__players_1(),
PriorityManager_tC510606F0B7FA101AF62910C75119C3B525386BB::get_offset_of_U3CTopPriorityU3Ek__BackingField_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4098[3] =
{
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E::get_offset_of__isPositional_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E::get_offset_of__amplitudeMultiplier_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlaybackOptions_tF35F99E3660141345BD447CD9589C5E8749FB12E::get_offset_of__priority_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4099[5] =
{
Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4_StaticFields::get_offset_of_Log_0(),
Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4::get_offset_of__source_1(),
Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4::get_offset_of__rate_2(),
Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4::get_offset_of__outputFormat_3(),
Resampler_tDDFFD1432AC5EFCDD90F5DCCDAC7CB5A67509BC4::get_offset_of__resampler_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4100[7] =
{
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49_StaticFields::get_offset_of_Log_4(),
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49::get_offset_of__temp_5(),
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49::get_offset_of__diagnosticOutput_6(),
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49::get_offset_of__lastPlayedSessionContext_7(),
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49::get_offset_of__sessionLock_8(),
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49::get_offset_of_U3CSessionU3Ek__BackingField_9(),
SamplePlaybackComponent_t3C42FA1529A9D7A2A01226511BE540CA0D300A49::get_offset_of__arv_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4101[2] =
{
SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B::get_offset_of_PlayerName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SessionContext_t9621EC47A33EEB7427E7A8FC42400B560D01319B::get_offset_of_Id_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4102[2] =
{
SoftClipSampleSource_t20BA529528872D3557F3354FE7E5EC2C3C0D7671::get_offset_of__upstream_0(),
SoftClipSampleSource_t20BA529528872D3557F3354FE7E5EC2C3C0D7671::get_offset_of__clipper_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4103[12] =
{
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields::get_offset_of_Log_0(),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields::get_offset_of_DesyncFixBuffer_1(),
0,
0,
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields::get_offset_of_FixedDelayToleranceTicks_4(),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF_StaticFields::get_offset_of_InitialBufferDelay_5(),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF::get_offset_of__minimumDelay_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF::get_offset_of__channels_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF::get_offset_of__pipeline_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF::get_offset_of__context_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF::get_offset_of__creationTime_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
SpeechSession_tB8B97B6A8A9F5004F835EA80528FA454B97664CF::get_offset_of__jitter_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4105[9] =
{
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C_StaticFields::get_offset_of_Log_0(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__metricArrivalDelay_1(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__awaitingActivation_2(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__volumeProvider_3(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__queueHeadFirstDequeueAttempt_4(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__active_5(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__currentId_6(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__playerName_7(),
SpeechSessionStream_tD8A6DCA01E6037681F1448CBDFC5D342F39AFD5C::get_offset_of__arrivalJitterMeter_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4106[10] =
{
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C_StaticFields::get_offset_of_Log_0(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C_StaticFields::get_offset_of_DesyncFixBuffer_1(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of__upstream_2(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of__resetDesyncTime_3(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of__timer_4(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of__enabled_5(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of__aheadWarningLastSent_6(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of__totalSamplesRead_7(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of__desync_8(),
SynchronizerSampleSource_t7EAE965DD64DD50C269C243B0ABFC34E0668E01C::get_offset_of_U3CPlaybackRateU3Ek__BackingField_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4107[5] =
{
SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12::get_offset_of_ActualPlaybackPosition_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12::get_offset_of_IdealPlaybackPosition_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12::get_offset_of_Desync_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12::get_offset_of_CompensatedPlaybackSpeed_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
SyncState_t8F567B07FA36B262CF8EC71AEA6E727B0FEB0D12::get_offset_of_Enabled_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4108[2] =
{
U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t651F8350331A6D78E9B8B43A396EBA9EAE320DDA_StaticFields::get_offset_of_U3CU3E9__57_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4109[15] =
{
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2_StaticFields::get_offset_of_Log_4(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of__transformCache_5(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of__sessions_6(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of__cachedPlaybackOptions_7(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of_U3CAudioSourceU3Ek__BackingField_8(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_AllowPositionalPlaybackU3Ek__BackingField_9(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of__player_10(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of__codecSettings_11(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of__frameFormat_12(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of__savedSpatialBlend_13(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_IsMutedU3Ek__BackingField_14(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of_U3CDissonance_Audio_Playback_IVoicePlaybackInternal_PlaybackVolumeU3Ek__BackingField_15(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of_U3CIsApplyingAudioSpatializationU3Ek__BackingField_16(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of_U3CPriorityManagerU3Ek__BackingField_17(),
VoicePlayback_tD4FB002471A365E2BCA81542503C4FF3F27294F2::get_offset_of_U3CVolumeProviderU3Ek__BackingField_18(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4110[4] =
{
VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1::get_offset_of__source_0(),
VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1::get_offset_of__volumeProvider_1(),
VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1::get_offset_of__targetVolume_2(),
VolumeRampedFrameSource_t2DEDF93552E038E3E4C8DB5C79E5876DCE4F89D1::get_offset_of__currentVolume_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4112[3] =
{
Codec_t0B70ED3FE4BB463D0820A9391939DBEC6AB848AF::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4113[2] =
{
EncodedBuffer_tA421FE937D9CF3F6591FB73D7FD53E9905720157::get_offset_of_Encoded_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
EncodedBuffer_tA421FE937D9CF3F6591FB73D7FD53E9905720157::get_offset_of_PacketLost_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4116[2] =
{
SilenceDecoder_tBFA79598B0EDA562F4951D1BBD9A5537BC42DEE8::get_offset_of__frameSize_0(),
SilenceDecoder_tBFA79598B0EDA562F4951D1BBD9A5537BC42DEE8::get_offset_of__format_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4117[1] =
{
BandwidthExtensions_t5C4C7D7DB340BEE2E2823CD70DEA4E4E352C1CA7_StaticFields::get_offset_of_Log_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4119[8] =
{
Ctl_t31FE4D70ADF1AD63D64AF5E7C0C37DDCAC429FED::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4120[6] =
{
Bandwidth_t005B3CFF378DD8EFD6AFB21749EE36F500767A7C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4121[4] =
{
Application_t5D65176B8EC7CE70525ABC2749A233751A56BEE8::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4122[9] =
{
OpusErrors_tC1B6902F7C42A9718A6584FFF953EDCC58D75C8A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4124[4] =
{
OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335_StaticFields::get_offset_of_Log_0(),
OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335::get_offset_of__encoder_1(),
OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335::get_offset_of__packetLoss_2(),
OpusEncoder_tEFC4D422894A21D1EB543D9F1CA5C20D26283335::get_offset_of__disposed_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4125[4] =
{
OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE_StaticFields::get_offset_of_Log_0(),
OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE::get_offset_of__decoder_1(),
OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE::get_offset_of_U3CEnableForwardErrorCorrectionU3Ek__BackingField_2(),
OpusDecoder_t9CA279B74D70753319A3DD8A99B98D2E3D0ADAEE::get_offset_of__disposed_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4126[2] =
{
OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3::get_offset_of__disabled_0(),
OpusSoftClip_tBC3957A46E6265094FCF7F717F76CFBC4A50CDF3::get_offset_of__memory_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4127[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4128[2] =
{
OpusDecoder_tAA65811FA9918A5832A7279E74D95B86768BBF6B::get_offset_of__format_0(),
OpusDecoder_tAA65811FA9918A5832A7279E74D95B86768BBF6B::get_offset_of__decoder_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4129[5] =
{
OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977_StaticFields::get_offset_of_Log_0(),
OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977::get_offset_of__encoder_1(),
OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977_StaticFields::get_offset_of_PermittedFrameSizesSamples_2(),
0,
OpusEncoder_t6F50F5D6094AA04A87D5338D9E4C802D92C3C977::get_offset_of__frameSize_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4130[1] =
{
IdentityDecoder_t8369BCE4F0B4CF94AB45079C99857AD3F4E57315::get_offset_of__format_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4131[2] =
{
IdentityEncoder_t31964F69456FEE32EF9EEFF6AD49CD575CDC0796::get_offset_of__sampleRate_0(),
IdentityEncoder_t31964F69456FEE32EF9EEFF6AD49CD575CDC0796::get_offset_of__frameSize_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4132[5] =
{
AecSuppressionLevels_tB59CE6F6E65D5BD23B8A56D50FDFED3FA80AEAE7::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4133[7] =
{
AecmRoutingMode_tA0B0D13107F6880C0D15E5B33651312F6259D806::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4134[22] =
{
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777_StaticFields::get_offset_of_Log_0(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__arv_1(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__droppedSamples_2(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__inputWriteLock_3(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__resamplerInput_4(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__resampler_5(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__resampledOutput_6(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__intermediateFrame_7(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__diagnosticOutputRecorder_8(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__outputFrameSize_9(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__outputFormat_10(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__resetApplied_11(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__resetRequested_12(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__runThread_13(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__thread_14(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__threadEvent_15(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__micSubscriptions_16(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__micSubscriptionCount_17(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__vadSubscriptions_18(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__vadSubscriptionCount_19(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__upstreamLatencyMs_20(),
BasePreprocessingPipeline_t34BD2C8D8D0F576249EA8F1950085B92499DC777::get_offset_of__estimatedPreprocessorLatencyMs_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4135[15] =
{
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA_StaticFields::get_offset_of_Log_4(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__maxReadBufferPower_5(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__readBuffer_6(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__rawMicSamples_7(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__rawMicFrames_8(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__frame_9(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__format_10(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__clip_11(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__readHead_12(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__started_13(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__micName_14(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__audioDeviceChanged_15(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__microphoneDiagnosticOutput_16(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of__subscribers_17(),
BasicMicrophoneCapture_t5C07741C411C418B79D2DBA5722A57ED4070CAEA::get_offset_of_U3CLatencyU3Ek__BackingField_18(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4136[2] =
{
BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF::get_offset_of__format_0(),
BufferedSampleProvider_t491F3CE2F2CC0ED093C211F51CC53BF5F40406DF::get_offset_of__samples_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4137[20] =
{
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B_StaticFields::get_offset_of_Log_0(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__isMobilePlatform_1(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__codecSettingsLoader_2(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__roomChannels_3(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__playerChannels_4(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__receivingPacketLossMonitor_5(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__network_6(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__microphone_7(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__preprocessor_8(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__encoder_9(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__encounteredFatalException_10(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__netModeRequiresPipeline_11(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__cannotStartMic_12(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__encoderSubscribed_13(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__startupDelay_14(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__skipDetector_15(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__activationListeners_16(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__audioListeners_17(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__micName_18(),
CapturePipelineManager_t0CDA6B86311D696B07DA157E6773DC502CE4841B::get_offset_of__pendingResetRequest_19(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4139[13] =
{
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750_StaticFields::get_offset_of_Log_0(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__encodedBytes_1(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__plainSamples_2(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__encoder_3(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__net_4(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__input_5(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__resampler_6(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__output_7(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__inputFormat_8(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__stopped_9(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__stopping_10(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of__disposed_11(),
EncoderPipeline_t6F560288FFF3E23CAA3A61E550A395E80D228750::get_offset_of_U3CTransmissionPacketLossU3Ek__BackingField_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4147[6] =
{
NoiseSuppressionLevels_tF923004A912A13E482426287B89151C8D867CA4C::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4148[3] =
{
Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C::get_offset_of__format_0(),
Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C::get_offset_of__resampler_1(),
Resampler_t5FEE3E502DEB1386C9170B59CE973A00D612823C::get_offset_of__source_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4149[4] =
{
SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0::get_offset_of__source_0(),
SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0::get_offset_of__frameSize_1(),
SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0::get_offset_of__samplesInFrame_2(),
SampleToFrameProvider_tDDDA401B2ED11D5DCF8703A4DDE8F0E0D85653A0::get_offset_of__frame_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4150[5] =
{
SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF::get_offset_of__format_0(),
SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF::get_offset_of__frequency_1(),
SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF::get_offset_of__step_2(),
0,
SineSampleProvider_t44C06AF41364F857B64223E15AE0F45FE00A2DBF::get_offset_of__index_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4151[5] =
{
VadSensitivityLevels_tD54575F33E385EEE67D491420F6AB70AED2ABEBA::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4152[5] =
{
SampleRates_tED725CFE09CA08D8E9846E104CB806CCD17EE456::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4153[14] =
{
ProcessorErrors_t44EA2B031F52B8841B928A94DBB886E25AC899E8::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4154[5] =
{
FilterState_tB319913F7A4549EF0E551A444DC36B1B9A459B35::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4155[5] =
{
U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields::get_offset_of_U3CU3E9__39_0_1(),
U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields::get_offset_of_U3CU3E9__39_2_2(),
U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields::get_offset_of_U3CU3E9__39_4_3(),
U3CU3Ec_t39CEB57056D5CCE1615FE6232A2C3D270EE839D7_StaticFields::get_offset_of_U3CU3E9__39_6_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4156[4] =
{
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4157[9] =
{
0,
0,
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020::get_offset_of__handle_2(),
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020::get_offset_of__subscribed_3(),
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020::get_offset_of__useMobileAec_4(),
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020::get_offset_of__nsLevel_5(),
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020::get_offset_of__vadlevel_6(),
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020::get_offset_of__aecLevel_7(),
WebRtcPreprocessor_tE3604AE3F928880D441531B9AAAE00713AF5F020::get_offset_of__aecmLevel_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4158[5] =
{
WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33_StaticFields::get_offset_of_Log_22(),
WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33::get_offset_of__isVadDetectingSpeech_23(),
WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33::get_offset_of__isMobilePlatform_24(),
WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33::get_offset_of__preprocessor_25(),
WebRtcPreprocessingPipeline_t9CAE89B28D154F18D89500D94ECBB06D3946FB33::get_offset_of__isOutputMuted_26(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4160[1] =
{
U3CPrivateImplementationDetailsU3E_t892C62E45E2A7AB7DB49B28F20A594598976739A_StaticFields::get_offset_of_U36E09F4F7D7C92595AFFE0493F4C321447AF03B1CEB29716DC98905F60B9DA81E_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4164[2] =
{
LogEntry_tEBF9516CB311C9A223C7E1D748A977379251D9A8::get_offset_of_message_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
LogEntry_tEBF9516CB311C9A223C7E1D748A977379251D9A8::get_offset_of_type_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4165[6] =
{
GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769::get_offset_of_height_4(),
GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769::get_offset_of_maxLogCount_5(),
GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769::get_offset_of_log_6(),
GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769::get_offset_of_hotKey_7(),
GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769::get_offset_of_visible_8(),
GUIConsole_t9074F93112E5BE22F7575293B7371C1F5D22A769::get_offset_of_scroll_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4166[3] =
{
DistanceInterestManagement_t0560BD33FFDEC8104EA226337743E0B61A9672E2::get_offset_of_visRange_4(),
DistanceInterestManagement_t0560BD33FFDEC8104EA226337743E0B61A9672E2::get_offset_of_rebuildInterval_5(),
DistanceInterestManagement_t0560BD33FFDEC8104EA226337743E0B61A9672E2::get_offset_of_lastRebuildTime_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4167[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4168[3] =
{
CheckMethod_t6698F53126A5E7D171968189F856A4D2E73F8930::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4169[6] =
{
SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912::get_offset_of_visRange_4(),
SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912::get_offset_of_rebuildInterval_5(),
SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912::get_offset_of_lastRebuildTime_6(),
SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912::get_offset_of_checkMethod_7(),
SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912::get_offset_of_showSlider_8(),
SpatialHashingInterestManagement_t0B86B9227E5BCD564D3002E6946025DC7DD48912::get_offset_of_grid_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4170[12] =
{
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_clientAuthority_11(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_animator_12(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_animatorSpeed_13(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_previousSpeed_14(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_lastIntParameters_15(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_lastFloatParameters_16(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_lastBoolParameters_17(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_parameters_18(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_animationHash_19(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_transitionHash_20(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_layerWeight_21(),
NetworkAnimator_tE566AF4201283310685B6B544A13997E73AA6550::get_offset_of_nextSendTime_22(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4173[3] =
{
NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2_StaticFields::get_offset_of_matchPlayers_11(),
NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2::get_offset_of_currentMatch_12(),
NetworkMatchChecker_t045ACF1F949FC18A13033970EEA45600AE8594B2::get_offset_of_currentMatchDebug_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4175[4] =
{
NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF::get_offset_of_color_4(),
NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF::get_offset_of_padding_5(),
NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF::get_offset_of_width_6(),
NetworkPingDisplay_t6441842F67E2CAC50A7B2D663E3BA98CB2FEA1CF::get_offset_of_height_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4176[2] =
{
NetworkProximityChecker_tE89F7560E4C73A4D5F10730A5B71A909BECB8D01::get_offset_of_visRange_11(),
NetworkProximityChecker_tE89F7560E4C73A4D5F10730A5B71A909BECB8D01::get_offset_of_visUpdateInterval_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4177[2] =
{
PendingPlayer_t44A9965251D49D11642373F2980F536488B0D694::get_offset_of_conn_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PendingPlayer_t44A9965251D49D11642373F2980F536488B0D694::get_offset_of_roomPlayer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4178[2] =
{
U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tF6AB130B1ABBB9D377737344B7EC9F61B3CDE3A8_StaticFields::get_offset_of_U3CU3E9__16_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4179[9] =
{
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_showRoomGUI_34(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_minPlayers_35(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_roomPlayerPrefab_36(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_RoomScene_37(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_GameplayScene_38(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_pendingPlayers_39(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of__allPlayersReady_40(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_roomSlots_41(),
NetworkRoomManager_tFFADEB483DEDE23B4DFAC3E4676012A290BEF516::get_offset_of_clientIndex_42(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4180[3] =
{
NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F::get_offset_of_showRoomGUI_11(),
NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F::get_offset_of_readyToBegin_12(),
NetworkRoomPlayer_t2FE49F4EFB86DCC92024BC04E0548DA172D7470F::get_offset_of_index_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4181[3] =
{
NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0::get_offset_of_forceHidden_11(),
NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0_StaticFields::get_offset_of_sceneCheckerObjects_12(),
NetworkSceneChecker_t79BE4BBFCE827246B41927C8003F4BC7902C04F0::get_offset_of_currentScene_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4183[5] =
{
DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003::get_offset_of_timeStamp_0(),
DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003::get_offset_of_localPosition_1(),
DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003::get_offset_of_localRotation_2(),
DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003::get_offset_of_localScale_3(),
DataPoint_tC483ED0BC196892B94433C55A7708A9F3C0F2003::get_offset_of_movementSpeed_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4184[11] =
{
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_clientAuthority_11(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_clientAuthorityBeforeTeleport_12(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_localPositionSensitivity_13(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_localRotationSensitivity_14(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_localScaleSensitivity_15(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_lastPosition_16(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_lastRotation_17(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_lastScale_18(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_start_19(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_goal_20(),
NetworkTransformBase_tF4E23896563F36A11752B42FCE9DA8C1F2C3A65F::get_offset_of_lastClientSendTime_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4185[1] =
{
NetworkTransformChild_t5BCF31DB1CF06B9E4A05637871E288D51765466E::get_offset_of_target_22(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4186[7] =
{
NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B::get_offset_of_target_11(),
NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B::get_offset_of_lerpVelocityAmount_12(),
NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B::get_offset_of_lerpPositionAmount_13(),
NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B::get_offset_of_clientAuthority_14(),
NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B::get_offset_of_nextSyncTime_15(),
NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B::get_offset_of_targetVelocity_16(),
NetworkLerpRigidbody_tEF96B8A567D47C3F52726340667F2A66BC2CEA6B::get_offset_of_targetPosition_17(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4187[7] =
{
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074::get_offset_of_nextSyncTime_0(),
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074::get_offset_of_velocity_1(),
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074::get_offset_of_angularVelocity_2(),
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074::get_offset_of_isKinematic_3(),
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074::get_offset_of_useGravity_4(),
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074::get_offset_of_drag_5(),
ClientSyncState_t50ED202FBB0CD39C8A4B74A04AD03B1805A3F074::get_offset_of_angularDrag_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4188[15] =
{
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_target_11(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_clientAuthority_12(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_syncVelocity_13(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_clearVelocity_14(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_velocitySensitivity_15(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_syncAngularVelocity_16(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_clearAngularVelocity_17(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_angularVelocitySensitivity_18(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_previousValue_19(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_velocity_20(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_angularVelocity_21(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_isKinematic_22(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_useGravity_23(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_drag_24(),
NetworkRigidbody_t41049A50D061758ACEDCEE0344968A8B3059B5EF::get_offset_of_angularDrag_25(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4189[7] =
{
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98::get_offset_of_nextSyncTime_0(),
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98::get_offset_of_velocity_1(),
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98::get_offset_of_angularVelocity_2(),
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98::get_offset_of_isKinematic_3(),
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98::get_offset_of_gravityScale_4(),
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98::get_offset_of_drag_5(),
ClientSyncState_t70791A5CDE6140A304B89ED0FFEEDD03A3E9EA98::get_offset_of_angularDrag_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4190[15] =
{
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_target_11(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_clientAuthority_12(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_syncVelocity_13(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_clearVelocity_14(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_velocitySensitivity_15(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_syncAngularVelocity_16(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_clearAngularVelocity_17(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_angularVelocitySensitivity_18(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_previousValue_19(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_velocity_20(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_angularVelocity_21(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_isKinematic_22(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_gravityScale_23(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_drag_24(),
NetworkRigidbody2D_t1C8B93F926E8CDFB2494A5BD78C918FF93DDEF65::get_offset_of_angularDrag_25(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4192[5] =
{
DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7::get_offset_of_timeStamp_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7::get_offset_of_localPosition_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7::get_offset_of_localRotation_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7::get_offset_of_localScale_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
DataPoint_t76E2D41A68DEFF1C7487E88AA39828C1ADA91AE7::get_offset_of_movementSpeed_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4193[17] =
{
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_clientAuthority_11(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_excludeOwnerUpdate_12(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_syncPosition_13(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_syncRotation_14(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_syncScale_15(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_interpolatePosition_16(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_interpolateRotation_17(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_interpolateScale_18(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_localPositionSensitivity_19(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_localRotationSensitivity_20(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_localScaleSensitivity_21(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_lastPosition_22(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_lastRotation_23(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_lastScale_24(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_start_25(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_goal_26(),
NetworkTransformBase_tFEE40C8A435A68FE2B2FE609EADA60DD86394555::get_offset_of_clientAuthorityBeforeTeleport_27(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4194[1] =
{
NetworkTransformChild_t00AFAFB0CC0AF80437BC4B989B85FC80BAE83379::get_offset_of_target_28(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4196[3] =
{
NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26::get_offset_of_U3CServerIdU3Ek__BackingField_9(),
NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26::get_offset_of_transport_10(),
NetworkDiscovery_t36A3668A6FEC3159D732A0D771001B088198CC26::get_offset_of_OnServerFound_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4197[4] =
{
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4198[5] =
{
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4199[4] =
{
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4200[5] =
{
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4201[5] =
{
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4202[3] =
{
NetworkDiscoveryHUD_t98958DC3BAEC567C528F31BF20CD4CDCADDFB56B::get_offset_of_discoveredServers_4(),
NetworkDiscoveryHUD_t98958DC3BAEC567C528F31BF20CD4CDCADDFB56B::get_offset_of_scrollViewPos_5(),
NetworkDiscoveryHUD_t98958DC3BAEC567C528F31BF20CD4CDCADDFB56B::get_offset_of_networkDiscovery_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4204[3] =
{
ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1::get_offset_of_U3CEndPointU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1::get_offset_of_uri_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ServerResponse_t45330E4EDF85AB1FE9805F736E862A5841688FB1::get_offset_of_serverId_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4208[1] =
{
InstantiateNetworkManager_t7CB6AB614325F982A34161A3DF57E16E761B6FFE::get_offset_of_prefab_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4209[3] =
{
ApiUpdater_t5E6F9FEAC6F4FD7B86FF929FE8C4A92F9A6C7534::get_offset_of_manager_4(),
ApiUpdater_t5E6F9FEAC6F4FD7B86FF929FE8C4A92F9A6C7534::get_offset_of_connector_5(),
ApiUpdater_t5E6F9FEAC6F4FD7B86FF929FE8C4A92F9A6C7534::get_offset_of_gameName_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4211[3] =
{
NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2::get_offset_of_onServerStarted_34(),
NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2::get_offset_of_onServerStopped_35(),
NetworkManagerListServer_tCB4AE8BA1F1ED79839062EF5B77878E1485A8FF2::get_offset_of_onPlayerListChanged_36(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4212[2] =
{
QuickListServerDebug_t6EF403592C5339C3749925A725E78B240DA0F01A::get_offset_of_connector_4(),
QuickListServerDebug_t6EF403592C5339C3749925A725E78B240DA0F01A::get_offset_of_collection_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4213[6] =
{
ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833::get_offset_of_listUI_4(),
ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833::get_offset_of_refreshButton_5(),
ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833::get_offset_of_startServerButton_6(),
ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833::get_offset_of_autoRefreshServerlist_7(),
ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833::get_offset_of_refreshinterval_8(),
ServerListManager_tBEB1E74EC8601721DE594B6E1419595049973833::get_offset_of_connector_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4214[3] =
{
ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA::get_offset_of_itemPrefab_4(),
ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA::get_offset_of_parent_5(),
ServerListUI_t2460CFF772E80D97662575812A3D3E5B16C5E5AA::get_offset_of_items_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4215[6] =
{
ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09::get_offset_of_nameText_4(),
ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09::get_offset_of_namePlayers_5(),
ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09::get_offset_of_playersFormat_6(),
ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09::get_offset_of_addressText_7(),
ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09::get_offset_of_joinButton_8(),
ServerListUIItem_t0CBAF6E22358328E34652BDC9D9740A380DB5D09::get_offset_of_server_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4219[6] =
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields::get_offset_of_s_Default_0(),
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C::get_offset_of_m_Id_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C::get_offset_of_m_Pose_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C::get_offset_of_m_TrackingState_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C::get_offset_of_m_NativePtr_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C::get_offset_of_m_SessionId_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4222[5] =
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7::get_offset_of_U3CidU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7::get_offset_of_U3CproviderTypeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7::get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7::get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7::get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4223[1] =
{
XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B::get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4225[3] =
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78::get_offset_of_m_Identifier_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78::get_offset_of_m_Capabilities_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78::get_offset_of_m_Rank_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4227[30] =
{
Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4230[2] =
{
HandheldARInputDevice_tDA83371435104E92F19A3E1B96D19A2F2CEC2321::get_offset_of_U3CdevicePositionU3Ek__BackingField_35(),
HandheldARInputDevice_tDA83371435104E92F19A3E1B96D19A2F2CEC2321::get_offset_of_U3CdeviceRotationU3Ek__BackingField_36(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4232[8] =
{
NotTrackingReason_t853CA5527FA4E156B45DD1BD3E3E978C78BC49A9::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4234[2] =
{
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4235[4] =
{
SessionAvailability_tF5E98733E00C91772417EDEF3B3A6FA1DF653FCD::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4237[2] =
{
XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD::get_offset_of_m_DefaultConfigurationChooser_4(),
XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD::get_offset_of_m_ConfigurationChooser_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4238[6] =
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A::get_offset_of_U3CsupportsInstallU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A::get_offset_of_U3CsupportsMatchFrameRateU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A::get_offset_of_U3CidU3Ek__BackingField_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A::get_offset_of_U3CproviderTypeU3Ek__BackingField_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A::get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A::get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4239[2] =
{
XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C::get_offset_of_U3CsupportsInstallU3Ek__BackingField_3(),
XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C::get_offset_of_U3CsupportsMatchFrameRateU3Ek__BackingField_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4240[4] =
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields::get_offset_of_s_TrackableIdRegex_0(),
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields::get_offset_of_s_InvalidId_1(),
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B::get_offset_of_m_SubId1_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B::get_offset_of_m_SubId2_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4241[4] =
{
TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4243[4] =
{
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4248[3] =
{
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7_StaticFields::get_offset_of_s_InvalidId_0(),
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7::get_offset_of_m_SubId1_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
GestureId_tF3EFA115E02FC8A313B1019689130A09419B1EC7::get_offset_of_m_SubId2_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4249[7] =
{
GestureState_tF46000290CC6332630D7FE0425DA51EB79CBE557::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4250[2] =
{
ActivateGestureEvent_tE62B374FD7C61FB39DBE074BAC40308F033D4337::get_offset_of_m_Id_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ActivateGestureEvent_tE62B374FD7C61FB39DBE074BAC40308F033D4337::get_offset_of_m_State_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4251[1] =
{
Provider_tD40F591BB43CACCAB087EF72306FD614DFFFE058::get_offset_of_m_ActivateGestureEvents_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4252[2] =
{
XRGestureSubsystem_t9CE9DF7141C4363F8917D3F006EBB9FAE322AF02::get_offset_of_m_Running_1(),
XRGestureSubsystem_t9CE9DF7141C4363F8917D3F006EBB9FAE322AF02::get_offset_of_m_Provider_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4253[2] =
{
Cinfo_t54ECED2FE09846D0F2F1981C3232E3DB2A87F227::get_offset_of_U3CidU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cinfo_t54ECED2FE09846D0F2F1981C3232E3DB2A87F227::get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4256[2] =
{
XRConfigurationDataAttribute_tC94F83D607B934FF3F894802DF857C51AA165236::get_offset_of_U3CdisplayNameU3Ek__BackingField_0(),
XRConfigurationDataAttribute_tC94F83D607B934FF3F894802DF857C51AA165236::get_offset_of_U3CbuildSettingsKeyU3Ek__BackingField_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4257[7] =
{
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields::get_offset_of_k_SettingsKey_4(),
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042_StaticFields::get_offset_of_s_RuntimeSettingsInstance_5(),
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042::get_offset_of_m_LoaderManagerInstance_6(),
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042::get_offset_of_m_InitManagerOnStart_7(),
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042::get_offset_of_m_XRManager_8(),
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042::get_offset_of_m_ProviderIntialized_9(),
XRGeneralSettings_t32A12852D8662239F55902E9FD6A299201C04042::get_offset_of_m_ProviderStarted_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4259[1] =
{
XRLoaderHelper_t37A55C343AC31D25BB3EBD203DABFA357F51C013::get_offset_of_m_SubsystemInstanceMap_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4260[4] =
{
U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08::get_offset_of_U3CU3E1__state_0(),
U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08::get_offset_of_U3CU3E2__current_1(),
U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08::get_offset_of_U3CU3E4__this_2(),
U3CInitializeLoaderU3Ed__24_tBE52372328AAFF3147B0E3361196652E33780D08::get_offset_of_U3CU3E7__wrap1_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4261[7] =
{
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F::get_offset_of_m_InitializationComplete_4(),
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F::get_offset_of_m_RequiresSettingsUpdate_5(),
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F::get_offset_of_m_AutomaticLoading_6(),
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F::get_offset_of_m_AutomaticRunning_7(),
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F::get_offset_of_m_Loaders_8(),
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F::get_offset_of_m_RegisteredLoaders_9(),
XRManagerSettings_t8F274E413BAFFBB547DAD1B7E50EDD9D7B16E19F::get_offset_of_U3CactiveLoaderU3Ek__BackingField_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4265[1] =
{
NavMesh_t6A9D1EE380DAD7B40A82058C6956154300CC7D92_StaticFields::get_offset_of_onPreUpdate_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4268[1] =
{
AndroidJavaException_tA371556A4C19FBFA201DD4939DFA781D109B243D::get_offset_of_mJavaStackTrace_17(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4269[2] =
{
GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289::get_offset_of_m_disposed_0(),
GlobalJavaObjectRef_t04A7D04EB0317C286F089E4DB4444EC4F2D78289::get_offset_of_m_jobject_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4270[1] =
{
AndroidJavaRunnableProxy_t17D14B64AF448BEC13E64E394A2626B261ED3BEB::get_offset_of_mRunnable_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4271[4] =
{
AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF::get_offset_of_javaInterface_0(),
AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF::get_offset_of_proxyObject_1(),
AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF_StaticFields::get_offset_of_s_JavaLangSystemClass_2(),
AndroidJavaProxy_tA8C86826A74CB7CC5511CB353DBA595C9270D9AF_StaticFields::get_offset_of_s_HashCodeMethodID_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4272[3] =
{
AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E_StaticFields::get_offset_of_enableDebugPrints_0(),
AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E::get_offset_of_m_jobject_1(),
AndroidJavaObject_t10188D5695DCD09C9F621B44B0A8C93A2281236E::get_offset_of_m_jclass_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4274[8] =
{
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_ReflectionHelperClass_0(),
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_ReflectionHelperGetConstructorID_1(),
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_ReflectionHelperGetMethodID_2(),
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_ReflectionHelperGetFieldID_3(),
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_ReflectionHelperGetFieldSignature_4(),
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_ReflectionHelperNewProxyInstance_5(),
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_ReflectionHelperSetNativeExceptionOnProxy_6(),
AndroidReflection_tEB6633FD5B7D2816E1AC6C711E11B2DD33822F16_StaticFields::get_offset_of_s_FieldGetDeclaringClass_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4276[9] =
{
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_z_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_b_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_c_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_s_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_i_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_j_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_f_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_d_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587::get_offset_of_l_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4285[3] =
{
PlayableDirector_t63912C98A4EC9D4701E88B633E27E0D97209BA38::get_offset_of_played_4(),
PlayableDirector_t63912C98A4EC9D4701E88B633E27E0D97209BA38::get_offset_of_paused_5(),
PlayableDirector_t63912C98A4EC9D4701E88B633E27E0D97209BA38::get_offset_of_stopped_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4287[17] =
{
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_Position_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_Velocity_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_AnimatedVelocity_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_InitialVelocity_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_AxisOfRotation_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_Rotation_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_AngularVelocity_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_StartSize_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_StartColor_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_RandomSeed_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_ParentRandomSeed_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_Lifetime_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_StartLifetime_12() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_MeshIndex_13() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_EmitAccumulator0_14() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_EmitAccumulator1_15() + static_cast<int32_t>(sizeof(RuntimeObject)),
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1::get_offset_of_m_Flags_16() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4288[12] =
{
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_Particle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_PositionSet_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_VelocitySet_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_AxisOfRotationSet_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_RotationSet_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_AngularVelocitySet_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_StartSizeSet_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_StartColorSet_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_RandomSeedSet_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_StartLifetimeSet_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_MeshIndexSet_10() + static_cast<int32_t>(sizeof(RuntimeObject)),
EmitParams_t4F6429654653488A5D430701CD0743D011807CCC::get_offset_of_m_ApplyShapeToPosition_11() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4292[2] =
{
PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3::get_offset_of_PoseNames_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3::get_offset_of_Poses_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4293[1] =
{
TrackedPoseDriverDataDescription_t1DDD4ABD8892762FC3F4825233D1EA413197B9A1_StaticFields::get_offset_of_DeviceData_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4294[4] =
{
PoseDataFlags_tB6A466AA30BE06A3F9ABA4C63BC7E4912FB8C6D7::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4295[1] =
{
PoseDataSource_t729321C69DC33F646ED3624A4E79FFDB69C51D44_StaticFields::get_offset_of_nodeStates_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4296[4] =
{
DeviceType_tAE2B3246436F9B924A6284C9C0603322DD6D09E8::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4297[12] =
{
TrackedPose_t1326EFD84D48C3339F652B2A072743C3189B581B::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4298[4] =
{
TrackingType_t6524BC8345E54C620E3557D2BD223CEAF7CA5EA9::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4299[4] =
{
UpdateType_t4CA0C1D1034EEB2D3CB9C008009B2F4967CD658E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4300[7] =
{
TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8::get_offset_of_m_Device_4(),
TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8::get_offset_of_m_PoseSource_5(),
TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8::get_offset_of_m_PoseProviderComponent_6(),
TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8::get_offset_of_m_TrackingType_7(),
TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8::get_offset_of_m_UpdateType_8(),
TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8::get_offset_of_m_UseRelativeTransform_9(),
TrackedPoseDriver_t76FFA7BA9FCABF9DA0A77CA1D1B387E63BE3EDE8::get_offset_of_m_OriginPose_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4304[10] =
{
BoundaryValueType_t5B5317FD7A95A68B0FA9B3DD30EB5CF9E3E6883D::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4305[9] =
{
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MaximumResolution_4(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MinimumDetailResolutionPerPatch_5(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MaximumDetailResolutionPerPatch_6(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MaximumDetailPatchCount_7(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MaximumDetailsPerRes_8(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MinimumAlphamapResolution_9(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MaximumAlphamapResolution_10(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MinimumBaseMapResolution_11(),
TerrainData_tAD3780D3C4DE5B9BE122BECE6D08C4AE169ED2A4_StaticFields::get_offset_of_k_MaximumBaseMapResolution_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4308[2] =
{
TerrainCallbacks_tF292CB70850DEF93A2AFD0005B4FF75C7FC8ECD0_StaticFields::get_offset_of_heightmapChanged_0(),
TerrainCallbacks_tF292CB70850DEF93A2AFD0005B4FF75C7FC8ECD0_StaticFields::get_offset_of_textureChanged_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4310[2] =
{
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901::get_offset_of_tileX_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
TileCoord_t491EABF2B90DFB255C8F7624FF5528F2DE2CC901::get_offset_of_tileZ_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4311[5] =
{
ErrorCode_t5533C7D1F39FAA2C0E95C82A736DF461B0B2FCE6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4312[1] =
{
U3CU3Ec__DisplayClass4_0_tBEB3CC092598F0D16C66B724FF1AE52EF06C0A8F::get_offset_of_groupID_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4313[3] =
{
TerrainMap_tDD61065279F906812F404E67C65CB7F40CA49453::get_offset_of_m_patchSize_0(),
TerrainMap_tDD61065279F906812F404E67C65CB7F40CA49453::get_offset_of_m_errorCode_1(),
TerrainMap_tDD61065279F906812F404E67C65CB7F40CA49453::get_offset_of_m_terrainTiles_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4315[1] =
{
U3CU3Ec__DisplayClass4_0_t3074FF30377E883DD9C65B310F07325DB61E1EA8::get_offset_of_onlyAutoConnectedTerrains_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4316[2] =
{
U3CU3Ec__DisplayClass4_1_t4628C2311DC3CEECE17200D3AD3113D667B36696::get_offset_of_t_0(),
U3CU3Ec__DisplayClass4_1_t4628C2311DC3CEECE17200D3AD3113D667B36696::get_offset_of_CSU24U3CU3E8__locals1_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4321[4] =
{
YogaMeasureMode_tC1410798E2727CAFC5099EC884C7649A5B4D8DC8::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4323[3] =
{
YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6::get_offset_of__ygNode_0(),
YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6::get_offset_of__measureFunction_1(),
YogaNode_tD3DA875FF65A4C50F0F6F05A9F8D114FF5A9D9A6::get_offset_of__baselineFunction_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4324[2] =
{
YogaSize_tC805BF63DE9A9E4B9984B964AB0A1CFA04ADC1FD::get_offset_of_width_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
YogaSize_tC805BF63DE9A9E4B9984B964AB0A1CFA04ADC1FD::get_offset_of_height_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4325[2] =
{
UIElementsRuntimeUtilityNative_tD46E29AA27E608332B332CC105C50AF116363578_StaticFields::get_offset_of_RepaintOverlayPanelsCallback_0(),
UIElementsRuntimeUtilityNative_tD46E29AA27E608332B332CC105C50AF116363578_StaticFields::get_offset_of_UpdateRuntimePanelsCallback_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4326[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4327[8] =
{
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_GraphicsResourcesRecreate_0(),
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_EngineUpdate_1(),
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_FlushPendingResources_2(),
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_RegisterIntermediateRenderers_3(),
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_RenderNodeAdd_4(),
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_RenderNodeExecute_5(),
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_RenderNodeCleanup_6(),
Utility_t6BB300FC47C7086829155B2BFB07A6EA848C621D_StaticFields::get_offset_of_s_MarkerRaiseEngineUpdate_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4330[3] =
{
RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4_StaticFields::get_offset_of_Updated_0(),
RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4_StaticFields::get_offset_of_BeforeFetchFromServer_1(),
RemoteSettings_t349767E4BD0534CC6AA070B83545DD6FC1C54FA4_StaticFields::get_offset_of_Completed_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4331[2] =
{
RemoteConfigSettings_tAA5BDD4B4E416F9907EB1B5E6295157CD224A932::get_offset_of_m_Ptr_0(),
RemoteConfigSettings_tAA5BDD4B4E416F9907EB1B5E6295157CD224A932::get_offset_of_Updated_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4332[12] =
{
Tag_tF98827947FA5E3148A566C444B306A969C5E371A::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4335[5] =
{
AnalyticsSessionState_t886946F698BCE50BAA2E7418B105E6C4C2F155E6::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4338[2] =
{
AnalyticsSessionInfo_t09A4555A2B7A6BC59C0BE66273B5D9B26952EEEB_StaticFields::get_offset_of_sessionStateChanged_0(),
AnalyticsSessionInfo_t09A4555A2B7A6BC59C0BE66273B5D9B26952EEEB_StaticFields::get_offset_of_identityTokenChanged_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4340[3] =
{
VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF::get_offset_of_m_Ptr_0(),
VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF::get_offset_of_m_Owner_1(),
VFXEventAttribute_tC4E90458100D52776F591CE62B19FF6051F423EF::get_offset_of_m_VfxAsset_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4341[1] =
{
VFXExpressionValues_tFB46D1CD053E9CD5BD04CBE4DB1B0ED24C9C0883::get_offset_of_m_Ptr_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4344[2] =
{
VFXSpawnerState_t5879CC401019E9C9D4F81128147AE52AAED167CD::get_offset_of_m_Ptr_0(),
VFXSpawnerState_t5879CC401019E9C9D4F81128147AE52AAED167CD::get_offset_of_m_Owner_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4346[2] =
{
VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50_StaticFields::get_offset_of_PlayEventID_4(),
VisualEffectAsset_tEFF95BDCD904AF7D5DEA8CF020C62E23A978EC50_StaticFields::get_offset_of_StopEventID_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4347[2] =
{
VFXOutputEventArgs_tE7E97EDFD67E4561E4412D2E4B1C999F95850BF5::get_offset_of_U3CnameIdU3Ek__BackingField_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
VFXOutputEventArgs_tE7E97EDFD67E4561E4412D2E4B1C999F95850BF5::get_offset_of_U3CeventAttributeU3Ek__BackingField_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4348[2] =
{
VisualEffect_t7C6E2AAA4DB4F47960AF2029EA96D4B579B3A4CA::get_offset_of_m_cachedEventAttribute_4(),
VisualEffect_t7C6E2AAA4DB4F47960AF2029EA96D4B579B3A4CA::get_offset_of_outputEventReceived_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4350[1] =
{
VideoClipPlayable_tC49201F6C8E1AB1CC8F4E31EFC12C7E1C03BC2E1::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4352[6] =
{
VideoRenderMode_tB2F8E98B2EBB3216E6322E55C246CE0587CC0A7B::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4353[4] =
{
Video3DLayout_t128A1265A65BE3B41138D19C5A827986A2F22F45::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4354[7] =
{
VideoAspectRatio_tB3C11859B0FA98E77D62BE7E1BD59084E7919B5E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4355[3] =
{
VideoTimeSource_t881900D70589FDDD1C7471CB8C7FEA132B98038F::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4356[4] =
{
VideoTimeReference_tDF02822B01320D3B0ADBE75452C8FA6B5FE96F1E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4357[3] =
{
VideoSource_t66E8298534E5BB7DFD28A7D8ADE397E328CD8896::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4358[5] =
{
VideoAudioOutputMode_tDD6B846B9A65F1C53DA4D4D8117CDB223BE3DE56::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4363[8] =
{
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_prepareCompleted_4(),
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_loopPointReached_5(),
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_started_6(),
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_frameDropped_7(),
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_errorReceived_8(),
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_seekCompleted_9(),
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_clockResyncOccurred_10(),
VideoPlayer_t47DCC396CBA28512CF97C6CC4F55878E8D62FE86::get_offset_of_frameReady_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4365[2] =
{
AuthRequestMessage_tEC038AE7A0DA76DBBF6E91676D5D31D6AC0B1776::get_offset_of_authUsername_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AuthRequestMessage_tEC038AE7A0DA76DBBF6E91676D5D31D6AC0B1776::get_offset_of_authPassword_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4366[2] =
{
AuthResponseMessage_tAB2A4012F8D29C41FEE093148E31470EFD93FA00::get_offset_of_code_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
AuthResponseMessage_tAB2A4012F8D29C41FEE093148E31470EFD93FA00::get_offset_of_message_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4367[5] =
{
U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE::get_offset_of_U3CU3E1__state_0(),
U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE::get_offset_of_U3CU3E2__current_1(),
U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE::get_offset_of_waitTime_2(),
U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE::get_offset_of_U3CU3E4__this_3(),
U3CDelayedDisconnectU3Ed__8_tA333AA2C91E024F483DAA00B5A17FD4B7DEA75DE::get_offset_of_conn_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4368[2] =
{
BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309::get_offset_of_username_6(),
BasicAuthenticator_t0D3D92782F1E574906D00856791D051327A2E309::get_offset_of_password_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4369[4] =
{
U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB::get_offset_of_U3CU3E1__state_0(),
U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB::get_offset_of_U3CU3E2__current_1(),
U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB::get_offset_of_U3CU3E4__this_2(),
U3CBeginAuthenticationU3Ed__9_tE618E16D9FEE1506394FF225C30D965C523660DB::get_offset_of_conn_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4370[2] =
{
TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01::get_offset_of_authenticator_6(),
TimeoutAuthenticator_t4121A00090A58004E6AC7E4921EC0686CCA77D01::get_offset_of_timeout_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4373[3] =
{
Projectile_t1C5430FC42935877498341CC359F93F1987C4586::get_offset_of_destroyAfter_11(),
Projectile_t1C5430FC42935877498341CC359F93F1987C4586::get_offset_of_rigidBody_12(),
Projectile_t1C5430FC42935877498341CC359F93F1987C4586::get_offset_of_force_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4374[6] =
{
Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8::get_offset_of_agent_11(),
Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8::get_offset_of_animator_12(),
Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8::get_offset_of_rotationSpeed_13(),
Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8::get_offset_of_shootKey_14(),
Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8::get_offset_of_projectilePrefab_15(),
Tank_tEFC3DB1DFB08C767865E822421DD5AF86DB23CA8::get_offset_of_projectileMount_16(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4375[2] =
{
NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B::get_offset_of_rewardPrefab_43(),
NetworkRoomManagerExt_tF57240FAD69AC8BFA421B955CAB2B7A5433A993B::get_offset_of_showStartButton_44(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4377[11] =
{
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_characterController_11(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_moveSpeed_12(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_turnSensitivity_13(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_maxTurnSpeed_14(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_horizontal_15(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_vertical_16(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_turn_17(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_jumpSpeed_18(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_isGrounded_19(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_isFalling_20(),
PlayerController_t1BDEE250E3BB4BAF1A2FD55B369A746A0B51F84B::get_offset_of_velocity_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4378[2] =
{
PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6::get_offset_of_index_11(),
PlayerScore_t2D67382044983CE2023B2D5D5FC9BA0A09D8AED6::get_offset_of_score_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4379[2] =
{
RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F::get_offset_of_color_11(),
RandomColor_t926E7A45E806835A720DD3FA996C3ADA697D2C5F::get_offset_of_cachedMaterial_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4380[2] =
{
Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4::get_offset_of_available_11(),
Reward_t55C124C8978182E7FBB16EFFC62AFD344B7CBDA4::get_offset_of_randomColor_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4382[2] =
{
AddForce_tF18B7028125777597A6AC1E6F16FC95A02956D9C::get_offset_of_rigidbody3d_11(),
AddForce_tF18B7028125777597A6AC1E6F16FC95A02956D9C::get_offset_of_force_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4383[2] =
{
Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0::get_offset_of_speed_11(),
Ball_tAA328131146694D9ABB5A5C286DF02160E868AC0::get_offset_of_rigidbody2d_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4384[2] =
{
U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tD0E357D56018852B7D93CF304B3814E9908F5C75_StaticFields::get_offset_of_U3CU3E9__3_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4385[3] =
{
NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7::get_offset_of_leftRacketSpawn_34(),
NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7::get_offset_of_rightRacketSpawn_35(),
NetworkManagerPong_t807AC947F14DF800469D5317E1D81B810BF8BCA7::get_offset_of_ball_36(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4386[2] =
{
Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36::get_offset_of_speed_11(),
Player_t4E7E08BC683AFF26397BF9716820B0354E4C9A36::get_offset_of_rigidbody2d_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4387[6] =
{
U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields::get_offset_of_U3CU3E9__34_0_1(),
U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields::get_offset_of_U3CU3E9__41_0_2(),
U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields::get_offset_of_U3CU3E9__42_0_3(),
U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields::get_offset_of_U3CU3E9__43_0_4(),
U3CU3Ec_t4BB7A134B33ACD96ED76905C4AE42682351343B2_StaticFields::get_offset_of_U3CU3E9__46_0_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4388[19] =
{
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_OnPlayerDisconnected_4(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields::get_offset_of_playerMatches_5(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields::get_offset_of_openMatches_6(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields::get_offset_of_matchConnections_7(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields::get_offset_of_playerInfos_8(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D_StaticFields::get_offset_of_waitingConnections_9(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_localPlayerMatch_10(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_localJoinedMatch_11(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_selectedMatch_12(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_playerIndex_13(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_matchList_14(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_matchPrefab_15(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_matchControllerPrefab_16(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_createButton_17(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_joinButton_18(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_lobbyView_19(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_roomView_20(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_roomGUI_21(),
CanvasController_t0BD90DA0C3E181946469A57707D3A05635C5222D::get_offset_of_toggleGroup_22(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4389[5] =
{
CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5::get_offset_of_matchController_4(),
CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5::get_offset_of_cellValue_5(),
CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5::get_offset_of_image_6(),
CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5::get_offset_of_button_7(),
CellGUI_t299C070609E646406070F7AABA4F93A86E83D0B5::get_offset_of_playerIdentity_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4390[3] =
{
U3CAddPlayersToMatchControllerU3Ed__17_t281FEFAD97FD45BCB88DCA3E8BFDC78B6B149692::get_offset_of_U3CU3E1__state_0(),
U3CAddPlayersToMatchControllerU3Ed__17_t281FEFAD97FD45BCB88DCA3E8BFDC78B6B149692::get_offset_of_U3CU3E2__current_1(),
U3CAddPlayersToMatchControllerU3Ed__17_t281FEFAD97FD45BCB88DCA3E8BFDC78B6B149692::get_offset_of_U3CU3E4__this_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4391[5] =
{
U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3::get_offset_of_U3CU3E1__state_0(),
U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3::get_offset_of_U3CU3E2__current_1(),
U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3::get_offset_of_U3CU3E4__this_2(),
U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3::get_offset_of_disconnected_3(),
U3CServerEndMatchU3Ed__32_tE3D1FD8F9A72B37F9A121C1A91924FD75A0751A3::get_offset_of_conn_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4392[16] =
{
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_matchPlayerData_11(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_MatchCells_12(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_boardScore_13(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_playAgain_14(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_canvasGroup_15(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_gameText_16(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_exitButton_17(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_playAgainButton_18(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_winCountLocal_19(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_winCountOpponent_20(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_canvasController_21(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_player1_22(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_player2_23(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_startingPlayer_24(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of_currentPlayer_25(),
MatchController_t65AA59CA36BA1647F8F5EE68836C264505BCAE69::get_offset_of____currentPlayerNetId_26(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4393[6] =
{
MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C::get_offset_of_matchId_4(),
MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C::get_offset_of_image_5(),
MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C::get_offset_of_toggleButton_6(),
MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C::get_offset_of_matchName_7(),
MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C::get_offset_of_playerCount_8(),
MatchGUI_t9E6B6FA6923AAA01A771D9814BD8B4EB357B185C::get_offset_of_canvasController_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4394[2] =
{
ServerMatchMessage_t9F524EE548A10ED55842D0A3479FF61AAFE8D0AF::get_offset_of_serverMatchOperation_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ServerMatchMessage_t9F524EE548A10ED55842D0A3479FF61AAFE8D0AF::get_offset_of_matchId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4395[4] =
{
ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE::get_offset_of_clientMatchOperation_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE::get_offset_of_matchId_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE::get_offset_of_matchInfos_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
ClientMatchMessage_t646A1068F4F565240863D637892935BB3B671DEE::get_offset_of_playerInfos_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4396[3] =
{
MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574::get_offset_of_matchId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574::get_offset_of_players_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatchInfo_t4A28D33106B7FA233F497CA2064E195613650574::get_offset_of_maxPlayers_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4397[3] =
{
PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6::get_offset_of_playerIndex_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6::get_offset_of_ready_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayerInfo_t30063B780B208F87947A4F5D8AA7C57F3DCAAFB6::get_offset_of_matchId_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4398[3] =
{
MatchPlayerData_t1318630045729D1E5327B91BADA13406910E1392::get_offset_of_playerIndex_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatchPlayerData_t1318630045729D1E5327B91BADA13406910E1392::get_offset_of_wins_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MatchPlayerData_t1318630045729D1E5327B91BADA13406910E1392::get_offset_of_currentScore_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4399[8] =
{
ServerMatchOperation_t0A2F55BB9FF27A6AA0A6963897F1F9FD51342527::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4400[9] =
{
ClientMatchOperation_t0603902F6B6E7466BB388D812633FC57F465A9C5::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4401[20] =
{
CellValue_tFA3977E894154C486C0B8071410E5D8EE53D726E::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4402[2] =
{
MatchNetworkManager_tC3F4231D8DAA8AD8549A3E11A891FAEEBC66F258::get_offset_of_canvas_34(),
MatchNetworkManager_tC3F4231D8DAA8AD8549A3E11A891FAEEBC66F258::get_offset_of_canvasController_35(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4403[1] =
{
PlayerGUI_t7B4B5207382BC93B0ECE035465EA5B1EB3974A06::get_offset_of_playerName_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4404[6] =
{
RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78::get_offset_of_playerList_4(),
RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78::get_offset_of_playerPrefab_5(),
RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78::get_offset_of_cancelButton_6(),
RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78::get_offset_of_leaveButton_7(),
RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78::get_offset_of_startButton_8(),
RoomGUI_t0046C98B93B6FEEE80EB71E30078556D4509EE78::get_offset_of_owner_9(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4405[4] =
{
U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60::get_offset_of_U3CU3E1__state_0(),
U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60::get_offset_of_U3CU3E2__current_1(),
U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60::get_offset_of_U3CU3E4__this_2(),
U3COnServerAddPlayerDelayedU3Ed__7_t94379BD37CB9043168FB2E049E1AFEEA244EAA60::get_offset_of_conn_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4406[4] =
{
U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB::get_offset_of_U3CU3E1__state_0(),
U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB::get_offset_of_U3CU3E2__current_1(),
U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB::get_offset_of_U3CU3E4__this_2(),
U3CServerLoadSubScenesU3Ed__9_t2F3EB3CDDC0882B01DDA18533AC23ABB16BDF5BB::get_offset_of_U3CindexU3E5__2_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4407[4] =
{
U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10::get_offset_of_U3CU3E1__state_0(),
U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10::get_offset_of_U3CU3E2__current_1(),
U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10::get_offset_of_U3CU3E4__this_2(),
U3CServerUnloadSubScenesU3Ed__11_t2357BABDD1355A702ED3E50851084DCBF5814C10::get_offset_of_U3CindexU3E5__2_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4408[3] =
{
U3CClientUnloadSubScenesU3Ed__13_t4839F27F0B1F346D5B60412D046EDD409FED4E94::get_offset_of_U3CU3E1__state_0(),
U3CClientUnloadSubScenesU3Ed__13_t4839F27F0B1F346D5B60412D046EDD409FED4E94::get_offset_of_U3CU3E2__current_1(),
U3CClientUnloadSubScenesU3Ed__13_t4839F27F0B1F346D5B60412D046EDD409FED4E94::get_offset_of_U3CindexU3E5__2_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4409[6] =
{
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F::get_offset_of_rewardPrefab_34(),
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F::get_offset_of_instances_35(),
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F::get_offset_of_gameScene_36(),
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F::get_offset_of_subscenesLoaded_37(),
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F::get_offset_of_subScenes_38(),
MultiSceneNetManager_t40A4EBF5C39A0089D34E0F18AD32E741EFE8A28F::get_offset_of_clientIndex_39(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4410[2] =
{
PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB::get_offset_of_force_11(),
PhysicsCollision_t209844943742BE28A9EF5A8B71971DCE5EE90CAB::get_offset_of_rigidbody3D_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4411[4] =
{
PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC::get_offset_of_physicsScene_4(),
PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC::get_offset_of_physicsScene2D_5(),
PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC::get_offset_of_simulatePhysicsScene_6(),
PhysicsSimulator_t64328D6F52EB339E697963EE1B7C6DDFD0B18DEC::get_offset_of_simulatePhysicsScene2D_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4412[11] =
{
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_characterController_11(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_moveSpeed_12(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_turnSensitivity_13(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_maxTurnSpeed_14(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_horizontal_15(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_vertical_16(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_turn_17(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_jumpSpeed_18(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_isGrounded_19(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_isFalling_20(),
PlayerController_tAF9F08961E9760B5BED8399AE775A63D54B1102F::get_offset_of_velocity_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4413[5] =
{
PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD::get_offset_of_playerNumber_11(),
PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD::get_offset_of_scoreIndex_12(),
PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD::get_offset_of_matchIndex_13(),
PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD::get_offset_of_score_14(),
PlayerScore_t726BA5B1460B26586C6C4486B33CC09C373974DD::get_offset_of_clientMatchIndex_15(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4414[2] =
{
RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455::get_offset_of_color_11(),
RandomColor_t3EA108BF7C528781EB707C3079CC494CA6327455::get_offset_of_cachedMaterial_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4415[2] =
{
Reward_t82A40753189BAB49A979289A29CEC56AE94399D2::get_offset_of_available_11(),
Reward_t82A40753189BAB49A979289A29CEC56AE94399D2::get_offset_of_randomColor_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4417[1] =
{
CreatePlayerMessage_tE3C7070D4E227391EF62B55A80416BFF3C0724C1::get_offset_of_name_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4418[2] =
{
ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355::get_offset_of_chatWindow_34(),
ChatNetworkManager_t9EB290FDC646F06128B47F4376181DF61C08C355::get_offset_of_U3CPlayerNameU3Ek__BackingField_35(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4419[4] =
{
U3CAppendAndScrollU3Ed__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72::get_offset_of_U3CU3E1__state_0(),
U3CAppendAndScrollU3Ed__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72::get_offset_of_U3CU3E2__current_1(),
U3CAppendAndScrollU3Ed__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72::get_offset_of_U3CU3E4__this_2(),
U3CAppendAndScrollU3Ed__7_t0F8250F0FC41B1F98C9E6A224212E47B8BE1DA72::get_offset_of_message_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4420[3] =
{
ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B::get_offset_of_chatMessage_4(),
ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B::get_offset_of_chatHistory_5(),
ChatWindow_t391E04FC902464CD3CBB8F46B6571380E588809B::get_offset_of_scrollbar_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4421[2] =
{
Player_tBEC4FFB14B3B261C1FFC7953264D930457898707::get_offset_of_playerName_11(),
Player_tBEC4FFB14B3B261C1FFC7953264D930457898707_StaticFields::get_offset_of_OnMessage_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4422[3] =
{
BenchmarkNetworkManager_tB9D28DD802BEFE9ABA02BBB41CBD12CED54538C5::get_offset_of_spawnPrefab_34(),
BenchmarkNetworkManager_tB9D28DD802BEFE9ABA02BBB41CBD12CED54538C5::get_offset_of_spawnAmount_35(),
BenchmarkNetworkManager_tB9D28DD802BEFE9ABA02BBB41CBD12CED54538C5::get_offset_of_interleave_36(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4423[6] =
{
MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E::get_offset_of_speed_11(),
MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E::get_offset_of_movementProbability_12(),
MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E::get_offset_of_movementDistance_13(),
MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E::get_offset_of_moving_14(),
MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E::get_offset_of_start_15(),
MonsterMovement_tF4ACBAF7C77547627983BE8795F73D1422838B4E::get_offset_of_destination_16(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4424[1] =
{
PlayerMovement_t84B7DCFE51F6D83D3D38E0ECDAD7DE6894751BBF::get_offset_of_speed_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4425[3] =
{
BasicNetManager_tB15C500A2F664126167191661202A8EA20B64728::get_offset_of_playersList_34(),
BasicNetManager_tB15C500A2F664126167191661202A8EA20B64728::get_offset_of_mainPanel_35(),
BasicNetManager_tB15C500A2F664126167191661202A8EA20B64728::get_offset_of_playersPanel_36(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4426[8] =
{
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_OnPlayerNumberChanged_11(),
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_OnPlayerColorChanged_12(),
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_OnPlayerDataChanged_13(),
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_playerUIPrefab_14(),
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_playerUI_15(),
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_playerNumber_16(),
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_playerData_17(),
Player_tA5681FF9EFA3825D4FAA3E403BE8CA186CE604C8::get_offset_of_playerColor_18(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4427[4] =
{
PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567::get_offset_of_image_4(),
PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567::get_offset_of_playerNameText_5(),
PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567::get_offset_of_playerDataText_6(),
PlayerUI_tF5C1C5FED8A3AB775C233356154D50B8CC3DF567::get_offset_of_player_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4428[5] =
{
U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06::get_offset_of_U3CU3E1__state_0(),
U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06::get_offset_of_U3CU3E2__current_1(),
U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06::get_offset_of_U3CU3E4__this_2(),
U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06::get_offset_of_U3CU3E7__wrap1_3(),
U3CLoadSubScenesU3Ed__3_tBA03FADD1363348029C05C0E99DE36E2993ABB06::get_offset_of_U3CU3E7__wrap2_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4429[5] =
{
U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D::get_offset_of_U3CU3E1__state_0(),
U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D::get_offset_of_U3CU3E2__current_1(),
U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D::get_offset_of_U3CU3E4__this_2(),
U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D::get_offset_of_U3CU3E7__wrap1_3(),
U3CUnloadScenesU3Ed__6_t9EC4FD84BFDA5CACB6CD1C5B9A6D0B8FFEA40A9D::get_offset_of_U3CU3E7__wrap2_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4430[2] =
{
AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74::get_offset_of_Zone_34(),
AdditiveNetworkManager_t8A9139F2867D9E2B5D73A73ABC7E315D1353CE74::get_offset_of_subScenes_35(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4431[11] =
{
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_characterController_11(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_moveSpeed_12(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_turnSensitivity_13(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_maxTurnSpeed_14(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_horizontal_15(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_vertical_16(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_turn_17(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_jumpSpeed_18(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_isGrounded_19(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_isFalling_20(),
PlayerController_tAB3B0F2F8D7483BE6CC4AAA4306DCF64220B76E9::get_offset_of_velocity_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4432[2] =
{
RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6::get_offset_of_color_11(),
RandomColor_t4A72ABEFF6C0069686DB1824F1379990E9AF43E6::get_offset_of_cachedMaterial_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4433[3] =
{
ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF::get_offset_of_rotation_11(),
ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF::get_offset_of_networkAnimator_12(),
ShootingTankBehaviour_t901602859A8B418B51B736125B9FB2ADE32088CF::get_offset_of_turnSpeed_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4434[1] =
{
ZoneHandler_tAC0C059718D44517BDA93DE6ED8E4F861A41B569::get_offset_of_subScene_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4438[2] =
{
Ball_t57C5E8A56C7477F141707A23D7E370100760A87F::get_offset_of_speed_11(),
Ball_t57C5E8A56C7477F141707A23D7E370100760A87F::get_offset_of_rigidbody2d_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4439[3] =
{
BallManager_tD1AA2FF85A9C46DDAC9EE1B2C798E9A141508C5B::get_offset_of_ballPrefab_11(),
BallManager_tD1AA2FF85A9C46DDAC9EE1B2C798E9A141508C5B::get_offset_of_ball_12(),
BallManager_tD1AA2FF85A9C46DDAC9EE1B2C798E9A141508C5B::get_offset_of_manager_13(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4440[2] =
{
Player_tC63B06645D652A2E530C1BDD46A3A130085E5592::get_offset_of_speed_11(),
Player_tC63B06645D652A2E530C1BDD46A3A130085E5592::get_offset_of_rigidbody2d_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4443[5] =
{
ClientState_t1E677920A8D2F653F257EAF86758BD702D6CBB04::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4444[9] =
{
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_maxMessagesPerTick_0(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_maxMessageSize_1(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_receiveQueue_2(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_bufferPool_3(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_state_4(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_onConnect_5(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_onDisconnect_6(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_onData_7(),
SimpleWebClient_tD60BCF346DF61951B572466598DDE939823279D0::get_offset_of_onError_8(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4447[2] =
{
U3CU3Ec__DisplayClass5_0_t10E436935CCEA13610FFA0F5B5B1D4F46D976B75::get_offset_of_U3CU3E4__this_0(),
U3CU3Ec__DisplayClass5_0_t10E436935CCEA13610FFA0F5B5B1D4F46D976B75::get_offset_of_serverAddress_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4448[4] =
{
WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3::get_offset_of_sslHelper_9(),
WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3::get_offset_of_handshake_10(),
WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3::get_offset_of_tcpConfig_11(),
WebSocketClientStandAlone_t7432457A307592A8FFC6E21ABD5A342FF31262F3::get_offset_of_conn_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4450[2] =
{
WebSocketClientWebGl_tE6A1245376B154C18721FA55783CF10221E3B5AB_StaticFields::get_offset_of_instances_9(),
WebSocketClientWebGl_tE6A1245376B154C18721FA55783CF10221E3B5AB::get_offset_of_index_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4452[4] =
{
ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A::get_offset_of_owner_0(),
ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A::get_offset_of_array_1(),
ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A::get_offset_of_count_2(),
ArrayBuffer_t2E09810EC3F762D159730544226C8BBECA881A3A::get_offset_of_releasesRequired_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4453[3] =
{
BufferBucket_tE62FEE054D9BD89BE6BE2C604F976D0BD92E8554::get_offset_of_arraySize_0(),
BufferBucket_tE62FEE054D9BD89BE6BE2C604F976D0BD92E8554::get_offset_of_buffers_1(),
BufferBucket_tE62FEE054D9BD89BE6BE2C604F976D0BD92E8554::get_offset_of__current_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4454[4] =
{
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC::get_offset_of_buckets_0(),
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC::get_offset_of_bucketCount_1(),
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC::get_offset_of_smallest_2(),
BufferPool_t75B5991FCB3DACA5BCE9DC2EDAA17B86D1D162CC::get_offset_of_largest_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4455[11] =
{
0,
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_disposedLock_1(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_client_2(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_connId_3(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_stream_4(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_receiveThread_5(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_sendThread_6(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_sendPending_7(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_sendQueue_8(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_onDispose_9(),
Connection_tE35D3F7C4C31CC1788111E997F1E8FB806526721::get_offset_of_hasDisposed_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4456[11] =
{
0,
0,
0,
0,
0,
0,
0,
0,
Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9_StaticFields::get_offset_of_HandshakeGUIDLength_8(),
Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9_StaticFields::get_offset_of_HandshakeGUIDBytes_9(),
Constants_t45DCD5699F6F7C0FBA3324ED1FB73301BC505DA9_StaticFields::get_offset_of_endOfHandshake_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4457[5] =
{
EventType_t3474C26D6E5DCAA4B476CF681C03468E77BB9361::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4458[6] =
{
Levels_t3EA1E18A80763E10277F9D1CD0337CD9FA317995::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4459[3] =
{
0,
0,
Log_t2BB16EE7D82D3737B035856E876EA4B7B36CDC5F_StaticFields::get_offset_of_level_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4460[4] =
{
Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347::get_offset_of_connId_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347::get_offset_of_type_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347::get_offset_of_data_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Message_t7DD5B03AA395589BCBD774AF9A54EE551E52E347::get_offset_of_exception_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4462[2] =
{
U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t79FA80BBFE35245238D6969C64F09B8DF5963D40_StaticFields::get_offset_of_U3CU3E9__0_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4465[5] =
{
Config_t237711EE042BC9237C76698E05B29FD22F8692F9::get_offset_of_conn_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Config_t237711EE042BC9237C76698E05B29FD22F8692F9::get_offset_of_maxMessageSize_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Config_t237711EE042BC9237C76698E05B29FD22F8692F9::get_offset_of_expectMask_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Config_t237711EE042BC9237C76698E05B29FD22F8692F9::get_offset_of_queue_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Config_t237711EE042BC9237C76698E05B29FD22F8692F9::get_offset_of_bufferPool_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4467[2] =
{
SendLoopConfig_tBC5A186D7AB84F378F900EBA5ECDD0FDE394FCB9_StaticFields::get_offset_of_batchSend_0(),
SendLoopConfig_tBC5A186D7AB84F378F900EBA5ECDD0FDE394FCB9_StaticFields::get_offset_of_sleepBeforeSend_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4468[3] =
{
Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58::get_offset_of_conn_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58::get_offset_of_bufferSize_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Config_tDE9C7665C2F5FD3759C258950A7BED3BBDF2DB58::get_offset_of_setMask_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4469[2] =
{
MaskHelper_tA89B5BF4D7F4F334DF774BF0EAE166CF504AE011::get_offset_of_maskBuffer_0(),
MaskHelper_tA89B5BF4D7F4F334DF774BF0EAE166CF504AE011::get_offset_of_random_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4471[3] =
{
TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE::get_offset_of_noDelay_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE::get_offset_of_sendTimeout_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
TcpConfig_t7D7804E998D0E4B45C7CBFA3471B1BB63360A1DE::get_offset_of_receiveTimeout_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4473[8] =
{
0,
0,
0,
0,
0,
ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5::get_offset_of_maxHttpHeaderSize_5(),
ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5::get_offset_of_sha1_6(),
ServerHandshake_t09B46FFE9A8315BD2ED732C81A8475CD4F89F4F5::get_offset_of_bufferPool_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4474[4] =
{
SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90::get_offset_of_enabled_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90::get_offset_of_certPath_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90::get_offset_of_certPassword_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
SslConfig_t8CAC8EDF2B87D11A3432AFE890F49408AAC4AF90::get_offset_of_sslProtocols_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4475[2] =
{
ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34::get_offset_of_config_0(),
ServerSslHelper_tABC6B5BC3A55B437B0300C518F5A3DEB8C08FB34::get_offset_of_certificate_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4476[8] =
{
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_maxMessagesPerTick_0(),
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_server_1(),
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_bufferPool_2(),
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_U3CActiveU3Ek__BackingField_3(),
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_onConnect_4(),
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_onDisconnect_5(),
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_onData_6(),
SimpleWebServer_t7E42C012CC19A8BF00EFABB859E79072FF7A4881::get_offset_of_onError_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4477[2] =
{
U3CU3Ec__DisplayClass14_0_t8709EB7A8AB8314AD8E570814E30F4854D5ADDB0::get_offset_of_conn_0(),
U3CU3Ec__DisplayClass14_0_t8709EB7A8AB8314AD8E570814E30F4854D5ADDB0::get_offset_of_U3CU3E4__this_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4478[2] =
{
U3CU3Ec__DisplayClass15_0_t9DE32FA98D2F40AA74EB5C1EBBAAF1B6ED563018::get_offset_of_conn_0(),
U3CU3Ec__DisplayClass15_0_t9DE32FA98D2F40AA74EB5C1EBBAAF1B6ED563018::get_offset_of_U3CU3E4__this_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4479[11] =
{
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_receiveQueue_0(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_tcpConfig_1(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_maxMessageSize_2(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_listener_3(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_acceptThread_4(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_serverStopped_5(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_handShake_6(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_sslHelper_7(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_bufferPool_8(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of_connections_9(),
WebSocketServer_tD78A21860423932DD4F63252A00CFEBA4E0DDA65::get_offset_of__idCounter_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4480[19] =
{
0,
0,
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_port_15(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_maxMessageSize_16(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_handshakeMaxSize_17(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_noDelay_18(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_sendTimeout_19(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_receiveTimeout_20(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_serverMaxMessagesPerTick_21(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_clientMaxMessagesPerTick_22(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_batchSend_23(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_waitBeforeSend_24(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_clientUseWss_25(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_sslEnabled_26(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_sslCertJson_27(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_sslProtocols_28(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of__logLevels_29(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_client_30(),
SimpleWebTransport_tAA182CFCE1579DC8A4E5761098C8056C877A06D5::get_offset_of_server_31(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4481[2] =
{
Cert_t161CF951AAED79320EC39086B78D515B5EC37884::get_offset_of_path_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Cert_t161CF951AAED79320EC39086B78D515B5EC37884::get_offset_of_password_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4483[1] =
{
U3CPrivateImplementationDetailsU3E_t08C4A899AB8B4B0856A9A62FFA6EB065F0AC8FCE_StaticFields::get_offset_of_DBA5166AD9DB9BA648C1032EBBD34DCD0D085B50023B839EF5C68CA1DB93A563_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4485[8] =
{
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_PointerPosition_0(),
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_PointerRotation_1(),
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_SourceLossRisk_2(),
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_SourceMitigationDirection_3(),
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_AirTap_4(),
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_EyeGazePosition_5(),
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_EyeGazeRotation_6(),
WindowsMRUsages_tA98D93A2FF54C5BF07398DA38B80925441B8EE86_StaticFields::get_offset_of_EyeGazeAvailable_7(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4490[2] =
{
Buffer_tE85548C535C4363D0AC9663D95018F2504FF4CA1::get_offset_of_size_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Buffer_tE85548C535C4363D0AC9663D95018F2504FF4CA1::get_offset_of_buffer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4492[4] =
{
XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E_StaticFields::get_offset_of_defaultId_0(),
XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E::get_offset_of_disposed_1(),
XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E::get_offset_of_storePtr_2(),
XRAnchorStore_t3B551351D373C269350F0CA7DFBFF7D708449F2E::get_offset_of_persistedNames_3(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4494[2] =
{
U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_tA89063C7E1F362FDC08D4BCCE850DEB5E4CAC46F_StaticFields::get_offset_of_U3CU3E9__1_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4496[1] =
{
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4497[3] =
{
WindowsMREmulationMode_t07D598B252E1A23575F2E1C20A83B5EE7177C878::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4499[4] =
{
ConnectionFlags_t82C9E54DA7D635C4E487A50EBD0D543DDEE4C7EC::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4500[25] =
{
ConnectionFailureReason_t9CC54D7835F2E83798455E6B844ADE00AC490429::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4501[4] =
{
ConnectionState_t822837C4E68564CFC7E96BE0958EB8FF895DF5F7::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4505[5] =
{
WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB::get_offset_of_m_Subsystem_1(),
WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB::get_offset_of_m_HoldGestureEvents_2(),
WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB::get_offset_of_m_ManipulationGestureEvents_3(),
WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB::get_offset_of_m_NavigationGestureEvents_4(),
WindowsMRGestureProvider_tDBD7C12B83EF772652CF8A0F8819F49F71102AFB::get_offset_of_m_TappedGestureEvents_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4507[2] =
{
WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60_StaticFields::get_offset_of_s_NextGUID_3(),
WindowsMRGestureSubsystem_t6A14702CA36CA83A8C8C7EF07711EF8EFE2D4D60::get_offset_of_m_WindowsMRProvider_4(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4508[8] =
{
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_U3CgestureSubsystemU3Ek__BackingField_4(),
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_onHoldChanged_5(),
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_onManipulationChanged_6(),
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_onNavigationChanged_7(),
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_onTappedChanged_8(),
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_onActivate_9(),
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_enableNavigationGesture_10(),
WindowsMRGestures_t21669F9A9F15DB28BD28EC3E13E23F081B30AF73::get_offset_of_enableManipulationGesture_11(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4509[2] =
{
WindowsMRHoldGestureEvent_tB7F4D8EC255D30FC4F840E070817CDF731B0320C::get_offset_of_m_Id_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WindowsMRHoldGestureEvent_tB7F4D8EC255D30FC4F840E070817CDF731B0320C::get_offset_of_m_State_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4510[3] =
{
WindowsMRManipulationGestureEvent_tBE7CECB1CE9CBC755847F544867A3FD16AAC08CD::get_offset_of_m_Id_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WindowsMRManipulationGestureEvent_tBE7CECB1CE9CBC755847F544867A3FD16AAC08CD::get_offset_of_m_State_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WindowsMRManipulationGestureEvent_tBE7CECB1CE9CBC755847F544867A3FD16AAC08CD::get_offset_of_m_CumulativeDelta_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4511[3] =
{
WindowsMRNavigationGestureEvent_t2EC0C04378BBDBD7D4CD89065DAA531E0387B9E9::get_offset_of_m_Id_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WindowsMRNavigationGestureEvent_t2EC0C04378BBDBD7D4CD89065DAA531E0387B9E9::get_offset_of_m_State_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WindowsMRNavigationGestureEvent_t2EC0C04378BBDBD7D4CD89065DAA531E0387B9E9::get_offset_of_m_NormalizedOffset_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4512[3] =
{
WindowsMRTappedGestureEvent_t6D7C9A5011BB7905FA7D06115A0CDF686D258E90::get_offset_of_m_Id_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WindowsMRTappedGestureEvent_t6D7C9A5011BB7905FA7D06115A0CDF686D258E90::get_offset_of_m_State_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WindowsMRTappedGestureEvent_t6D7C9A5011BB7905FA7D06115A0CDF686D258E90::get_offset_of_m_TappedCount_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4516[2] =
{
WindowsMRBuildSettings_t5B938D6CB0E0F7286B4337EF0BDE5528FB625851::get_offset_of_UsePrimaryWindowForDisplay_4(),
WindowsMRBuildSettings_t5B938D6CB0E0F7286B4337EF0BDE5528FB625851::get_offset_of_HolographicRemoting_5(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4518[2] =
{
SourceState_t0F3BADF7B18263C8C260E6805158F332AFA1317F::get_offset_of_version_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SourceState_t0F3BADF7B18263C8C260E6805158F332AFA1317F::get_offset_of_nativeState_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4522[2] =
{
UserDefinedSettings_t13075A9CE5747FC83A7F4F3EC5BFA53E0F73402F::get_offset_of_depthBufferType_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserDefinedSettings_t13075A9CE5747FC83A7F4F3EC5BFA53E0F73402F::get_offset_of_sharedDepthBuffer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4523[6] =
{
WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields::get_offset_of_s_SessionSubsystemDescriptors_5(),
WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields::get_offset_of_s_DisplaySubsystemDescriptors_6(),
WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields::get_offset_of_s_InputSubsystemDescriptors_7(),
WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields::get_offset_of_s_AnchorSubsystemDescriptors_8(),
WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields::get_offset_of_s_MeshSubsystemDescriptors_9(),
WindowsMRLoader_t46FCCC8CDD8C8F604D806C954A1BCF9EE817AF92_StaticFields::get_offset_of_s_GestureSubsystemDescriptors_10(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4524[4] =
{
WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F::get_offset_of_d_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F::get_offset_of_nx_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F::get_offset_of_ny_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMRPlane_t145DDAE58819337C56015603B976FAE8AE1A577F::get_offset_of_nz_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4525[10] =
{
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_cx_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_cy_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_cz_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_ex_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_ey_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_ez_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_ox_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_oy_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_oz_8() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMROrientedBox_t89B9CFE40A5BDF457D8CE1D54F09F73446D68454::get_offset_of_ow_9() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4526[4] =
{
WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4::get_offset_of_cx_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4::get_offset_of_cy_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4::get_offset_of_cz_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
WMRSphere_t8587086CFF4EB326D562ECD887085F5D5CEB3BB4::get_offset_of_r_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4527[3] =
{
MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703::get_offset_of_version_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703::get_offset_of_surfaceInfo_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MeshingData_tC880B07EE51E038020C40CC1B6A61863D78F8703::get_offset_of_surfaceMesh_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4529[1] =
{
WindowsMRExtensions_t03F9C7C197F339DE39B5DCB2D3C60968A0A39EC1_StaticFields::get_offset_of_wmrp_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4530[6] =
{
SpatialLocatability_t8CF515124A8D73BEDCFA7133166CF5DAB300B2DD::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4532[6] =
{
UnitySubsystemErrorCode_tAA5F8843DC35694D214A6CE631CD3CD5382AD846::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4533[2] =
{
UserDefinedSettings_t192979420533CDACE82D93D78FCD17264639368D::get_offset_of_depthBufferType_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
UserDefinedSettings_t192979420533CDACE82D93D78FCD17264639368D::get_offset_of_sharedDepthBuffer_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4535[3] =
{
DepthBufferOption_tAC9E22B0DD4E1FE942C6E0D77525A118FF7B6462::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4536[3] =
{
WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81::get_offset_of_DepthBufferFormat_4(),
WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81::get_offset_of_UseSharedDepthBuffer_5(),
WindowsMRSettings_tD6F827D24F45274A0B5B38D88702B85BC400DA81_StaticFields::get_offset_of_s_Settings_6(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4537[11] =
{
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CuserPresenceU3Ek__BackingField_45(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CtrackingStateU3Ek__BackingField_46(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CisTrackedU3Ek__BackingField_47(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CdevicePositionU3Ek__BackingField_48(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CdeviceRotationU3Ek__BackingField_49(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CleftEyePositionU3Ek__BackingField_50(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CleftEyeRotationU3Ek__BackingField_51(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CrightEyePositionU3Ek__BackingField_52(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CrightEyeRotationU3Ek__BackingField_53(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CcenterEyePositionU3Ek__BackingField_54(),
WMRHMD_t383FD84EEB4BA62C04C8023721C130C5CC05AA0C::get_offset_of_U3CcenterEyeRotationU3Ek__BackingField_55(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4538[8] =
{
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CtrackingStateU3Ek__BackingField_39(),
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CisTrackedU3Ek__BackingField_40(),
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CdevicePositionU3Ek__BackingField_41(),
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CdeviceRotationU3Ek__BackingField_42(),
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CdeviceVelocityU3Ek__BackingField_43(),
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CairTapU3Ek__BackingField_44(),
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CsourceLossRiskU3Ek__BackingField_45(),
HololensHand_t95681D1B89FD7FB988895CB96106B5BAE993D022::get_offset_of_U3CsourceLossMitigationDirectionU3Ek__BackingField_46(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4539[21] =
{
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CjoystickU3Ek__BackingField_39(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CtouchpadU3Ek__BackingField_40(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CgripU3Ek__BackingField_41(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CgripPressedU3Ek__BackingField_42(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CmenuU3Ek__BackingField_43(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CtriggerU3Ek__BackingField_44(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CtriggerPressedU3Ek__BackingField_45(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CjoystickClickedU3Ek__BackingField_46(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CtouchpadClickedU3Ek__BackingField_47(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CtouchpadTouchedU3Ek__BackingField_48(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CtrackingStateU3Ek__BackingField_49(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CisTrackedU3Ek__BackingField_50(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CdevicePositionU3Ek__BackingField_51(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CdeviceRotationU3Ek__BackingField_52(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CdeviceVelocityU3Ek__BackingField_53(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CdeviceAngularVelocityU3Ek__BackingField_54(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CbatteryLevelU3Ek__BackingField_55(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CsourceLossRiskU3Ek__BackingField_56(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CsourceLossMitigationDirectionU3Ek__BackingField_57(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CpointerPositionU3Ek__BackingField_58(),
WMRSpatialController_t41CF610FC58697A3F5D3070E0D2A5557915901C6::get_offset_of_U3CpointerRotationU3Ek__BackingField_59(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4542[4] =
{
UserRequestedTrackingMode_t8819718A514B8F5BFDE5E9EC48B19A8C3CFAA7D7::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4543[3] =
{
U3CRepeatInitializeCameraU3Ed__29_tC583A8F2976F8826BF90690BE727B808B7DBF078::get_offset_of_U3CU3E1__state_0(),
U3CRepeatInitializeCameraU3Ed__29_tC583A8F2976F8826BF90690BE727B808B7DBF078::get_offset_of_U3CU3E2__current_1(),
U3CRepeatInitializeCameraU3Ed__29_tC583A8F2976F8826BF90690BE727B808B7DBF078::get_offset_of_U3CU3E4__this_2(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4544[9] =
{
0,
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D::get_offset_of_m_CameraFloorOffsetObject_5(),
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D::get_offset_of_m_RequestedTrackingMode_6(),
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D::get_offset_of_m_TrackingOriginMode_7(),
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D::get_offset_of_m_TrackingSpace_8(),
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D::get_offset_of_m_CameraYOffset_9(),
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D::get_offset_of_m_CameraInitialized_10(),
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D::get_offset_of_m_CameraInitializing_11(),
CameraOffset_tF116356DDDCEE6182FF450579D3DDFCD9C8AF93D_StaticFields::get_offset_of_s_InputSubsystems_12(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4545[33] =
{
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_FinalPose_4(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_PoseSource_5(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_HeadPoseSource_6(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ElbowRestPosition_7(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_WristRestPosition_8(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ControllerRestPosition_9(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ArmExtensionOffset_10(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ElbowBendRatio_11(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_IsLockedToNeck_12(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_NeckPosition_13(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ElbowPosition_14(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ElbowRotation_15(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_WristPosition_16(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_WristRotation_17(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ControllerPosition_18(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_ControllerRotation_19(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_HandedMultiplier_20(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_TorsoDirection_21(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_m_TorsoRotation_22(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields::get_offset_of_DEFAULT_ELBOW_REST_POSITION_23(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields::get_offset_of_DEFAULT_WRIST_REST_POSITION_24(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields::get_offset_of_DEFAULT_CONTROLLER_REST_POSITION_25(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields::get_offset_of_DEFAULT_ARM_EXTENSION_OFFSET_26(),
0,
0,
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields::get_offset_of_SHOULDER_POSITION_29(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768_StaticFields::get_offset_of_NECK_OFFSET_30(),
0,
0,
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_xrNodeStateListOrientation_33(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_xrNodeStateListPosition_34(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_xrNodeStateListAngularAcceleration_35(),
ArmModel_t39656674D473CFAE8C6999E3F4015A5159B85768::get_offset_of_xrNodeStateListAngularVelocity_36(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4546[8] =
{
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_ShoulderRotationRatio_37(),
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_ElbowRotationRatio_38(),
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_WristRotationRatio_39(),
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_JointShiftAngle_40(),
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_JointShiftExponent_41(),
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_ShiftedShoulderRotationRatio_42(),
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_ShiftedElbowRotationRatio_43(),
SwingArmModel_tC06E94B56263DB28567C36129B412749D077D67F::get_offset_of_m_ShiftedWristRotationRatio_44(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4547[2] =
{
ArmModelTransition_t51924183E232CC5C4DE122484E82022D498B51A3::get_offset_of_m_KeyName_0(),
ArmModelTransition_t51924183E232CC5C4DE122484E82022D498B51A3::get_offset_of_m_ArmModel_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4548[2] =
{
ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4::get_offset_of_armModel_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ArmModelBlendData_t0714441C4689A4F6C389FC82FCB503CDD486E6D4::get_offset_of_currentBlendAmount_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4549[9] =
{
TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411::get_offset_of_m_CurrentArmModelComponent_37(),
TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411::get_offset_of_m_ArmModelTransitions_38(),
0,
0,
0,
0,
0,
TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411::get_offset_of_armModelBlendData_44(),
TransitionArmModel_t75DA87BA3E4E43A13419BC7C56EC4B64BBB49411::get_offset_of_currentBlendingArmModel_45(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4551[4] =
{
LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC::get_offset_of_rig_11(),
LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC::get_offset_of_camera_12(),
LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC::get_offset_of_rightArm_13(),
LocalPlayer_t09730FAB29B26CA8FB876A795074DE2D57566CEC::get_offset_of_leftArm_14(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4553[11] =
{
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_playerSpeed_11(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_moveSens_12(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_col_13(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_rb_14(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_playerRig_15(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_playerCamera_16(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_leftHand_17(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_rightHand_18(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_prevPlayerLoc_19(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_prevLeftHandLoc_20(),
VRPlayerController_t41A55C0B312C8DBBBFC4C58723328B385BD59817::get_offset_of_prevRightHandLoc_21(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4554[1] =
{
MirrorIgnoranceClient_t5BEF48B56327804E375D2CE44FBB2EAE43DA3DAD::get_offset_of__network_20(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4555[2] =
{
U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B_StaticFields::get_offset_of_U3CU3E9_0(),
U3CU3Ec_t021947710A52C7C30B93A3937FFB60C146178F4B_StaticFields::get_offset_of_U3CU3E9__11_0_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4556[4] =
{
0,
0,
MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03::get_offset_of__loopbackBuffers_27(),
MirrorIgnoranceCommsNetwork_t159B21296D84D3FBE663C42F579BCF3004C4DA03::get_offset_of__loopbackQueue_28(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4557[1] =
{
MirrorConn_t8A2EDC411EB4BDB60EC13A8137A908DB23CD4DBD::get_offset_of_Connection_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4558[1] =
{
U3CU3Ec_t43373DD98BA81931AC6B0FCA3015B4183636E979_StaticFields::get_offset_of_U3CU3E9_0(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4559[2] =
{
0,
DissonanceNetworkMessageExtensions_tA462231488F1D4D9AA051A561DEB8381A4EB14BF_StaticFields::get_offset_of_SerializationBuffers_1(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4560[1] =
{
DissonanceNetworkMessage_tC008674BC2207F195F535170BB89202C7DC1D89A::get_offset_of_Data_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4561[4] =
{
MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465_StaticFields::get_offset_of_Log_11(),
MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465::get_offset_of__comms_12(),
MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465::get_offset_of_U3CIsTrackingU3Ek__BackingField_13(),
MirrorIgnorancePlayer_t6E18519E44A4D2E7A54DDF4FCA807C45E1C67465::get_offset_of__playerId_14(),
};
IL2CPP_EXTERN_C const int32_t g_FieldOffsetTable4562[2] =
{
MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7::get_offset_of__network_11(),
MirrorIgnoranceServer_tE94EA60B33412DDC816A9C23513BFB75AD4F8BC7::get_offset_of__addedConnections_12(),
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
|
33d0f96b6db5a4a10965c3185dd26ce05bfaf102 | 873ccca946d4ac1af5d5f995b61c56d4e6144cdd | /src/PPF.cpp | 925866eabe505b3cb2a268b9dee28189c270dc92 | [] | no_license | wwd605075811/Traditonal_PPF | cb7a996f772548d94164d20c0e7408fded6ac5b7 | 33ef49ac41e14ab5a353903123fd7f9edb742838 | refs/heads/master | 2023-02-28T08:26:00.819973 | 2021-01-24T11:50:41 | 2021-01-24T11:50:41 | 234,305,954 | 10 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,117 | cpp | PPF.cpp | #include "../include/PPF.h"
PPF::PPF()
{
this->d_distance = 0.01;//1cm
Min_angle = -M_PI;
Max_angle = M_PI;
nAngle = 30;
d_angle = (Max_angle - Min_angle) / nAngle;
this->max_nDistance = 25;
this->max_hashIndex = 10000;
F1 = 0;
F2 = 0;
F3 = 0;
F4 = 0;
hashIndex = 0;
P1 = nAngle * nAngle * this->max_nDistance;
P2 = nAngle * nAngle;
P3 = nAngle;
P4 = 1;
}
void PPF::Set(float d_distance, int nAngle, int max_nDistance, int max_hashIndex)
{
this->d_distance = d_distance;
Min_angle = -M_PI;
Max_angle = M_PI;
d_angle = (Max_angle-Min_angle)/ nAngle;
this->max_nDistance = max_nDistance;
this->max_hashIndex = max_hashIndex;
F1 = 0;
F2 = 0;
F3 = 0;
F4 = 0;
P1 = nAngle * nAngle * this->max_nDistance;
P2 = nAngle * nAngle;
P3 = nAngle;
P4 = 1;
hashIndex = 0;
}
PPF::~PPF() {
}
int PPF::CreateFeatureHashIndex(pcl::PointNormal pn1, pcl::PointNormal pn2)
{
Vector3f pt1(pn1.x, pn1.y, pn1.z);
Vector3f normal1(pn1.normal_x, pn1.normal_y, pn1.normal_z);
Vector3f pt2(pn2.x, pn2.y, pn2.z);
Vector3f normal2(pn2.normal_x, pn2.normal_y, pn2.normal_z);
Vector3f d= (pt2 - pt1);
float dis = d.norm();
F1 = int(dis / d_distance);
if (F1 > this->max_nDistance)
return -1;
d.normalize();
float angel_d_n1 = atan2((d.cross(normal1)).norm(), d.dot(normal1));
F2 =int( (angel_d_n1 - Min_angle) / (Max_angle - Min_angle)*nAngle);
float angel_d_n2 = atan2((d.cross(normal2)).norm(), d.dot(normal2));
F3 = int((angel_d_n2 - Min_angle) / (Max_angle - Min_angle)*nAngle);
float angel_n1_n2 = atan2((normal1.cross(normal2)).norm(), normal1.dot(normal2));
F4= int((angel_n1_n2 - Min_angle) / (Max_angle - Min_angle)*nAngle);
hashIndex = (F1*P1 + F2*P2 + F3*P3+ F4*P4) % max_hashIndex;//求余法构造Hash索引
return hashIndex;
}
Eigen::Matrix4f PPF::RotateAboutAnyVector(Vector3f vec, float angle)
{
// normalize axis vector
vec.normalize();
float x =vec[0];
float y = vec[1];
float z =vec[2];
// compute rotation matrix
float c = cosf(angle);
float s = sinf(angle);
float v = 1 - c;
Matrix4f m; // Goldman公式
m(0, 0) = x*x*v + c; m(0, 1) = x*y*v - z*s; m(0, 2) = x*z*v + y*s;
m(1, 0) = x*y*v + z*s; m(1, 1) = y*y*v + c; m(1, 2) = y*z*v - x*s;
m(2, 0) = x*z*v - y*s; m(2, 1) = y*z*v + x*s; m(2, 2) = z*z*v + c;
m(0, 3) = m(1, 3) = m(2, 3) = 0;
m(3, 0) = m(3, 1) = m(3, 2) = 0; m(3, 3) = 1;
return m;
}
Eigen::Matrix4f PPF::CreateTransformation2AlignNormWithX(pcl::PointNormal pn)
{
Matrix4f translation_mat;
translation_mat.setIdentity();
translation_mat(0, 3) = -pn.x;
translation_mat(1, 3) = -pn.y;
translation_mat(2, 3) = -pn.z;
float thetaY;
Matrix4f rot_y;
thetaY = atan2(pn.normal_z, pn.normal_x);
rot_y(0,0) = cosf(thetaY); rot_y(0,1) = 0;
rot_y(0,2) = sinf(thetaY); rot_y(0,3) = 0;
rot_y(1,1) = 1; rot_y(1,0) = 0; rot_y(1,2) = 0; rot_y(1,3) = 0;
rot_y(2,0) = -1*rot_y(0,2); rot_y(2,1) = 0;
rot_y(2,2) = rot_y(0,0); rot_y(2,3) = 0;
rot_y(3,3) = 1; rot_y(3,0) = 0; rot_y(3,1) = 0; rot_y(3,2) = 0;
Vector4f n_tmp(pn.normal_x, pn.normal_y, pn.normal_z, 1);
n_tmp = rot_y * n_tmp;
float thetaZ;
Matrix4f rot_z;
thetaZ = -1*atan2(n_tmp[1], n_tmp[0]);
rot_z(0,0) = cosf(thetaZ); rot_z(0,2) = 0;
rot_z(1,0) = sinf(thetaZ); rot_z(1,2) = 0;
rot_z(0,1) = -1*rot_z(1,0); rot_z(0,3) = 0;
rot_z(1,1) = rot_z(0,0); rot_z(1,3) = 0;
rot_z(2,2) = 1; rot_z(2,0) = 0; rot_z(2,1) = 0; rot_z(2,3) = 0;
rot_z(3,3) = 1; rot_z(3,0) = 0; rot_z(3,1) = 0; rot_z(3,2) = 0;
Matrix4f T_tmp;
T_tmp = rot_z * rot_y;
Matrix4f T_m_g;
T_m_g = T_tmp * translation_mat;
return T_m_g;
}
float PPF::CreateAngle2TouchXZPostivePlane(pcl::PointNormal pn, pcl::PointNormal pn2)
{
Matrix4f transform_mat = CreateTransformation2AlignNormWithX(pn);
Vector4f pt(pn2.x, pn2.y, pn2.z,1.0);
Vector4f trans_pt = transform_mat * pt;
float x = trans_pt[0];
float y = trans_pt[1];
float z = trans_pt[2];
float rot_angle = atan2(y, z);
alpha = rot_angle;
return rot_angle;
}
Eigen::Matrix4f PPF::CreateTransformationFromModelToScene(pcl::PointNormal pm, pcl::PointNormal ps, float alpha)
{
Matrix4f Tmg = CreateTransformation2AlignNormWithX(pm);
Matrix4f Tsg = CreateTransformation2AlignNormWithX(ps);
Matrix4f Rxa = RotateAboutAnyVector(Vector3f(1, 0, 0), alpha);
Matrix4f trans_mat = Tsg.inverse()*Rxa*Tmg;
return trans_mat;
}
bool PPF::isRotationMatrix(Eigen::Matrix3f R) {
Eigen::Matrix3f Rt;
Rt = R.transpose();
Eigen::Matrix3f shouldBeIdentity = Rt * R;
Eigen::Matrix3f I = Matrix3f::Identity();
Eigen::Matrix3f difMat = I - Rt;
return difMat.norm()< 1e-6;
}
Eigen::Vector3f PPF::RotationMat2EulerAngles(Eigen::Matrix3f R) {
assert(!isRotationMatrix(R));
float sy = sqrt(R(0, 0) * R(0, 0) + R(1, 0) * R(1, 0));
bool singular = sy < 1e-6; // If
float x, y, z;
if (!singular)
{
x = atan2(R(2, 1), R(2, 2));
y = atan2(-R(2, 0), sy);
z = atan2(R(1, 0), R(0, 0));
}
else {
x = atan2(-R(1, 2), R(1, 1));
y = atan2(-R(2, 0), sy);
z = 0;
}
return Eigen::Vector3f(x, y, z);
}
Vector4f PPF::RotationMatrixToQuaternion(Matrix3f rotationMat) {
//cout << rotationMat << endl << endl;
//RotationMatrix to EulerAngles
Eigen::Vector3f ea1 = rotationMat.eulerAngles(2, 1, 0);
//EulerAngles to RotationMatrix
Eigen::Matrix3f R;
R = Eigen::AngleAxisf(ea1[0], Eigen::Vector3f::UnitZ())
* Eigen::AngleAxisf(ea1[1], Eigen::Vector3f::UnitY())
* Eigen::AngleAxisf(ea1[2], Eigen::Vector3f::UnitX());
//cout << R << endl << endl;
//RotationMatrix to Quaterniond
Eigen::Quaternionf q;
q = R;
Vector4f quaterniondVec;
quaterniondVec[0] = q.x();
quaterniondVec[1] = q.y();
quaterniondVec[2] = q.z();
quaterniondVec[3] = q.w();
return quaterniondVec;
}
Matrix4f PPF::RotationAndTranslation2Transformation(Matrix3f rotationMat, Vector3f translationVec) {
Matrix3f rot_mat = rotationMat;
Matrix4f trans_mat;
trans_mat.setIdentity();
for (int i = 0; i<3; i++)
for (int j = 0; j < 3; j++)
{
trans_mat(i, j) = rot_mat(i, j);
}
trans_mat(0, 3) = translationVec[0];
trans_mat(1, 3) = translationVec[1];
trans_mat(2, 3) = translationVec[2];
return trans_mat;
}
Matrix3f PPF::QuaternionToRotationMatrix(Vector4f quaterniondVec) {
Quaternionf q;
q.x() = quaterniondVec[0];
q.y() = quaterniondVec[1];
q.z() = quaterniondVec[2];
q.w() = quaterniondVec[3];
return q.toRotationMatrix();
}
Matrix4f PPF::EulerAnglesAndTranslation2Transformation(Vector3f EulerAngles, Vector3f translationVec)
{
Matrix3f rot_mat = EulerAnglesToRotationMatrix(EulerAngles);
Matrix4f trans_mat;
trans_mat.setIdentity();
for( int i=0;i<3;i++)
for (int j = 0; j < 3; j++)
{
trans_mat(i, j) = rot_mat(i, j);
}
trans_mat(0, 3) = translationVec[0];
trans_mat(1, 3) = translationVec[1];
trans_mat(2, 3) = translationVec[2];
return trans_mat;
}
Matrix3f PPF::EulerAnglesToRotationMatrix(Vector3f EulerAngles)
{
Vector3f theta = EulerAngles;
// 计算旋转矩阵的X分量
Matrix3f R_x;
R_x<<
1, 0, 0,
0, cos(theta[0]), -sin(theta[0]),
0, sin(theta[0]), cos(theta[0]);
// 计算旋转矩阵的Y分量
Matrix3f R_y;
R_y<<
cos(theta[1]), 0, sin(theta[1]),
0, 1, 0,
-sin(theta[1]), 0, cos(theta[1]);
// 计算旋转矩阵的Z分量
Matrix3f R_z;
R_z<<
cos(theta[2]), -sin(theta[2]), 0,
sin(theta[2]), cos(theta[2]), 0,
0, 0, 1;
// 合并
Matrix3f R = R_z * R_y * R_x;
return R;
} |
9e96ea3d32218850736939a239d975b744e3227c | 25410f53cedda16028429d84c01a1c4461de60bf | /libraries/AutoConnect/examples/Simple/Simple.ino | 2ac3f5857bc4b75dcaaf0ccec43fa72d7b5db856 | [
"MIT"
] | permissive | poplicola/Thotcon-0x9 | 772c7eda7f2a7176d1ff6d45d696bc6aa08c0dba | 7538c38c8e355e9cf6674a1d2aad90126b043db4 | refs/heads/master | 2020-03-15T17:56:59.108787 | 2018-06-11T23:56:31 | 2018-06-11T23:56:31 | 132,272,755 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,704 | ino | Simple.ino | /*
Simple.ino, Example for the AutoConnect library.
Copyright (c) 2018, Hieromon Ikasamo
https://github.com/Hieromon/AutoConnect
This software is released under the MIT License.
https://opensource.org/licenses/MIT
*/
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <time.h>
#include <AutoConnect.h>
ESP8266WebServer Server;
AutoConnect Portal(Server);
#define TIMEZONE (3600 * 9) // Tokyo
#define NTPServer1 "ntp.nict.jp" // NICT japan.
#define NTPServer2 "time1.google.com"
void rootPage() {
String content =
"<html>"
"<head>"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
"</head>"
"<body>"
"<h2 align=\"center\" style=\"color:blue;margin:20px;\">Hello, world</h2>"
"<h3 align=\"center\" style=\"color:gray;margin:10px;\">{{DateTime}}</h3>"
"<p style=\"padding-top:10px;text-align:center\">" AUTOCONNECT_LINK(COG_32) "</p>"
"</body>"
"</html>";
static const char *wd[7] = { "Sun","Mon","Tue","Wed","Thr","Fri","Sat" };
struct tm *tm;
time_t t;
char dateTime[26];
t = time(NULL);
tm = localtime(&t);
sprintf(dateTime, "%04d/%02d/%02d(%s) %02d:%02d:%02d.",
tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
wd[tm->tm_wday],
tm->tm_hour, tm->tm_min, tm->tm_sec);
content.replace("{{DateTime}}", String(dateTime));
Server.send(200, "text/html", content);
}
void setup() {
delay(1000);
Serial.begin(115200);
Serial.println();
Server.on("/", rootPage);
if (Portal.begin()) {
Serial.println("WiFi connected: " + WiFi.localIP().toString());
configTime(TIMEZONE, 0, NTPServer1, NTPServer2);
}
}
void loop() {
Portal.handleClient();
}
|
787c0cfbcd3e4c3c83701264a5d3db596cdfd2f8 | 843124c50abdb72602af0b61daad9660739e5368 | /src/render/OGLES2_0/CRenderTargetColorOGLES2_0.cpp | 1247116024ad856ec5066f48dc73e0bdaa7b1c24 | [
"MIT"
] | permissive | opengamejam/OpenJam | 8806e9dd7eaa5e90048851733c9dc24d4d1f2e5c | 565dd19fa7f1a727966b4274b810424e5395600b | refs/heads/master | 2020-04-03T21:30:34.937897 | 2017-06-19T12:41:44 | 2017-06-19T12:41:44 | 28,153,757 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,555 | cpp | CRenderTargetColorOGLES2_0.cpp | //
// CRenderTargetColorOGLES2_0.cpp
// OpenJam
//
// Created by Yevgeniy Logachev on 9/2/16.
//
//
#if defined(RENDER_OGLES2_0)
#include "CRenderTargetColorOGLES2_0.h"
using namespace jam;
// *****************************************************************************
// Constants
// *****************************************************************************
// *****************************************************************************
// Public Methods
// *****************************************************************************
CRenderTargetColorOGLES2_0::CRenderTargetColorOGLES2_0()
{
}
CRenderTargetColorOGLES2_0::~CRenderTargetColorOGLES2_0()
{
}
GLenum CRenderTargetColorOGLES2_0::ConvertInternalFormat(InternalFormats internalFormat)
{
switch (internalFormat) {
case ColorRGB565:
return GL_RGB565;
break;
#if GL_OES_rgb8_rgba8
case ColorRGBA8888:
return GL_RGBA8_OES;
break;
#endif
case ColorRGBA4444:
return GL_RGBA4;
break;
default:
// Unacceptible type of color buffer
assert(false);
break;
}
return GL_RGBA4;
}
// *****************************************************************************
// Protected Methods
// *****************************************************************************
// *****************************************************************************
// Private Methods
// *****************************************************************************
#endif /* defined(RENDER_OGLES2_0) */
|
886d992793fd76cc9b4a5501347d09616536a250 | 2b1b459706bbac83dad951426927b5798e1786fc | /src/camera/lib/image_utils/image_writer.h | f1aa27af83341b20b684d7e9603956a95e26ec36 | [
"BSD-2-Clause"
] | permissive | gnoliyil/fuchsia | bc205e4b77417acd4513fd35d7f83abd3f43eb8d | bc81409a0527580432923c30fbbb44aba677b57d | refs/heads/main | 2022-12-12T11:53:01.714113 | 2022-01-08T17:01:14 | 2022-12-08T01:29:53 | 445,866,010 | 4 | 3 | BSD-2-Clause | 2022-10-11T05:44:30 | 2022-01-08T16:09:33 | C++ | UTF-8 | C++ | false | false | 1,683 | h | image_writer.h | // Copyright 2019 The Fuchsia 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 SRC_CAMERA_LIB_IMAGE_UTILS_IMAGE_WRITER_H_
#define SRC_CAMERA_LIB_IMAGE_UTILS_IMAGE_WRITER_H_
#include <lib/fzl/vmo-pool.h>
namespace camera {
inline constexpr uint16_t kHighByteMask = 0xFF0;
inline constexpr uint16_t kLowHalfByteMask = 0x00F;
inline constexpr uint8_t kDoubleByteShift = 16;
inline constexpr uint8_t kByteShift = 8;
inline constexpr uint8_t kHalfByteShift = 4;
class ImageWriter {
public:
ImageWriter(uint32_t width, uint32_t height, size_t vmo_size)
: width_(width), height_(height), vmo_size_(vmo_size) {}
virtual ~ImageWriter() = default;
// Virtual method to be implemented by derived classes specific to each supported image format.
// Creates a vmo of appropriate size (depending on DmaFormat image size) and fills it according to
// the format corresponding to the derived class.
// Args:
// |vmo| Memory object handle to which the image will be written. This function will create a new
// vmo.
// |r| Maximum red pixel value.
// |g| Maximum green pixel value.
// |b| Maximum blue pixel value.
// Returns:
// Whether vmo creation succeeded.
virtual zx_status_t Write(zx::vmo* vmo, uint16_t r, uint16_t g, uint16_t b) = 0;
// Getter methods
uint32_t width() const { return width_; }
uint32_t height() const { return height_; }
size_t vmo_size() const { return vmo_size_; }
private:
const uint32_t width_, height_;
const size_t vmo_size_;
};
} // namespace camera
#endif // SRC_CAMERA_LIB_IMAGE_UTILS_IMAGE_WRITER_H_
|
13e8bcf601a4b4f7506e9d5b882eabfc25b0933d | 52076d51dfa8f41e0f318caf21221f73ed737b5a | /archive/274-H-Index.cc | 92570088cce691a3402899f22908b101285d8d05 | [] | no_license | kevinkwl/mLeetcode | 2371cbbced3bf29ef0948c3e6eb1f331aa663d10 | a0aa7c87aa1e95bac21467036b92c6adb5977a36 | refs/heads/master | 2020-04-07T10:03:50.381212 | 2018-10-11T11:41:23 | 2018-10-11T11:41:23 | 124,202,629 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 839 | cc | 274-H-Index.cc | // O(NlogN)
class Solution {
public:
int hIndex(vector<int>& citations) {
int N = citations.size();
if (N == 0) return 0;
sort(citations.begin(), citations.end());
for (int i = N; i >= 0; i--) {
if (citations[N-i] >= i && (N-i == 0 || citations[N-i-1] <= i))
return i;
}
return 0;
}
};
// O(N)
class Solution {
public:
int hIndex(vector<int>& citations) {
int N = citations.size();
int buckets[N+1] = {0};
for (int c : citations) {
if (c >= N)
buckets[N]++;
else
buckets[c]++;
}
int cnt = 0;
for (int i = N; i >= 0; i--) {
cnt += buckets[i];
if (cnt >= i)
return i;
}
return cnt;
}
};
|
65e15ee145697809627a52061edd6cfab4f3ebf8 | 1313f6dcc62044c77c370f764c67e7f9006b965d | /11953.cpp | d313b765e57f924d4ca62a8b5d707c09dac6c321 | [] | no_license | luckeciano/competitive-programming | b7955ff780ce8afa0d84368d283517b7b69329f9 | 4008f1201a25934a2a4cd63e233a56d46e66fea3 | refs/heads/master | 2020-04-21T04:03:55.251747 | 2019-02-05T20:00:54 | 2019-02-05T20:00:54 | 169,302,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,440 | cpp | 11953.cpp | #include <iostream>
using namespace std;
char grid [105][105];
int N; char aux;
int dr[] = {1,0,-1, 0}; // trick to explore an implicit 2D grid
int dc[] = {0,1, 0,-1}; // S,SE,E,NE,N,NW,W,SW neighbors
int floodfill(int r, int c, int R, int C) { // returns the size of CC
if (r < 0 || r >= R || c < 0 || c >= C) return 0; // outside grid
if (grid[r][c] == '.') return 0; // does not have color c1
int ans = 0;
if (grid[r][c] == 'x') ans = 1;
grid[r][c] = '.'; // now recolors vertex (r, c) to c2 to avoid cycling!
for (int d = 0; d < 4; d++)
ans += floodfill(r + dr[d], c + dc[d], R, C);
return ans; // the code is neat due to dr[] and dc[]
}
int main() {
int TC;
cin >> TC;
int cont = 0;
while (TC --) {
cont++;
cin >> N;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
cin >> aux; grid[i][j] = aux;
}
}
int alive = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (grid[i][j] == '@' || grid[i][j] == 'x') {
int ans = floodfill(i, j, N, N);
if (ans > 0) alive++;
}
}
}
cout << "Case " << cont << ": " << alive << endl;
}
}
|
ae8a8aca38f6c2c5c58b7afe3ee784188103a925 | 187ce9d4df99208c3db0e44f3db6a3df4ce34717 | /C++/340.longest-substring-with-at-most-k-distinct-characters.cpp | 5c29390ca800ec1064145ff348ce0b3b25161813 | [] | no_license | zhoujf620/LeetCode-Practice | 5098359fbebe07ffa0d13fe40236cecf80c12507 | 8babc83cefc6722b9845f61ef5d15edc99648cb6 | refs/heads/master | 2022-09-26T21:49:59.248276 | 2022-09-21T14:33:03 | 2022-09-21T14:33:03 | 222,195,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 964 | cpp | 340.longest-substring-with-at-most-k-distinct-characters.cpp | /*
* @lc app=leetcode.cn id=340 lang=cpp
*
* [340] Longest Substring with At Most k Distinct Characters
*
* Given a string, find the length of the longest substring T that contains at most k distinct characters.
*
* For example, Given s = “eceba” and k = 2,
*
* T is "ece" which its length is 3.
*
*/
#include <string>
#include <unordered_map>
#include <map>
#include <iostream>
using namespace std;
// @lc code=start
class Solution {
public:
int lengthOfLongestSubstringKDistinct(string s, int k) {
int ans = 0;
unordered_map<char, int> last_idx;
for (int left=0, right=0; right<s.size(); ++right) {
last_idx[s[right]] = right;
while (last_idx.size() > k) {
if (last_idx[s[left]] == left)
last_idx.erase(s[left]);
left ++;
}
ans = max(ans, right-left+1);
}
return ans;
}
};
// @lc code=end
|
84c95b2a95980f42e54a1fd0539761a8b005bb82 | 754cc9e0424740907af49075f7c1eb6c7cbdcf91 | /common/common/BitSet.h | 5c9d88598e5f1af7a771acfef8e3e47f2eb9ea78 | [] | no_license | zhaojinwei0124/Project-RC_Server | 2d0906bed6406ef02e83cb9260746ccd23c0996e | b9ccb3e0476d7c562a4affb25d247e87c8aed1be | refs/heads/master | 2021-01-21T15:38:14.408311 | 2017-01-26T03:16:29 | 2017-01-26T03:16:29 | 81,521,050 | 0 | 2 | null | 2017-02-10T03:12:07 | 2017-02-10T03:12:07 | null | MacCentralEurope | C++ | false | false | 2,442 | h | BitSet.h | #ifndef _BITSET_H_
#define _BITSET_H_
#include "BaseType.h"
#include "BaseLib.h"
template<int _BitSize>
class BitSet
{
public:
typedef BitSet<_BitSize> _MyselfClass;
public:
enum CONST_VALUE
{
BIT_SIZE = _BitSize, //bit◊‹ ż
BYTE_SIZE = (BIT_SIZE + 7) / 8, //Byte◊‹ ż
};
public:
BitSet<_BitSize>(void)
{
_MyselfClass::ClearAllBits();
}
~BitSet<_BitSize>(void)
{
}
public:
BitSet<_BitSize>(const BitSet<_BitSize> &r)
{
memcpy(m_BitBuffer, r.m_BitBuffer, BYTE_SIZE);
m_nMarkedBitCount = r.m_nMarkedBitCount;
}
BitSet<_BitSize> & operator=(const BitSet<_BitSize> &r)
{
memcpy(m_BitBuffer, r.m_BitBuffer, BYTE_SIZE);
m_nMarkedBitCount = r.m_nMarkedBitCount;
return *this;
}
public:
void MarkAllBits(void)
{
memset(m_BitBuffer, 0xff, BYTE_SIZE);
m_nMarkedBitCount = BIT_SIZE;
}
void ClearAllBits(void)
{
memset(m_BitBuffer, 0x00, BYTE_SIZE);
m_nMarkedBitCount = 0;
}
void MarkBit(int nIdx)
{
_MyselfClass::SetBit(nIdx, true);
}
void ClearBit(int nIdx)
{
_MyselfClass::SetBit(nIdx, false);
}
bool GetBit(int nIdx) const
{
if(0 <= nIdx && BIT_SIZE > nIdx)
{
return ((m_BitBuffer[nIdx>>3] & (1<<(nIdx & 0x7))) ? true : false);
}
return false;
}
void SetBit(int nIdx, bool bValue)
{
bool bOriginalValue = _MyselfClass::GetBit(nIdx);
if(0 <= nIdx && BIT_SIZE > nIdx)
{
if(bValue)
{
m_BitBuffer[nIdx>>3] |= 0x01<<(nIdx%8);
if (!bOriginalValue)
{
m_nMarkedBitCount++;
}
}
else
{
m_BitBuffer[nIdx>>3] &= ~(0x01<<(nIdx%8));
if (bOriginalValue)
{
m_nMarkedBitCount--;
}
}
}
}
public:
static int GetByteSize(void)
{
return BYTE_SIZE;
}
static int GetBitSize(void)
{
return BIT_SIZE;
}
public:
const tbyte * GetBitBuffer(void) const
{
return m_BitBuffer;
}
void SetBitBuffer(const tbyte *pBytes, int nSize)
{
if (pBytes != null_ptr && nSize == BYTE_SIZE)
{
memcpy(m_BitBuffer, pBytes, BYTE_SIZE);
_MyselfClass::CalcMarkedBitCount();
}
}
protected:
void CalcMarkedBitCount(void)
{
m_nMarkedBitCount = 0;
for (int i = 0; i < BIT_SIZE; i++)
{
if (_MyselfClass::GetBit(i))
{
m_nMarkedBitCount++;
}
}
}
public:
int GetMarkedBitCount(void) const
{
return m_nMarkedBitCount;
}
int GetClearedBitCount(void) const
{
return ((int)BIT_SIZE - m_nMarkedBitCount);
}
private:
tbyte m_BitBuffer[BYTE_SIZE];
int m_nMarkedBitCount;
};
#endif
|
0f7c774ab6b92b31e844991156c7f31425aac50d | 15c3ef211da2e28bf11d23131246e5eedc372a38 | /pract_work_1/Artyom's solution/application.h | 3255fd1e5ad20e5d6fd2526a6be8a90dc0874e4d | [] | no_license | Ksallle/ETU_OOP_6semestr | 1ada41c7faeb6edbe2d97f4eb20c8889cf424acd | e442151141dc2e196c7f7367292bc3961f58fcf3 | refs/heads/main | 2023-05-22T07:35:59.380399 | 2021-06-12T09:48:21 | 2021-06-12T09:48:21 | 341,162,260 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 180 | h | application.h | #ifndef TAPPLICATION_H
#define TAPPLICATION_H
#pragma once
class TApplication
{
private:
int menu();
public:
TApplication();
int exec();
};
#endif // TAPPLICATION_H
|
63da5d4d6cfc17fb18000c5605eef4ff1fbf65e7 | beac164f7f396038abe9772b54a4ba397006d4d4 | /src/state_machine.cpp | 6a550ef29bafa7795d4eb374c61f694e4582c655 | [] | no_license | Farzinsvi/Research-Track-2-First-Assignment | f023406574d7701172f6791bfbb10a6ad90fe7b4 | 643cdb72c7a02e991a33060f9a37e0e20782b6b0 | refs/heads/main | 2023-07-15T15:19:22.353186 | 2021-08-16T16:59:15 | 2021-08-16T16:59:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,665 | cpp | state_machine.cpp | /**
* \file state_machine.cpp
* \brief This file implement a state machine that start and stops a go to point goal
* \author Omotoye Shamsudeen Adekoya
* \version 0.01
* \date 20/07/2021
*
* \param start boolean to know if to start of stop the go to point action
*
* \details
*
*
* Services : <BR>
* ° /user_interface
* ° /position_server
*
* Service : <BR>
* /go_to_point
*
* Description :
*
* This node acts as a state machine for requesting the go to point server to go
* a point received from the user_interface client or cancel target based on the
* request sent from the user_interface
*
*/
#include "ros/ros.h"
#include "rt2_assignment1/Command.h"
#include "rt2_assignment1/Position.h"
#include "rt2_assignment1/RandomPosition.h"
bool start = false; ///< For setting the value of the request from the user interface
/**
* \brief callback function for handling the request sent from the user interface
* \param req the request sent from the client
* \param res the response to be sent from the server to the client
* \return always true as this function cannot fail.
*
* This function receives the request sent from the user interface client and set the value
* the start global variable.
*
*/
bool user_interface(rt2_assignment1::Command::Request &req, rt2_assignment1::Command::Response &res){
if (req.command == "start"){
start = true;
}
else {
start = false;
}
return true;
}
/**
* \brief main function
* \param argc
* \param argv
* \return always 0
*
* The main funtion initializes the node, service and action client object and waits to receive a request to
* the initialized service.
*/
int main(int argc, char **argv)
{
ros::init(argc, argv, "state_machine");
ros::NodeHandle n;
ros::ServiceServer service= n.advertiseService("/user_interface", user_interface);
ros::ServiceClient client_rp = n.serviceClient<rt2_assignment1::RandomPosition>("/position_server");
ros::ServiceClient client_p = n.serviceClient<rt2_assignment1::Position>("/go_to_point");
rt2_assignment1::RandomPosition rp;
rp.request.x_max = 5.0;
rp.request.x_min = -5.0;
rp.request.y_max = 5.0;
rp.request.y_min = -5.0;
rt2_assignment1::Position p;
while(ros::ok()){
ros::spinOnce();
if (start){
client_rp.call(rp);
p.request.x = rp.response.x;
p.request.y = rp.response.y;
p.request.theta = rp.response.theta;
std::cout << "\nGoing to the position: x= " << p.request.x << " y= " <<p.request.y << " theta = " <<p.request.theta << std::endl;
client_p.call(p);
std::cout << "Position reached" << std::endl;
}
}
return 0;
}
|
10bd36d65db58b348e71c3c480b0b7bc451cbe00 | 601f527d3223f5dd41e999b6c33d6eedc14faf90 | /src/lexer.hpp | 9efb818c07b38de742ea77d7138e0c2f2b6b0f50 | [] | no_license | alexgrejuc/interpreter | ee97e19658683d3f1b96c59c4226523ffd1c8ee7 | 7c0d56f2120be8036ac9b35b308042efb9fb45cb | refs/heads/master | 2022-04-21T18:27:46.671106 | 2020-04-20T01:15:35 | 2020-04-20T01:15:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 607 | hpp | lexer.hpp | #ifndef LEXER_HPP
#define LEXER_HPP
#include "token.hpp"
#include <string>
#include <map>
using std::string;
using std::map;
/* lexical analysis: tokenizes the input string */
class Lexer{
private:
string text;
unsigned int pos;
Token current_token;
map<string, Token> reserved_keywords;
void reserve_keywords();
char peek();
Token identify();
public:
Lexer();
Lexer(string text);
// returns non-whitespace token or EOF token from text
Token get_next_token();
};
#endif
|
5a7a37378e8d66491d95aa32b00916efcc3399bc | 260e5dec446d12a7dd3f32e331c1fde8157e5cea | /Indi/SDK/Indi_FPV_AnimBP2_classes.hpp | 5f08b2f759083bad3564964cf1d41088570dc6d0 | [] | no_license | jfmherokiller/TheOuterWorldsSdkDump | 6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0 | 18a8c6b1f5d87bb1ad4334be4a9f22c52897f640 | refs/heads/main | 2023-08-30T09:27:17.723265 | 2021-09-17T00:24:52 | 2021-09-17T00:24:52 | 407,437,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,211 | hpp | Indi_FPV_AnimBP2_classes.hpp | #pragma once
// TheOuterWorlds SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "Indi_FPV_AnimBP2_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// AnimBlueprintGeneratedClass FPV_AnimBP2.FPV_AnimBP2_C
// 0x52DA (0x597A - 0x06A0)
class UFPV_AnimBP2_C : public UFPVAnimInstance
{
public:
unsigned char UnknownData00[0x52DA]; // 0x06A0(0x52DA) MISSED OFFSET
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("AnimBlueprintGeneratedClass FPV_AnimBP2.FPV_AnimBP2_C");
return ptr;
}
void STATIC_IsPlayingMontageOnDeath(bool* Result);
void STATIC_IsPlayingMontageOnFullyBody(bool* Result);
void STATIC_UpdateWeaponAnimations();
void STATIC_UpdateVariables(float Delta);
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_744D66AD4264B2B3A2D923A82A5CC216();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_011FBCB9470888D366327097D2C4622F();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_EB0D7049426D41B2D8C815B69BF930D9();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_6FEE0C0E4DCC01A75FE539ADF7E2A543();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_475B389544A2AE58A9C9C0BB7B43661F();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_438867824E92E6A6126A1C999B7E6622();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_DB3802D942E00737D748CAAAE07D1BC7();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_3F9D194F4DA0ECDAF2E13EA148863A25();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_0D7D5146408A922B06762DBB9AAC008A();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_5A48FE094EB2D486EB747BBBA5D0BEB2();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_D6A48A63436A54FF31E53BB2D5C1C100();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_BA43C67746C048D61862349365F4DF26();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_BlendListByBool_E257E04645621D0B5AA855BB140E4EAC();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_8D99D3404442856569F87FAC93FF519F();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_RotationOffsetBlendSpace_5469D11B490CFD934EACD6ACDAC3C7C9();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_D4050A8149AACE25F4284489BEFFEE40();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_1452710C488AF2AB4C8A168208ADB031();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_A87EA53B4241AD8FB018EABA19D925BC();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_34C09A16446CAD108D2D18A4CDD4C6B2();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_8DD794D343413FC836851E8147525ED0();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_C16E017D4032063B009869A89CC97F3B();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_700F798D4CF1CE0090E113B77AC51F78();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_LayeredBoneBlend_CDDE03BF431D63B906681F9085DB2FF7();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_C808514449864397697391AD712402F7();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_ModifyBone_8C768CE6486F081FDDC89F870BF05669();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_02297E7A46C7333EF5B2AF83448E7DDA();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_79F906B042635C33C671639AA7359422();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_ModifyBone_92ECF0944465C24CD12526852F98C86F();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_RotationOffsetBlendSpace_970AC589472C3955744193AA9FEE4BA0();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_BlendListByBool_12BF9B7B480C92B19A4D0CA8FBDF9C90();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_A3DB140E4847E00472F7478BEF5BACB1();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_BlendListByBool_70B3E24542E3D403D11C67BC1CCF7D03();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_RotationOffsetBlendSpace_BB67755249EB784741D586915A6A2638();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_9F63D97B494933A39EB154986D74A53A();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_558B2A9043B0627DA0E543B0E6A2B300();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_FF847FC74D1FB979EDAB279968197FC3();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_CA437A75462404B364BF5BB335072D3B();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_SequencePlayer_A37382D748FA59995EFB9C9E59535F2D();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_FBE345234802265512F99DBA843CE40C();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_95F99F3845AC3F1A3EDD89AA5E70D42C();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_LayeredBoneBlend_C6D616EA433282CF9F287A8474513C2F();
void STATIC_EvaluateGraphExposedInputs_ExecuteUbergraph_FPV_AnimBP2_AnimGraphNode_TransitionResult_744857BB4685E5589ADCBB971D2BEA7B();
void STATIC_BlueprintInitializeAnimation();
void STATIC_OnJumped();
void STATIC_OnLanded(float FallDistance);
void STATIC_OnStartCrouch();
void STATIC_OnStopCrouch();
void STATIC_OnDodged(EDodgeDirection DodgeDirection);
void STATIC_OnBlockStart();
void STATIC_OnBlockEnd();
void STATIC_BlueprintUpdateAnimation(float* DeltaTimeX);
void STATIC_OnNewWeaponAnimations(class UWeaponAnimations** NewWeaponAnimations);
void STATIC_OnBlockHit(bool bBlockedMeleeAttack);
void STATIC_ExecuteUbergraph_FPV_AnimBP2(int EntryPoint);
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
|
578b3c448bb9f7c031af00ec99318d335dac0ead | dea72d23b20266996f3bbeba9c77abdec9e7491c | /ui/dataset.cpp | 6fda0bf092e2237745a878cff96922e21f6a2b75 | [] | no_license | jonathon-love/BEESTS | 35248e34f2b657c6c77b5c79063a9322724db0d8 | 86ddc65e55c8d94811ff563c5af7c9ce192de195 | refs/heads/master | 2020-04-06T21:56:45.777157 | 2015-12-31T02:03:16 | 2015-12-31T02:03:16 | 23,144,640 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | cpp | dataset.cpp | #include "dataset.h"
#include "csv.h"
#include <QDebug>
#include <vector>
using namespace std;
/*
* DataSet is implemented as a set of columns
*/
DataSet::DataSet()
{
m_columnCount = 0;
m_rowCount = 0;
}
DataSet::DataSet(std::string path)
{
m_columnCount = 0;
m_rowCount = 0;
CSV csv(path);
csv.open();
vector<string> columns = vector<string>();
vector<vector<string> > cells = vector<vector<string> >();
csv.readLine(columns);
int columnCount = columns.size();
for (int i = 0; i < columnCount; i++) // columns
cells.push_back(vector<string>());
vector<string> line;
bool success = csv.readLine(line);
while (success)
{
int i = 0;
for (; i < line.size() && i < columnCount; i++)
cells[i].push_back(line[i]);
for (; i < columnCount; i++)
cells[i].push_back(string());
line.clear();
success = csv.readLine(line);
}
m_columnCount = columnCount;
if (cells.size() > 0)
m_rowCount = cells.at(0).size();
else
m_rowCount = 0;
m_columns = columns;
m_cells = cells;
csv.close();
}
DataSet::~DataSet()
{
}
string DataSet::getCell(int row, int column) {
return m_cells[column][row];
}
int DataSet::getRowCount() {
return m_rowCount;
}
int DataSet::getColumnCount() {
return m_columnCount;
}
string DataSet::getColumnHeader(int column) {
return m_columns[column];
}
|
de56ec249aed888342838b02f257dd26718ea730 | 1abe8c48fc8d642750d3d6adb3a2d4f794e53286 | /src/PrintHandler.cpp | 9b122c103abf8112422d3e16311e55fbd0f041e9 | [
"MIT"
] | permissive | ststeiger/cef-pdf | 38442d5373448bc7cdfdffd01858cdbb927882d6 | ff4ba7399109f2e3d855dc4fba5a21d92f28e16a | refs/heads/master | 2020-04-28T06:12:39.262986 | 2019-03-27T16:33:42 | 2019-03-27T16:33:42 | 175,048,374 | 2 | 0 | MIT | 2019-03-11T17:14:53 | 2019-03-11T17:14:52 | null | UTF-8 | C++ | false | false | 1,166 | cpp | PrintHandler.cpp | #include "PrintHandler.h"
#include "include/wrapper/cef_helpers.h"
namespace cefpdf
{
PrintHandler::PrintHandler() {}
// CefPrintHandler methods:
// -------------------------------------------------------------------------
CefSize PrintHandler::GetPdfPaperSize(int device_units_per_inch)
{
DLOG(INFO)
<< "PrintHandler::GetPdfPaperSize"
<< " with device_units_per_inch: " << device_units_per_inch;
return CefSize(device_units_per_inch * 100, device_units_per_inch * 100 * 2);
}
bool PrintHandler::OnPrintDialog(
CefRefPtr<CefBrowser> browser,
bool has_selection,
CefRefPtr<CefPrintDialogCallback> callback
)
{
return true;
}
bool PrintHandler::OnPrintJob(
CefRefPtr<CefBrowser> browser,
const CefString& document_name,
const CefString& pdf_file_path,
CefRefPtr<CefPrintJobCallback> callback
)
{
return true;
}
void PrintHandler::OnPrintReset(CefRefPtr<CefBrowser> browser)
{
}
void PrintHandler::OnPrintSettings(
CefRefPtr<CefBrowser> browser,
CefRefPtr<CefPrintSettings> settings,
bool get_defaults
)
{
}
void PrintHandler::OnPrintStart(CefRefPtr<CefBrowser> browser)
{
}
} // namespace cefpdf
|
915c613ecac441344d53403455de4b5311605925 | b05f1cbd207e22f12e7f3076bf56181787b68085 | /ACM solved the question with Corresponding number/5mC.cpp | 8ef0dbe1f8b858e48bc30593530b942331eeb674 | [] | no_license | NikoSoftware/Algorithm | e76db0556acdcfedd06d027a5642c6472254c50e | ceff66d6d6839ae8deb802e5e2e7e31c02025115 | refs/heads/master | 2020-12-30T14:45:13.903814 | 2017-05-12T11:54:42 | 2017-05-12T11:54:42 | 91,084,931 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 361 | cpp | 5mC.cpp | #include<stdio.h>
#include<string.h>
bool vis[1000];
char map[1000][1000];
int main()
{
int n,m,i,j;
while(scanf("%d%d",&n,&m)!=EOF)
{
for(i=0;i<n;i++)
{
scanf("%s",map[i]);
for(j=0;j<n;j++)
{
if(map[i][j]=='.')
vis=1;
}
}
}
return 0;
}
|
dd71ab439ad5424f8024cdef5014feb7cd7148c9 | 8173dcd5964b792551d99289a7f57cdd30ba4747 | /skp2tgcDlg.h | d783ce8a2c707b16ff1ed8cde8d7215ea17da732 | [] | no_license | mbanquiero/skp2tgc | 2fbd1632fe7e026f24bd36e76e47cd4df4ef87ef | 3a7dcade7a1e502c42ffec9ba4e5582b9c63910a | refs/heads/master | 2021-01-10T07:31:57.043760 | 2016-03-11T11:37:09 | 2016-03-11T11:37:09 | 53,663,046 | 1 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 2,492 | h | skp2tgcDlg.h |
// skp2tgcDlg.h: archivo de encabezado
//
#pragma once
#include <slapi/slapi.h>
#include <slapi/geometry.h>
#include <slapi/initialize.h>
#include <slapi/unicodestring.h>
#include <slapi/model/model.h>
#include <slapi/model/entities.h>
#include <slapi/model/face.h>
#include <slapi/model/edge.h>
#include <slapi/model/vertex.h>
#include <slapi/model/mesh_helper.h>
#include <slapi/transformation.h>
#include <slapi/model/component_instance.h>
#include <slapi/model/component_definition.h>
#include <slapi/model/drawing_element.h>
#include <slapi/model/material.h>
#include <slapi/model/texture.h>
#include <slapi/model/group.h>
struct VERTEX
{
float x,y,z; // posicion
float nx,ny,nz; // normal
float u,v; // text coords
};
// helpers
void transformPosition(SUPoint3D *v , SUTransformation *T);
void transformNormal(SUVector3D *v , SUTransformation *T);
void transformMultiply(SUTransformation *A, SUTransformation *B , SUTransformation *C);
void transposeMatrix(SUTransformation *T);
void invertMatrix(SUTransformation *T);
SUVector3D cross(SUVector3D a, SUVector3D b);
double dot(SUVector3D p , SUVector3D q);
void Normalizar(SUVector3D &A);
#define SWAP(a,b) aux=a;a=b;b=aux
void crear_color_bitmap(char *fname,BYTE r,BYTE g,BYTE b);
char *replace(char *string,char c,char to);
// Cuadro de diálogo de Cskp2tgcDlg
class Cskp2tgcDlg : public CDialogEx
{
// Construcción
public:
Cskp2tgcDlg(CWnd* pParent = NULL); // Constructor estándar
// Datos del cuadro de diálogo
enum { IDD = IDD_SKP2TGC_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // Compatibilidad con DDX/DDV
public:
DWORD *face_attr;
VERTEX *vertex_buffer;
int cant_v;
int cant_faces;
int cant_mat;
char mat_names[MAX_PATH][256];
char model_name[MAX_PATH];
int nro_mat_instancia; // global, nro de material de la instancia
// Implementación
protected:
HICON m_hIcon;
// Funciones de asignación de mensajes generadas
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedImportar();
void exportar(char *fname);
void writeEntities(SUEntitiesRef entities, SUTransformation T);
void writeMaterial(FILE *fp,SUMaterialRef material,char *material_name, int nro_mat);
int que_material(char *material_name);
void resize(float height);
afx_msg void OnBnClickedDownloadTest();
};
|
e15899ff4b625cb98b36e6865bf2f78954a6b25d | 0dd3f3ec40f3d5b85582e4bca3e406790765375c | /Inheritance/p13.cpp | efb6c9e4aa9312d887c62d99e2a543b090981406 | [] | no_license | rayray2002/cpl | 0c0d67d1c7efa793bb847f2bfcdea9535a9947ef | d6641004e670379901c06993a73d0593365c8569 | refs/heads/main | 2023-02-14T16:00:24.046015 | 2020-12-29T08:29:36 | 2020-12-29T08:29:36 | 317,732,019 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 40 | cpp | p13.cpp | //
// Created by Ray on 2020/12/28.
//
|
92844c60183baf4f31305fc14348d3e1a2f87892 | 8215b7b97a82d7d0a88dea0a088bc62f809ac9f3 | /io/io.cpp | d608e26af770a9925ae7b024d93853f80dd027bc | [] | no_license | TestProgramLanguage/tpl | 59d71f7a585ce41ad98b1ade0f969337ed354cf5 | 1ea3ead7ff4e1e9b21d34eae5b21d0525edbd04a | refs/heads/master | 2018-01-08T09:24:51.866010 | 2016-05-13T15:52:52 | 2016-05-13T15:52:52 | 54,628,082 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 645 | cpp | io.cpp | //**********************************************************************
//** **
//** (C)Copyright Hunter_Chen xhfch@126.com 2009-04 **
//** **
//** All Rights Reserved. **
//** **
//**********************************************************************
#include "io.h"
#if IO_DEBUG
int main()
{
printf("io.cpp int main()\n");
ACCIO accio;
accio.ByteReadIO(0x500);
return 0;
}
#endif |
4474eb66dec42ba1d7a5e29879d362389e9e0393 | 69dd4bd4268e1c361d8b8d95f56b5b3f5264cc96 | /GPU Pro5/06_Compute/Object-order Ray Tracing for Fully Dynamic Scenes/Application/RayTracing/header/RayTracing/RenderableEffectDriver.h | 2e9696546a21dacf6197b86b112102366e2338aa | [
"MIT",
"BSD-3-Clause"
] | permissive | AnabaenaQing/Source-Code_ShaderX_GPU-Pro_GPU-Zen | 65c16710d1abb9207fd7e1116290336a64ddfc86 | f442622273c6c18da36b61906ec9acff3366a790 | refs/heads/master | 2022-12-15T00:40:42.931271 | 2020-09-07T16:48:25 | 2020-09-07T16:48:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,159 | h | RenderableEffectDriver.h | #pragma once
#include "Tracing.h"
#include <beScene/beRenderableEffectDriver.h>
#include "TracingEffectBinder.h"
#include <lean/smart/scoped_ptr.h>
namespace app
{
namespace tracing
{
class TracingEffectBinderPool;
/// Renderable effect driver.
class RenderableEffectDriver : public besc::RenderableEffectDriver
{
protected:
TracingEffectBinder m_tracingBinder; ///< Tracing effect binder.
public:
/// Constructor.
RenderableEffectDriver(const beGraphics::Technique &technique, besc::RenderingPipeline *pipeline,
besc::PerspectiveEffectBinderPool *perspectivePool, TracingEffectBinderPool *tracingPool,
uint4 flags = 0);
/// Destructor.
~RenderableEffectDriver();
/// Draws the given pass.
void Render(const besc::QueuedPass *pPass, const besc::RenderableEffectData *pRenderableData, const besc::Perspective &perspective,
lean::vcallable<DrawJobSignature> &drawJob, beGraphics::StateManager &stateManager, const beGraphics::DeviceContext &context) const LEAN_OVERRIDE;
/// Gets the tracing effect binder.
LEAN_INLINE const TracingEffectBinder& GetTracingBinder() const { return m_tracingBinder; }
};
} // namespace
} // namespace |
fdd24aa578c7c9eabbd707f3fd5b4176d4e76f88 | aab7eafab5efae62cb06c3a2b6c26fe08eea0137 | /preparejpsipiweights/preparejpsipiweights_FUMSB_NOTsimultaneous_before_combibdt/fitExclude.cc | 14b15fe9a29ad8611b439df7fda242ac894c22fe | [] | no_license | Sally27/B23MuNu_backup | 397737f58722d40e2a1007649d508834c1acf501 | bad208492559f5820ed8c1899320136406b78037 | refs/heads/master | 2020-04-09T18:12:43.308589 | 2018-12-09T14:16:25 | 2018-12-09T14:16:25 | 160,504,958 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,112 | cc | fitExclude.cc | #include "TH1.h"
#include "TF1.h"
#include "TList.h"
Bool_t reject;
Double_t fline(Double_t *x, Double_t *par)
{
if (reject && x[0] > 2.5 && x[0] < 3.5) {
TF1::RejectPoint();
return 0;
}
return par[0] + par[1]*x[0];
}
void fitExclude() {
// Create a source function
TF1 *f1 = new TF1("f1","[0] +[1]*x +gaus(2)",0,5);
f1->SetParameters(6,-1,5,3,0.2);
// create and fill histogram according to the source function
TH1F *h = new TH1F("h","background + signal",100,0,5);
h->FillRandom("f1",2000);
TF1 *fl = new TF1("fl",fline,0,5,2);
fl->SetParameters(2,-1);
//fit only the linear background excluding the signal area
reject = kTRUE;
h->Fit(fl,"0");
reject = kFALSE;
//store 2 separate functions for visualization
TF1 *fleft = new TF1("fleft",fline,0,2.5,2);
fleft->SetParameters(fl->GetParameters());
h->GetListOfFunctions()->Add(fleft);
gROOT->GetListOfFunctions()->Remove(fleft);
TF1 *fright = new TF1("fright",fline,3.5,5,2);
fright->SetParameters(fl->GetParameters());
h->GetListOfFunctions()->Add(fright);
gROOT->GetListOfFunctions()->Remove(fright);
h->Draw();
}
|
564089bda5feaf1d78c166eaff0c8563b8445c22 | b04a481521d3fd679254035f4bf751a29a6393cd | /Coktel/Fresa.cpp | 702e9ca6188f3a54137635ab59aea95767fb4fed | [] | no_license | Igneel-san/cocktel | 349242485e627a1bb5c45e86ac04b89ff6542546 | 44d6d6426815dc6fa2c94e9654982402844f859f | refs/heads/master | 2021-05-19T00:20:47.197001 | 2020-03-31T03:45:05 | 2020-03-31T03:45:05 | 251,491,688 | 0 | 0 | null | 2020-03-31T03:45:06 | 2020-03-31T03:32:12 | C++ | UTF-8 | C++ | false | false | 229 | cpp | Fresa.cpp | #include "Fresa.h"
Fresa::Fresa(string nombre) :Fruta(nombre, 1) {
cout << "constructor fresa" << endl;
}
Fresa::Fresa() {
// TODO Auto-generated constructor stub
}
Fresa::~Fresa() {
// TODO Auto-generated destructor stub
} |
9e4426f97bfe2343e9db9d34766b68dfbf3c70cb | 2ef9e94ac152d6b52cea8606dd313b4b9e603f85 | /PlatinenProduktSys/Firma.cpp | c137a85d88c9ed3cb4e03ff6af87921bea4838f6 | [] | no_license | amendy/PlatinenProduktSys | b1230f3c4e5dfe841fad045648286be26c5e0d95 | ab97d124425a029c91630cf8228890777b265322 | refs/heads/master | 2020-07-30T18:34:22.817536 | 2019-09-23T09:39:22 | 2019-09-23T09:39:22 | 210,317,965 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | cpp | Firma.cpp | #include <iostream>
#include <list>
#include <string>
#include "Node.h"
#include "Firma.h"
using namespace std;
Firma::Firma(string name, string dienstleistung):Node(name) { /* deklariere hier alles */
m_name = name;
m_dienstleistung = dienstleistung;
}
void Firma::setUmsatz(double umsatz){
m_umsatz = m_umsatz + umsatz;
}
|
032e58034cb820ca2b1f1a7d560de028c544c861 | 02609e2fcfe3d5b55bd6fc93821cadce4444804c | /src/JasonsTileManager.cpp | 8faa737893c8996db71a1f17f8183aa9004b3a3e | [] | no_license | psyfb2/Age-Of-Empires-2D | 918a5837163179d33e187376d3ce3ac8ef914710 | 8a6df95edb993eff9bad6007e8a2a0f539243112 | refs/heads/master | 2021-06-30T07:22:58.553371 | 2020-10-22T22:31:42 | 2020-10-22T22:31:42 | 183,983,448 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,015 | cpp | JasonsTileManager.cpp | #include "header.h"
// This is Jason's version of the MyTileManager class from Demo A.
// It may be a useful comparison for your own class?
#include "JasonsTileManager.h"
JasonsTileManager::JasonsTileManager()
: TileManager( 20, 20, 15, 15 )
{
}
JasonsTileManager::~JasonsTileManager()
{
}
void JasonsTileManager::virtDrawTileAt(
BaseEngine* pEngine, // We don't need this but maybe a student will so it is here to use if needed
DrawingSurface* pSurface,
int iMapX, int iMapY,
int iStartPositionScreenX, int iStartPositionScreenY) const
{
int iMapValue = getMapValue(iMapX, iMapY);
unsigned int iColour = (0x100000 * (iMapX & 1)
+ 0x001000 * (iMapX & 2)
+ 0x000010 * (iMapX & 4)
+ 0x010000 * (iMapY & 1)
+ 0x000100 * (iMapY & 2)
+ 0x000001 * (iMapX & 4)) * (iMapValue % 16);
pSurface->drawOval (
iStartPositionScreenX, // Left
iStartPositionScreenY, // Top
iStartPositionScreenX + getTileWidth() - 1, // Right
iStartPositionScreenY + getTileHeight() - 1, // Bottom
iColour);
}
|
65ecd559c65ca38c87c14f1690fe27671ca6c93a | 38b9daafe39f937b39eefc30501939fd47f7e668 | /tutorials/2WayCouplingOceanWave3D/EvalResults180628-fully/88.6/U | 665afd37af85871173db8a502a4d7ac6ea433c19 | [] | no_license | rubynuaa/2-way-coupling | 3a292840d9f56255f38c5e31c6b30fcb52d9e1cf | a820b57dd2cac1170b937f8411bc861392d8fbaa | refs/heads/master | 2020-04-08T18:49:53.047796 | 2018-08-29T14:22:18 | 2018-08-29T14:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 526,610 | U | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "88.6";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
21420
(
(0.419493 -0.00114292 0)
(0.429328 -0.000987205 0)
(0.438352 -0.000801237 0)
(0.445455 -0.000601011 0)
(0.450473 -0.000389288 0)
(0.45332 -0.000166705 0)
(0.45385 5.73715e-05 0)
(0.452246 0.000275998 0)
(0.448239 0.000503567 0)
(0.44211 0.000710277 0)
(0.43392 0.000910813 0)
(0.423813 0.00109902 0)
(0.411975 0.00124934 0)
(0.398611 0.00139777 0)
(0.383944 0.00150009 0)
(0.368209 0.00160267 0)
(0.351632 0.00168599 0)
(0.334443 0.0017167 0)
(0.316877 0.0017533 0)
(0.299139 0.00177176 0)
(0.281421 0.00174235 0)
(0.263916 0.00172225 0)
(0.246778 0.00168775 0)
(0.230137 0.00161792 0)
(0.214114 0.00155855 0)
(0.198802 0.00147401 0)
(0.184273 0.00139924 0)
(0.170576 0.00131928 0)
(0.157739 0.00122683 0)
(0.145782 0.00114213 0)
(0.134707 0.00105665 0)
(0.124506 0.000967953 0)
(0.115162 0.000885017 0)
(0.106654 0.00080221 0)
(0.098953 0.000724367 0)
(0.0920268 0.000649313 0)
(0.0858419 0.000576896 0)
(0.0803635 0.000508385 0)
(0.0755562 0.000443048 0)
(0.0713857 0.000380867 0)
(0.0678187 0.000322151 0)
(0.0648258 0.000267084 0)
(0.0623813 0.000214386 0)
(0.0604618 0.000163109 0)
(0.0590439 0.000113557 0)
(0.0581024 6.53451e-05 0)
(0.0576147 1.78352e-05 0)
(0.057589 -3.00691e-05 0)
(0.0580482 -7.70877e-05 0)
(0.0589945 -0.000122851 0)
(0.060423 -0.00017056 0)
(0.062334 -0.000217219 0)
(0.0647372 -0.000267419 0)
(0.0676544 -0.000318031 0)
(0.0710831 -0.000366991 0)
(0.0750401 -0.000422618 0)
(0.0795858 -0.000480004 0)
(0.0846901 -0.000532931 0)
(0.0904024 -0.000599055 0)
(0.0967767 -0.000661079 0)
(0.103837 -0.000735926 0)
(0.111697 -0.000812422 0)
(0.120355 -0.00088915 0)
(0.129867 -0.000980026 0)
(0.140377 -0.00107494 0)
(0.15186 -0.0011637 0)
(0.164305 -0.00126059 0)
(0.177727 -0.00134642 0)
(0.19193 -0.00141793 0)
(0.206826 -0.00147695 0)
(0.222127 -0.00149273 0)
(0.237398 -0.00147803 0)
(0.252161 -0.00141211 0)
(0.266079 -0.00133806 0)
(0.279061 -0.00122774 0)
(0.2909 -0.00111858 0)
(0.30163 -0.000990857 0)
(0.31105 -0.000884007 0)
(0.319702 -0.000817934 0)
(0.327759 -0.000715845 0)
(0.33491 -0.000684871 0)
(0.342376 -0.000669385 0)
(0.350114 -0.000664533 0)
(0.358158 -0.000683383 0)
(0.366583 -0.000685502 0)
(0.375056 -0.000636972 0)
(0.383089 -0.000563456 0)
(0.390191 -0.000445905 0)
(0.395883 -0.000287528 0)
(0.399603 -0.000115033 0)
(0.400923 6.65485e-05 0)
(0.399915 0.00029027 0)
(0.396287 0.000539201 0)
(0.390497 0.000759384 0)
(0.382559 0.000948673 0)
(0.37261 0.00111544 0)
(0.360934 0.00127074 0)
(0.347784 0.00140083 0)
(0.333284 0.00150327 0)
(0.31765 0.00159178 0)
(0.301188 0.00165962 0)
(0.284199 0.00169812 0)
(0.26696 0.00171529 0)
(0.249729 0.00170026 0)
(0.2327 0.00167735 0)
(0.21603 0.0016259 0)
(0.199901 0.00157385 0)
(0.184359 0.00150997 0)
(0.169514 0.00143426 0)
(0.155429 0.00135666 0)
(0.142133 0.00128029 0)
(0.129618 0.00120294 0)
(0.117925 0.00112066 0)
(0.107039 0.00103907 0)
(0.096971 0.000954104 0)
(0.087767 0.000876658 0)
(0.0793885 0.000789358 0)
(0.0718363 0.000703506 0)
(0.0651766 0.000619637 0)
(0.0593681 0.000540952 0)
(0.05437 0.000455033 0)
(0.0502084 0.000368507 0)
(0.046867 0.000302225 0)
(0.0442366 0.000216278 0)
(0.0423679 0.000152076 0)
(0.041193 8.49341e-05 0)
(0.0406576 1.97015e-05 0)
(0.0407365 -3.07213e-05 0)
(0.0413957 -9.10448e-05 0)
(0.0425807 -0.00014524 0)
(0.0442466 -0.000188799 0)
(0.0464162 -0.000234951 0)
(0.0490318 -0.000271852 0)
(0.05196 -0.000317225 0)
(0.0553204 -0.000353088 0)
(0.059051 -0.00038338 0)
(0.0630658 -0.000413502 0)
(0.0673884 -0.000446911 0)
(0.0720038 -0.000462459 0)
(0.0767686 -0.000490111 0)
(0.0818055 -0.000505203 0)
(0.0870799 -0.000537872 0)
(0.0925779 -0.000554287 0)
(0.0982658 -0.000577281 0)
(0.104189 -0.000590972 0)
(0.1103 -0.000619371 0)
(0.116708 -0.000654492 0)
(0.123489 -0.000689425 0)
(0.130641 -0.000724853 0)
(0.138181 -0.000770686 0)
(0.146182 -0.000812826 0)
(0.154674 -0.000866661 0)
(0.163695 -0.000918425 0)
(0.173261 -0.000972032 0)
(0.183361 -0.00102223 0)
(0.193964 -0.00107463 0)
(0.205096 -0.00112126 0)
(0.216673 -0.00117116 0)
(0.228674 -0.00120722 0)
(0.241044 -0.00124368 0)
(0.253715 -0.0012653 0)
(0.266569 -0.00128224 0)
(0.279515 -0.00128294 0)
(0.292472 -0.00127477 0)
(0.305276 -0.00125531 0)
(0.317796 -0.00122181 0)
(0.329897 -0.00117321 0)
(0.341425 -0.00110748 0)
(0.352182 -0.00102768 0)
(0.362031 -0.000914139 0)
(0.370702 -0.000802512 0)
(0.378103 -0.000665185 0)
(0.384041 -0.000515083 0)
(0.388394 -0.000344972 0)
(0.390966 -0.000170566 0)
(0.391708 1.32285e-05 0)
(0.390604 0.000206455 0)
(0.387459 0.000402427 0)
(0.382508 0.000589437 0)
(0.375625 0.000770021 0)
(0.36696 0.000945449 0)
(0.356647 0.00108982 0)
(0.34498 0.00121613 0)
(0.332166 0.00133099 0)
(0.318371 0.00140282 0)
(0.303923 0.00145541 0)
(0.289051 0.0014884 0)
(0.273974 0.00150158 0)
(0.258897 0.00149837 0)
(0.243912 0.00146933 0)
(0.22926 0.00143636 0)
(0.215072 0.00138117 0)
(0.20146 0.00131354 0)
(0.188554 0.00124748 0)
(0.176389 0.00117001 0)
(0.165033 0.00108432 0)
(0.154499 0.00100791 0)
(0.144779 0.000920732 0)
(0.135931 0.000843165 0)
(0.127884 0.000751261 0)
(0.120715 0.00067323 0)
(0.114327 0.000586711 0)
(0.108772 0.000514382 0)
(0.10399 0.000448525 0)
(0.0998546 0.000371257 0)
(0.0963817 0.00031804 0)
(0.0935018 0.000257982 0)
(0.0911404 0.000205583 0)
(0.089241 0.000162937 0)
(0.0877689 0.000136839 0)
(0.0865601 0.000113055 0)
(0.0855502 7.58703e-05 0)
(0.0848654 7.00827e-05 0)
(0.0842807 4.18242e-05 0)
(0.083871 2.6873e-05 0)
(0.0836928 1.38166e-05 0)
(0.08363 -1.19412e-05 0)
(0.0837798 -1.91355e-05 0)
(0.084133 -3.76992e-05 0)
(0.0845988 -5.36788e-05 0)
(0.0852589 -6.65769e-05 0)
(0.0860947 -9.28023e-05 0)
(0.0871339 -0.000106065 0)
(0.0883461 -0.000132022 0)
(0.0898564 -0.00017029 0)
(0.0917896 -0.000207649 0)
(0.0941391 -0.000244852 0)
(0.0969088 -0.000303793 0)
(0.100225 -0.000363594 0)
(0.10425 -0.000433893 0)
(0.109054 -0.00050991 0)
(0.114654 -0.000598761 0)
(0.121126 -0.000680924 0)
(0.128445 -0.000779103 0)
(0.136725 -0.000864864 0)
(0.14595 -0.00095245 0)
(0.156069 -0.0010475 0)
(0.167061 -0.00113619 0)
(0.178934 -0.00123175 0)
(0.191728 -0.00131142 0)
(0.205352 -0.00140272 0)
(0.219924 -0.00148058 0)
(0.235324 -0.00157089 0)
(0.251512 -0.00165718 0)
(0.268564 -0.00172208 0)
(0.286268 -0.00179118 0)
(0.304492 -0.00183638 0)
(0.323106 -0.00184848 0)
(0.341789 -0.00185068 0)
(0.360304 -0.00181902 0)
(0.37836 -0.00175966 0)
(0.395661 -0.00165931 0)
(0.411807 -0.00153032 0)
(0.426489 -0.00137637 0)
(0.4394 -0.00116529 0)
(0.45012 -0.000951969 0)
(0.45846 -0.000702645 0)
(0.464184 -0.000431252 0)
(0.467057 -0.000154886 0)
(0.467209 0.000119894 0)
(0.464394 0.000424468 0)
(0.458329 0.000701828 0)
(0.449631 0.000958939 0)
(0.438285 0.00120209 0)
(0.424677 0.00142026 0)
(0.409064 0.00161009 0)
(0.391639 0.00177019 0)
(0.373013 0.00188943 0)
(0.353557 0.00196589 0)
(0.334084 0.00201739 0)
(0.314692 0.00202671 0)
(0.295032 0.00199563 0)
(0.275585 0.00194043 0)
(0.25678 0.00186695 0)
(0.238711 0.00176753 0)
(0.221733 0.00164749 0)
(0.205926 0.00152837 0)
(0.191275 0.00139937 0)
(0.178022 0.00127028 0)
(0.166054 0.00114282 0)
(0.155596 0.00101422 0)
(0.146709 0.000886142 0)
(0.138975 0.000766217 0)
(0.132437 0.000648581 0)
(0.127021 0.000549938 0)
(0.12234 0.000466832 0)
(0.118453 0.000395148 0)
(0.115024 0.00035289 0)
(0.111853 0.000316033 0)
(0.108952 0.000296369 0)
(0.106081 0.00028416 0)
(0.103259 0.000275378 0)
(0.100507 0.000262175 0)
(0.0978058 0.000251868 0)
(0.0952462 0.00023006 0)
(0.0928944 0.00020466 0)
(0.0908306 0.000168997 0)
(0.0891023 0.000133128 0)
(0.0877566 9.01982e-05 0)
(0.0868181 4.64237e-05 0)
(0.0862888 2.82268e-06 0)
(0.0862747 -3.42415e-05 0)
(0.0867608 -7.01856e-05 0)
(0.0876363 -0.000107733 0)
(0.0888845 -0.000143247 0)
(0.0904831 -0.000175003 0)
(0.0924321 -0.000211805 0)
(0.0947517 -0.000248332 0)
(0.0974705 -0.000292586 0)
(0.100634 -0.00034254 0)
(0.104314 -0.00039435 0)
(0.108606 -0.00045912 0)
(0.113576 -0.000531685 0)
(0.119319 -0.000608958 0)
(0.125942 -0.000703189 0)
(0.133512 -0.000796458 0)
(0.142095 -0.000905482 0)
(0.151726 -0.00100961 0)
(0.16243 -0.0011093 0)
(0.174217 -0.0012256 0)
(0.187062 -0.00132347 0)
(0.200896 -0.00140728 0)
(0.215635 -0.00150763 0)
(0.231177 -0.00157123 0)
(0.247389 -0.00164773 0)
(0.264131 -0.00168364 0)
(0.28121 -0.00169489 0)
(0.298432 -0.0017188 0)
(0.315622 -0.00169612 0)
(0.332554 -0.00164781 0)
(0.349007 -0.00160729 0)
(0.364784 -0.00152145 0)
(0.379659 -0.00141277 0)
(0.393411 -0.00130389 0)
(0.405843 -0.00115771 0)
(0.416761 -0.0010055 0)
(0.425988 -0.000826005 0)
(0.433366 -0.000634251 0)
(0.438767 -0.000434861 0)
(0.442103 -0.000224328 0)
(0.44329 -9.41836e-06 0)
(0.442486 0.000200407 0)
(0.439447 0.000412472 0)
(0.434322 0.000605929 0)
(0.427261 0.000790952 0)
(0.418409 0.000964728 0)
(0.407949 0.00110501 0)
(0.396091 0.0012391 0)
(0.383045 0.00135484 0)
(0.369033 0.0014247 0)
(0.354284 0.00149603 0)
(0.339012 0.00152197 0)
(0.323423 0.0015531 0)
(0.307695 0.00156762 0)
(0.291984 0.00154305 0)
(0.276453 0.00152835 0)
(0.259565 0.00150278 0)
(0.419554 -0.00342963 0)
(0.429397 -0.00296242 0)
(0.438428 -0.00240448 0)
(0.445537 -0.00180365 0)
(0.450559 -0.00116807 0)
(0.453407 -0.000499456 0)
(0.453947 0.000170476 0)
(0.452331 0.000828755 0)
(0.448323 0.00151133 0)
(0.442191 0.00213125 0)
(0.433996 0.00273306 0)
(0.423883 0.00329781 0)
(0.412036 0.00374882 0)
(0.398664 0.00419419 0)
(0.383987 0.00450114 0)
(0.368243 0.00480891 0)
(0.351657 0.00505888 0)
(0.334459 0.00515096 0)
(0.316885 0.00526071 0)
(0.299139 0.00531605 0)
(0.281415 0.00522773 0)
(0.263903 0.00516735 0)
(0.246759 0.00506379 0)
(0.230114 0.00485419 0)
(0.214087 0.00467601 0)
(0.198773 0.00442228 0)
(0.184242 0.00419791 0)
(0.170543 0.00395796 0)
(0.157706 0.00368057 0)
(0.145749 0.00342642 0)
(0.134674 0.00316995 0)
(0.124473 0.00290382 0)
(0.115131 0.002655 0)
(0.106623 0.00240657 0)
(0.0989233 0.00217303 0)
(0.0919983 0.00194785 0)
(0.0858147 0.00173065 0)
(0.0803375 0.00152518 0)
(0.0755314 0.00132932 0)
(0.0713621 0.0011428 0)
(0.0677964 0.000966728 0)
(0.0648046 0.000800731 0)
(0.0623608 0.000642608 0)
(0.0604418 0.000488893 0)
(0.0590243 0.000340222 0)
(0.058083 0.000195736 0)
(0.0575947 5.26808e-05 0)
(0.0575692 -9.01712e-05 0)
(0.0580292 -0.000231133 0)
(0.0589746 -0.000368289 0)
(0.0604022 -0.00051161 0)
(0.0623123 -0.000651489 0)
(0.0647143 -0.000802077 0)
(0.0676301 -0.000954032 0)
(0.0710573 -0.00110075 0)
(0.0750124 -0.00126749 0)
(0.0795561 -0.00143979 0)
(0.0846586 -0.00159794 0)
(0.0903674 -0.00179747 0)
(0.0967397 -0.00198229 0)
(0.103797 -0.00220642 0)
(0.111652 -0.00243785 0)
(0.120307 -0.00266806 0)
(0.129817 -0.00293809 0)
(0.140323 -0.00322734 0)
(0.151808 -0.00348931 0)
(0.164247 -0.00378539 0)
(0.177682 -0.00403688 0)
(0.191893 -0.0042499 0)
(0.206797 -0.0044384 0)
(0.222118 -0.00448187 0)
(0.237403 -0.00444025 0)
(0.252212 -0.00423154 0)
(0.266133 -0.00402187 0)
(0.279157 -0.00369916 0)
(0.291006 -0.00338329 0)
(0.301729 -0.00298951 0)
(0.311192 -0.00263389 0)
(0.319841 -0.00243346 0)
(0.327937 -0.00214492 0)
(0.335099 -0.00205272 0)
(0.342604 -0.00201258 0)
(0.350372 -0.00200342 0)
(0.358444 -0.00204909 0)
(0.366891 -0.00204093 0)
(0.375379 -0.0019281 0)
(0.383431 -0.00169788 0)
(0.390558 -0.00133978 0)
(0.396256 -0.000876909 0)
(0.399979 -0.000361305 0)
(0.401323 0.000208282 0)
(0.400301 0.000874943 0)
(0.396664 0.00162391 0)
(0.390865 0.00227394 0)
(0.38292 0.00284922 0)
(0.372976 0.00334863 0)
(0.361278 0.00380716 0)
(0.34811 0.0041861 0)
(0.333616 0.00451635 0)
(0.317965 0.00478377 0)
(0.301492 0.00498208 0)
(0.284479 0.00509863 0)
(0.267226 0.00513248 0)
(0.250001 0.00511126 0)
(0.232949 0.00501401 0)
(0.216287 0.00489354 0)
(0.200127 0.00471469 0)
(0.184586 0.00451929 0)
(0.169752 0.00431007 0)
(0.155663 0.00407765 0)
(0.142348 0.00383722 0)
(0.129833 0.00360322 0)
(0.118142 0.00336177 0)
(0.107258 0.00311962 0)
(0.0971852 0.00286975 0)
(0.0879739 0.00261567 0)
(0.0796025 0.00237767 0)
(0.0720469 0.00211236 0)
(0.0653871 0.0018569 0)
(0.059582 0.00160956 0)
(0.0545828 0.00136213 0)
(0.0504269 0.00112102 0)
(0.0470594 0.000885986 0)
(0.0444648 0.000676745 0)
(0.0425787 0.000449688 0)
(0.0414132 0.000257258 0)
(0.0408873 6.86463e-05 0)
(0.0409484 -0.000112509 0)
(0.0416194 -0.000272849 0)
(0.0428127 -0.000422529 0)
(0.0444707 -0.000574614 0)
(0.0466474 -0.000709881 0)
(0.0492553 -0.000822016 0)
(0.0521916 -0.000942375 0)
(0.0555551 -0.00105692 0)
(0.0592923 -0.00115399 0)
(0.0632977 -0.00124755 0)
(0.0676229 -0.00133112 0)
(0.0722379 -0.00139244 0)
(0.0770138 -0.00146396 0)
(0.0820235 -0.00154747 0)
(0.0873289 -0.00159339 0)
(0.0928006 -0.00166912 0)
(0.0985016 -0.0017202 0)
(0.104407 -0.00178947 0)
(0.110521 -0.00186724 0)
(0.116931 -0.00196469 0)
(0.123712 -0.00206452 0)
(0.130861 -0.00217707 0)
(0.138403 -0.0023039 0)
(0.146393 -0.00244783 0)
(0.154891 -0.00259953 0)
(0.163912 -0.00275091 0)
(0.173479 -0.00291827 0)
(0.183578 -0.00307507 0)
(0.194189 -0.00323836 0)
(0.205328 -0.00337397 0)
(0.216916 -0.00350369 0)
(0.228916 -0.00362804 0)
(0.241298 -0.00371963 0)
(0.253957 -0.00379984 0)
(0.26682 -0.00384407 0)
(0.279778 -0.00385853 0)
(0.292738 -0.00383532 0)
(0.305549 -0.00378105 0)
(0.318089 -0.00366648 0)
(0.330188 -0.00353301 0)
(0.341718 -0.00332097 0)
(0.352494 -0.0030735 0)
(0.362317 -0.0027713 0)
(0.371028 -0.00240335 0)
(0.378422 -0.00200023 0)
(0.384362 -0.00154796 0)
(0.388718 -0.00103627 0)
(0.391293 -0.000499207 0)
(0.392017 3.56207e-05 0)
(0.390888 0.000610163 0)
(0.387727 0.00119311 0)
(0.382759 0.00177666 0)
(0.375856 0.00231308 0)
(0.367169 0.00282946 0)
(0.356829 0.00327724 0)
(0.345133 0.00366659 0)
(0.33228 0.00397949 0)
(0.318461 0.00421919 0)
(0.303986 0.00438053 0)
(0.289083 0.00447554 0)
(0.273968 0.00449785 0)
(0.258862 0.00449233 0)
(0.243857 0.0044197 0)
(0.229183 0.00430806 0)
(0.214971 0.00414916 0)
(0.201343 0.00395774 0)
(0.18841 0.00374152 0)
(0.176216 0.00350123 0)
(0.164847 0.00327016 0)
(0.154282 0.00301702 0)
(0.144559 0.00276646 0)
(0.135671 0.00251824 0)
(0.12764 0.00226737 0)
(0.120442 0.00202164 0)
(0.114067 0.00177743 0)
(0.108483 0.00153239 0)
(0.10368 0.00132543 0)
(0.0995784 0.00113138 0)
(0.0960881 0.000937992 0)
(0.0932061 0.000778235 0)
(0.0908474 0.000623348 0)
(0.0889502 0.000494691 0)
(0.0874722 0.000402481 0)
(0.0862667 0.00031551 0)
(0.0852797 0.00023991 0)
(0.0845879 0.000205781 0)
(0.0840236 0.00014672 0)
(0.0835813 7.23878e-05 0)
(0.0834247 5.76389e-05 0)
(0.0833819 -1.69841e-05 0)
(0.0835469 -6.47033e-05 0)
(0.0838986 -0.00011508 0)
(0.0843607 -0.000183 0)
(0.0850241 -0.000216041 0)
(0.0858936 -0.000257325 0)
(0.0869251 -0.000321396 0)
(0.0881391 -0.000413594 0)
(0.0896697 -0.000497154 0)
(0.0915975 -0.000611901 0)
(0.0939533 -0.000742315 0)
(0.096739 -0.000891259 0)
(0.100043 -0.00109749 0)
(0.104079 -0.00129403 0)
(0.108871 -0.00153081 0)
(0.114479 -0.0017831 0)
(0.120945 -0.00204021 0)
(0.128275 -0.00232694 0)
(0.136549 -0.00260282 0)
(0.145766 -0.00287785 0)
(0.155896 -0.00314218 0)
(0.166901 -0.0033987 0)
(0.178774 -0.00368013 0)
(0.191563 -0.00393314 0)
(0.205214 -0.00419429 0)
(0.219753 -0.00446496 0)
(0.235151 -0.00471202 0)
(0.25136 -0.00497018 0)
(0.268417 -0.00517421 0)
(0.286128 -0.00536865 0)
(0.304361 -0.005503 0)
(0.322976 -0.00555438 0)
(0.341675 -0.005552 0)
(0.360198 -0.00546625 0)
(0.378292 -0.00525925 0)
(0.395578 -0.00499322 0)
(0.411751 -0.00459887 0)
(0.426465 -0.00411195 0)
(0.439362 -0.00352497 0)
(0.450116 -0.00284133 0)
(0.458473 -0.00209791 0)
(0.464211 -0.00127864 0)
(0.467089 -0.00045774 0)
(0.467235 0.000353482 0)
(0.464369 0.0012609 0)
(0.458329 0.00209677 0)
(0.449639 0.00288498 0)
(0.438299 0.0036145 0)
(0.424666 0.00426019 0)
(0.409043 0.00484735 0)
(0.391602 0.00530904 0)
(0.372952 0.00565381 0)
(0.353501 0.00590617 0)
(0.334019 0.00605868 0)
(0.314624 0.00608918 0)
(0.294947 0.00599035 0)
(0.275495 0.00582032 0)
(0.256698 0.00559025 0)
(0.238638 0.00529965 0)
(0.221658 0.00494496 0)
(0.205852 0.00458723 0)
(0.1912 0.00420078 0)
(0.17794 0.00381124 0)
(0.165972 0.00343069 0)
(0.155508 0.00304344 0)
(0.146615 0.00265997 0)
(0.138876 0.00229919 0)
(0.132332 0.0019448 0)
(0.126914 0.00165023 0)
(0.122233 0.0014001 0)
(0.118348 0.00118569 0)
(0.114922 0.00105666 0)
(0.111757 0.000948997 0)
(0.108861 0.000885687 0)
(0.105997 0.000854009 0)
(0.103182 0.000819942 0)
(0.100438 0.000791806 0)
(0.0977427 0.000751135 0)
(0.0951893 0.000691347 0)
(0.0928422 0.000609348 0)
(0.0907839 0.000511782 0)
(0.0890605 0.000395892 0)
(0.0877185 0.000264644 0)
(0.0867842 0.0001365 0)
(0.0862595 8.2103e-06 0)
(0.0862495 -0.000102965 0)
(0.0867385 -0.000211075 0)
(0.0876153 -0.000323471 0)
(0.0888652 -0.000429619 0)
(0.0904646 -0.000524815 0)
(0.0924133 -0.00063513 0)
(0.094732 -0.000744573 0)
(0.0974486 -0.000876985 0)
(0.10061 -0.00102469 0)
(0.104288 -0.00118099 0)
(0.108576 -0.0013777 0)
(0.113542 -0.00159561 0)
(0.119283 -0.00182647 0)
(0.125902 -0.00210921 0)
(0.13347 -0.002389 0)
(0.14205 -0.002716 0)
(0.151681 -0.00302855 0)
(0.162385 -0.003328 0)
(0.174173 -0.00367693 0)
(0.18702 -0.00397067 0)
(0.200857 -0.00422211 0)
(0.215601 -0.00452333 0)
(0.231148 -0.00471424 0)
(0.247366 -0.00494365 0)
(0.264115 -0.00505163 0)
(0.281201 -0.00508539 0)
(0.298432 -0.00515726 0)
(0.31563 -0.00508922 0)
(0.33257 -0.0049443 0)
(0.349033 -0.00482278 0)
(0.364818 -0.00456525 0)
(0.379701 -0.00423917 0)
(0.393462 -0.00391257 0)
(0.405901 -0.00347392 0)
(0.416828 -0.00301728 0)
(0.42606 -0.00247861 0)
(0.433443 -0.00190322 0)
(0.438847 -0.00130465 0)
(0.442187 -0.000671036 0)
(0.443381 -2.91457e-05 0)
(0.442573 0.000600228 0)
(0.439523 0.00123741 0)
(0.434397 0.00181786 0)
(0.427331 0.00237341 0)
(0.418473 0.00289491 0)
(0.408005 0.00331583 0)
(0.396138 0.00371815 0)
(0.383084 0.00406541 0)
(0.369063 0.00427494 0)
(0.354305 0.00448892 0)
(0.339025 0.00456665 0)
(0.323429 0.00465997 0)
(0.307695 0.00470345 0)
(0.291978 0.00462966 0)
(0.276443 0.00458547 0)
(0.25955 0.00450867 0)
(0.419676 -0.00571885 0)
(0.429536 -0.00494002 0)
(0.43858 -0.00400979 0)
(0.445701 -0.00300799 0)
(0.450732 -0.00194806 0)
(0.453583 -0.000835443 0)
(0.454139 0.000283813 0)
(0.452497 0.00138655 0)
(0.448495 0.00252008 0)
(0.442353 0.00355369 0)
(0.434146 0.00455727 0)
(0.424021 0.00549893 0)
(0.412155 0.00625081 0)
(0.398767 0.00699331 0)
(0.38407 0.00750487 0)
(0.368308 0.00801788 0)
(0.351705 0.0084345 0)
(0.334489 0.00858778 0)
(0.316898 0.00877054 0)
(0.299136 0.0088626 0)
(0.281398 0.00871508 0)
(0.263874 0.00861419 0)
(0.246718 0.00844131 0)
(0.230065 0.00809165 0)
(0.214031 0.0077944 0)
(0.198712 0.00737124 0)
(0.184176 0.00699704 0)
(0.170474 0.00659691 0)
(0.157637 0.00613439 0)
(0.145679 0.00571066 0)
(0.134605 0.0052831 0)
(0.124406 0.00483944 0)
(0.115065 0.00442467 0)
(0.10656 0.00401057 0)
(0.0988623 0.00362132 0)
(0.0919399 0.00324603 0)
(0.085759 0.00288412 0)
(0.0802844 0.00254178 0)
(0.075481 0.0022156 0)
(0.0713143 0.00190478 0)
(0.0677513 0.00161109 0)
(0.0647619 0.00133359 0)
(0.0623197 0.00106994 0)
(0.0604019 0.00081406 0)
(0.0589856 0.000566033 0)
(0.0580449 0.000325305 0)
(0.0575566 8.75875e-05 0)
(0.0575322 -0.000150479 0)
(0.057994 -0.000385127 0)
(0.0589384 -0.000613588 0)
(0.0603655 -0.000852649 0)
(0.0622752 -0.00108574 0)
(0.0646763 -0.00133664 0)
(0.0675914 -0.00158991 0)
(0.0710176 -0.00183432 0)
(0.0749714 -0.00211219 0)
(0.0795139 -0.00239931 0)
(0.0846147 -0.00266302 0)
(0.0903219 -0.00299485 0)
(0.0966909 -0.00330385 0)
(0.103745 -0.00367691 0)
(0.111596 -0.00406159 0)
(0.120247 -0.00444576 0)
(0.129752 -0.00489709 0)
(0.140258 -0.0053766 0)
(0.151739 -0.00581619 0)
(0.164183 -0.00630887 0)
(0.177623 -0.00673329 0)
(0.191852 -0.00708829 0)
(0.206785 -0.00739747 0)
(0.222136 -0.00747372 0)
(0.237448 -0.00740575 0)
(0.252309 -0.00706592 0)
(0.266269 -0.00671375 0)
(0.279345 -0.00616751 0)
(0.291222 -0.0056383 0)
(0.301965 -0.00498994 0)
(0.31143 -0.0044056 0)
(0.320074 -0.00407695 0)
(0.328214 -0.00357413 0)
(0.335411 -0.00341649 0)
(0.342977 -0.00336661 0)
(0.350801 -0.00335531 0)
(0.358926 -0.00341896 0)
(0.367388 -0.0033985 0)
(0.375907 -0.00320291 0)
(0.383985 -0.00283557 0)
(0.391155 -0.00224895 0)
(0.396873 -0.0014756 0)
(0.40061 -0.00060403 0)
(0.40197 0.000354053 0)
(0.400918 0.00147187 0)
(0.397276 0.00271053 0)
(0.39148 0.00379538 0)
(0.383514 0.00474986 0)
(0.373556 0.00558555 0)
(0.361842 0.00634712 0)
(0.348663 0.00699467 0)
(0.334141 0.00752299 0)
(0.318471 0.00797436 0)
(0.301977 0.00830452 0)
(0.284943 0.00849673 0)
(0.267679 0.00856547 0)
(0.250431 0.0085094 0)
(0.233375 0.00837386 0)
(0.216694 0.00814274 0)
(0.200531 0.00786997 0)
(0.184983 0.00753633 0)
(0.170137 0.00717531 0)
(0.156043 0.00679298 0)
(0.142733 0.00640257 0)
(0.13022 0.00600707 0)
(0.118523 0.00560014 0)
(0.107639 0.0051999 0)
(0.0975678 0.00477821 0)
(0.0883635 0.00437041 0)
(0.079986 0.0039538 0)
(0.072438 0.00352267 0)
(0.065782 0.00309675 0)
(0.0599724 0.00268885 0)
(0.0549762 0.00226865 0)
(0.0508202 0.00186466 0)
(0.0474648 0.00148885 0)
(0.0448584 0.00110583 0)
(0.0429895 0.000756804 0)
(0.0418205 0.000420323 0)
(0.0413001 0.000113938 0)
(0.0413734 -0.000179927 0)
(0.0420341 -0.000459152 0)
(0.043235 -0.000705164 0)
(0.0448964 -0.000958045 0)
(0.0470717 -0.0011852 0)
(0.0496773 -0.0013739 0)
(0.0526169 -0.00157672 0)
(0.0559883 -0.00176164 0)
(0.0597285 -0.00192108 0)
(0.0637146 -0.00209044 0)
(0.0680485 -0.00221884 0)
(0.072665 -0.00232343 0)
(0.0774397 -0.00244401 0)
(0.0824572 -0.00256659 0)
(0.0877339 -0.0026729 0)
(0.0932073 -0.00277745 0)
(0.0989036 -0.00287495 0)
(0.10482 -0.00297356 0)
(0.110934 -0.00311169 0)
(0.117337 -0.00327477 0)
(0.124111 -0.00344193 0)
(0.13125 -0.00362793 0)
(0.138781 -0.00384188 0)
(0.146768 -0.00407509 0)
(0.155265 -0.00433494 0)
(0.164286 -0.00458795 0)
(0.173853 -0.00486538 0)
(0.183952 -0.00512082 0)
(0.194561 -0.00538818 0)
(0.205696 -0.00562709 0)
(0.217285 -0.00584443 0)
(0.229293 -0.00604734 0)
(0.241675 -0.00620892 0)
(0.254341 -0.00633317 0)
(0.267213 -0.00640187 0)
(0.280185 -0.00642277 0)
(0.293138 -0.00640018 0)
(0.305964 -0.0062881 0)
(0.318501 -0.00612432 0)
(0.330622 -0.00587717 0)
(0.342156 -0.00554501 0)
(0.352946 -0.00513168 0)
(0.362798 -0.00460071 0)
(0.3715 -0.00401916 0)
(0.378902 -0.00333405 0)
(0.384842 -0.00257218 0)
(0.389183 -0.00173802 0)
(0.391759 -0.000834276 0)
(0.392477 6.52757e-05 0)
(0.391306 0.00102654 0)
(0.388139 0.0020023 0)
(0.383132 0.00296034 0)
(0.376192 0.00386215 0)
(0.367469 0.00472716 0)
(0.357081 0.00546746 0)
(0.345337 0.00611112 0)
(0.332444 0.00665672 0)
(0.318553 0.00703379 0)
(0.304032 0.00730671 0)
(0.289078 0.00745711 0)
(0.273927 0.00752037 0)
(0.25877 0.00749503 0)
(0.243725 0.00737199 0)
(0.229012 0.00718727 0)
(0.21475 0.00691772 0)
(0.20108 0.0066026 0)
(0.188109 0.0062473 0)
(0.175874 0.00584413 0)
(0.164467 0.00544676 0)
(0.153881 0.00504216 0)
(0.144121 0.00461274 0)
(0.135213 0.00420995 0)
(0.127146 0.0037679 0)
(0.119934 0.00336905 0)
(0.113532 0.00295288 0)
(0.107951 0.00257135 0)
(0.103139 0.00221581 0)
(0.0990172 0.00187301 0)
(0.0955432 0.00157573 0)
(0.0926546 0.00128949 0)
(0.0903012 0.00103826 0)
(0.0884168 0.000820925 0)
(0.0869547 0.000676985 0)
(0.0857641 0.000531066 0)
(0.0847778 0.000386366 0)
(0.0840978 0.000340761 0)
(0.0835338 0.000230343 0)
(0.083117 0.000127216 0)
(0.0829487 7.40879e-05 0)
(0.0829201 -3.87583e-05 0)
(0.0831136 -0.000109728 0)
(0.0834804 -0.000191357 0)
(0.0839585 -0.000290034 0)
(0.0846301 -0.000356971 0)
(0.0854979 -0.000451299 0)
(0.0865483 -0.000532575 0)
(0.0877741 -0.000681637 0)
(0.0893011 -0.000850342 0)
(0.0912435 -0.00102732 0)
(0.0936084 -0.00123408 0)
(0.0963788 -0.00150484 0)
(0.0996853 -0.00182158 0)
(0.103717 -0.0021632 0)
(0.10851 -0.00255365 0)
(0.114109 -0.00298293 0)
(0.120577 -0.00340231 0)
(0.127911 -0.0038851 0)
(0.13619 -0.00433766 0)
(0.145419 -0.00477547 0)
(0.155542 -0.00524102 0)
(0.16654 -0.00567994 0)
(0.178421 -0.0061399 0)
(0.191217 -0.00655951 0)
(0.204871 -0.00699694 0)
(0.219421 -0.00742855 0)
(0.234811 -0.00785755 0)
(0.251022 -0.00828756 0)
(0.2681 -0.00862503 0)
(0.285812 -0.00895846 0)
(0.304066 -0.00918232 0)
(0.322702 -0.00926128 0)
(0.341406 -0.00926606 0)
(0.359971 -0.00909651 0)
(0.378075 -0.00878955 0)
(0.395398 -0.00831831 0)
(0.411607 -0.0076643 0)
(0.42635 -0.00686162 0)
(0.439282 -0.00586175 0)
(0.450042 -0.00476452 0)
(0.458431 -0.00349974 0)
(0.464174 -0.00214037 0)
(0.467065 -0.00077877 0)
(0.467193 0.000601199 0)
(0.46427 0.00211446 0)
(0.458268 0.00349791 0)
(0.449574 0.00480553 0)
(0.438231 0.00602588 0)
(0.42457 0.0071087 0)
(0.40892 0.00807304 0)
(0.391468 0.00885816 0)
(0.372793 0.00943662 0)
(0.353322 0.00984296 0)
(0.333827 0.0100987 0)
(0.314422 0.0101457 0)
(0.294746 0.00998474 0)
(0.27529 0.00970012 0)
(0.256505 0.00932046 0)
(0.238452 0.00883303 0)
(0.221489 0.00823933 0)
(0.205699 0.00764323 0)
(0.191052 0.00700041 0)
(0.177796 0.00635284 0)
(0.165833 0.00571735 0)
(0.155368 0.00507428 0)
(0.146472 0.00443412 0)
(0.138731 0.00383367 0)
(0.132176 0.00324336 0)
(0.126757 0.00275053 0)
(0.122073 0.0023337 0)
(0.118188 0.00197492 0)
(0.11477 0.00176054 0)
(0.111608 0.00157878 0)
(0.108723 0.00147548 0)
(0.10587 0.00141909 0)
(0.103064 0.00136759 0)
(0.10033 0.00131318 0)
(0.0976447 0.00125237 0)
(0.0950984 0.00114908 0)
(0.0927599 0.00101663 0)
(0.090708 0.000847478 0)
(0.0889903 0.000660619 0)
(0.0876557 0.000444187 0)
(0.0867297 0.000228692 0)
(0.0862126 1.23645e-05 0)
(0.0862092 -0.000172394 0)
(0.0867028 -0.000352699 0)
(0.087582 -0.000539611 0)
(0.0888347 -0.000715853 0)
(0.0904354 -0.000874039 0)
(0.0923833 -0.00105717 0)
(0.0946999 -0.00123898 0)
(0.0974127 -0.00145845 0)
(0.10057 -0.00170275 0)
(0.104242 -0.00196469 0)
(0.108523 -0.00229454 0)
(0.113483 -0.00265786 0)
(0.119217 -0.0030422 0)
(0.12583 -0.00351397 0)
(0.133393 -0.00398077 0)
(0.141969 -0.00452596 0)
(0.151597 -0.00504793 0)
(0.162301 -0.00554714 0)
(0.174091 -0.00612876 0)
(0.186943 -0.00661879 0)
(0.200787 -0.007038 0)
(0.215538 -0.00754042 0)
(0.231096 -0.00785891 0)
(0.247326 -0.00824159 0)
(0.264089 -0.00842174 0)
(0.28119 -0.00847815 0)
(0.298437 -0.00859821 0)
(0.315651 -0.00848484 0)
(0.332607 -0.00824328 0)
(0.349088 -0.0080409 0)
(0.364889 -0.00761158 0)
(0.379787 -0.007068 0)
(0.393567 -0.00652368 0)
(0.40602 -0.00579234 0)
(0.416963 -0.005031 0)
(0.426206 -0.00413283 0)
(0.433598 -0.00317333 0)
(0.43901 -0.00217533 0)
(0.442353 -0.00112276 0)
(0.443567 -4.58456e-05 0)
(0.442741 0.000999298 0)
(0.439675 0.00206219 0)
(0.434547 0.00303021 0)
(0.427471 0.00395766 0)
(0.418601 0.00482736 0)
(0.408114 0.0055291 0)
(0.396232 0.00619981 0)
(0.383161 0.00677868 0)
(0.369121 0.00712775 0)
(0.354346 0.0074843 0)
(0.33905 0.00761356 0)
(0.32344 0.00776888 0)
(0.307692 0.0078411 0)
(0.291964 0.00771776 0)
(0.27642 0.00764383 0)
(0.259519 0.00751557 0)
(0.41986 -0.00801227 0)
(0.429744 -0.00692162 0)
(0.438808 -0.0056185 0)
(0.445946 -0.0042152 0)
(0.450991 -0.00273051 0)
(0.453848 -0.00117504 0)
(0.454422 0.000397746 0)
(0.452749 0.00195065 0)
(0.448753 0.00353067 0)
(0.442595 0.00497869 0)
(0.434372 0.00638476 0)
(0.424227 0.00770394 0)
(0.412334 0.00875695 0)
(0.398921 0.00979692 0)
(0.384195 0.0105131 0)
(0.368407 0.0112314 0)
(0.351776 0.0118147 0)
(0.334533 0.0120288 0)
(0.316918 0.0122844 0)
(0.299132 0.0124129 0)
(0.281374 0.0122057 0)
(0.26383 0.0120639 0)
(0.246657 0.0118213 0)
(0.229992 0.0113311 0)
(0.213946 0.0109144 0)
(0.19862 0.0103213 0)
(0.184078 0.00979695 0)
(0.170372 0.00923631 0)
(0.157533 0.00858838 0)
(0.145575 0.00799483 0)
(0.134501 0.00739599 0)
(0.124305 0.00677468 0)
(0.114966 0.00619384 0)
(0.106465 0.00561401 0)
(0.0987707 0.00506901 0)
(0.0918522 0.00454363 0)
(0.0856754 0.00403704 0)
(0.0802049 0.00355791 0)
(0.0754053 0.00310157 0)
(0.0712426 0.0026667 0)
(0.0676834 0.00225527 0)
(0.0646977 0.0018657 0)
(0.0622579 0.00149602 0)
(0.060342 0.00113824 0)
(0.0589275 0.000791055 0)
(0.0579877 0.000453766 0)
(0.0574995 0.000122041 0)
(0.0574777 -0.000211028 0)
(0.0579406 -0.000538973 0)
(0.0588841 -0.000858744 0)
(0.0603105 -0.00119367 0)
(0.0622194 -0.00151992 0)
(0.0646194 -0.00187106 0)
(0.0675331 -0.00222567 0)
(0.0709579 -0.00256774 0)
(0.0749096 -0.00295661 0)
(0.0794502 -0.00335862 0)
(0.0845487 -0.00372749 0)
(0.0902527 -0.00419234 0)
(0.0966181 -0.0046241 0)
(0.103667 -0.00514634 0)
(0.111512 -0.00568508 0)
(0.120156 -0.00622331 0)
(0.129655 -0.00685416 0)
(0.140155 -0.00752803 0)
(0.151635 -0.00814149 0)
(0.164085 -0.0088348 0)
(0.177537 -0.00942833 0)
(0.191793 -0.00993038 0)
(0.206757 -0.0103721 0)
(0.222166 -0.0104764 0)
(0.237526 -0.0103854 0)
(0.252462 -0.00990818 0)
(0.266483 -0.00941023 0)
(0.279624 -0.0086547 0)
(0.29152 -0.00790811 0)
(0.302295 -0.00698701 0)
(0.311747 -0.00616566 0)
(0.320427 -0.00571136 0)
(0.328609 -0.00501969 0)
(0.33588 -0.00480213 0)
(0.343542 -0.00473819 0)
(0.351446 -0.00471688 0)
(0.359632 -0.00480402 0)
(0.368125 -0.00478042 0)
(0.376678 -0.00450755 0)
(0.384806 -0.00398771 0)
(0.392039 -0.00315854 0)
(0.397796 -0.00209323 0)
(0.401554 -0.00085909 0)
(0.402919 0.000514788 0)
(0.401812 0.00209218 0)
(0.398191 0.00381005 0)
(0.392388 0.00531935 0)
(0.3844 0.00665286 0)
(0.374414 0.00782252 0)
(0.362664 0.00888919 0)
(0.349459 0.00978361 0)
(0.334918 0.0105485 0)
(0.319217 0.0111752 0)
(0.302694 0.0116338 0)
(0.285633 0.0119008 0)
(0.268338 0.011984 0)
(0.251064 0.0119233 0)
(0.233987 0.0117143 0)
(0.217287 0.0114129 0)
(0.201112 0.0110132 0)
(0.185559 0.0105439 0)
(0.17071 0.0100519 0)
(0.156615 0.00951022 0)
(0.143303 0.00895854 0)
(0.130784 0.00840302 0)
(0.119093 0.007841 0)
(0.108209 0.0072786 0)
(0.0981346 0.00669061 0)
(0.0889325 0.00610786 0)
(0.0805514 0.00553785 0)
(0.0729985 0.00492482 0)
(0.0663451 0.00432779 0)
(0.0605376 0.00375974 0)
(0.0555472 0.0031713 0)
(0.0513973 0.00260887 0)
(0.0480439 0.00207194 0)
(0.0454513 0.00155509 0)
(0.0435823 0.0010542 0)
(0.0424186 0.000592062 0)
(0.0419034 0.000153357 0)
(0.0419813 -0.000257789 0)
(0.0426485 -0.000643913 0)
(0.0438583 -0.000991331 0)
(0.0455181 -0.00134433 0)
(0.0476948 -0.00166084 0)
(0.0503076 -0.00192356 0)
(0.053242 -0.00221016 0)
(0.0566091 -0.00247363 0)
(0.0603496 -0.00269463 0)
(0.0643425 -0.00291634 0)
(0.0686704 -0.00311425 0)
(0.0732886 -0.003254 0)
(0.0780533 -0.00342387 0)
(0.0830672 -0.00360424 0)
(0.0883492 -0.00373352 0)
(0.0938207 -0.0038896 0)
(0.0995116 -0.00402637 0)
(0.105419 -0.00416964 0)
(0.111518 -0.00436362 0)
(0.117915 -0.00458414 0)
(0.124683 -0.00481308 0)
(0.131809 -0.00507922 0)
(0.139333 -0.00538129 0)
(0.147309 -0.00571321 0)
(0.155804 -0.0060687 0)
(0.164828 -0.00643165 0)
(0.174393 -0.00681417 0)
(0.184499 -0.00717858 0)
(0.195099 -0.00755795 0)
(0.206234 -0.00787651 0)
(0.217817 -0.0081902 0)
(0.22982 -0.00846956 0)
(0.242204 -0.00869594 0)
(0.254877 -0.00886572 0)
(0.267759 -0.0089735 0)
(0.280736 -0.00901045 0)
(0.293701 -0.00896271 0)
(0.306535 -0.00882056 0)
(0.319079 -0.00857398 0)
(0.331215 -0.00824185 0)
(0.342776 -0.00776441 0)
(0.353579 -0.00718809 0)
(0.363451 -0.00646232 0)
(0.372163 -0.00562919 0)
(0.37957 -0.00466859 0)
(0.385504 -0.00361181 0)
(0.389846 -0.0024208 0)
(0.39241 -0.00117695 0)
(0.393108 0.000105881 0)
(0.391898 0.00144742 0)
(0.388727 0.00280234 0)
(0.383695 0.00415988 0)
(0.3767 0.00541357 0)
(0.367923 0.00662675 0)
(0.357475 0.00767123 0)
(0.345664 0.00857611 0)
(0.332704 0.00931752 0)
(0.318744 0.00987315 0)
(0.304151 0.0102459 0)
(0.289138 0.0104644 0)
(0.273914 0.0105326 0)
(0.258699 0.0105084 0)
(0.243582 0.0103302 0)
(0.228797 0.0100761 0)
(0.214477 0.00969843 0)
(0.200741 0.00925063 0)
(0.187713 0.00875516 0)
(0.175423 0.00819014 0)
(0.163963 0.00764169 0)
(0.153318 0.00705686 0)
(0.143511 0.00646654 0)
(0.134565 0.00589621 0)
(0.126453 0.00528831 0)
(0.119214 0.00472925 0)
(0.112779 0.00414245 0)
(0.107175 0.00359261 0)
(0.10235 0.00309553 0)
(0.0982179 0.0026253 0)
(0.0947382 0.00219654 0)
(0.0918542 0.00180691 0)
(0.0895128 0.00144625 0)
(0.0876501 0.00114413 0)
(0.0862011 0.000930612 0)
(0.0850338 0.000725833 0)
(0.0840776 0.000540846 0)
(0.0834095 0.000471669 0)
(0.0828709 0.000319138 0)
(0.0824706 0.000171325 0)
(0.0823352 0.000113927 0)
(0.0823204 -6.32055e-05 0)
(0.0825267 -0.000168032 0)
(0.0829101 -0.000275969 0)
(0.0834063 -0.000424166 0)
(0.0841072 -0.00051211 0)
(0.0849841 -0.000624978 0)
(0.0860376 -0.000754583 0)
(0.0872764 -0.000969042 0)
(0.0888171 -0.0011828 0)
(0.0907555 -0.0014393 0)
(0.0931065 -0.00174108 0)
(0.0958823 -0.00209681 0)
(0.09918 -0.00255907 0)
(0.103206 -0.00302872 0)
(0.10799 -0.00357986 0)
(0.113583 -0.00417085 0)
(0.120049 -0.00477313 0)
(0.127382 -0.00544436 0)
(0.135659 -0.00607212 0)
(0.144884 -0.00670608 0)
(0.155011 -0.00734096 0)
(0.166019 -0.00794797 0)
(0.177896 -0.00859544 0)
(0.190699 -0.00918607 0)
(0.204354 -0.00980049 0)
(0.218906 -0.0104105 0)
(0.23431 -0.0110022 0)
(0.250524 -0.0116163 0)
(0.267613 -0.0120869 0)
(0.285346 -0.0125525 0)
(0.303623 -0.0128572 0)
(0.322292 -0.0129733 0)
(0.341023 -0.0129784 0)
(0.359628 -0.0127607 0)
(0.377775 -0.0123106 0)
(0.395139 -0.0116641 0)
(0.411395 -0.0107549 0)
(0.426177 -0.00962989 0)
(0.439157 -0.00823604 0)
(0.449953 -0.00667437 0)
(0.458366 -0.00490958 0)
(0.464129 -0.00299946 0)
(0.467022 -0.00108941 0)
(0.46709 0.000883296 0)
(0.464133 0.00295849 0)
(0.458191 0.00488619 0)
(0.44949 0.00673525 0)
(0.438129 0.00844548 0)
(0.424426 0.00995892 0)
(0.408739 0.0113167 0)
(0.391258 0.0124048 0)
(0.372554 0.013209 0)
(0.353047 0.0137956 0)
(0.333547 0.0141456 0)
(0.314132 0.0142066 0)
(0.294423 0.0139793 0)
(0.274968 0.0135782 0)
(0.256212 0.0130396 0)
(0.238188 0.0123599 0)
(0.221251 0.0115305 0)
(0.20548 0.010698 0)
(0.190827 0.00980013 0)
(0.177582 0.00889228 0)
(0.165629 0.00800473 0)
(0.155157 0.0071046 0)
(0.146263 0.00620889 0)
(0.138513 0.00536918 0)
(0.131943 0.00454202 0)
(0.126525 0.0038515 0)
(0.121831 0.00326704 0)
(0.117948 0.00276338 0)
(0.11454 0.0024618 0)
(0.111382 0.00220842 0)
(0.108512 0.00205994 0)
(0.105675 0.00198467 0)
(0.102879 0.00190773 0)
(0.100164 0.0018381 0)
(0.0974912 0.00174744 0)
(0.0949578 0.00160694 0)
(0.0926309 0.0014177 0)
(0.0905919 0.00118799 0)
(0.0888852 0.000921466 0)
(0.08756 0.000618576 0)
(0.0866448 0.000318573 0)
(0.0861407 1.46204e-05 0)
(0.0861491 -0.000245459 0)
(0.0866487 -0.000497206 0)
(0.0875317 -0.000757078 0)
(0.0887887 -0.00100236 0)
(0.0903913 -0.00122269 0)
(0.0923378 -0.0014775 0)
(0.0946512 -0.00173078 0)
(0.097358 -0.00203615 0)
(0.100508 -0.00237674 0)
(0.104173 -0.00274457 0)
(0.108443 -0.00320654 0)
(0.113393 -0.00371536 0)
(0.119118 -0.00425504 0)
(0.12572 -0.00491644 0)
(0.133276 -0.00557099 0)
(0.141845 -0.006335 0)
(0.151471 -0.00706743 0)
(0.162177 -0.00776654 0)
(0.173968 -0.0085814 0)
(0.186827 -0.00926837 0)
(0.200682 -0.00985572 0)
(0.215445 -0.0105599 0)
(0.231019 -0.0110064 0)
(0.247266 -0.011543 0)
(0.26405 -0.0117954 0)
(0.281173 -0.0118747 0)
(0.298444 -0.0120433 0)
(0.315682 -0.0118846 0)
(0.332662 -0.0115464 0)
(0.34917 -0.0112634 0)
(0.364996 -0.0106621 0)
(0.379917 -0.00990087 0)
(0.393725 -0.00913877 0)
(0.406199 -0.00811441 0)
(0.417165 -0.00704805 0)
(0.426425 -0.00578977 0)
(0.43383 -0.00444537 0)
(0.439256 -0.00304634 0)
(0.442606 -0.00157465 0)
(0.443844 -7.26886e-05 0)
(0.442984 0.00140392 0)
(0.439908 0.00288606 0)
(0.434773 0.00424365 0)
(0.427682 0.00554495 0)
(0.418792 0.0067636 0)
(0.408279 0.00774646 0)
(0.396372 0.00868585 0)
(0.383275 0.00949646 0)
(0.369207 0.00998484 0)
(0.354408 0.0104838 0)
(0.339087 0.0106642 0)
(0.323455 0.0108812 0)
(0.307689 0.0109818 0)
(0.291945 0.0108084 0)
(0.276386 0.0107043 0)
(0.259472 0.0105241 0)
(0.420105 -0.0103116 0)
(0.430021 -0.00890873 0)
(0.439113 -0.00723188 0)
(0.446273 -0.00542628 0)
(0.451338 -0.00351606 0)
(0.454203 -0.00151445 0)
(0.454792 0.000507365 0)
(0.45309 0.00252167 0)
(0.449099 0.00454403 0)
(0.442919 0.00640732 0)
(0.434674 0.00821686 0)
(0.424503 0.00991439 0)
(0.412572 0.0112689 0)
(0.399127 0.0126068 0)
(0.384361 0.0135276 0)
(0.368538 0.0144513 0)
(0.351872 0.0152012 0)
(0.334592 0.0154757 0)
(0.316944 0.0158038 0)
(0.299127 0.0159685 0)
(0.28134 0.0157009 0)
(0.263771 0.0155177 0)
(0.246576 0.0152048 0)
(0.229894 0.0145734 0)
(0.213833 0.0140365 0)
(0.198498 0.013273 0)
(0.183947 0.0125979 0)
(0.170235 0.0118763 0)
(0.157395 0.0110426 0)
(0.145435 0.0102789 0)
(0.134363 0.00950852 0)
(0.12417 0.00870935 0)
(0.114834 0.0079623 0)
(0.106338 0.00721664 0)
(0.0986487 0.00651583 0)
(0.0917353 0.00584035 0)
(0.0855641 0.00518912 0)
(0.0800989 0.00457328 0)
(0.0753046 0.00398697 0)
(0.071147 0.00342831 0)
(0.0675928 0.00289949 0)
(0.0646118 0.00239719 0)
(0.0621756 0.00192045 0)
(0.0602624 0.001461 0)
(0.0588501 0.00101455 0)
(0.0579118 0.000580463 0)
(0.0574243 0.000155256 0)
(0.0574045 -0.000271375 0)
(0.0578685 -0.00069279 0)
(0.0588114 -0.00110369 0)
(0.0602369 -0.00153462 0)
(0.062145 -0.00195397 0)
(0.0645432 -0.00240528 0)
(0.0674553 -0.00286124 0)
(0.0708781 -0.00330081 0)
(0.074827 -0.00380066 0)
(0.0793651 -0.00431749 0)
(0.0844606 -0.00479158 0)
(0.0901604 -0.00538872 0)
(0.0965211 -0.00594397 0)
(0.103563 -0.00661503 0)
(0.111401 -0.00730694 0)
(0.120037 -0.00799875 0)
(0.129525 -0.00881052 0)
(0.140018 -0.00967588 0)
(0.151494 -0.0104672 0)
(0.163952 -0.0113618 0)
(0.177419 -0.0121295 0)
(0.191712 -0.0127796 0)
(0.206717 -0.0133501 0)
(0.222209 -0.0134936 0)
(0.237613 -0.0133797 0)
(0.252689 -0.012776 0)
(0.266769 -0.0121364 0)
(0.280004 -0.0111493 0)
(0.291911 -0.0101825 0)
(0.302717 -0.00900263 0)
(0.312183 -0.00794579 0)
(0.320881 -0.00737534 0)
(0.329131 -0.0064767 0)
(0.336509 -0.00617457 0)
(0.344302 -0.00610342 0)
(0.352319 -0.00609259 0)
(0.360575 -0.00619913 0)
(0.369098 -0.00617495 0)
(0.377704 -0.00583737 0)
(0.38591 -0.00515444 0)
(0.393221 -0.00408759 0)
(0.399027 -0.00271804 0)
(0.402801 -0.00111462 0)
(0.404169 0.000706155 0)
(0.403015 0.00275844 0)
(0.399426 0.0049111 0)
(0.3936 0.00684685 0)
(0.385587 0.00856594 0)
(0.375567 0.0100706 0)
(0.363764 0.0114345 0)
(0.350531 0.0126037 0)
(0.335962 0.0135774 0)
(0.320217 0.0143792 0)
(0.303659 0.0149676 0)
(0.286561 0.0153103 0)
(0.269233 0.0154264 0)
(0.251923 0.0153368 0)
(0.234821 0.0150792 0)
(0.21809 0.014675 0)
(0.20191 0.0141678 0)
(0.186352 0.0135683 0)
(0.171492 0.0129221 0)
(0.157393 0.0122271 0)
(0.144083 0.0115224 0)
(0.131558 0.0108135 0)
(0.119874 0.0100853 0)
(0.108985 0.0093571 0)
(0.098908 0.00860599 0)
(0.0897165 0.00786389 0)
(0.0813278 0.00711934 0)
(0.0737771 0.00633546 0)
(0.0671287 0.00557177 0)
(0.0613224 0.00483724 0)
(0.0563324 0.0040791 0)
(0.0522 0.00335166 0)
(0.0488411 0.00266914 0)
(0.0462703 0.00199607 0)
(0.0443918 0.00135753 0)
(0.0432463 0.000758517 0)
(0.0427312 0.000199261 0)
(0.0428147 -0.000326081 0)
(0.0434876 -0.000825869 0)
(0.0447076 -0.00127308 0)
(0.0463628 -0.0017217 0)
(0.0485521 -0.00213354 0)
(0.0511687 -0.00247115 0)
(0.054101 -0.00283817 0)
(0.0574761 -0.00317533 0)
(0.0612212 -0.00345799 0)
(0.0652139 -0.00374867 0)
(0.0695379 -0.00400281 0)
(0.074171 -0.00417695 0)
(0.0789225 -0.0044004 0)
(0.0839286 -0.00461853 0)
(0.0892112 -0.00480444 0)
(0.0946764 -0.0049997 0)
(0.100365 -0.00516997 0)
(0.106271 -0.00535195 0)
(0.112353 -0.00559747 0)
(0.118738 -0.0058844 0)
(0.125495 -0.0061866 0)
(0.132604 -0.0065247 0)
(0.140119 -0.00691216 0)
(0.148085 -0.00733791 0)
(0.156556 -0.00780136 0)
(0.165595 -0.00826237 0)
(0.175135 -0.00876582 0)
(0.185257 -0.00921896 0)
(0.195845 -0.00970818 0)
(0.206975 -0.0101212 0)
(0.218554 -0.0105228 0)
(0.230566 -0.0108865 0)
(0.242947 -0.0111771 0)
(0.255622 -0.0114003 0)
(0.268506 -0.011539 0)
(0.281494 -0.0115735 0)
(0.294475 -0.0115172 0)
(0.307325 -0.0113285 0)
(0.319889 -0.011023 0)
(0.332046 -0.0105946 0)
(0.34364 -0.00998575 0)
(0.354456 -0.00924949 0)
(0.364356 -0.00829835 0)
(0.373062 -0.00723596 0)
(0.380476 -0.00599923 0)
(0.386416 -0.00463257 0)
(0.390758 -0.00311321 0)
(0.393317 -0.00150352 0)
(0.394002 0.000154505 0)
(0.39276 0.00187776 0)
(0.389575 0.00362639 0)
(0.384507 0.00536284 0)
(0.377454 0.00698185 0)
(0.368624 0.00855047 0)
(0.358102 0.00988724 0)
(0.346209 0.0110534 0)
(0.33318 0.0120223 0)
(0.319119 0.0127188 0)
(0.304443 0.0132021 0)
(0.289358 0.013483 0)
(0.274044 0.0135732 0)
(0.258736 0.0135392 0)
(0.243537 0.0133127 0)
(0.22864 0.0129847 0)
(0.214245 0.0125012 0)
(0.200415 0.0119201 0)
(0.187309 0.0112794 0)
(0.174932 0.0105563 0)
(0.163415 0.0098442 0)
(0.152687 0.00910026 0)
(0.142824 0.00833889 0)
(0.133815 0.0075982 0)
(0.125646 0.00681621 0)
(0.11837 0.00608899 0)
(0.111891 0.00533323 0)
(0.106258 0.00463999 0)
(0.101407 0.00399244 0)
(0.0972473 0.00337943 0)
(0.0937645 0.00282854 0)
(0.0908721 0.00231853 0)
(0.0885331 0.00185509 0)
(0.0866894 0.00146914 0)
(0.085265 0.00119356 0)
(0.0841113 0.000930668 0)
(0.0832092 0.000694703 0)
(0.0825517 0.000592708 0)
(0.0820603 0.000405374 0)
(0.0816774 0.000216934 0)
(0.0815938 0.000127974 0)
(0.0816056 -8.65328e-05 0)
(0.0818528 -0.000211563 0)
(0.0822595 -0.000360876 0)
(0.0827897 -0.000539824 0)
(0.0835146 -0.000653981 0)
(0.0844111 -0.000808382 0)
(0.0854676 -0.000973761 0)
(0.086724 -0.00123643 0)
(0.0882648 -0.00151836 0)
(0.0902108 -0.00185297 0)
(0.0925496 -0.00222712 0)
(0.0953286 -0.00269545 0)
(0.0986163 -0.00328126 0)
(0.102635 -0.00388399 0)
(0.107404 -0.00459445 0)
(0.112991 -0.0053581 0)
(0.119453 -0.00613551 0)
(0.126789 -0.0069917 0)
(0.135059 -0.00780552 0)
(0.144285 -0.00860648 0)
(0.154401 -0.00943067 0)
(0.165424 -0.0102173 0)
(0.177295 -0.0110536 0)
(0.190108 -0.0118053 0)
(0.203757 -0.0125995 0)
(0.218306 -0.0133778 0)
(0.233717 -0.014152 0)
(0.24994 -0.01493 0)
(0.267051 -0.0155426 0)
(0.284817 -0.0161423 0)
(0.303125 -0.0165367 0)
(0.321834 -0.0166915 0)
(0.340597 -0.0167024 0)
(0.35925 -0.0164127 0)
(0.377448 -0.0158453 0)
(0.394863 -0.0150114 0)
(0.41118 -0.0138374 0)
(0.426017 -0.0123948 0)
(0.439058 -0.0105947 0)
(0.449895 -0.0085903 0)
(0.458339 -0.00631917 0)
(0.46414 -0.00386112 0)
(0.467036 -0.0013994 0)
(0.46706 0.00117409 0)
(0.464083 0.00381777 0)
(0.458175 0.00628492 0)
(0.449442 0.00867038 0)
(0.438063 0.0108741 0)
(0.424298 0.0128263 0)
(0.408559 0.0145573 0)
(0.391055 0.0159683 0)
(0.372323 0.0170042 0)
(0.352761 0.0177472 0)
(0.33326 0.0181901 0)
(0.313827 0.0182687 0)
(0.294063 0.0179783 0)
(0.27461 0.0174526 0)
(0.255888 0.0167587 0)
(0.237892 0.0158829 0)
(0.220995 0.0148161 0)
(0.205233 0.0137515 0)
(0.190565 0.0125986 0)
(0.177338 0.0114302 0)
(0.165393 0.0102916 0)
(0.15491 0.00913643 0)
(0.146019 0.00798433 0)
(0.138244 0.00690845 0)
(0.131654 0.00584309 0)
(0.126228 0.0049534 0)
(0.121519 0.00420251 0)
(0.117638 0.0035501 0)
(0.114236 0.00316263 0)
(0.111086 0.00283422 0)
(0.108232 0.00264256 0)
(0.105412 0.00254347 0)
(0.102636 0.00244887 0)
(0.0999399 0.00235238 0)
(0.0972853 0.00224318 0)
(0.094769 0.00205896 0)
(0.09246 0.00181989 0)
(0.0904353 0.00151854 0)
(0.0887448 0.00118372 0)
(0.0874332 0.000797631 0)
(0.0865331 0.000411891 0)
(0.0860452 1.75687e-05 0)
(0.0860695 -0.000322264 0)
(0.086576 -0.000645086 0)
(0.0874647 -0.00097584 0)
(0.0887274 -0.00128922 0)
(0.0903324 -0.001571 0)
(0.092277 -0.00189668 0)
(0.094586 -0.00222051 0)
(0.0972846 -0.00261089 0)
(0.100425 -0.00304631 0)
(0.104078 -0.00351985 0)
(0.108334 -0.00411379 0)
(0.11327 -0.00476806 0)
(0.118983 -0.00546458 0)
(0.125571 -0.00631606 0)
(0.133118 -0.00715905 0)
(0.141678 -0.00814252 0)
(0.151301 -0.00908606 0)
(0.162008 -0.0099861 0)
(0.173802 -0.0110352 0)
(0.186671 -0.0119199 0)
(0.20054 -0.012676 0)
(0.215318 -0.0135828 0)
(0.230914 -0.0141579 0)
(0.247185 -0.0148489 0)
(0.263996 -0.015174 0)
(0.281149 -0.0152766 0)
(0.298452 -0.0154943 0)
(0.315723 -0.0152903 0)
(0.332735 -0.0148554 0)
(0.34928 -0.0144919 0)
(0.365139 -0.0137185 0)
(0.38009 -0.0127394 0)
(0.393934 -0.0117594 0)
(0.406437 -0.0104416 0)
(0.417435 -0.00906983 0)
(0.426718 -0.00745062 0)
(0.434141 -0.00572026 0)
(0.439584 -0.00391912 0)
(0.442944 -0.00202671 0)
(0.444203 -0.000101614 0)
(0.443308 0.00181127 0)
(0.440229 0.00370783 0)
(0.435075 0.00545952 0)
(0.427963 0.00713659 0)
(0.419048 0.00870518 0)
(0.408499 0.00996957 0)
(0.396559 0.011178 0)
(0.383429 0.0122206 0)
(0.369322 0.0128479 0)
(0.35449 0.0134891 0)
(0.339137 0.01372 0)
(0.323476 0.0139982 0)
(0.307684 0.0141266 0)
(0.291918 0.0139024 0)
(0.27634 0.0137676 0)
(0.25941 0.013535 0)
(0.420411 -0.0126185 0)
(0.430369 -0.0109028 0)
(0.439494 -0.00885116 0)
(0.446683 -0.00664206 0)
(0.451771 -0.00430494 0)
(0.454647 -0.00185688 0)
(0.455246 0.000618921 0)
(0.453528 0.0030953 0)
(0.449533 0.00556105 0)
(0.443323 0.00784067 0)
(0.435052 0.0100549 0)
(0.424848 0.0121319 0)
(0.412871 0.0137884 0)
(0.399385 0.0154248 0)
(0.384569 0.0165501 0)
(0.368701 0.0176793 0)
(0.351991 0.0185959 0)
(0.334666 0.0189302 0)
(0.316976 0.0193305 0)
(0.299119 0.0195308 0)
(0.281299 0.0192021 0)
(0.263697 0.0189768 0)
(0.246474 0.0185928 0)
(0.229772 0.0178192 0)
(0.213691 0.0171615 0)
(0.198344 0.0162268 0)
(0.183782 0.0154003 0)
(0.170063 0.0145171 0)
(0.157222 0.0134971 0)
(0.145261 0.0125629 0)
(0.13419 0.0116206 0)
(0.124001 0.0106433 0)
(0.11467 0.00972984 0)
(0.10618 0.00881821 0)
(0.0984962 0.00796151 0)
(0.0915893 0.00713591 0)
(0.085425 0.00634005 0)
(0.0799665 0.00558759 0)
(0.0751789 0.00487137 0)
(0.0710277 0.00418902 0)
(0.0674796 0.0035429 0)
(0.0645043 0.0029281 0)
(0.0620727 0.00234386 0)
(0.0601629 0.00178263 0)
(0.0587536 0.00123693 0)
(0.0578173 0.000706399 0)
(0.0573312 0.000187753 0)
(0.0573128 -0.000332215 0)
(0.0577774 -0.000846547 0)
(0.0587205 -0.00134852 0)
(0.0601448 -0.00187545 0)
(0.0620519 -0.00238777 0)
(0.0644479 -0.00293918 0)
(0.0673577 -0.00349643 0)
(0.0707783 -0.00403345 0)
(0.0747233 -0.00464414 0)
(0.0792586 -0.00527583 0)
(0.0843503 -0.00585479 0)
(0.0900449 -0.00658453 0)
(0.0964002 -0.00726243 0)
(0.103434 -0.00808214 0)
(0.111263 -0.00892747 0)
(0.119888 -0.00977299 0)
(0.129362 -0.0107643 0)
(0.139849 -0.0118243 0)
(0.151318 -0.0127921 0)
(0.163784 -0.013891 0)
(0.177269 -0.0148321 0)
(0.191602 -0.0156362 0)
(0.206665 -0.0163499 0)
(0.222259 -0.0165236 0)
(0.237725 -0.0164003 0)
(0.252971 -0.0156659 0)
(0.267123 -0.01487 0)
(0.280451 -0.0136703 0)
(0.292364 -0.0124761 0)
(0.303224 -0.0110323 0)
(0.31272 -0.00973764 0)
(0.321488 -0.00904285 0)
(0.329842 -0.00793581 0)
(0.337345 -0.00756927 0)
(0.345285 -0.00750283 0)
(0.353404 -0.00749117 0)
(0.361733 -0.0076063 0)
(0.370321 -0.0075844 0)
(0.379011 -0.00719663 0)
(0.387316 -0.0063684 0)
(0.394714 -0.00505402 0)
(0.400556 -0.00337198 0)
(0.404364 -0.00136746 0)
(0.405732 0.000909492 0)
(0.404556 0.00344644 0)
(0.400996 0.00602928 0)
(0.395126 0.00838353 0)
(0.387084 0.0104763 0)
(0.377018 0.0123275 0)
(0.365142 0.0139853 0)
(0.35189 0.0154082 0)
(0.337286 0.0166199 0)
(0.321475 0.017597 0)
(0.304898 0.0183118 0)
(0.287734 0.018731 0)
(0.270375 0.0188641 0)
(0.253013 0.0187596 0)
(0.235887 0.0184364 0)
(0.219121 0.0179523 0)
(0.20293 0.0173179 0)
(0.187367 0.0165808 0)
(0.172492 0.0158012 0)
(0.158391 0.0149462 0)
(0.145084 0.0140871 0)
(0.132541 0.0132163 0)
(0.120872 0.0123175 0)
(0.109984 0.0114463 0)
(0.0999049 0.0105225 0)
(0.0907143 0.00960781 0)
(0.0823138 0.00870954 0)
(0.0747768 0.00774107 0)
(0.0681256 0.00681179 0)
(0.0623318 0.00591174 0)
(0.0573305 0.00498167 0)
(0.0532184 0.0040996 0)
(0.0498418 0.00326207 0)
(0.0473088 0.00243631 0)
(0.0454091 0.00165999 0)
(0.0443092 0.000921972 0)
(0.0437884 0.000246773 0)
(0.0438795 -0.00040179 0)
(0.0445649 -0.00101083 0)
(0.0458048 -0.00155602 0)
(0.0474488 -0.00210278 0)
(0.049662 -0.00261176 0)
(0.0522742 -0.00301513 0)
(0.0551981 -0.0034671 0)
(0.0585829 -0.00388579 0)
(0.0623308 -0.00423032 0)
(0.0663326 -0.00457899 0)
(0.0706529 -0.00489292 0)
(0.0753025 -0.00510938 0)
(0.080039 -0.00537232 0)
(0.0850483 -0.00565141 0)
(0.0903288 -0.00586624 0)
(0.0957926 -0.00610028 0)
(0.10147 -0.00631874 0)
(0.107379 -0.00654173 0)
(0.113428 -0.0068391 0)
(0.119803 -0.00718881 0)
(0.126546 -0.00755113 0)
(0.133639 -0.00796334 0)
(0.141135 -0.00844398 0)
(0.149109 -0.0089579 0)
(0.157534 -0.00953485 0)
(0.166598 -0.0100962 0)
(0.176086 -0.0107067 0)
(0.186226 -0.0112715 0)
(0.196799 -0.0118573 0)
(0.207925 -0.0123711 0)
(0.219504 -0.012862 0)
(0.23153 -0.0133056 0)
(0.243895 -0.0136591 0)
(0.25659 -0.0139341 0)
(0.269475 -0.014101 0)
(0.282476 -0.0141483 0)
(0.295482 -0.0140862 0)
(0.308335 -0.0138588 0)
(0.320931 -0.0134836 0)
(0.333086 -0.0129637 0)
(0.344728 -0.0122116 0)
(0.355523 -0.0113101 0)
(0.365486 -0.0101586 0)
(0.374191 -0.00885058 0)
(0.381632 -0.00733238 0)
(0.387609 -0.00566651 0)
(0.391967 -0.00380275 0)
(0.394513 -0.00183678 0)
(0.395206 0.000198094 0)
(0.393924 0.00231764 0)
(0.390716 0.00443911 0)
(0.385617 0.0065805 0)
(0.378469 0.00856597 0)
(0.369594 0.010472 0)
(0.358997 0.0121236 0)
(0.346995 0.0135521 0)
(0.333903 0.0147308 0)
(0.31971 0.0155905 0)
(0.30495 0.0161674 0)
(0.28976 0.0165212 0)
(0.274342 0.016636 0)
(0.258912 0.0165875 0)
(0.24364 0.0163127 0)
(0.228584 0.0159101 0)
(0.214121 0.0153171 0)
(0.200152 0.0146191 0)
(0.186964 0.0138232 0)
(0.174469 0.0129373 0)
(0.1629 0.0120627 0)
(0.15205 0.0111573 0)
(0.142131 0.0102158 0)
(0.133049 0.00931903 0)
(0.124804 0.00834999 0)
(0.117477 0.00745941 0)
(0.110931 0.00653732 0)
(0.105251 0.00567687 0)
(0.100364 0.00488026 0)
(0.0961646 0.00413473 0)
(0.0926642 0.00345347 0)
(0.089753 0.00283255 0)
(0.0874091 0.00225799 0)
(0.0855745 0.00178857 0)
(0.0841766 0.00143942 0)
(0.0830175 0.00110921 0)
(0.0821804 0.000841101 0)
(0.0815229 0.000712955 0)
(0.0810791 0.00047633 0)
(0.0807186 0.000264339 0)
(0.0806882 0.0001425 0)
(0.0807149 -0.000114158 0)
(0.0810206 -0.000281081 0)
(0.0814574 -0.000460908 0)
(0.0820453 -0.000674783 0)
(0.0827969 -0.00080738 0)
(0.0837336 -0.000990404 0)
(0.084786 -0.0011974 0)
(0.086078 -0.0015196 0)
(0.0876205 -0.00184829 0)
(0.0895835 -0.00225636 0)
(0.0919002 -0.00272004 0)
(0.0946981 -0.00329669 0)
(0.0979663 -0.00399595 0)
(0.101985 -0.00474044 0)
(0.106735 -0.00560691 0)
(0.112328 -0.00654072 0)
(0.118778 -0.0074993 0)
(0.126125 -0.00854563 0)
(0.134379 -0.00952438 0)
(0.143618 -0.0105259 0)
(0.153724 -0.0115273 0)
(0.164772 -0.0124931 0)
(0.176625 -0.0135026 0)
(0.189455 -0.0144301 0)
(0.203095 -0.0153939 0)
(0.217643 -0.0163581 0)
(0.233065 -0.0173003 0)
(0.249301 -0.0182502 0)
(0.266425 -0.0190186 0)
(0.28424 -0.0197475 0)
(0.302576 -0.0202211 0)
(0.321348 -0.0204213 0)
(0.340147 -0.020429 0)
(0.35887 -0.0200816 0)
(0.37713 -0.0193838 0)
(0.394596 -0.0183758 0)
(0.410996 -0.0169379 0)
(0.425906 -0.0151715 0)
(0.438998 -0.0129737 0)
(0.4499 -0.0105159 0)
(0.458385 -0.00772691 0)
(0.464228 -0.00473376 0)
(0.467128 -0.00169603 0)
(0.467142 0.00145626 0)
(0.464165 0.00466857 0)
(0.45825 0.00769069 0)
(0.449469 0.0106197 0)
(0.438051 0.0133127 0)
(0.424246 0.0156997 0)
(0.40842 0.0178145 0)
(0.390885 0.0195279 0)
(0.372137 0.0207947 0)
(0.352499 0.0217155 0)
(0.332982 0.0222428 0)
(0.313517 0.0223398 0)
(0.293706 0.0219818 0)
(0.274261 0.0213233 0)
(0.255565 0.0204656 0)
(0.237599 0.0193962 0)
(0.220718 0.0180979 0)
(0.204962 0.016807 0)
(0.190301 0.0153975 0)
(0.177083 0.0139657 0)
(0.165144 0.01258 0)
(0.154647 0.0111696 0)
(0.145735 0.00976345 0)
(0.137933 0.00845251 0)
(0.131314 0.00714733 0)
(0.125865 0.00605898 0)
(0.121142 0.00513812 0)
(0.117259 0.00433649 0)
(0.113861 0.0038605 0)
(0.110722 0.00345798 0)
(0.107885 0.0032197 0)
(0.105087 0.00310119 0)
(0.102333 0.00298014 0)
(0.099661 0.00286855 0)
(0.0970292 0.00272986 0)
(0.094535 0.0025096 0)
(0.0922449 0.00221399 0)
(0.0902431 0.00185395 0)
(0.088568 0.00144003 0)
(0.0872735 0.000969167 0)
(0.0863925 0.000501525 0)
(0.0859247 1.80619e-05 0)
(0.0859687 -0.00040412 0)
(0.0864848 -0.000797107 0)
(0.0873817 -0.00119665 0)
(0.0886512 -0.00157702 0)
(0.0902591 -0.00191936 0)
(0.0922013 -0.00231509 0)
(0.0945048 -0.00270861 0)
(0.0971931 -0.00318325 0)
(0.100321 -0.00371303 0)
(0.103959 -0.00429174 0)
(0.108197 -0.00501715 0)
(0.113116 -0.0058166 0)
(0.118812 -0.00667044 0)
(0.125383 -0.00771244 0)
(0.132918 -0.00874468 0)
(0.141468 -0.00994849 0)
(0.151087 -0.011104 0)
(0.161796 -0.012206 0)
(0.173592 -0.0134904 0)
(0.186473 -0.0145737 0)
(0.200361 -0.0154996 0)
(0.215158 -0.0166101 0)
(0.230782 -0.0173143 0)
(0.247081 -0.0181608 0)
(0.263928 -0.018559 0)
(0.281117 -0.0186852 0)
(0.298461 -0.0189526 0)
(0.315773 -0.0187034 0)
(0.332825 -0.0181718 0)
(0.349416 -0.0177282 0)
(0.365316 -0.0167825 0)
(0.380306 -0.0155852 0)
(0.394196 -0.0143873 0)
(0.406734 -0.0127753 0)
(0.417773 -0.0110976 0)
(0.427083 -0.00911651 0)
(0.43453 -0.00699907 0)
(0.439995 -0.00479453 0)
(0.443366 -0.00247925 0)
(0.444635 -0.000126173 0)
(0.443722 0.00221633 0)
(0.440635 0.00453057 0)
(0.435454 0.00667954 0)
(0.428315 0.00873394 0)
(0.419367 0.0106536 0)
(0.408774 0.0122001 0)
(0.396793 0.0136781 0)
(0.38362 0.0149528 0)
(0.369466 0.0157187 0)
(0.354593 0.0165018 0)
(0.339198 0.0167825 0)
(0.323502 0.0171214 0)
(0.307677 0.0172769 0)
(0.291884 0.017001 0)
(0.276283 0.0168346 0)
(0.259332 0.0165489 0)
(0.420779 -0.0149347 0)
(0.430786 -0.0129054 0)
(0.439951 -0.0104777 0)
(0.447176 -0.00786347 0)
(0.452292 -0.0050977 0)
(0.455183 -0.00220204 0)
(0.455782 0.000734908 0)
(0.454061 0.00366754 0)
(0.450054 0.00658253 0)
(0.44381 0.00927985 0)
(0.435505 0.0119003 0)
(0.425263 0.014358 0)
(0.413229 0.0163171 0)
(0.399694 0.0182527 0)
(0.384818 0.0195825 0)
(0.368898 0.0209174 0)
(0.352135 0.0220005 0)
(0.334754 0.0223941 0)
(0.317014 0.0228661 0)
(0.29911 0.0231014 0)
(0.281248 0.0227104 0)
(0.263608 0.0224422 0)
(0.246351 0.0219863 0)
(0.229624 0.0210694 0)
(0.21352 0.02029 0)
(0.19816 0.0191831 0)
(0.183585 0.0182044 0)
(0.169857 0.0171589 0)
(0.157015 0.015952 0)
(0.145052 0.0148467 0)
(0.133982 0.0137321 0)
(0.123798 0.0125764 0)
(0.114472 0.0114962 0)
(0.105989 0.0104185 0)
(0.0983131 0.00940579 0)
(0.091414 0.00843 0)
(0.0852582 0.00748952 0)
(0.0798078 0.00660052 0)
(0.0750281 0.00575439 0)
(0.0708846 0.00494843 0)
(0.0673437 0.00418503 0)
(0.0643752 0.00345793 0)
(0.0619491 0.00276644 0)
(0.0600438 0.00210323 0)
(0.058638 0.00145856 0)
(0.0577043 0.000832 0)
(0.05722 0.000219784 0)
(0.0572025 -0.000393473 0)
(0.0576678 -0.00100033 0)
(0.0586113 -0.0015933 0)
(0.0600343 -0.00221605 0)
(0.0619402 -0.00282121 0)
(0.0643335 -0.00347264 0)
(0.0672406 -0.00413109 0)
(0.0706583 -0.00476541 0)
(0.074599 -0.00548699 0)
(0.0791306 -0.00623338 0)
(0.084218 -0.00691716 0)
(0.0899065 -0.00777916 0)
(0.0962551 -0.00857972 0)
(0.10328 -0.00954786 0)
(0.111097 -0.0105461 0)
(0.119709 -0.0115445 0)
(0.129167 -0.012717 0)
(0.139647 -0.0139708 0)
(0.151105 -0.0151168 0)
(0.163583 -0.0164228 0)
(0.177088 -0.0175412 0)
(0.19146 -0.0185019 0)
(0.206601 -0.0193564 0)
(0.222297 -0.0195778 0)
(0.237877 -0.0194425 0)
(0.253303 -0.0185922 0)
(0.267532 -0.0176317 0)
(0.280926 -0.0161905 0)
(0.292893 -0.0147703 0)
(0.303843 -0.0130682 0)
(0.313401 -0.0115404 0)
(0.322258 -0.0107325 0)
(0.330747 -0.00943052 0)
(0.33838 -0.00899938 0)
(0.346446 -0.00892839 0)
(0.35468 -0.00890409 0)
(0.363112 -0.00902603 0)
(0.37182 -0.00901242 0)
(0.380623 -0.00857441 0)
(0.389018 -0.0076097 0)
(0.396503 -0.0060453 0)
(0.402406 -0.00402911 0)
(0.406227 -0.00161499 0)
(0.407612 0.00115288 0)
(0.406469 0.00414746 0)
(0.402879 0.00715315 0)
(0.396991 0.00992526 0)
(0.388875 0.0124047 0)
(0.378749 0.014601 0)
(0.366843 0.0165491 0)
(0.353516 0.0182338 0)
(0.338874 0.0196732 0)
(0.323033 0.0208225 0)
(0.306384 0.0216644 0)
(0.289163 0.022157 0)
(0.271761 0.0223162 0)
(0.254342 0.0221893 0)
(0.237167 0.0218115 0)
(0.220396 0.0212261 0)
(0.204172 0.0204701 0)
(0.188585 0.0196091 0)
(0.173711 0.0186759 0)
(0.159609 0.0176622 0)
(0.146276 0.0166483 0)
(0.133775 0.0156231 0)
(0.122073 0.0145649 0)
(0.111183 0.0135222 0)
(0.101123 0.0124387 0)
(0.0919063 0.0113611 0)
(0.0835206 0.0102941 0)
(0.0759963 0.00914963 0)
(0.0693154 0.00805155 0)
(0.0635475 0.00698425 0)
(0.0585478 0.00588794 0)
(0.054437 0.00484299 0)
(0.0510815 0.00384882 0)
(0.0485629 0.00287622 0)
(0.046661 0.00195512 0)
(0.0455694 0.00108389 0)
(0.0450714 0.000282892 0)
(0.0451741 -0.000476408 0)
(0.0458664 -0.00120282 0)
(0.0471197 -0.00184092 0)
(0.0487685 -0.00249056 0)
(0.0509851 -0.00308828 0)
(0.0536005 -0.00356576 0)
(0.0565338 -0.00410273 0)
(0.0599347 -0.00459355 0)
(0.0636784 -0.00500498 0)
(0.0676835 -0.00541539 0)
(0.0720308 -0.0057875 0)
(0.0766653 -0.00603593 0)
(0.0813842 -0.00634818 0)
(0.0864152 -0.00667198 0)
(0.0916669 -0.0069312 0)
(0.0971666 -0.00721202 0)
(0.102815 -0.00746082 0)
(0.108719 -0.00772088 0)
(0.114738 -0.00806758 0)
(0.121116 -0.0084847 0)
(0.127815 -0.00891465 0)
(0.134919 -0.00940256 0)
(0.142349 -0.00997208 0)
(0.150338 -0.0105839 0)
(0.158748 -0.0112616 0)
(0.167768 -0.0119225 0)
(0.177287 -0.0126493 0)
(0.187379 -0.0133146 0)
(0.197949 -0.0140098 0)
(0.209093 -0.0146127 0)
(0.220652 -0.0152031 0)
(0.232691 -0.0157208 0)
(0.245074 -0.0161403 0)
(0.257757 -0.0164677 0)
(0.270661 -0.0166653 0)
(0.283667 -0.0167312 0)
(0.29669 -0.016653 0)
(0.309559 -0.0163804 0)
(0.322183 -0.0159366 0)
(0.334351 -0.015326 0)
(0.346033 -0.0144403 0)
(0.356855 -0.0133812 0)
(0.366835 -0.0120063 0)
(0.375579 -0.0104656 0)
(0.38305 -0.00867896 0)
(0.389042 -0.00669759 0)
(0.393435 -0.004493 0)
(0.395976 -0.00216896 0)
(0.396652 0.000248048 0)
(0.395368 0.0027613 0)
(0.392118 0.00527344 0)
(0.386972 0.00780536 0)
(0.37978 0.0101568 0)
(0.370816 0.0124187 0)
(0.360153 0.0143776 0)
(0.348063 0.0160582 0)
(0.334866 0.0174634 0)
(0.320568 0.0184811 0)
(0.305691 0.0191615 0)
(0.290377 0.0195793 0)
(0.274869 0.0197149 0)
(0.2593 0.0196639 0)
(0.243919 0.0193458 0)
(0.228739 0.0188599 0)
(0.214155 0.0181525 0)
(0.200062 0.0173264 0)
(0.186774 0.0163865 0)
(0.174154 0.015342 0)
(0.162483 0.0142982 0)
(0.151558 0.01322 0)
(0.141523 0.0121103 0)
(0.13237 0.0110449 0)
(0.124039 0.00990117 0)
(0.11664 0.00884495 0)
(0.110027 0.00774932 0)
(0.104283 0.00673278 0)
(0.0993378 0.00578522 0)
(0.0950927 0.00490212 0)
(0.0915301 0.00408837 0)
(0.0885891 0.00334342 0)
(0.0862168 0.00266339 0)
(0.0843702 0.00210037 0)
(0.0829633 0.00169059 0)
(0.0818074 0.0012959 0)
(0.0809808 0.000988481 0)
(0.0803474 0.000817553 0)
(0.0799224 0.00054701 0)
(0.0796 0.000295417 0)
(0.0796007 0.000139992 0)
(0.0796737 -0.000154494 0)
(0.0800292 -0.000350909 0)
(0.0805014 -0.000565307 0)
(0.0811315 -0.000809615 0)
(0.0819339 -0.000965421 0)
(0.0828979 -0.00118464 0)
(0.0839793 -0.00142564 0)
(0.0852795 -0.00178861 0)
(0.0868418 -0.00218486 0)
(0.0888148 -0.00267047 0)
(0.091139 -0.00321447 0)
(0.0939205 -0.00389161 0)
(0.0971841 -0.00471325 0)
(0.101198 -0.00559764 0)
(0.105946 -0.00661944 0)
(0.111532 -0.00772623 0)
(0.117976 -0.00886845 0)
(0.125324 -0.0100934 0)
(0.133593 -0.0112571 0)
(0.142837 -0.0124401 0)
(0.152947 -0.0136235 0)
(0.163993 -0.0147717 0)
(0.175855 -0.0159626 0)
(0.188693 -0.0170514 0)
(0.202335 -0.0182019 0)
(0.216889 -0.0193381 0)
(0.232315 -0.0204559 0)
(0.248576 -0.0215808 0)
(0.265725 -0.0224905 0)
(0.283569 -0.0233587 0)
(0.301965 -0.0239182 0)
(0.320789 -0.0241634 0)
(0.33965 -0.0241734 0)
(0.35845 -0.0237599 0)
(0.376787 -0.0229471 0)
(0.394337 -0.0217524 0)
(0.410826 -0.0200539 0)
(0.425821 -0.0179648 0)
(0.438995 -0.0153611 0)
(0.449961 -0.0124512 0)
(0.458504 -0.00915349 0)
(0.464371 -0.00560738 0)
(0.467293 -0.00200255 0)
(0.467318 0.00173328 0)
(0.464333 0.00552482 0)
(0.458389 0.00910434 0)
(0.449559 0.0125735 0)
(0.438098 0.0157558 0)
(0.424239 0.0185932 0)
(0.408336 0.0210793 0)
(0.390754 0.0231005 0)
(0.371939 0.0246091 0)
(0.35225 0.025689 0)
(0.332703 0.0262998 0)
(0.313191 0.0264146 0)
(0.293353 0.0259867 0)
(0.273906 0.0251916 0)
(0.255219 0.0241736 0)
(0.23727 0.02291 0)
(0.220409 0.0213787 0)
(0.204676 0.0198579 0)
(0.190029 0.018193 0)
(0.176811 0.0165008 0)
(0.164867 0.0148698 0)
(0.154345 0.0132088 0)
(0.145405 0.0115483 0)
(0.137569 0.0100032 0)
(0.130915 0.00845866 0)
(0.125437 0.00716813 0)
(0.120694 0.00607674 0)
(0.116808 0.00512246 0)
(0.113414 0.00455795 0)
(0.110285 0.00407779 0)
(0.107469 0.0037933 0)
(0.104696 0.00364963 0)
(0.10197 0.00351065 0)
(0.0993268 0.00337213 0)
(0.0967221 0.00321573 0)
(0.0942534 0.00295217 0)
(0.0919898 0.00260745 0)
(0.0900085 0.00217631 0)
(0.0883619 0.00169694 0)
(0.0870865 0.00114376 0)
(0.0862259 0.000591368 0)
(0.0857806 1.72078e-05 0)
(0.0858468 -0.000489033 0)
(0.0863753 -0.000951429 0)
(0.0872828 -0.00141905 0)
(0.0885603 -0.00186564 0)
(0.0901717 -0.0022677 0)
(0.0921111 -0.00273269 0)
(0.0944079 -0.00319508 0)
(0.0970838 -0.0037533 0)
(0.100196 -0.00437691 0)
(0.103816 -0.0050601 0)
(0.108032 -0.00591667 0)
(0.11293 -0.00686143 0)
(0.118607 -0.0078726 0)
(0.125157 -0.00910557 0)
(0.132678 -0.0103278 0)
(0.141214 -0.0117529 0)
(0.150829 -0.0131213 0)
(0.16154 -0.0144266 0)
(0.173339 -0.0159474 0)
(0.186236 -0.0172306 0)
(0.200145 -0.0183272 0)
(0.214965 -0.0196426 0)
(0.230622 -0.020477 0)
(0.246956 -0.0214798 0)
(0.263846 -0.0219519 0)
(0.281079 -0.022102 0)
(0.298471 -0.02242 0)
(0.315832 -0.0221258 0)
(0.332933 -0.0214973 0)
(0.349579 -0.020974 0)
(0.365528 -0.0198558 0)
(0.380565 -0.0184399 0)
(0.39451 -0.0170239 0)
(0.40709 -0.0151171 0)
(0.418179 -0.0131328 0)
(0.427522 -0.0107886 0)
(0.434996 -0.00828274 0)
(0.440489 -0.00567344 0)
(0.443872 -0.00293397 0)
(0.445146 -0.000148106 0)
(0.444226 0.00262152 0)
(0.441124 0.00535765 0)
(0.43591 0.00790508 0)
(0.428738 0.0103383 0)
(0.419751 0.0126106 0)
(0.409103 0.0144397 0)
(0.397074 0.0161878 0)
(0.38385 0.017695 0)
(0.369639 0.018599 0)
(0.354716 0.0195237 0)
(0.339272 0.0198531 0)
(0.323533 0.020252 0)
(0.307669 0.0204339 0)
(0.291844 0.020105 0)
(0.276214 0.0199062 0)
(0.259237 0.0195664 0)
(0.421209 -0.0172618 0)
(0.431273 -0.0149181 0)
(0.440486 -0.0121127 0)
(0.447751 -0.00909155 0)
(0.4529 -0.00589505 0)
(0.455809 -0.00254904 0)
(0.456411 0.000849322 0)
(0.454684 0.00424349 0)
(0.450663 0.00760925 0)
(0.444378 0.0107259 0)
(0.436035 0.0137542 0)
(0.425747 0.0165943 0)
(0.413648 0.0188567 0)
(0.400055 0.0210923 0)
(0.385109 0.0226266 0)
(0.369127 0.0241674 0)
(0.352301 0.0254171 0)
(0.334856 0.0258689 0)
(0.317059 0.0264121 0)
(0.2991 0.0266818 0)
(0.281189 0.0262273 0)
(0.263504 0.0259151 0)
(0.246207 0.0253862 0)
(0.229452 0.0243248 0)
(0.213321 0.0234225 0)
(0.197945 0.0221423 0)
(0.183354 0.0210105 0)
(0.169616 0.0198019 0)
(0.156772 0.0184072 0)
(0.144808 0.0171303 0)
(0.133739 0.0158429 0)
(0.123562 0.0145084 0)
(0.114242 0.0132613 0)
(0.105768 0.0120172 0)
(0.0980995 0.0108484 0)
(0.0912096 0.00972236 0)
(0.0850636 0.00863726 0)
(0.0796226 0.00761176 0)
(0.0748522 0.00663575 0)
(0.0707177 0.00570627 0)
(0.0671852 0.00482567 0)
(0.0642244 0.00398644 0)
(0.0618049 0.00318797 0)
(0.0599049 0.00242282 0)
(0.0585032 0.00167941 0)
(0.0575726 0.000957022 0)
(0.0570904 0.000251342 0)
(0.057074 -0.000455152 0)
(0.0575401 -0.0011543 0)
(0.058484 -0.00183804 0)
(0.0599054 -0.00255634 0)
(0.0618099 -0.00325424 0)
(0.0642 -0.00400558 0)
(0.067104 -0.00476508 0)
(0.0705184 -0.00549668 0)
(0.074454 -0.00632901 0)
(0.0789815 -0.00719007 0)
(0.0840636 -0.00797844 0)
(0.0897451 -0.00897262 0)
(0.0960861 -0.00989538 0)
(0.103099 -0.0110116 0)
(0.110904 -0.0121623 0)
(0.119501 -0.0133139 0)
(0.128941 -0.0146671 0)
(0.139409 -0.0161152 0)
(0.150854 -0.0174409 0)
(0.163349 -0.0189585 0)
(0.176869 -0.0202514 0)
(0.191292 -0.0213797 0)
(0.206521 -0.0223877 0)
(0.222334 -0.0226463 0)
(0.238083 -0.0225253 0)
(0.253649 -0.0215375 0)
(0.267967 -0.0203944 0)
(0.281489 -0.0187367 0)
(0.293539 -0.0170961 0)
(0.304588 -0.0151361 0)
(0.314217 -0.0133722 0)
(0.323169 -0.0124573 0)
(0.331796 -0.010952 0)
(0.339584 -0.0104493 0)
(0.347778 -0.0103732 0)
(0.356167 -0.010345 0)
(0.364745 -0.0104761 0)
(0.373578 -0.0104693 0)
(0.382511 -0.00998819 0)
(0.391009 -0.0088764 0)
(0.398585 -0.00706198 0)
(0.404555 -0.00469667 0)
(0.408411 -0.00185217 0)
(0.409831 0.00137836 0)
(0.40872 0.00484133 0)
(0.405089 0.00828461 0)
(0.399146 0.0114807 0)
(0.390976 0.0143409 0)
(0.380776 0.0168738 0)
(0.368832 0.0191212 0)
(0.355435 0.0210642 0)
(0.340737 0.0227246 0)
(0.32484 0.0240579 0)
(0.308129 0.0250271 0)
(0.290847 0.0255911 0)
(0.273366 0.0257739 0)
(0.255907 0.0256294 0)
(0.238673 0.0251805 0)
(0.221865 0.0245045 0)
(0.205629 0.023629 0)
(0.190018 0.0226287 0)
(0.175137 0.0215498 0)
(0.161025 0.0203829 0)
(0.147679 0.0192079 0)
(0.13519 0.0180266 0)
(0.123485 0.0168016 0)
(0.112589 0.015602 0)
(0.102533 0.0143532 0)
(0.0933183 0.0131103 0)
(0.0849169 0.011872 0)
(0.077402 0.0105555 0)
(0.0707217 0.00929035 0)
(0.0649683 0.0080568 0)
(0.0599634 0.00678729 0)
(0.0558658 0.00558407 0)
(0.0525071 0.00443151 0)
(0.0500173 0.00331041 0)
(0.0481187 0.00225734 0)
(0.0470583 0.00123914 0)
(0.0465582 0.00032689 0)
(0.04667 -0.000553749 0)
(0.0473903 -0.00139594 0)
(0.0486425 -0.00213193 0)
(0.0502944 -0.00287605 0)
(0.0525428 -0.00356394 0)
(0.0551683 -0.0041171 0)
(0.0580972 -0.00473663 0)
(0.061506 -0.00530825 0)
(0.065259 -0.00577716 0)
(0.069257 -0.00625028 0)
(0.0736111 -0.00667973 0)
(0.0782552 -0.00696344 0)
(0.0829569 -0.00732467 0)
(0.0879951 -0.00770038 0)
(0.0932391 -0.00799798 0)
(0.0987502 -0.00831633 0)
(0.104377 -0.00860168 0)
(0.110284 -0.00890354 0)
(0.116261 -0.00930656 0)
(0.122642 -0.00978378 0)
(0.129296 -0.0102743 0)
(0.136399 -0.0108357 0)
(0.143798 -0.0114955 0)
(0.151771 -0.012204 0)
(0.160152 -0.0129823 0)
(0.169152 -0.0137542 0)
(0.178654 -0.0145904 0)
(0.188729 -0.0153598 0)
(0.19929 -0.0161645 0)
(0.210448 -0.0168623 0)
(0.221998 -0.0175445 0)
(0.23404 -0.0181496 0)
(0.246437 -0.0186269 0)
(0.259123 -0.0190102 0)
(0.272056 -0.0192399 0)
(0.285057 -0.0193149 0)
(0.298111 -0.0192219 0)
(0.310985 -0.0189161 0)
(0.323642 -0.018412 0)
(0.335832 -0.0177066 0)
(0.347544 -0.0166865 0)
(0.358395 -0.0154584 0)
(0.368406 -0.0138851 0)
(0.377186 -0.0120992 0)
(0.384699 -0.0100276 0)
(0.390716 -0.00774486 0)
(0.395141 -0.00519213 0)
(0.397691 -0.00249679 0)
(0.398353 0.00029625 0)
(0.397082 0.00320556 0)
(0.393801 0.0061005 0)
(0.388603 0.00903766 0)
(0.381376 0.0117661 0)
(0.372322 0.0143725 0)
(0.361581 0.0166418 0)
(0.349405 0.0185963 0)
(0.336104 0.0202161 0)
(0.321706 0.0213919 0)
(0.306709 0.0221813 0)
(0.291281 0.0226636 0)
(0.275663 0.0228197 0)
(0.259962 0.0227529 0)
(0.244463 0.0223917 0)
(0.229153 0.0218417 0)
(0.214452 0.0210162 0)
(0.200236 0.0200584 0)
(0.186843 0.0189612 0)
(0.174116 0.0177659 0)
(0.162345 0.0165577 0)
(0.151333 0.01532 0)
(0.141194 0.0140209 0)
(0.131954 0.0127865 0)
(0.123524 0.0114642 0)
(0.11604 0.0102389 0)
(0.109325 0.00897609 0)
(0.103504 0.00779479 0)
(0.0984664 0.00669406 0)
(0.0941481 0.00567502 0)
(0.0905008 0.00472944 0)
(0.0874922 0.00386587 0)
(0.0850589 0.0030753 0)
(0.0831692 0.00242576 0)
(0.0817258 0.00193875 0)
(0.0805377 0.00147607 0)
(0.0797099 0.00112763 0)
(0.0790649 0.000925311 0)
(0.0786383 0.000604878 0)
(0.0783444 0.000327465 0)
(0.0783747 0.000135244 0)
(0.0784748 -0.000201585 0)
(0.0788813 -0.000431598 0)
(0.0793951 -0.00068198 0)
(0.0800735 -0.000957792 0)
(0.0809252 -0.00113474 0)
(0.0819166 -0.00138339 0)
(0.0830212 -0.00165519 0)
(0.0843435 -0.00207298 0)
(0.0859279 -0.00252383 0)
(0.0879129 -0.00308181 0)
(0.0902377 -0.0037047 0)
(0.0930099 -0.00449358 0)
(0.0962693 -0.0054297 0)
(0.100274 -0.00645255 0)
(0.105011 -0.00763264 0)
(0.110595 -0.00891412 0)
(0.117034 -0.0102354 0)
(0.124388 -0.0116451 0)
(0.132669 -0.012987 0)
(0.14192 -0.0143584 0)
(0.152036 -0.01572 0)
(0.163091 -0.0170544 0)
(0.17496 -0.0184176 0)
(0.187804 -0.0196784 0)
(0.201446 -0.021005 0)
(0.216004 -0.0223157 0)
(0.231436 -0.023616 0)
(0.247725 -0.0249104 0)
(0.264911 -0.0259767 0)
(0.282797 -0.0269838 0)
(0.301258 -0.0276202 0)
(0.320144 -0.0279212 0)
(0.339082 -0.0279312 0)
(0.357979 -0.027458 0)
(0.376408 -0.0265237 0)
(0.394051 -0.0251483 0)
(0.410639 -0.0231952 0)
(0.425736 -0.0207781 0)
(0.439007 -0.0177701 0)
(0.450055 -0.0144063 0)
(0.458662 -0.0105849 0)
(0.464566 -0.00648814 0)
(0.467513 -0.0023106 0)
(0.467553 0.00201712 0)
(0.464556 0.00638679 0)
(0.458576 0.0105266 0)
(0.449697 0.0145417 0)
(0.438177 0.0182136 0)
(0.424248 0.0214943 0)
(0.408274 0.0243605 0)
(0.390615 0.0266863 0)
(0.371724 0.0284256 0)
(0.351979 0.0296758 0)
(0.332383 0.0303708 0)
(0.312817 0.0304959 0)
(0.292955 0.0299937 0)
(0.273504 0.0290601 0)
(0.254824 0.0278753 0)
(0.236896 0.0264158 0)
(0.220062 0.0246522 0)
(0.204356 0.0229064 0)
(0.189726 0.0209891 0)
(0.176506 0.0190381 0)
(0.164551 0.0171641 0)
(0.154003 0.0152528 0)
(0.145024 0.0133395 0)
(0.137146 0.0115606 0)
(0.130449 0.00977551 0)
(0.124935 0.00828326 0)
(0.12017 0.00701674 0)
(0.11628 0.00590816 0)
(0.112891 0.00525239 0)
(0.109774 0.00469424 0)
(0.106984 0.00435984 0)
(0.104239 0.00419554 0)
(0.101547 0.0040291 0)
(0.098936 0.00387545 0)
(0.0963636 0.00369011 0)
(0.0939259 0.00339147 0)
(0.0916911 0.00299077 0)
(0.089738 0.00250149 0)
(0.0881173 0.00194356 0)
(0.0868672 0.00130681 0)
(0.0860305 0.000673368 0)
(0.0856118 1.15236e-05 0)
(0.085703 -0.000577385 0)
(0.086248 -0.00110878 0)
(0.0871684 -0.0016437 0)
(0.088455 -0.00215551 0)
(0.0900705 -0.00261613 0)
(0.0920064 -0.00314932 0)
(0.0942955 -0.00367951 0)
(0.0969569 -0.00432042 0)
(0.100051 -0.00503722 0)
(0.103649 -0.00582423 0)
(0.10784 -0.00681168 0)
(0.112713 -0.00790188 0)
(0.118367 -0.0090705 0)
(0.124893 -0.010495 0)
(0.132397 -0.0119081 0)
(0.140918 -0.0135556 0)
(0.150526 -0.0151381 0)
(0.16124 -0.0166479 0)
(0.173044 -0.0184067 0)
(0.185958 -0.019891 0)
(0.199893 -0.0211596 0)
(0.21474 -0.0226815 0)
(0.230434 -0.0236469 0)
(0.24681 -0.0248075 0)
(0.263749 -0.0253541 0)
(0.281034 -0.0255286 0)
(0.298482 -0.025898 0)
(0.315901 -0.0255589 0)
(0.333059 -0.0248335 0)
(0.349769 -0.0242309 0)
(0.365775 -0.02294 0)
(0.380867 -0.0213051 0)
(0.394877 -0.0196709 0)
(0.407507 -0.0174685 0)
(0.418652 -0.0151767 0)
(0.428035 -0.012468 0)
(0.435542 -0.00957217 0)
(0.441066 -0.00655647 0)
(0.444464 -0.00339082 0)
(0.445743 -0.000171886 0)
(0.444816 0.00303137 0)
(0.441695 0.00619021 0)
(0.436444 0.00913726 0)
(0.429232 0.0119512 0)
(0.4202 0.0145775 0)
(0.409489 0.01669 0)
(0.397401 0.018709 0)
(0.384118 0.020449 0)
(0.36984 0.0214904 0)
(0.354859 0.0225564 0)
(0.339357 0.0229335 0)
(0.323568 0.0233914 0)
(0.307659 0.0235986 0)
(0.291796 0.0232154 0)
(0.276133 0.0229832 0)
(0.259127 0.0225881 0)
(0.4217 -0.0196015 0)
(0.431831 -0.0169425 0)
(0.441098 -0.0137576 0)
(0.448409 -0.0103274 0)
(0.453596 -0.00669768 0)
(0.456526 -0.00289837 0)
(0.45713 0.000963964 0)
(0.455398 0.00482187 0)
(0.451359 0.00864183 0)
(0.445028 0.01218 0)
(0.436641 0.0156182 0)
(0.426301 0.0188424 0)
(0.414127 0.0214089 0)
(0.400467 0.0239456 0)
(0.385442 0.0256843 0)
(0.369389 0.0274311 0)
(0.352492 0.0288473 0)
(0.334973 0.0293564 0)
(0.317109 0.0299702 0)
(0.299087 0.0302735 0)
(0.281121 0.029754 0)
(0.263384 0.0293968 0)
(0.246041 0.0287936 0)
(0.229254 0.0275861 0)
(0.213092 0.0265597 0)
(0.197698 0.0251049 0)
(0.18309 0.0238189 0)
(0.169341 0.0224461 0)
(0.156495 0.0208629 0)
(0.144529 0.0194136 0)
(0.133462 0.0179529 0)
(0.123291 0.0164392 0)
(0.113978 0.0150248 0)
(0.105514 0.0136142 0)
(0.0978554 0.0122891 0)
(0.090976 0.0110127 0)
(0.0848412 0.00978299 0)
(0.079411 0.00862104 0)
(0.0746512 0.00751524 0)
(0.0705271 0.00646231 0)
(0.067004 0.00546467 0)
(0.064052 0.00451345 0)
(0.0616401 0.0036082 0)
(0.0597462 0.00274124 0)
(0.0583492 0.00189932 0)
(0.0574222 0.00108134 0)
(0.0569425 0.000282333 0)
(0.0569273 -0.00051717 0)
(0.0573944 -0.00130841 0)
(0.0583385 -0.0020827 0)
(0.0597582 -0.00289632 0)
(0.061661 -0.00368677 0)
(0.0640475 -0.00453789 0)
(0.0669479 -0.00539835 0)
(0.0703586 -0.00622705 0)
(0.0742883 -0.00717012 0)
(0.078811 -0.00814573 0)
(0.0838873 -0.00903849 0)
(0.0895608 -0.0101647 0)
(0.0958931 -0.0112092 0)
(0.102894 -0.0124734 0)
(0.110684 -0.013776 0)
(0.119263 -0.0150802 0)
(0.128683 -0.0166147 0)
(0.139139 -0.0182574 0)
(0.150568 -0.0197649 0)
(0.163078 -0.0214961 0)
(0.176615 -0.0229688 0)
(0.1911 -0.0242698 0)
(0.206406 -0.0254293 0)
(0.222395 -0.0257556 0)
(0.238302 -0.0256277 0)
(0.254033 -0.0245133 0)
(0.268471 -0.0231994 0)
(0.282141 -0.0213085 0)
(0.294278 -0.0194414 0)
(0.30544 -0.0172177 0)
(0.315148 -0.0152209 0)
(0.324208 -0.0142045 0)
(0.332986 -0.0125062 0)
(0.340957 -0.0119334 0)
(0.349299 -0.0118548 0)
(0.357861 -0.0118154 0)
(0.366622 -0.0119466 0)
(0.3756 -0.0119384 0)
(0.38467 -0.0114038 0)
(0.393288 -0.0101591 0)
(0.400965 -0.00808322 0)
(0.407007 -0.00536417 0)
(0.410928 -0.00209171 0)
(0.412387 0.00161345 0)
(0.411285 0.00555001 0)
(0.407616 0.00943459 0)
(0.401609 0.0130497 0)
(0.393378 0.016296 0)
(0.383102 0.0191704 0)
(0.371103 0.021711 0)
(0.357629 0.0239136 0)
(0.34287 0.0258001 0)
(0.326908 0.0273085 0)
(0.310119 0.0284051 0)
(0.292772 0.0290481 0)
(0.27521 0.0292487 0)
(0.257685 0.0290818 0)
(0.240398 0.0285683 0)
(0.22355 0.027796 0)
(0.207292 0.0267929 0)
(0.191657 0.0256589 0)
(0.176756 0.024431 0)
(0.162643 0.0231063 0)
(0.149288 0.0217743 0)
(0.136809 0.0204303 0)
(0.125094 0.019046 0)
(0.114195 0.0176859 0)
(0.104143 0.0162714 0)
(0.0949321 0.0148656 0)
(0.0865143 0.0134576 0)
(0.0790176 0.0119636 0)
(0.0723288 0.010529 0)
(0.0665823 0.00912384 0)
(0.0615723 0.00768909 0)
(0.0575051 0.0063291 0)
(0.0541476 0.00501515 0)
(0.0516721 0.00374731 0)
(0.0497722 0.00254818 0)
(0.0487432 0.00139587 0)
(0.0482523 0.000363293 0)
(0.0483924 -0.000641198 0)
(0.0491282 -0.00158872 0)
(0.0503848 -0.00242059 0)
(0.0520476 -0.00326778 0)
(0.0543123 -0.00404983 0)
(0.0569473 -0.0046686 0)
(0.0598813 -0.00537338 0)
(0.0633052 -0.00601845 0)
(0.0670561 -0.00655183 0)
(0.0710553 -0.00708564 0)
(0.0754224 -0.00757396 0)
(0.0800725 -0.00789156 0)
(0.0847511 -0.00830184 0)
(0.0898018 -0.00872341 0)
(0.095041 -0.00906109 0)
(0.10056 -0.00942503 0)
(0.106165 -0.00973812 0)
(0.112076 -0.0100805 0)
(0.118008 -0.0105317 0)
(0.124388 -0.0110672 0)
(0.131007 -0.0116251 0)
(0.138101 -0.0122657 0)
(0.145452 -0.0130166 0)
(0.1534 -0.0138176 0)
(0.161756 -0.0146975 0)
(0.170735 -0.0155761 0)
(0.180215 -0.0165275 0)
(0.190282 -0.0173956 0)
(0.200837 -0.018317 0)
(0.211985 -0.0191097 0)
(0.223533 -0.0198806 0)
(0.235577 -0.0205728 0)
(0.247988 -0.0211118 0)
(0.260661 -0.0215484 0)
(0.273628 -0.0218059 0)
(0.286631 -0.0218946 0)
(0.299724 -0.0217986 0)
(0.312616 -0.021447 0)
(0.32531 -0.0208804 0)
(0.337524 -0.0200835 0)
(0.349278 -0.0189242 0)
(0.360173 -0.0175338 0)
(0.370213 -0.0157434 0)
(0.379018 -0.0137286 0)
(0.386573 -0.0113833 0)
(0.392626 -0.00878435 0)
(0.397085 -0.00589065 0)
(0.399671 -0.00282673 0)
(0.400325 0.000348717 0)
(0.399052 0.00365984 0)
(0.395741 0.00695463 0)
(0.390498 0.0102796 0)
(0.383227 0.0133857 0)
(0.374098 0.016351 0)
(0.363282 0.018932 0)
(0.351025 0.0211454 0)
(0.337619 0.0229896 0)
(0.323125 0.0243277 0)
(0.30803 0.0252165 0)
(0.292505 0.0257664 0)
(0.276776 0.0259535 0)
(0.260959 0.0258753 0)
(0.245347 0.0254671 0)
(0.229921 0.0248353 0)
(0.2151 0.0239059 0)
(0.200771 0.0228197 0)
(0.187283 0.0215706 0)
(0.174466 0.0201998 0)
(0.162602 0.0188197 0)
(0.151518 0.017424 0)
(0.141284 0.0159636 0)
(0.131957 0.0145585 0)
(0.123424 0.0130504 0)
(0.115844 0.0116539 0)
(0.109013 0.0102218 0)
(0.103094 0.00888418 0)
(0.0979374 0.00763234 0)
(0.0935088 0.00647854 0)
(0.0897251 0.00539368 0)
(0.0866 0.00439582 0)
(0.08406 0.00350017 0)
(0.0820864 0.0027577 0)
(0.0805548 0.00219368 0)
(0.079295 0.00166608 0)
(0.0784235 0.00128346 0)
(0.0777366 0.00102578 0)
(0.0772806 0.000670947 0)
(0.0769873 0.00035618 0)
(0.0770267 0.000118799 0)
(0.0771499 -0.000259417 0)
(0.077599 -0.00051842 0)
(0.0781522 -0.000809702 0)
(0.0788793 -0.00111104 0)
(0.0797811 -0.00131099 0)
(0.0807983 -0.0015889 0)
(0.0819255 -0.00189486 0)
(0.0832634 -0.00235316 0)
(0.0848725 -0.00286376 0)
(0.0868714 -0.00349532 0)
(0.0892013 -0.00419896 0)
(0.09196 -0.00508972 0)
(0.0952155 -0.00614125 0)
(0.0992094 -0.00730432 0)
(0.103934 -0.00864153 0)
(0.109512 -0.0100954 0)
(0.11595 -0.0116052 0)
(0.12331 -0.0131985 0)
(0.131604 -0.0147209 0)
(0.140864 -0.0162758 0)
(0.150987 -0.0178172 0)
(0.162045 -0.0193367 0)
(0.173927 -0.0208781 0)
(0.18678 -0.0223032 0)
(0.200421 -0.0238105 0)
(0.214989 -0.0252937 0)
(0.230431 -0.0267761 0)
(0.246747 -0.0282463 0)
(0.263973 -0.0294695 0)
(0.281911 -0.0306133 0)
(0.300446 -0.0313391 0)
(0.3194 -0.0316968 0)
(0.338429 -0.0317068 0)
(0.357431 -0.0311723 0)
(0.375962 -0.0301248 0)
(0.393723 -0.0285691 0)
(0.410431 -0.026351 0)
(0.425641 -0.0236121 0)
(0.43902 -0.0201976 0)
(0.450165 -0.0163705 0)
(0.458852 -0.0120287 0)
(0.4648 -0.00738163 0)
(0.467774 -0.0026215 0)
(0.467831 0.00230595 0)
(0.464818 0.00725448 0)
(0.458798 0.0119566 0)
(0.449866 0.0165207 0)
(0.438279 0.0206838 0)
(0.424266 0.0244129 0)
(0.408206 0.0276561 0)
(0.390465 0.0302907 0)
(0.371489 0.0322673 0)
(0.35168 0.0336766 0)
(0.332032 0.0344511 0)
(0.312403 0.0345818 0)
(0.29251 0.0340024 0)
(0.273052 0.0329281 0)
(0.254378 0.0315771 0)
(0.236474 0.0299199 0)
(0.219667 0.0279221 0)
(0.203989 0.0259485 0)
(0.189382 0.0237816 0)
(0.176161 0.0215762 0)
(0.164196 0.0194626 0)
(0.153617 0.0173061 0)
(0.144591 0.0151403 0)
(0.136663 0.0131282 0)
(0.129915 0.0111025 0)
(0.124359 0.00940395 0)
(0.119571 0.00796057 0)
(0.115673 0.00669376 0)
(0.11229 0.00594549 0)
(0.109189 0.00530548 0)
(0.106427 0.00492102 0)
(0.103715 0.00472975 0)
(0.101062 0.00454439 0)
(0.0984891 0.00436409 0)
(0.0959539 0.00416172 0)
(0.0935512 0.00382026 0)
(0.09135 0.00337163 0)
(0.0894306 0.00281134 0)
(0.0878374 0.00218841 0)
(0.0866157 0.00147069 0)
(0.0858074 0.000753525 0)
(0.0854187 3.19831e-06 0)
(0.0855385 -0.000668273 0)
(0.0861034 -0.00126834 0)
(0.0870385 -0.0018703 0)
(0.0883354 -0.00244651 0)
(0.0899555 -0.00296457 0)
(0.0918876 -0.0035648 0)
(0.0941679 -0.00416162 0)
(0.0968127 -0.00488418 0)
(0.0998851 -0.00569335 0)
(0.103459 -0.00658344 0)
(0.10762 -0.00770142 0)
(0.112465 -0.00893716 0)
(0.118092 -0.0102634 0)
(0.12459 -0.0118803 0)
(0.132076 -0.013485 0)
(0.140578 -0.0153562 0)
(0.15018 -0.0171542 0)
(0.160897 -0.0188699 0)
(0.172706 -0.0208686 0)
(0.18564 -0.0225555 0)
(0.199603 -0.0239975 0)
(0.214481 -0.0257275 0)
(0.23022 -0.0268251 0)
(0.246643 -0.028145 0)
(0.263638 -0.028767 0)
(0.280982 -0.0289665 0)
(0.298495 -0.0293883 0)
(0.31598 -0.0290047 0)
(0.333202 -0.0281822 0)
(0.349987 -0.0275007 0)
(0.366058 -0.0260369 0)
(0.381212 -0.0241825 0)
(0.395296 -0.0223299 0)
(0.407983 -0.0198308 0)
(0.419194 -0.0172306 0)
(0.428623 -0.014156 0)
(0.436166 -0.0108683 0)
(0.441727 -0.00744418 0)
(0.445141 -0.0038499 0)
(0.446427 -0.000195067 0)
(0.44549 0.00344384 0)
(0.442349 0.00702871 0)
(0.437055 0.0103772 0)
(0.429799 0.0135738 0)
(0.420714 0.0165561 0)
(0.40993 0.0189529 0)
(0.397776 0.0212435 0)
(0.384424 0.0232167 0)
(0.37007 0.0243948 0)
(0.355022 0.0256016 0)
(0.339454 0.026025 0)
(0.323608 0.0265411 0)
(0.307647 0.0267725 0)
(0.29174 0.0263334 0)
(0.27604 0.0260663 0)
(0.259 0.0256149 0)
(0.422254 -0.0219557 0)
(0.432459 -0.0189802 0)
(0.441788 -0.0154139 0)
(0.449152 -0.011572 0)
(0.454382 -0.00750633 0)
(0.457335 -0.00325044 0)
(0.457943 0.00107877 0)
(0.456202 0.00540319 0)
(0.452144 0.00968098 0)
(0.445761 0.013643 0)
(0.437324 0.0174936 0)
(0.426925 0.0211039 0)
(0.414666 0.0239755 0)
(0.400932 0.0268142 0)
(0.385816 0.0287572 0)
(0.369683 0.0307104 0)
(0.352706 0.0322931 0)
(0.335104 0.0328583 0)
(0.317165 0.0335421 0)
(0.299071 0.033878 0)
(0.281043 0.0332919 0)
(0.263248 0.0328884 0)
(0.245854 0.0322095 0)
(0.229031 0.0308542 0)
(0.212834 0.0297023 0)
(0.19742 0.0280714 0)
(0.182792 0.0266299 0)
(0.16903 0.0250918 0)
(0.156182 0.0233191 0)
(0.144214 0.0216967 0)
(0.133149 0.020062 0)
(0.122987 0.0183686 0)
(0.113681 0.0167865 0)
(0.105228 0.0152091 0)
(0.0975806 0.0137276 0)
(0.0907131 0.0123008 0)
(0.084591 0.0109264 0)
(0.0791731 0.00962809 0)
(0.0744253 0.00839259 0)
(0.0703127 0.00721635 0)
(0.0668002 0.00610183 0)
(0.063858 0.00503882 0)
(0.0614547 0.00402697 0)
(0.0595678 0.00305831 0)
(0.0581762 0.00211816 0)
(0.0572532 0.00120486 0)
(0.0567762 0.000312715 0)
(0.0567626 -0.000579609 0)
(0.0572306 -0.00146268 0)
(0.0581751 -0.00232726 0)
(0.0595927 -0.00323593 0)
(0.0614937 -0.00411874 0)
(0.0638761 -0.0050695 0)
(0.0667724 -0.00603078 0)
(0.0701788 -0.00695646 0)
(0.074102 -0.00801017 0)
(0.0786193 -0.00910026 0)
(0.083689 -0.0100972 0)
(0.0893537 -0.0113551 0)
(0.0956763 -0.0125211 0)
(0.102663 -0.0139326 0)
(0.110436 -0.0153867 0)
(0.118997 -0.0168433 0)
(0.128392 -0.0185595 0)
(0.138834 -0.020397 0)
(0.150245 -0.0220878 0)
(0.162771 -0.0240374 0)
(0.176325 -0.02569 0)
(0.190874 -0.0271712 0)
(0.206273 -0.0285008 0)
(0.222447 -0.0288865 0)
(0.238543 -0.0287698 0)
(0.25447 -0.0275244 0)
(0.26904 -0.0260269 0)
(0.282872 -0.0239115 0)
(0.295102 -0.0218163 0)
(0.306393 -0.0193333 0)
(0.316192 -0.0171023 0)
(0.325375 -0.0159931 0)
(0.334323 -0.0141023 0)
(0.342491 -0.0134574 0)
(0.351018 -0.0133659 0)
(0.359781 -0.0133282 0)
(0.368749 -0.0134597 0)
(0.37788 -0.0134533 0)
(0.387102 -0.0128513 0)
(0.395846 -0.0114636 0)
(0.403657 -0.00912779 0)
(0.409777 -0.00604729 0)
(0.413775 -0.00234774 0)
(0.415267 0.00183231 0)
(0.414165 0.00625328 0)
(0.410466 0.0105841 0)
(0.404385 0.0146298 0)
(0.396077 0.0182601 0)
(0.385727 0.0214712 0)
(0.373658 0.0243111 0)
(0.360101 0.026771 0)
(0.345267 0.0288794 0)
(0.329239 0.0305694 0)
(0.312362 0.0317951 0)
(0.294936 0.0325111 0)
(0.277285 0.0327329 0)
(0.259682 0.0325416 0)
(0.242341 0.0319617 0)
(0.225451 0.0310857 0)
(0.209157 0.0299577 0)
(0.193505 0.0286868 0)
(0.178577 0.0273065 0)
(0.16446 0.025823 0)
(0.151106 0.0243367 0)
(0.138624 0.0228283 0)
(0.126906 0.0212861 0)
(0.116009 0.0197626 0)
(0.105944 0.0181855 0)
(0.0967507 0.0166149 0)
(0.0883239 0.0150358 0)
(0.0808316 0.0133691 0)
(0.0741257 0.0117682 0)
(0.0683957 0.010191 0)
(0.0633824 0.00858844 0)
(0.0593419 0.00706321 0)
(0.0559907 0.00559424 0)
(0.053531 0.00417624 0)
(0.0516366 0.00283825 0)
(0.0506416 0.00154509 0)
(0.050144 0.000397307 0)
(0.0503031 -0.000728317 0)
(0.0510714 -0.0017866 0)
(0.052333 -0.00271334 0)
(0.0540149 -0.00366079 0)
(0.0563052 -0.00453075 0)
(0.0589502 -0.005223 0)
(0.0618694 -0.00600733 0)
(0.0653248 -0.00673342 0)
(0.0690716 -0.00732907 0)
(0.073091 -0.00792593 0)
(0.0774754 -0.00846845 0)
(0.0821301 -0.00881378 0)
(0.0867858 -0.00927642 0)
(0.0918409 -0.0097511 0)
(0.097073 -0.0101295 0)
(0.102596 -0.0105336 0)
(0.108186 -0.0108732 0)
(0.114089 -0.0112526 0)
(0.119967 -0.0117567 0)
(0.126346 -0.0123585 0)
(0.132932 -0.0129829 0)
(0.140011 -0.0136923 0)
(0.147321 -0.0145263 0)
(0.155242 -0.0154294 0)
(0.163569 -0.016409 0)
(0.172532 -0.0173995 0)
(0.181983 -0.0184609 0)
(0.192025 -0.0194397 0)
(0.202574 -0.0204722 0)
(0.213707 -0.0213577 0)
(0.225266 -0.0222237 0)
(0.237296 -0.0230007 0)
(0.249724 -0.0235993 0)
(0.262401 -0.0240949 0)
(0.275401 -0.0243872 0)
(0.2884 -0.024491 0)
(0.301535 -0.0243833 0)
(0.314443 -0.0239974 0)
(0.32717 -0.0233669 0)
(0.339417 -0.0224758 0)
(0.351215 -0.0211838 0)
(0.362155 -0.0196291 0)
(0.372246 -0.0176322 0)
(0.381093 -0.0153776 0)
(0.388686 -0.0127508 0)
(0.394786 -0.00984464 0)
(0.399265 -0.0066071 0)
(0.401859 -0.0031672 0)
(0.402503 0.00038897 0)
(0.401244 0.00410662 0)
(0.397924 0.00780338 0)
(0.392642 0.0115216 0)
(0.385328 0.0150121 0)
(0.376144 0.0183335 0)
(0.365255 0.0212303 0)
(0.352918 0.0237198 0)
(0.33941 0.0257781 0)
(0.32482 0.0272772 0)
(0.309627 0.0282729 0)
(0.294011 0.0288879 0)
(0.278195 0.0291008 0)
(0.262291 0.0290168 0)
(0.246581 0.0285669 0)
(0.231068 0.0278614 0)
(0.216163 0.0268103 0)
(0.201751 0.02559 0)
(0.188176 0.0241872 0)
(0.175286 0.0226721 0)
(0.163349 0.0211091 0)
(0.152207 0.0195404 0)
(0.14189 0.0179016 0)
(0.132483 0.0163348 0)
(0.123849 0.0146609 0)
(0.116181 0.0130984 0)
(0.109233 0.0114907 0)
(0.103206 0.00998364 0)
(0.0979051 0.00858697 0)
(0.0933327 0.00730775 0)
(0.0893781 0.00609002 0)
(0.0860892 0.00496576 0)
(0.0833813 0.00394907 0)
(0.0812489 0.00310939 0)
(0.0795673 0.00246782 0)
(0.0781821 0.00187425 0)
(0.0772104 0.00144993 0)
(0.076429 0.00114024 0)
(0.0759021 0.000735679 0)
(0.0755771 0.000385327 0)
(0.0755978 0.000110213 0)
(0.0757142 -0.000317645 0)
(0.0761886 -0.000617075 0)
(0.0767751 -0.000947249 0)
(0.0775484 -0.00127387 0)
(0.0785 -0.00149479 0)
(0.079543 -0.00179818 0)
(0.0806923 -0.00213475 0)
(0.082041 -0.00264238 0)
(0.0836734 -0.00320929 0)
(0.085683 -0.0039119 0)
(0.0880142 -0.0046908 0)
(0.0907608 -0.00568843 0)
(0.0940141 -0.00685073 0)
(0.0979942 -0.00815421 0)
(0.102709 -0.00965075 0)
(0.108284 -0.0112773 0)
(0.114725 -0.0129774 0)
(0.122094 -0.0147534 0)
(0.130403 -0.016453 0)
(0.13967 -0.0181987 0)
(0.149799 -0.0199164 0)
(0.160863 -0.0216227 0)
(0.17276 -0.0233332 0)
(0.18562 -0.0249294 0)
(0.199259 -0.0266201 0)
(0.213836 -0.0282791 0)
(0.229292 -0.0299418 0)
(0.245641 -0.0315881 0)
(0.262908 -0.0329745 0)
(0.2809 -0.0342618 0)
(0.299524 -0.0350707 0)
(0.31856 -0.0354885 0)
(0.33769 -0.0355003 0)
(0.356812 -0.0349126 0)
(0.375463 -0.0337483 0)
(0.393357 -0.032012 0)
(0.410202 -0.0295385 0)
(0.425542 -0.0264715 0)
(0.439045 -0.022644 0)
(0.450296 -0.0183563 0)
(0.45907 -0.013487 0)
(0.465069 -0.00828128 0)
(0.468076 -0.00293417 0)
(0.468145 0.00259163 0)
(0.465113 0.0081237 0)
(0.45905 0.0133983 0)
(0.45006 0.0185136 0)
(0.438394 0.0231723 0)
(0.424289 0.0273507 0)
(0.408131 0.0309687 0)
(0.390292 0.0339121 0)
(0.371221 0.036117 0)
(0.351344 0.037692 0)
(0.331635 0.0385476 0)
(0.311933 0.0386758 0)
(0.292002 0.0380142 0)
(0.272538 0.0367958 0)
(0.253875 0.0352732 0)
(0.236003 0.0334157 0)
(0.219229 0.0311849 0)
(0.203583 0.0289872 0)
(0.188998 0.0265734 0)
(0.175771 0.0241163 0)
(0.163795 0.021765 0)
(0.153182 0.019366 0)
(0.144102 0.01695 0)
(0.136119 0.014705 0)
(0.129313 0.0124376 0)
(0.123708 0.0105321 0)
(0.118892 0.00890636 0)
(0.114987 0.00747895 0)
(0.111611 0.00663508 0)
(0.108528 0.00591212 0)
(0.105796 0.00547351 0)
(0.103125 0.00525921 0)
(0.100515 0.00504545 0)
(0.0979857 0.00485018 0)
(0.0954925 0.00461947 0)
(0.0931309 0.00424417 0)
(0.0909634 0.00373936 0)
(0.0890884 0.0031231 0)
(0.0875194 0.00242264 0)
(0.0863312 0.00162047 0)
(0.0855555 0.000823602 0)
(0.0852008 -1.15368e-05 0)
(0.0853535 -0.000763863 0)
(0.0859415 -0.00143164 0)
(0.0868933 -0.00209971 0)
(0.0882018 -0.00273909 0)
(0.0898272 -0.00331315 0)
(0.091755 -0.00397903 0)
(0.0940252 -0.00464107 0)
(0.0966512 -0.00544409 0)
(0.0996996 -0.00634467 0)
(0.103246 -0.00733702 0)
(0.107374 -0.00858515 0)
(0.112185 -0.0099665 0)
(0.117783 -0.0114508 0)
(0.124249 -0.0132606 0)
(0.131714 -0.0150581 0)
(0.140195 -0.0171545 0)
(0.14979 -0.0191696 0)
(0.16051 -0.0210929 0)
(0.172324 -0.0233334 0)
(0.18528 -0.0252247 0)
(0.199277 -0.0268417 0)
(0.214189 -0.0287819 0)
(0.229978 -0.0300129 0)
(0.246454 -0.0314937 0)
(0.263512 -0.0321922 0)
(0.280923 -0.0324171 0)
(0.29851 -0.0328926 0)
(0.316069 -0.0324647 0)
(0.333364 -0.031545 0)
(0.350231 -0.0307851 0)
(0.366377 -0.0291482 0)
(0.381601 -0.0270737 0)
(0.395769 -0.0250025 0)
(0.40852 -0.0222057 0)
(0.419805 -0.0192961 0)
(0.429285 -0.0158537 0)
(0.43687 -0.012172 0)
(0.442471 -0.00833722 0)
(0.445904 -0.00431159 0)
(0.447198 -0.000217856 0)
(0.44625 0.00385943 0)
(0.443086 0.0078738 0)
(0.437745 0.0116259 0)
(0.430437 0.0152076 0)
(0.421292 0.0185479 0)
(0.410426 0.0212299 0)
(0.398198 0.0237931 0)
(0.384769 0.0259999 0)
(0.370328 0.0273139 0)
(0.355205 0.0286609 0)
(0.339563 0.0291292 0)
(0.323652 0.0297023 0)
(0.307632 0.0299566 0)
(0.291677 0.0294598 0)
(0.275934 0.0291564 0)
(0.258856 0.0286472 0)
(0.42287 -0.0243261 0)
(0.433159 -0.0210329 0)
(0.442557 -0.0170827 0)
(0.449978 -0.0128265 0)
(0.455256 -0.00832172 0)
(0.458236 -0.00360566 0)
(0.458848 0.00119375 0)
(0.457098 0.005988 0)
(0.453018 0.0107275 0)
(0.446578 0.0151163 0)
(0.438085 0.0193818 0)
(0.42762 0.0233805 0)
(0.415267 0.0265581 0)
(0.401449 0.0297002 0)
(0.386232 0.0318475 0)
(0.37001 0.0340072 0)
(0.352943 0.0357563 0)
(0.335249 0.0363764 0)
(0.317226 0.0371293 0)
(0.299053 0.0374969 0)
(0.280955 0.0368423 0)
(0.263096 0.036391 0)
(0.245646 0.0356349 0)
(0.228782 0.0341298 0)
(0.212546 0.0328507 0)
(0.197109 0.0310421 0)
(0.18246 0.0294438 0)
(0.168684 0.027739 0)
(0.155834 0.0257759 0)
(0.143864 0.0239794 0)
(0.132802 0.02217 0)
(0.122648 0.0202964 0)
(0.113351 0.0185463 0)
(0.104911 0.0168018 0)
(0.0972753 0.0151636 0)
(0.090421 0.0135862 0)
(0.0843131 0.0120673 0)
(0.0789088 0.0106326 0)
(0.0741743 0.00926757 0)
(0.0700746 0.00796815 0)
(0.0665738 0.00673696 0)
(0.0636425 0.00556242 0)
(0.0612487 0.00444412 0)
(0.0593697 0.00337382 0)
(0.0579842 0.00233579 0)
(0.0570656 0.00132744 0)
(0.0565918 0.000342406 0)
(0.0565799 -0.000642503 0)
(0.0570488 -0.00161713 0)
(0.0579936 -0.00257168 0)
(0.059409 -0.00357512 0)
(0.0613079 -0.00455006 0)
(0.0636857 -0.00560032 0)
(0.0665775 -0.00666228 0)
(0.0699791 -0.00768476 0)
(0.073895 -0.00884905 0)
(0.0784063 -0.0100535 0)
(0.0834688 -0.0111543 0)
(0.0891238 -0.0125438 0)
(0.0954357 -0.0138308 0)
(0.102407 -0.0153893 0)
(0.110162 -0.0169939 0)
(0.118701 -0.0186027 0)
(0.12807 -0.0205008 0)
(0.138497 -0.0225337 0)
(0.149886 -0.0244099 0)
(0.162427 -0.0265813 0)
(0.175997 -0.0284171 0)
(0.190614 -0.0300872 0)
(0.206115 -0.0315905 0)
(0.222495 -0.0320596 0)
(0.238803 -0.0319481 0)
(0.254956 -0.0305746 0)
(0.269667 -0.0288964 0)
(0.283684 -0.0265448 0)
(0.296013 -0.0242212 0)
(0.307456 -0.021474 0)
(0.317345 -0.0190103 0)
(0.326659 -0.0178122 0)
(0.3358 -0.015734 0)
(0.344187 -0.0150177 0)
(0.352927 -0.0149227 0)
(0.361905 -0.014874 0)
(0.371111 -0.0149975 0)
(0.380419 -0.014975 0)
(0.389817 -0.0143179 0)
(0.398694 -0.0127903 0)
(0.406654 -0.0101876 0)
(0.412861 -0.00672674 0)
(0.416937 -0.00259684 0)
(0.418478 0.00206641 0)
(0.417372 0.0069728 0)
(0.413628 0.0117632 0)
(0.407471 0.0162338 0)
(0.399078 0.020247 0)
(0.388645 0.0237989 0)
(0.376498 0.0269353 0)
(0.362855 0.0296537 0)
(0.34793 0.0319861 0)
(0.331829 0.0338566 0)
(0.314854 0.0352061 0)
(0.297337 0.0359997 0)
(0.2796 0.0362449 0)
(0.261899 0.0360225 0)
(0.244499 0.0353688 0)
(0.227558 0.0343913 0)
(0.211227 0.0331339 0)
(0.195561 0.031728 0)
(0.180602 0.030195 0)
(0.166482 0.0285447 0)
(0.153124 0.0269078 0)
(0.140637 0.0252339 0)
(0.12892 0.0235321 0)
(0.118029 0.0218494 0)
(0.107952 0.0201063 0)
(0.0987628 0.0183721 0)
(0.0903194 0.0166169 0)
(0.0828408 0.0147804 0)
(0.0761306 0.0130095 0)
(0.0704237 0.0112566 0)
(0.065399 0.00948477 0)
(0.0613749 0.00779753 0)
(0.0580381 0.00617546 0)
(0.0555965 0.00460886 0)
(0.0536984 0.0031255 0)
(0.0527448 0.00169183 0)
(0.0522529 0.000430914 0)
(0.0524272 -0.000819638 0)
(0.0532333 -0.00198537 0)
(0.05449 -0.00300887 0)
(0.056198 -0.00405756 0)
(0.0585021 -0.005017 0)
(0.0611704 -0.00578084 0)
(0.064086 -0.00664921 0)
(0.0675666 -0.00745035 0)
(0.0713097 -0.00810574 0)
(0.0753517 -0.00877018 0)
(0.0797473 -0.00936501 0)
(0.0843998 -0.00973541 0)
(0.0890407 -0.0102523 0)
(0.0941029 -0.010774 0)
(0.0993372 -0.0111923 0)
(0.10486 -0.0116344 0)
(0.110433 -0.0120053 0)
(0.116329 -0.0124205 0)
(0.12216 -0.0129755 0)
(0.12854 -0.0136372 0)
(0.135074 -0.0143152 0)
(0.14213 -0.0151075 0)
(0.149407 -0.0160313 0)
(0.1573 -0.0170313 0)
(0.165595 -0.0181146 0)
(0.174534 -0.0192101 0)
(0.183952 -0.0203884 0)
(0.193968 -0.0214704 0)
(0.204514 -0.0226191 0)
(0.215617 -0.0236003 0)
(0.227191 -0.0245643 0)
(0.239205 -0.0254252 0)
(0.251649 -0.026083 0)
(0.264335 -0.0266387 0)
(0.27737 -0.0269599 0)
(0.290369 -0.0270814 0)
(0.303543 -0.0269612 0)
(0.316459 -0.0265374 0)
(0.329241 -0.0258469 0)
(0.341529 -0.0248647 0)
(0.353372 -0.0234441 0)
(0.36437 -0.0217165 0)
(0.374505 -0.0195107 0)
(0.383388 -0.017025 0)
(0.391029 -0.014113 0)
(0.397186 -0.0108933 0)
(0.401679 -0.00730967 0)
(0.404311 -0.00349224 0)
(0.40496 0.000452917 0)
(0.403696 0.00456551 0)
(0.400365 0.00866709 0)
(0.395039 0.0127831 0)
(0.387678 0.0166587 0)
(0.378432 0.0203353 0)
(0.367449 0.0235462 0)
(0.355045 0.0263142 0)
(0.341427 0.0285942 0)
(0.326734 0.0302503 0)
(0.311462 0.0313534 0)
(0.29577 0.0320342 0)
(0.279874 0.0322703 0)
(0.263902 0.0321704 0)
(0.24813 0.0316829 0)
(0.232566 0.0308991 0)
(0.217612 0.0297375 0)
(0.20316 0.0283825 0)
(0.189545 0.0268203 0)
(0.176628 0.0251388 0)
(0.164641 0.0234137 0)
(0.153456 0.0216832 0)
(0.143082 0.0198743 0)
(0.133623 0.0181296 0)
(0.124909 0.0162795 0)
(0.11715 0.0145528 0)
(0.110082 0.0127867 0)
(0.103943 0.0111231 0)
(0.098494 0.00957376 0)
(0.0937627 0.00815787 0)
(0.0896006 0.00681502 0)
(0.0861014 0.00556764 0)
(0.0831716 0.00444942 0)
(0.0808394 0.00350963 0)
(0.0789239 0.00277386 0)
(0.0773253 0.0021017 0)
(0.0761854 0.00164234 0)
(0.0752356 0.00127523 0)
(0.0745792 0.000820628 0)
(0.0741662 0.000429503 0)
(0.0741244 0.000100109 0)
(0.0742113 -0.00037999 0)
(0.0746877 -0.00071833 0)
(0.075283 -0.00109271 0)
(0.076091 -0.00144215 0)
(0.0770832 -0.00168615 0)
(0.0781432 -0.00201566 0)
(0.0793193 -0.00238018 0)
(0.0806826 -0.00292991 0)
(0.0823343 -0.00355648 0)
(0.0843565 -0.00432833 0)
(0.0866908 -0.00518414 0)
(0.0894177 -0.0062849 0)
(0.0926679 -0.00755586 0)
(0.0966356 -0.00899992 0)
(0.101335 -0.0106578 0)
(0.106899 -0.012463 0)
(0.113342 -0.0143493 0)
(0.120723 -0.0163065 0)
(0.129048 -0.0181909 0)
(0.138328 -0.020122 0)
(0.148467 -0.0220229 0)
(0.159539 -0.0239139 0)
(0.171455 -0.0257931 0)
(0.184325 -0.0275536 0)
(0.197962 -0.0294275 0)
(0.212546 -0.0312599 0)
(0.228014 -0.033111 0)
(0.2444 -0.0349348 0)
(0.261715 -0.0364963 0)
(0.279773 -0.0379232 0)
(0.298492 -0.0388163 0)
(0.317617 -0.0393048 0)
(0.336863 -0.039317 0)
(0.356118 -0.038672 0)
(0.3749 -0.0374015 0)
(0.392939 -0.0354817 0)
(0.409934 -0.0327519 0)
(0.425421 -0.0293564 0)
(0.439063 -0.0251146 0)
(0.450432 -0.0203587 0)
(0.459304 -0.0149579 0)
(0.465363 -0.00919031 0)
(0.468412 -0.00325178 0)
(0.468498 0.00288077 0)
(0.465448 0.00899991 0)
(0.459337 0.0148489 0)
(0.450278 0.0205195 0)
(0.438521 0.0256769 0)
(0.424312 0.0303083 0)
(0.408047 0.0343035 0)
(0.390103 0.0375557 0)
(0.37092 0.0399913 0)
(0.350965 0.0417251 0)
(0.331189 0.0426554 0)
(0.311408 0.0427792 0)
(0.291438 0.0420299 0)
(0.271964 0.0406628 0)
(0.253312 0.0389665 0)
(0.235473 0.036907 0)
(0.218737 0.0344418 0)
(0.203128 0.0320189 0)
(0.18857 0.0293628 0)
(0.175339 0.0266589 0)
(0.16335 0.0240748 0)
(0.152697 0.0214378 0)
(0.143557 0.0187726 0)
(0.135512 0.0162953 0)
(0.12864 0.0137861 0)
(0.122979 0.011668 0)
(0.118134 0.00985707 0)
(0.114219 0.0082643 0)
(0.110852 0.00732188 0)
(0.10779 0.00651214 0)
(0.105092 0.00601839 0)
(0.102467 0.00577449 0)
(0.0999043 0.00554058 0)
(0.0974258 0.00531901 0)
(0.0949799 0.00507195 0)
(0.0926611 0.00465574 0)
(0.0905409 0.00410234 0)
(0.0886956 0.00341764 0)
(0.0871839 0.00265429 0)
(0.0860256 0.00176916 0)
(0.0852804 0.000888894 0)
(0.0849604 -3.06007e-05 0)
(0.0851485 -0.000863296 0)
(0.0857625 -0.00159815 0)
(0.0867331 -0.00233165 0)
(0.0880545 -0.00303314 0)
(0.0896857 -0.00366176 0)
(0.0916088 -0.0043918 0)
(0.0938677 -0.00511754 0)
(0.0964728 -0.00599964 0)
(0.0994943 -0.00699053 0)
(0.10301 -0.00808425 0)
(0.1071 -0.00946208 0)
(0.111875 -0.0109891 0)
(0.117439 -0.0126317 0)
(0.123869 -0.0146355 0)
(0.13131 -0.016627 0)
(0.139768 -0.0189502 0)
(0.149355 -0.0211842 0)
(0.160079 -0.023317 0)
(0.171898 -0.0258014 0)
(0.18488 -0.0278992 0)
(0.198913 -0.0296928 0)
(0.213864 -0.0318454 0)
(0.229708 -0.0332114 0)
(0.246243 -0.0348551 0)
(0.263372 -0.035631 0)
(0.280858 -0.0358821 0)
(0.298525 -0.0364125 0)
(0.316167 -0.0359406 0)
(0.333543 -0.0349236 0)
(0.350503 -0.0340859 0)
(0.366731 -0.0322755 0)
(0.382033 -0.0299804 0)
(0.396294 -0.0276904 0)
(0.409117 -0.0245947 0)
(0.420485 -0.0213744 0)
(0.430021 -0.0175622 0)
(0.437654 -0.0134843 0)
(0.443301 -0.00923624 0)
(0.446754 -0.00477622 0)
(0.448057 -0.000240247 0)
(0.447097 0.00427859 0)
(0.443907 0.00872616 0)
(0.438513 0.0128846 0)
(0.431148 0.0168539 0)
(0.421937 0.0205546 0)
(0.410979 0.0235228 0)
(0.398667 0.0263596 0)
(0.385151 0.0288006 0)
(0.370614 0.0302495 0)
(0.355407 0.0317362 0)
(0.339682 0.0322477 0)
(0.3237 0.0328765 0)
(0.307615 0.0331522 0)
(0.291605 0.0325956 0)
(0.275815 0.0322544 0)
(0.258696 0.0316857 0)
(0.423548 -0.0267144 0)
(0.43393 -0.0231022 0)
(0.443403 -0.0187656 0)
(0.45089 -0.014092 0)
(0.45622 -0.00914462 0)
(0.45923 -0.00396443 0)
(0.459846 0.00130896 0)
(0.458087 0.0065768 0)
(0.453981 0.0117821 0)
(0.447478 0.0166008 0)
(0.438924 0.0212841 0)
(0.428386 0.0256739 0)
(0.415928 0.0291587 0)
(0.402018 0.0326054 0)
(0.38669 0.0349568 0)
(0.37037 0.0373233 0)
(0.353204 0.0392388 0)
(0.335408 0.0399124 0)
(0.317293 0.0407336 0)
(0.299032 0.0411316 0)
(0.280858 0.0404065 0)
(0.262928 0.0399059 0)
(0.245414 0.0390707 0)
(0.228506 0.0374138 0)
(0.212228 0.0360058 0)
(0.196767 0.0340176 0)
(0.182094 0.0322608 0)
(0.168302 0.0303881 0)
(0.15545 0.0282332 0)
(0.143478 0.0262617 0)
(0.132419 0.0242769 0)
(0.122275 0.0222225 0)
(0.112988 0.0203037 0)
(0.104561 0.0183919 0)
(0.0969393 0.0165968 0)
(0.0900997 0.0148689 0)
(0.0840074 0.0132053 0)
(0.0786181 0.0116343 0)
(0.0738983 0.0101399 0)
(0.0698128 0.00871748 0)
(0.066325 0.00736985 0)
(0.0634055 0.00608408 0)
(0.0610222 0.00485954 0)
(0.0591519 0.0036875 0)
(0.0577732 0.00255206 0)
(0.0568594 0.00144896 0)
(0.0563892 0.000371309 0)
(0.0563791 -0.000705902 0)
(0.0568491 -0.00177177 0)
(0.0577942 -0.00281595 0)
(0.059207 -0.00391386 0)
(0.0611036 -0.00498068 0)
(0.0634763 -0.00613025 0)
(0.0663631 -0.00729275 0)
(0.0697595 -0.00841183 0)
(0.0736673 -0.00968662 0)
(0.0781721 -0.0110054 0)
(0.0832267 -0.0122097 0)
(0.0888712 -0.0137307 0)
(0.0951714 -0.0151379 0)
(0.102127 -0.0168431 0)
(0.109862 -0.0185977 0)
(0.118377 -0.0203579 0)
(0.127717 -0.0224383 0)
(0.138125 -0.0246669 0)
(0.14949 -0.0267307 0)
(0.162046 -0.0291283 0)
(0.17563 -0.0311488 0)
(0.190316 -0.0330164 0)
(0.205925 -0.0347086 0)
(0.222535 -0.0352661 0)
(0.239079 -0.0351702 0)
(0.255487 -0.0336707 0)
(0.270354 -0.0318042 0)
(0.284578 -0.029221 0)
(0.29701 -0.0266633 0)
(0.308621 -0.023654 0)
(0.318611 -0.0209545 0)
(0.328062 -0.0196851 0)
(0.337415 -0.0174221 0)
(0.34604 -0.0166358 0)
(0.355031 -0.016527 0)
(0.364262 -0.0164796 0)
(0.37373 -0.0165923 0)
(0.383222 -0.0165567 0)
(0.392802 -0.0158463 0)
(0.401836 -0.0141393 0)
(0.409958 -0.0112734 0)
(0.416278 -0.00743855 0)
(0.420428 -0.00287588 0)
(0.422013 0.00227586 0)
(0.420905 0.00767972 0)
(0.417106 0.0129378 0)
(0.410873 0.0178423 0)
(0.402382 0.0222424 0)
(0.391861 0.0261305 0)
(0.379625 0.0295643 0)
(0.365885 0.0325408 0)
(0.350864 0.0350959 0)
(0.334678 0.0371534 0)
(0.317606 0.0386309 0)
(0.299971 0.0395013 0)
(0.282148 0.0397635 0)
(0.264342 0.0395068 0)
(0.246872 0.0387843 0)
(0.22988 0.0376977 0)
(0.213505 0.0363061 0)
(0.197812 0.0347632 0)
(0.182841 0.0330765 0)
(0.168707 0.0312614 0)
(0.155348 0.0294711 0)
(0.142856 0.0276298 0)
(0.131134 0.0257671 0)
(0.120244 0.0239327 0)
(0.110161 0.0220183 0)
(0.10098 0.0201216 0)
(0.0925178 0.0181939 0)
(0.0850495 0.016188 0)
(0.0783268 0.0142449 0)
(0.0726478 0.0123161 0)
(0.0676129 0.0103814 0)
(0.0636073 0.00852824 0)
(0.0602883 0.00674589 0)
(0.0578661 0.00503507 0)
(0.0559582 0.00340663 0)
(0.0550602 0.00183303 0)
(0.0545748 0.000459922 0)
(0.0547522 -0.000919788 0)
(0.0556037 -0.00218857 0)
(0.0568526 -0.00330996 0)
(0.0585968 -0.00446407 0)
(0.0609209 -0.00550471 0)
(0.0636095 -0.0063367 0)
(0.0665095 -0.00728793 0)
(0.0700317 -0.00817184 0)
(0.073769 -0.00888783 0)
(0.0778344 -0.00961631 0)
(0.08225 -0.0102564 0)
(0.0869032 -0.0106595 0)
(0.0915251 -0.0112289 0)
(0.0965939 -0.011799 0)
(0.101824 -0.0122618 0)
(0.107344 -0.0127386 0)
(0.112911 -0.0131315 0)
(0.118795 -0.0135839 0)
(0.124575 -0.0141927 0)
(0.130948 -0.0149151 0)
(0.137443 -0.0156552 0)
(0.144476 -0.0165292 0)
(0.151716 -0.017533 0)
(0.159568 -0.0186303 0)
(0.167833 -0.0198163 0)
(0.176748 -0.0210217 0)
(0.186136 -0.0223151 0)
(0.196126 -0.0235086 0)
(0.206668 -0.0247694 0)
(0.217733 -0.0258481 0)
(0.229314 -0.0269071 0)
(0.241309 -0.0278538 0)
(0.253768 -0.0285775 0)
(0.266458 -0.0291977 0)
(0.279508 -0.0295473 0)
(0.292518 -0.0296811 0)
(0.305741 -0.0295589 0)
(0.318681 -0.0291014 0)
(0.331528 -0.028355 0)
(0.343855 -0.0272755 0)
(0.355754 -0.0257229 0)
(0.366795 -0.0238399 0)
(0.376978 -0.0214156 0)
(0.385914 -0.0186907 0)
(0.3936 -0.015512 0)
(0.399821 -0.011971 0)
(0.40435 -0.00803969 0)
(0.407024 -0.00385068 0)
(0.407674 0.000488969 0)
(0.406426 0.0050141 0)
(0.403069 0.00952291 0)
(0.397696 0.014036 0)
(0.390288 0.018302 0)
(0.380966 0.0223486 0)
(0.369875 0.025881 0)
(0.357384 0.0289181 0)
(0.343637 0.0314213 0)
(0.328833 0.0332376 0)
(0.313464 0.0344402 0)
(0.297698 0.0351794 0)
(0.281743 0.0354535 0)
(0.265723 0.0353402 0)
(0.249901 0.0348014 0)
(0.234314 0.0339406 0)
(0.219347 0.0326652 0)
(0.204883 0.0311817 0)
(0.191263 0.0294586 0)
(0.178373 0.0276141 0)
(0.166392 0.0257095 0)
(0.155221 0.0238295 0)
(0.144828 0.0218563 0)
(0.135341 0.0199419 0)
(0.12659 0.0179192 0)
(0.118788 0.0160305 0)
(0.111627 0.0141017 0)
(0.105388 0.012285 0)
(0.0997936 0.0105979 0)
(0.0949011 0.00905772 0)
(0.0905182 0.00758291 0)
(0.0867838 0.00620312 0)
(0.0835868 0.00497935 0)
(0.0809798 0.00395217 0)
(0.0787661 0.0031366 0)
(0.0768986 0.00239387 0)
(0.0754912 0.00187144 0)
(0.0742733 0.00143503 0)
(0.0734088 0.000932373 0)
(0.0728444 0.000493403 0)
(0.0726797 0.000102993 0)
(0.0726831 -0.000433055 0)
(0.0731318 -0.000820939 0)
(0.0737104 -0.0012426 0)
(0.0745325 -0.0016149 0)
(0.0755511 -0.00188336 0)
(0.0766167 -0.0022364 0)
(0.077809 -0.0026295 0)
(0.0791785 -0.00322127 0)
(0.0808484 -0.00391039 0)
(0.0828842 -0.00474738 0)
(0.0852211 -0.00567708 0)
(0.0879276 -0.00688406 0)
(0.0911719 -0.00826033 0)
(0.095123 -0.0098398 0)
(0.0998062 -0.0116628 0)
(0.105359 -0.0136459 0)
(0.111803 -0.0157187 0)
(0.119198 -0.0178634 0)
(0.12754 -0.0199272 0)
(0.136832 -0.0220448 0)
(0.146983 -0.0241234 0)
(0.158068 -0.0262105 0)
(0.170004 -0.0282546 0)
(0.182883 -0.0301842 0)
(0.196521 -0.0322386 0)
(0.211117 -0.0342433 0)
(0.226595 -0.0362882 0)
(0.243019 -0.0382869 0)
(0.260388 -0.0400309 0)
(0.278521 -0.0416041 0)
(0.297342 -0.0425854 0)
(0.316567 -0.0431427 0)
(0.335942 -0.0431584 0)
(0.355341 -0.0424612 0)
(0.374271 -0.0410837 0)
(0.392475 -0.0389832 0)
(0.409637 -0.0359989 0)
(0.425289 -0.0322708 0)
(0.439088 -0.0276172 0)
(0.450588 -0.022388 0)
(0.459564 -0.0164488 0)
(0.465685 -0.0101165 0)
(0.468777 -0.00357611 0)
(0.46888 0.00316831 0)
(0.465807 0.00988384 0)
(0.459646 0.0163137 0)
(0.450513 0.0225431 0)
(0.438656 0.0282054 0)
(0.42433 0.0332894 0)
(0.407944 0.0376609 0)
(0.389888 0.0412233 0)
(0.370589 0.043884 0)
(0.350548 0.0457788 0)
(0.330695 0.0467837 0)
(0.310825 0.0468887 0)
(0.290811 0.0460477 0)
(0.271327 0.0445301 0)
(0.252689 0.0426532 0)
(0.23489 0.0403878 0)
(0.218195 0.0376898 0)
(0.202627 0.035045 0)
(0.188099 0.0321498 0)
(0.174861 0.0292028 0)
(0.162858 0.0263874 0)
(0.152163 0.0235184 0)
(0.142955 0.0206052 0)
(0.13484 0.0178968 0)
(0.127894 0.0151449 0)
(0.122169 0.0128131 0)
(0.117292 0.0108101 0)
(0.113368 0.00904909 0)
(0.110011 0.00800489 0)
(0.106972 0.00710658 0)
(0.104314 0.00655281 0)
(0.101737 0.00628248 0)
(0.0992331 0.00601951 0)
(0.0968076 0.00578268 0)
(0.0944148 0.00550926 0)
(0.092146 0.00505929 0)
(0.0900725 0.00445242 0)
(0.0882728 0.00370975 0)
(0.0867995 0.00286947 0)
(0.0856825 0.00190572 0)
(0.0849763 0.00094685 0)
(0.0846961 -5.67707e-05 0)
(0.0849233 -0.00096846 0)
(0.0855667 -0.00176922 0)
(0.0865583 -0.00256698 0)
(0.0878938 -0.0033291 0)
(0.0895316 -0.00401053 0)
(0.0914494 -0.004803 0)
(0.0936959 -0.00559071 0)
(0.0962776 -0.00655035 0)
(0.0992693 -0.00763029 0)
(0.10275 -0.00882439 0)
(0.106799 -0.0103314 0)
(0.111533 -0.0120042 0)
(0.11706 -0.0138056 0)
(0.123451 -0.0160042 0)
(0.130865 -0.0181911 0)
(0.139297 -0.0207429 0)
(0.148875 -0.0231979 0)
(0.159603 -0.0255422 0)
(0.171429 -0.028273 0)
(0.184437 -0.0305794 0)
(0.198511 -0.0325517 0)
(0.213504 -0.0349192 0)
(0.22941 -0.0364217 0)
(0.24601 -0.0382304 0)
(0.263216 -0.0390849 0)
(0.280784 -0.0393629 0)
(0.298542 -0.0399498 0)
(0.316275 -0.0394343 0)
(0.33374 -0.0383197 0)
(0.350802 -0.0374048 0)
(0.367121 -0.0354207 0)
(0.382509 -0.0329042 0)
(0.396873 -0.0303952 0)
(0.409775 -0.0269993 0)
(0.421234 -0.023467 0)
(0.430833 -0.0192828 0)
(0.438518 -0.014806 0)
(0.444215 -0.0101419 0)
(0.447692 -0.0052441 0)
(0.449004 -0.000262244 0)
(0.448031 0.00470174 0)
(0.444812 0.00958649 0)
(0.43936 0.0141544 0)
(0.431932 0.0185143 0)
(0.422647 0.0225779 0)
(0.411587 0.0258335 0)
(0.399183 0.028945 0)
(0.385572 0.0316206 0)
(0.370929 0.0332034 0)
(0.355629 0.034829 0)
(0.339813 0.0353819 0)
(0.323751 0.0360651 0)
(0.307595 0.0363605 0)
(0.291525 0.0357419 0)
(0.275683 0.035361 0)
(0.258518 0.0347311 0)
(0.42429 -0.0291226 0)
(0.434773 -0.0251898 0)
(0.44433 -0.0204641 0)
(0.451888 -0.0153696 0)
(0.457276 -0.00997579 0)
(0.460318 -0.00432716 0)
(0.46094 0.00142442 0)
(0.459169 0.00717008 0)
(0.455035 0.0128456 0)
(0.448462 0.0180976 0)
(0.439841 0.0232021 0)
(0.429223 0.0279857 0)
(0.41665 0.0317789 0)
(0.402639 0.0355317 0)
(0.38719 0.0380871 0)
(0.370762 0.0406608 0)
(0.353487 0.0427425 0)
(0.33558 0.043468 0)
(0.317364 0.0443566 0)
(0.299008 0.0447839 0)
(0.28075 0.043986 0)
(0.262742 0.0434342 0)
(0.24516 0.042518 0)
(0.228204 0.0407069 0)
(0.21188 0.0391679 0)
(0.196392 0.0369982 0)
(0.181693 0.0350813 0)
(0.167885 0.033039 0)
(0.15503 0.030691 0)
(0.143056 0.0285436 0)
(0.132 0.0263824 0)
(0.121867 0.0241466 0)
(0.112592 0.0220588 0)
(0.10418 0.0199792 0)
(0.0965727 0.018027 0)
(0.0897491 0.0161484 0)
(0.083674 0.0143402 0)
(0.0783012 0.012633 0)
(0.0735974 0.0110094 0)
(0.0695274 0.00946411 0)
(0.0660536 0.00800031 0)
(0.0631471 0.00660362 0)
(0.0607752 0.00527313 0)
(0.0589146 0.00399952 0)
(0.0575433 0.00276687 0)
(0.0566349 0.00156928 0)
(0.0561684 0.000399322 0)
(0.0561605 -0.000769861 0)
(0.0566316 -0.00192661 0)
(0.0575769 -0.00306004 0)
(0.0589869 -0.00425209 0)
(0.0608809 -0.00541051 0)
(0.0632481 -0.0066592 0)
(0.0661294 -0.00792209 0)
(0.0695201 -0.00913756 0)
(0.073419 -0.0105228 0)
(0.0779167 -0.0119557 0)
(0.0829627 -0.0132633 0)
(0.088596 -0.0149154 0)
(0.0948836 -0.0164425 0)
(0.101821 -0.0182937 0)
(0.109535 -0.0201975 0)
(0.118024 -0.0221087 0)
(0.127332 -0.0243719 0)
(0.13772 -0.026796 0)
(0.149057 -0.0290508 0)
(0.161628 -0.0316778 0)
(0.175223 -0.033886 0)
(0.189978 -0.0359598 0)
(0.205703 -0.0378507 0)
(0.222561 -0.038513 0)
(0.23937 -0.0384403 0)
(0.256064 -0.0368151 0)
(0.271097 -0.0347646 0)
(0.28555 -0.0319372 0)
(0.298096 -0.0291428 0)
(0.309887 -0.0258661 0)
(0.319983 -0.022929 0)
(0.329577 -0.0215879 0)
(0.339169 -0.0191495 0)
(0.34806 -0.0182961 0)
(0.357323 -0.0181736 0)
(0.366819 -0.0181217 0)
(0.376582 -0.0182075 0)
(0.386285 -0.0181278 0)
(0.396083 -0.0173668 0)
(0.405291 -0.0154811 0)
(0.413564 -0.0123768 0)
(0.42001 -0.00816081 0)
(0.42424 -0.00313972 0)
(0.42588 0.00251246 0)
(0.42477 0.00842071 0)
(0.42091 0.0141499 0)
(0.41459 0.0194821 0)
(0.405991 0.0242734 0)
(0.395366 0.0285019 0)
(0.383038 0.0322309 0)
(0.369195 0.0354662 0)
(0.354068 0.0382416 0)
(0.337785 0.0404796 0)
(0.320609 0.042086 0)
(0.302846 0.0430328 0)
(0.284928 0.0433145 0)
(0.267012 0.0430214 0)
(0.249457 0.0422194 0)
(0.23241 0.0410241 0)
(0.215994 0.0394989 0)
(0.200277 0.0378178 0)
(0.185275 0.0359668 0)
(0.17113 0.0339876 0)
(0.15778 0.0320475 0)
(0.145277 0.030041 0)
(0.133554 0.0280134 0)
(0.12267 0.0260223 0)
(0.112573 0.0239404 0)
(0.103393 0.0218846 0)
(0.0949094 0.0197781 0)
(0.0874627 0.0176048 0)
(0.0807278 0.0154858 0)
(0.075074 0.0133807 0)
(0.0700317 0.0112776 0)
(0.0660499 0.00925699 0)
(0.0627487 0.00731996 0)
(0.0603379 0.00546491 0)
(0.0584187 0.0036877 0)
(0.0575733 0.00196852 0)
(0.0570894 0.000490431 0)
(0.0572855 -0.00102516 0)
(0.058182 -0.00239428 0)
(0.0594273 -0.0036113 0)
(0.0611995 -0.00487083 0)
(0.0635394 -0.00599352 0)
(0.0662531 -0.00689789 0)
(0.069146 -0.00793463 0)
(0.0727145 -0.00889321 0)
(0.0764473 -0.00967666 0)
(0.0805479 -0.0104692 0)
(0.0849824 -0.0111481 0)
(0.0896393 -0.0115786 0)
(0.094242 -0.012207 0)
(0.0993197 -0.0128234 0)
(0.104538 -0.0133284 0)
(0.110065 -0.0138384 0)
(0.11562 -0.0142533 0)
(0.121484 -0.0147417 0)
(0.127214 -0.0154021 0)
(0.133583 -0.0161803 0)
(0.140022 -0.0169766 0)
(0.147039 -0.0179301 0)
(0.15423 -0.0190205 0)
(0.162054 -0.0202169 0)
(0.170284 -0.0215065 0)
(0.179171 -0.0228223 0)
(0.188542 -0.0242257 0)
(0.198496 -0.0255357 0)
(0.209026 -0.0269022 0)
(0.220057 -0.0280821 0)
(0.231656 -0.0292486 0)
(0.243618 -0.0302761 0)
(0.256093 -0.0310657 0)
(0.268769 -0.0317421 0)
(0.281848 -0.0321194 0)
(0.29486 -0.0322835 0)
(0.308134 -0.032154 0)
(0.321096 -0.0316564 0)
(0.333999 -0.0308603 0)
(0.346381 -0.0296841 0)
(0.358345 -0.0279968 0)
(0.369454 -0.0259397 0)
(0.379702 -0.0233159 0)
(0.388682 -0.0203578 0)
(0.396433 -0.0168836 0)
(0.402719 -0.0130356 0)
(0.407269 -0.00875782 0)
(0.410001 -0.00417942 0)
(0.410655 0.000549186 0)
(0.409408 0.00548297 0)
(0.406043 0.0104045 0)
(0.400628 0.0153228 0)
(0.393141 0.019976 0)
(0.38375 0.0243875 0)
(0.372527 0.0282416 0)
(0.359921 0.0315691 0)
(0.34603 0.0342866 0)
(0.331102 0.0362443 0)
(0.315631 0.037557 0)
(0.299766 0.0383585 0)
(0.28373 0.03864 0)
(0.267667 0.0385169 0)
(0.251812 0.0379347 0)
(0.236203 0.0369873 0)
(0.221223 0.0356008 0)
(0.206784 0.0339717 0)
(0.193201 0.0320897 0)
(0.18036 0.0300922 0)
(0.168426 0.0280165 0)
(0.157326 0.025961 0)
(0.146962 0.0238276 0)
(0.137522 0.0217615 0)
(0.128777 0.0195689 0)
(0.120967 0.0175185 0)
(0.11377 0.0154313 0)
(0.107496 0.0134718 0)
(0.101802 0.0116507 0)
(0.0967692 0.00999984 0)
(0.0921832 0.00841131 0)
(0.0882293 0.00691092 0)
(0.0847496 0.00557695 0)
(0.0818276 0.00444746 0)
(0.0792514 0.00354064 0)
(0.0770201 0.00273487 0)
(0.0752807 0.00218457 0)
(0.0737222 0.00165749 0)
(0.0725275 0.00107805 0)
(0.071716 0.000590649 0)
(0.0713551 0.000133576 0)
(0.0712089 -0.000471409 0)
(0.0715754 -0.000914803 0)
(0.0720968 -0.00139074 0)
(0.0729051 -0.00178952 0)
(0.0739254 -0.0020847 0)
(0.0749819 -0.00245243 0)
(0.0761763 -0.00287851 0)
(0.0775414 -0.0035117 0)
(0.079221 -0.00426423 0)
(0.0812632 -0.005165 0)
(0.0835998 -0.00616973 0)
(0.0862854 -0.00747717 0)
(0.0895234 -0.00895942 0)
(0.093455 -0.0106814 0)
(0.0981227 -0.0126655 0)
(0.103661 -0.0148289 0)
(0.110105 -0.0170937 0)
(0.117518 -0.0194248 0)
(0.125879 -0.0216645 0)
(0.135186 -0.0239726 0)
(0.145348 -0.0262338 0)
(0.156448 -0.0285105 0)
(0.168407 -0.0307177 0)
(0.181295 -0.0328138 0)
(0.194931 -0.0350469 0)
(0.209539 -0.0372251 0)
(0.225032 -0.039469 0)
(0.241498 -0.0416469 0)
(0.258922 -0.0435803 0)
(0.277138 -0.0453013 0)
(0.296072 -0.0463743 0)
(0.315403 -0.0470059 0)
(0.334922 -0.0470256 0)
(0.354483 -0.0462819 0)
(0.373573 -0.0447968 0)
(0.391954 -0.042515 0)
(0.409299 -0.0392787 0)
(0.425132 -0.0352139 0)
(0.439104 -0.030146 0)
(0.450747 -0.0244411 0)
(0.459841 -0.0179521 0)
(0.466033 -0.011046 0)
(0.469175 -0.00390052 0)
(0.469298 0.00345723 0)
(0.466203 0.0107713 0)
(0.459988 0.0177905 0)
(0.450774 0.0245796 0)
(0.438806 0.030754 0)
(0.424353 0.0362992 0)
(0.407831 0.0410408 0)
(0.389647 0.0449141 0)
(0.370215 0.0477987 0)
(0.350082 0.0498526 0)
(0.330141 0.0509225 0)
(0.310174 0.0510123 0)
(0.290115 0.0500737 0)
(0.270619 0.0483959 0)
(0.251998 0.0463367 0)
(0.234246 0.0438643 0)
(0.2176 0.0409313 0)
(0.202078 0.0380636 0)
(0.187583 0.034935 0)
(0.174339 0.0317509 0)
(0.162322 0.0287117 0)
(0.151578 0.0256138 0)
(0.142295 0.0224559 0)
(0.134104 0.0195158 0)
(0.127073 0.0165209 0)
(0.121278 0.0139678 0)
(0.116365 0.011769 0)
(0.112432 0.00983348 0)
(0.109086 0.00868332 0)
(0.106074 0.00769209 0)
(0.103458 0.00707702 0)
(0.100939 0.00677352 0)
(0.0984966 0.00648875 0)
(0.0961323 0.00622707 0)
(0.0937982 0.00593773 0)
(0.091583 0.00544861 0)
(0.0895615 0.00479425 0)
(0.0878112 0.00398535 0)
(0.0863863 0.0030817 0)
(0.0853104 0.00203646 0)
(0.0846452 0.000997271 0)
(0.0844079 -8.92094e-05 0)
(0.0846784 -0.00107888 0)
(0.0853543 -0.00194453 0)
(0.0863689 -0.00280552 0)
(0.0877201 -0.00362691 0)
(0.089365 -0.00435939 0)
(0.0912771 -0.00521244 0)
(0.09351 -0.00606021 0)
(0.0960661 -0.00709568 0)
(0.0990248 -0.0082633 0)
(0.102468 -0.00955669 0)
(0.106471 -0.0111923 0)
(0.11116 -0.013011 0)
(0.116646 -0.0149716 0)
(0.122993 -0.0173662 0)
(0.130378 -0.0197499 0)
(0.138782 -0.0225324 0)
(0.148349 -0.0252106 0)
(0.159082 -0.0277686 0)
(0.170914 -0.0307486 0)
(0.183953 -0.0332661 0)
(0.19807 -0.0354192 0)
(0.21311 -0.0380042 0)
(0.229083 -0.0396449 0)
(0.245754 -0.0416209 0)
(0.263046 -0.0425555 0)
(0.280703 -0.0428611 0)
(0.298559 -0.0435062 0)
(0.316392 -0.0429473 0)
(0.333955 -0.0417349 0)
(0.351128 -0.0407437 0)
(0.367546 -0.0385854 0)
(0.383028 -0.0358469 0)
(0.397505 -0.0331188 0)
(0.410493 -0.029421 0)
(0.422052 -0.0255754 0)
(0.431721 -0.0210167 0)
(0.439463 -0.0161382 0)
(0.445215 -0.0110548 0)
(0.448717 -0.00571559 0)
(0.45004 -0.000283852 0)
(0.449053 0.0051293 0)
(0.445803 0.0104555 0)
(0.440287 0.0154362 0)
(0.43279 0.02019 0)
(0.423423 0.0246195 0)
(0.412252 0.0281637 0)
(0.399747 0.0315511 0)
(0.386031 0.034462 0)
(0.371271 0.0361774 0)
(0.35587 0.0379413 0)
(0.339954 0.0385334 0)
(0.323805 0.0392694 0)
(0.307571 0.0395828 0)
(0.291435 0.0388996 0)
(0.275537 0.038477 0)
(0.258322 0.037784 0)
(0.425094 -0.0315524 0)
(0.435688 -0.0272975 0)
(0.445336 -0.0221794 0)
(0.452972 -0.0166604 0)
(0.458423 -0.010816 0)
(0.461501 -0.00469426 0)
(0.462128 0.0015402 0)
(0.460345 0.00776835 0)
(0.456181 0.0139189 0)
(0.449532 0.0196081 0)
(0.440837 0.0251372 0)
(0.430132 0.0303177 0)
(0.417434 0.0344205 0)
(0.403313 0.0384812 0)
(0.387732 0.0412404 0)
(0.371186 0.0440214 0)
(0.353794 0.0462694 0)
(0.335766 0.0470451 0)
(0.31744 0.0479999 0)
(0.29898 0.0484551 0)
(0.280632 0.0475819 0)
(0.26254 0.046977 0)
(0.244883 0.0459778 0)
(0.227874 0.0440098 0)
(0.2115 0.0423378 0)
(0.195984 0.0399843 0)
(0.181257 0.0379055 0)
(0.167431 0.0356919 0)
(0.154575 0.0331495 0)
(0.142598 0.0308249 0)
(0.131546 0.0284865 0)
(0.121426 0.0260686 0)
(0.112161 0.0238111 0)
(0.103766 0.0215634 0)
(0.0961753 0.0194539 0)
(0.0893692 0.0174244 0)
(0.0833129 0.0154716 0)
(0.0779579 0.0136282 0)
(0.0732716 0.0118757 0)
(0.0692183 0.0102078 0)
(0.0657599 0.00862817 0)
(0.0628673 0.00712092 0)
(0.0605077 0.00568464 0)
(0.0586576 0.00430966 0)
(0.0572946 0.00298001 0)
(0.0563919 0.00168824 0)
(0.0559296 0.000426341 0)
(0.055924 -0.000834442 0)
(0.0563962 -0.00208168 0)
(0.0573419 -0.00330395 0)
(0.0587487 -0.00458975 0)
(0.0606399 -0.00583947 0)
(0.063001 -0.00718709 0)
(0.0658763 -0.0085502 0)
(0.0692607 -0.00986181 0)
(0.07315 -0.0113573 0)
(0.07764 -0.0129044 0)
(0.0826768 -0.014315 0)
(0.0882982 -0.016098 0)
(0.0945724 -0.0177443 0)
(0.101491 -0.0197409 0)
(0.109182 -0.0217931 0)
(0.117644 -0.0238547 0)
(0.126916 -0.026301 0)
(0.137281 -0.0289204 0)
(0.148587 -0.0313689 0)
(0.161171 -0.0342303 0)
(0.174776 -0.0366282 0)
(0.189596 -0.0389165 0)
(0.205441 -0.0410207 0)
(0.22257 -0.0417991 0)
(0.239671 -0.0417582 0)
(0.256683 -0.04002 0)
(0.271891 -0.0377786 0)
(0.286607 -0.0347073 0)
(0.29927 -0.0316692 0)
(0.311252 -0.0281281 0)
(0.321467 -0.0249524 0)
(0.331208 -0.023565 0)
(0.341055 -0.0209536 0)
(0.35024 -0.0200325 0)
(0.359811 -0.0198949 0)
(0.369612 -0.0198403 0)
(0.379703 -0.0199068 0)
(0.38963 -0.0197995 0)
(0.399639 -0.0189658 0)
(0.409035 -0.0168938 0)
(0.417479 -0.0134911 0)
(0.424072 -0.00891157 0)
(0.428397 -0.0034415 0)
(0.430075 0.00270713 0)
(0.428961 0.009129 0)
(0.425034 0.0153465 0)
(0.41862 0.021119 0)
(0.409912 0.0263055 0)
(0.399175 0.0308755 0)
(0.386731 0.0348906 0)
(0.372786 0.0383885 0)
(0.357546 0.0413885 0)
(0.341144 0.0438146 0)
(0.32387 0.045557 0)
(0.305965 0.0465732 0)
(0.287939 0.0468738 0)
(0.269904 0.0465411 0)
(0.252262 0.04566 0)
(0.235147 0.0443407 0)
(0.218694 0.0426832 0)
(0.202942 0.0408619 0)
(0.187918 0.0388526 0)
(0.173769 0.0366999 0)
(0.160403 0.0346086 0)
(0.147907 0.0324336 0)
(0.136177 0.0302479 0)
(0.125295 0.0281069 0)
(0.115182 0.0258485 0)
(0.106021 0.0236316 0)
(0.0975007 0.0213551 0)
(0.0900827 0.0190101 0)
(0.08332 0.0167153 0)
(0.0776973 0.0144358 0)
(0.0726525 0.0121723 0)
(0.0686876 0.00997567 0)
(0.0654052 0.00788387 0)
(0.0630184 0.00588739 0)
(0.0610854 0.00396004 0)
(0.0602938 0.00210103 0)
(0.0598137 0.000515911 0)
(0.0600187 -0.0011375 0)
(0.0609655 -0.00260547 0)
(0.0621924 -0.00392239 0)
(0.0640066 -0.00528598 0)
(0.0663796 -0.00649039 0)
(0.0691107 -0.00745977 0)
(0.0719941 -0.00858219 0)
(0.0755961 -0.00962129 0)
(0.0793398 -0.0104692 0)
(0.0834718 -0.0113246 0)
(0.0879356 -0.0120476 0)
(0.0925944 -0.0124977 0)
(0.0971882 -0.0131823 0)
(0.10227 -0.0138437 0)
(0.107484 -0.0143969 0)
(0.11302 -0.0149406 0)
(0.118569 -0.0153758 0)
(0.124413 -0.0159014 0)
(0.130083 -0.0166103 0)
(0.136449 -0.0174434 0)
(0.142831 -0.0182995 0)
(0.149826 -0.0193341 0)
(0.156956 -0.0205064 0)
(0.164756 -0.021806 0)
(0.172947 -0.0231943 0)
(0.181823 -0.0246291 0)
(0.191151 -0.0261459 0)
(0.20108 -0.0275627 0)
(0.211607 -0.029047 0)
(0.222601 -0.030326 0)
(0.234204 -0.0315905 0)
(0.246132 -0.0327043 0)
(0.258624 -0.033564 0)
(0.271291 -0.0343032 0)
(0.284393 -0.0347167 0)
(0.297409 -0.0348951 0)
(0.310738 -0.0347637 0)
(0.323698 -0.0342432 0)
(0.336686 -0.0333849 0)
(0.349102 -0.0321173 0)
(0.361149 -0.0303103 0)
(0.372333 -0.0280857 0)
(0.382639 -0.0252463 0)
(0.391684 -0.0220568 0)
(0.399496 -0.0183118 0)
(0.405864 -0.014134 0)
(0.410451 -0.00950934 0)
(0.413221 -0.00455468 0)
(0.413898 0.000576667 0)
(0.412662 0.00592785 0)
(0.409273 0.0112613 0)
(0.403819 0.0165926 0)
(0.396293 0.0216428 0)
(0.3868 0.0264313 0)
(0.375444 0.0306097 0)
(0.362734 0.0342193 0)
(0.348648 0.0371598 0)
(0.333564 0.0392717 0)
(0.317953 0.040678 0)
(0.301971 0.0415416 0)
(0.285846 0.0418462 0)
(0.269695 0.0416937 0)
(0.253781 0.0410644 0)
(0.238149 0.0400384 0)
(0.223146 0.0385232 0)
(0.208713 0.0367608 0)
(0.195168 0.0347015 0)
(0.182407 0.03255 0)
(0.170559 0.030296 0)
(0.159545 0.0280882 0)
(0.149256 0.0258012 0)
(0.139908 0.0235626 0)
(0.131231 0.0212088 0)
(0.123497 0.0190116 0)
(0.11632 0.01677 0)
(0.110065 0.0146547 0)
(0.104367 0.0127251 0)
(0.0992833 0.0109678 0)
(0.0945549 0.00926184 0)
(0.0904162 0.00766678 0)
(0.0866756 0.00625802 0)
(0.0834439 0.00503399 0)
(0.0804924 0.00403197 0)
(0.0778595 0.00314866 0)
(0.0756943 0.00254851 0)
(0.0736863 0.00195319 0)
(0.0721279 0.00131431 0)
(0.0709517 0.00073744 0)
(0.0702705 0.000197526 0)
(0.0698956 -0.000476724 0)
(0.0701076 -0.000987688 0)
(0.0705122 -0.00152724 0)
(0.0712634 -0.00195912 0)
(0.0722415 -0.00228441 0)
(0.0732589 -0.002678 0)
(0.0744351 -0.00312803 0)
(0.0757758 -0.00379967 0)
(0.0774613 -0.00462118 0)
(0.0795078 -0.0055816 0)
(0.0818316 -0.00665965 0)
(0.0844944 -0.00806896 0)
(0.0877265 -0.00965329 0)
(0.0916295 -0.0115129 0)
(0.0962779 -0.0136685 0)
(0.101799 -0.0160108 0)
(0.108244 -0.0184684 0)
(0.115676 -0.0209906 0)
(0.124054 -0.0234021 0)
(0.133374 -0.0259021 0)
(0.143552 -0.0283471 0)
(0.154669 -0.0308166 0)
(0.166655 -0.0331835 0)
(0.179554 -0.0354506 0)
(0.193192 -0.0378608 0)
(0.207812 -0.0402142 0)
(0.223319 -0.0426537 0)
(0.239829 -0.0450158 0)
(0.257311 -0.0471427 0)
(0.275619 -0.0490171 0)
(0.294673 -0.050184 0)
(0.31412 -0.0508993 0)
(0.333797 -0.0509227 0)
(0.353533 -0.0501363 0)
(0.372802 -0.0485497 0)
(0.391381 -0.046093 0)
(0.408927 -0.0426007 0)
(0.424963 -0.0381955 0)
(0.439121 -0.0327117 0)
(0.45092 -0.026524 0)
(0.460144 -0.0194823 0)
(0.466414 -0.0119965 0)
(0.469608 -0.00423267 0)
(0.469744 0.00374668 0)
(0.466621 0.0116651 0)
(0.460349 0.0192864 0)
(0.451047 0.0266394 0)
(0.438959 0.0333306 0)
(0.424366 0.0393322 0)
(0.4077 0.0444535 0)
(0.38938 0.0486368 0)
(0.369802 0.0517424 0)
(0.349565 0.0539536 0)
(0.32953 0.0550877 0)
(0.309461 0.0551428 0)
(0.28935 0.0540987 0)
(0.26984 0.0522602 0)
(0.251239 0.0500098 0)
(0.233539 0.0473245 0)
(0.216949 0.0441594 0)
(0.20148 0.0410736 0)
(0.187024 0.0377164 0)
(0.173772 0.0342992 0)
(0.16174 0.0310375 0)
(0.150943 0.0277187 0)
(0.141575 0.0243165 0)
(0.133298 0.0211484 0)
(0.126174 0.0179101 0)
(0.1203 0.0151343 0)
(0.11535 0.0127306 0)
(0.111407 0.0106174 0)
(0.108076 0.00935814 0)
(0.105092 0.00827152 0)
(0.102525 0.0075889 0)
(0.100069 0.00725436 0)
(0.0976973 0.00694014 0)
(0.0953985 0.00666311 0)
(0.0931289 0.00634961 0)
(0.0909734 0.00582803 0)
(0.0890085 0.0051213 0)
(0.0873109 0.00425554 0)
(0.0859361 0.00327764 0)
(0.0849082 0.00215308 0)
(0.0842888 0.0010367 0)
(0.0840976 -0.000130177 0)
(0.0844142 -0.00119619 0)
(0.0851257 -0.00212527 0)
(0.0861655 -0.00304804 0)
(0.0875337 -0.00392698 0)
(0.0891865 -0.00470843 0)
(0.0910925 -0.00561999 0)
(0.0933104 -0.00652571 0)
(0.0958386 -0.00763512 0)
(0.0987613 -0.00888889 0)
(0.102163 -0.0102804 0)
(0.106115 -0.012044 0)
(0.110755 -0.0140086 0)
(0.116196 -0.0161289 0)
(0.122496 -0.0187207 0)
(0.129848 -0.0213029 0)
(0.138222 -0.0243182 0)
(0.147777 -0.0272221 0)
(0.158515 -0.0299963 0)
(0.170354 -0.0332284 0)
(0.183426 -0.0359597 0)
(0.197591 -0.0382959 0)
(0.212682 -0.0411015 0)
(0.228727 -0.0428824 0)
(0.245475 -0.0450282 0)
(0.26286 -0.0460441 0)
(0.280615 -0.0463783 0)
(0.298577 -0.0470834 0)
(0.316519 -0.0464814 0)
(0.334187 -0.045171 0)
(0.351481 -0.0441042 0)
(0.368007 -0.0417713 0)
(0.383591 -0.0388101 0)
(0.39819 -0.0358626 0)
(0.411273 -0.0318615 0)
(0.422941 -0.0277009 0)
(0.432686 -0.0227652 0)
(0.44049 -0.0174818 0)
(0.446302 -0.0119758 0)
(0.449832 -0.00619104 0)
(0.451167 -0.000305092 0)
(0.450164 0.00556169 0)
(0.44688 0.0113341 0)
(0.441295 0.0167314 0)
(0.433722 0.0218826 0)
(0.424266 0.026681 0)
(0.412974 0.0305152 0)
(0.400358 0.0341799 0)
(0.386528 0.0373267 0)
(0.371642 0.0391734 0)
(0.35613 0.0410747 0)
(0.340106 0.0417038 0)
(0.323862 0.0424909 0)
(0.307542 0.0428202 0)
(0.291337 0.0420697 0)
(0.275377 0.0416032 0)
(0.258108 0.0408449 0)
(0.425963 -0.0340058 0)
(0.436676 -0.0294269 0)
(0.446423 -0.0239133 0)
(0.454143 -0.0179657 0)
(0.459662 -0.0116661 0)
(0.462779 -0.00506612 0)
(0.463413 0.00165634 0)
(0.461617 0.0083721 0)
(0.457419 0.0150028 0)
(0.450687 0.0211333 0)
(0.441913 0.0270908 0)
(0.431113 0.0326716 0)
(0.418279 0.0370855 0)
(0.40404 0.0414556 0)
(0.388315 0.0444184 0)
(0.371643 0.0474073 0)
(0.354123 0.0498212 0)
(0.335965 0.0506454 0)
(0.317521 0.0516653 0)
(0.298948 0.052147 0)
(0.280502 0.0511958 0)
(0.262319 0.0505357 0)
(0.244583 0.049451 0)
(0.227517 0.0473235 0)
(0.21109 0.045516 0)
(0.195542 0.0429764 0)
(0.180786 0.0407336 0)
(0.166941 0.0383469 0)
(0.154083 0.0356085 0)
(0.142104 0.0331055 0)
(0.131057 0.0305889 0)
(0.120949 0.0279882 0)
(0.111698 0.0255604 0)
(0.103321 0.0231443 0)
(0.0957472 0.0208772 0)
(0.0889601 0.0186967 0)
(0.082924 0.0165993 0)
(0.0775884 0.0146198 0)
(0.072921 0.0127385 0)
(0.0688858 0.0109482 0)
(0.0654438 0.00925321 0)
(0.0625662 0.00763568 0)
(0.0602197 0.006094 0)
(0.0583811 0.00461776 0)
(0.0570271 0.0031912 0)
(0.0561306 0.00180572 0)
(0.0556728 0.000452202 0)
(0.0556697 -0.000899707 0)
(0.0561432 -0.002237 0)
(0.0570891 -0.00354765 0)
(0.0584925 -0.00492679 0)
(0.0603806 -0.00626748 0)
(0.0627351 -0.00771381 0)
(0.0656039 -0.00917697 0)
(0.0689815 -0.0105845 0)
(0.0728604 -0.0121902 0)
(0.0773421 -0.0138513 0)
(0.0823691 -0.0153645 0)
(0.0879779 -0.0172783 0)
(0.0942379 -0.019043 0)
(0.101137 -0.0211845 0)
(0.108803 -0.0233843 0)
(0.117235 -0.0255952 0)
(0.12647 -0.0282251 0)
(0.136809 -0.0310395 0)
(0.148079 -0.0336856 0)
(0.160676 -0.0367843 0)
(0.174287 -0.0393747 0)
(0.18917 -0.0418881 0)
(0.205136 -0.0442147 0)
(0.222556 -0.0451256 0)
(0.239977 -0.0451249 0)
(0.25734 -0.0432864 0)
(0.272737 -0.0408621 0)
(0.287737 -0.0375431 0)
(0.300538 -0.0342435 0)
(0.312717 -0.0304245 0)
(0.323043 -0.0269977 0)
(0.332946 -0.0255629 0)
(0.343084 -0.0227922 0)
(0.352601 -0.0218114 0)
(0.362499 -0.021663 0)
(0.372614 -0.0215957 0)
(0.383054 -0.0216142 0)
(0.393243 -0.0214499 0)
(0.403501 -0.0205488 0)
(0.413106 -0.0183156 0)
(0.421716 -0.014613 0)
(0.42844 -0.0096676 0)
(0.432866 -0.00372407 0)
(0.434601 0.0029533 0)
(0.43348 0.00989631 0)
(0.429498 0.0166017 0)
(0.422965 0.0228063 0)
(0.414138 0.0283915 0)
(0.403275 0.033302 0)
(0.390711 0.037614 0)
(0.376652 0.0413625 0)
(0.361298 0.0445826 0)
(0.34477 0.0471861 0)
(0.327383 0.0490706 0)
(0.309331 0.050165 0)
(0.291179 0.0504698 0)
(0.273027 0.0500939 0)
(0.255278 0.0491329 0)
(0.238097 0.0476902 0)
(0.221593 0.0458947 0)
(0.205824 0.043928 0)
(0.19076 0.0417505 0)
(0.176611 0.0394324 0)
(0.163239 0.0371912 0)
(0.150737 0.0348443 0)
(0.139003 0.0324917 0)
(0.128129 0.0302008 0)
(0.117997 0.0277807 0)
(0.108848 0.0253968 0)
(0.100288 0.0229433 0)
(0.0929035 0.0204275 0)
(0.0861165 0.0179566 0)
(0.0805257 0.015497 0)
(0.0754821 0.0130706 0)
(0.0715281 0.0107016 0)
(0.0682592 0.00845828 0)
(0.0659036 0.0063177 0)
(0.0639465 0.00422924 0)
(0.0632209 0.00222641 0)
(0.0627491 0.000543919 0)
(0.0629588 -0.00125236 0)
(0.0639638 -0.00281708 0)
(0.0651776 -0.00423004 0)
(0.0670167 -0.00570261 0)
(0.0694233 -0.00698288 0)
(0.0721694 -0.00802745 0)
(0.0750447 -0.00923426 0)
(0.0786971 -0.010345 0)
(0.0824399 -0.0112728 0)
(0.0866023 -0.0121814 0)
(0.0911129 -0.0129437 0)
(0.0957733 -0.0134216 0)
(0.100355 -0.0141625 0)
(0.105458 -0.0148616 0)
(0.110661 -0.0154712 0)
(0.116209 -0.0160372 0)
(0.121739 -0.016484 0)
(0.127553 -0.0170509 0)
(0.133175 -0.0178083 0)
(0.139529 -0.0186921 0)
(0.145859 -0.019607 0)
(0.15283 -0.0207258 0)
(0.159905 -0.0219772 0)
(0.167679 -0.0233783 0)
(0.175825 -0.024869 0)
(0.184663 -0.0264191 0)
(0.19399 -0.0280385 0)
(0.203877 -0.0295871 0)
(0.214402 -0.0311688 0)
(0.225365 -0.0325525 0)
(0.23696 -0.0339231 0)
(0.248873 -0.0351137 0)
(0.261376 -0.0360546 0)
(0.274036 -0.036852 0)
(0.287154 -0.0372917 0)
(0.300171 -0.0375074 0)
(0.313537 -0.0373692 0)
(0.326526 -0.0368094 0)
(0.339555 -0.0359207 0)
(0.352038 -0.0345415 0)
(0.364161 -0.0326124 0)
(0.375412 -0.0302157 0)
(0.385813 -0.027168 0)
(0.39493 -0.0237422 0)
(0.402814 -0.019707 0)
(0.409251 -0.0152198 0)
(0.413882 -0.0102421 0)
(0.416704 -0.00489457 0)
(0.417373 0.000638827 0)
(0.416167 0.00640979 0)
(0.412783 0.0121697 0)
(0.40727 0.0179015 0)
(0.399706 0.0233482 0)
(0.390151 0.0285336 0)
(0.378662 0.0330392 0)
(0.365795 0.036939 0)
(0.351551 0.0400986 0)
(0.33631 0.0423409 0)
(0.320517 0.043853 0)
(0.304393 0.0447622 0)
(0.288131 0.0450623 0)
(0.271878 0.0448952 0)
(0.255862 0.0442198 0)
(0.240126 0.0430956 0)
(0.225075 0.0414538 0)
(0.210635 0.0395396 0)
(0.197088 0.0373141 0)
(0.184368 0.0349917 0)
(0.172593 0.0325606 0)
(0.161696 0.0301883 0)
(0.151494 0.0277526 0)
(0.142253 0.0253501 0)
(0.133682 0.0228317 0)
(0.126062 0.0204843 0)
(0.119007 0.0181021 0)
(0.112861 0.0158376 0)
(0.107227 0.0137904 0)
(0.102176 0.0119534 0)
(0.0974304 0.0101513 0)
(0.0932241 0.00844097 0)
(0.0893009 0.00695892 0)
(0.0858055 0.00567589 0)
(0.0825142 0.00462027 0)
(0.0794948 0.00366862 0)
(0.0768804 0.00300788 0)
(0.0743736 0.0023304 0)
(0.0723191 0.00160766 0)
(0.0707241 0.000986097 0)
(0.0696504 0.000337592 0)
(0.0688853 -0.000450652 0)
(0.0688437 -0.00102992 0)
(0.0690604 -0.0016352 0)
(0.0696813 -0.00210644 0)
(0.0705647 -0.00247376 0)
(0.0714946 -0.00288524 0)
(0.0726137 -0.00337052 0)
(0.0739042 -0.00408966 0)
(0.0755769 -0.00497015 0)
(0.0776134 -0.00599444 0)
(0.0799197 -0.00714742 0)
(0.0825516 -0.0086561 0)
(0.0857751 -0.0103431 0)
(0.0896412 -0.0123425 0)
(0.0942658 -0.0146677 0)
(0.0997655 -0.0171957 0)
(0.106212 -0.0198461 0)
(0.11367 -0.0225641 0)
(0.122071 -0.0251479 0)
(0.131403 -0.027838 0)
(0.141599 -0.0304606 0)
(0.152736 -0.0331193 0)
(0.164747 -0.0356451 0)
(0.177653 -0.0380855 0)
(0.191296 -0.040667 0)
(0.205927 -0.0432036 0)
(0.221449 -0.0458481 0)
(0.238008 -0.0483953 0)
(0.255549 -0.050725 0)
(0.273959 -0.052754 0)
(0.293144 -0.0540224 0)
(0.312721 -0.0548202 0)
(0.332571 -0.0548547 0)
(0.352495 -0.0540272 0)
(0.371954 -0.0523335 0)
(0.390746 -0.0497026 0)
(0.408515 -0.0459609 0)
(0.424767 -0.0412116 0)
(0.439127 -0.0353113 0)
(0.451097 -0.0286332 0)
(0.460467 -0.0210284 0)
(0.466819 -0.0129568 0)
(0.470067 -0.0045681 0)
(0.470218 0.00403687 0)
(0.467067 0.012556 0)
(0.460729 0.0207942 0)
(0.451334 0.0287205 0)
(0.439122 0.0359335 0)
(0.424377 0.0423921 0)
(0.40755 0.0478899 0)
(0.389084 0.0523843 0)
(0.369353 0.0557078 0)
(0.349009 0.0580771 0)
(0.32886 0.0592639 0)
(0.308671 0.0592897 0)
(0.288509 0.0581371 0)
(0.268986 0.0561278 0)
(0.250408 0.0536802 0)
(0.232769 0.0507803 0)
(0.21624 0.0473808 0)
(0.200828 0.044075 0)
(0.186415 0.0404958 0)
(0.173156 0.0368533 0)
(0.161111 0.0333784 0)
(0.150256 0.0298445 0)
(0.140794 0.0262022 0)
(0.132424 0.022803 0)
(0.125197 0.0193199 0)
(0.119235 0.0163117 0)
(0.114244 0.0136982 0)
(0.110292 0.0113994 0)
(0.106978 0.0100254 0)
(0.104027 0.00883911 0)
(0.101511 0.00808706 0)
(0.0991273 0.00771516 0)
(0.0968319 0.00737766 0)
(0.0946063 0.00707773 0)
(0.0924074 0.00674919 0)
(0.0903157 0.00619093 0)
(0.0884126 0.00543755 0)
(0.0867731 0.00450833 0)
(0.0854542 0.00346664 0)
(0.0844762 0.00226363 0)
(0.0839054 0.00107099 0)
(0.083764 -0.000178781 0)
(0.0841308 -0.00132006 0)
(0.084881 -0.00231126 0)
(0.0859483 -0.00329449 0)
(0.0873351 -0.00422932 0)
(0.0889966 -0.00505762 0)
(0.0908959 -0.00602545 0)
(0.0930976 -0.00698684 0)
(0.0955954 -0.00816812 0)
(0.0984789 -0.00950637 0)
(0.101835 -0.0109946 0)
(0.105733 -0.0128855 0)
(0.110319 -0.0149962 0)
(0.115711 -0.0172769 0)
(0.12196 -0.020067 0)
(0.129276 -0.0228495 0)
(0.137616 -0.0261002 0)
(0.147159 -0.0292325 0)
(0.157901 -0.0322255 0)
(0.169749 -0.0357128 0)
(0.182855 -0.0386607 0)
(0.197072 -0.0411826 0)
(0.212217 -0.0442121 0)
(0.228342 -0.0461352 0)
(0.245173 -0.0484536 0)
(0.262658 -0.0495524 0)
(0.280518 -0.049916 0)
(0.298596 -0.0506831 0)
(0.316654 -0.0500384 0)
(0.334437 -0.0486297 0)
(0.351862 -0.047488 0)
(0.368504 -0.0449803 0)
(0.384198 -0.0417955 0)
(0.39893 -0.0386286 0)
(0.412115 -0.0343223 0)
(0.423901 -0.0298452 0)
(0.433727 -0.0245295 0)
(0.441599 -0.0188379 0)
(0.447476 -0.0129054 0)
(0.451036 -0.00667082 0)
(0.452384 -0.000325977 0)
(0.451365 0.00599932 0)
(0.448045 0.0122228 0)
(0.442384 0.0180411 0)
(0.434728 0.0235937 0)
(0.425177 0.0287643 0)
(0.413752 0.03289 0)
(0.401017 0.0368334 0)
(0.387063 0.0402166 0)
(0.372039 0.0421932 0)
(0.356409 0.0442309 0)
(0.340267 0.0448945 0)
(0.323921 0.0457309 0)
(0.30751 0.046074 0)
(0.291228 0.0452533 0)
(0.275203 0.0447405 0)
(0.257875 0.0439146 0)
(0.426895 -0.0364847 0)
(0.437738 -0.03158 0)
(0.447591 -0.0256671 0)
(0.455402 -0.0192866 0)
(0.460996 -0.0125268 0)
(0.464154 -0.00544315 0)
(0.464795 0.00177288 0)
(0.462984 0.00898183 0)
(0.45875 0.0160983 0)
(0.451929 0.0226744 0)
(0.443069 0.0290646 0)
(0.432167 0.0350491 0)
(0.419187 0.0397757 0)
(0.40482 0.0444571 0)
(0.388941 0.0476234 0)
(0.372132 0.0508203 0)
(0.354475 0.0534001 0)
(0.336176 0.0542707 0)
(0.317605 0.0553545 0)
(0.298912 0.055861 0)
(0.280361 0.054829 0)
(0.26208 0.0541113 0)
(0.244258 0.0529387 0)
(0.227132 0.0506486 0)
(0.210647 0.0487032 0)
(0.195067 0.0459749 0)
(0.18028 0.0435659 0)
(0.166414 0.0410041 0)
(0.153554 0.0380681 0)
(0.141574 0.0353855 0)
(0.130531 0.0326896 0)
(0.120438 0.0299052 0)
(0.111201 0.0273065 0)
(0.102843 0.0247216 0)
(0.0952884 0.0222966 0)
(0.0885217 0.019965 0)
(0.0825074 0.0177229 0)
(0.0771926 0.0156074 0)
(0.0725455 0.0135976 0)
(0.0685298 0.0116854 0)
(0.0651054 0.00987524 0)
(0.0622439 0.00814793 0)
(0.0599114 0.00650133 0)
(0.0580851 0.00492403 0)
(0.0567408 0.00340024 0)
(0.0558511 0.00192156 0)
(0.0553982 0.000476733 0)
(0.0553977 -0.000965722 0)
(0.0558727 -0.0023926 0)
(0.0568187 -0.00379112 0)
(0.0582184 -0.00526315 0)
(0.0601031 -0.00669445 0)
(0.0624504 -0.00823927 0)
(0.0653122 -0.00980229 0)
(0.0686825 -0.0113054 0)
(0.0725502 -0.0130213 0)
(0.0770231 -0.0147962 0)
(0.0820396 -0.0164118 0)
(0.0876351 -0.0184561 0)
(0.0938802 -0.0203386 0)
(0.100759 -0.0226244 0)
(0.108398 -0.0249704 0)
(0.116799 -0.0273302 0)
(0.125993 -0.0301444 0)
(0.136303 -0.0331532 0)
(0.147534 -0.0359999 0)
(0.160142 -0.0393416 0)
(0.173754 -0.0421234 0)
(0.188698 -0.0448701 0)
(0.204779 -0.0474338 0)
(0.222515 -0.0484822 0)
(0.240284 -0.0485384 0)
(0.258024 -0.0466187 0)
(0.273632 -0.0440337 0)
(0.288952 -0.0404468 0)
(0.301894 -0.0368766 0)
(0.314281 -0.0327862 0)
(0.324735 -0.029123 0)
(0.334797 -0.0276712 0)
(0.34524 -0.0247498 0)
(0.355109 -0.0236984 0)
(0.365396 -0.0235143 0)
(0.375856 -0.0234548 0)
(0.386693 -0.0234455 0)
(0.39715 -0.023224 0)
(0.407649 -0.0222465 0)
(0.417458 -0.0198363 0)
(0.426253 -0.0158004 0)
(0.433136 -0.0104603 0)
(0.437689 -0.00404566 0)
(0.439473 0.00313615 0)
(0.438327 0.010605 0)
(0.43427 0.0178065 0)
(0.427628 0.0244717 0)
(0.418667 0.0304626 0)
(0.407679 0.035716 0)
(0.394979 0.0403171 0)
(0.380796 0.0443263 0)
(0.365324 0.0477752 0)
(0.348652 0.0505585 0)
(0.331156 0.0525843 0)
(0.312938 0.0537566 0)
(0.294664 0.0540751 0)
(0.27637 0.053655 0)
(0.258518 0.0526018 0)
(0.241255 0.051024 0)
(0.224712 0.0490903 0)
(0.208901 0.0469839 0)
(0.193815 0.0446345 0)
(0.179668 0.0421426 0)
(0.166273 0.039754 0)
(0.153781 0.0372414 0)
(0.142029 0.034728 0)
(0.131174 0.0322832 0)
(0.121004 0.0296921 0)
(0.111879 0.0271481 0)
(0.103277 0.024518 0)
(0.095934 0.0218294 0)
(0.0891096 0.0191835 0)
(0.0835586 0.0165477 0)
(0.0784978 0.0139553 0)
(0.0745693 0.0114104 0)
(0.071316 0.00901562 0)
(0.0689912 0.00674067 0)
(0.0670184 0.00449422 0)
(0.0663629 0.00233997 0)
(0.0658828 0.00056332 0)
(0.0661027 -0.00137475 0)
(0.0671622 -0.00303111 0)
(0.0683559 -0.00455615 0)
(0.0702296 -0.00613284 0)
(0.0726797 -0.00748145 0)
(0.0754295 -0.00859866 0)
(0.0783071 -0.00989607 0)
(0.0819933 -0.0110798 0)
(0.0857454 -0.0120792 0)
(0.0899498 -0.0130508 0)
(0.094502 -0.0138452 0)
(0.0991624 -0.0143434 0)
(0.103739 -0.0151443 0)
(0.108853 -0.0158806 0)
(0.114057 -0.0165445 0)
(0.119635 -0.0171383 0)
(0.12515 -0.0175913 0)
(0.130931 -0.0182006 0)
(0.136498 -0.0190064 0)
(0.142849 -0.0199331 0)
(0.149116 -0.0209149 0)
(0.156072 -0.0221196 0)
(0.163059 -0.0234498 0)
(0.170827 -0.0249525 0)
(0.1789 -0.0265445 0)
(0.187736 -0.0282244 0)
(0.197025 -0.0299469 0)
(0.20689 -0.0316073 0)
(0.217412 -0.0333068 0)
(0.228338 -0.0347917 0)
(0.239951 -0.0362671 0)
(0.251832 -0.037543 0)
(0.264352 -0.0385535 0)
(0.276989 -0.0394177 0)
(0.290142 -0.039897 0)
(0.303148 -0.0401259 0)
(0.316562 -0.0399923 0)
(0.329546 -0.0394209 0)
(0.342667 -0.0384648 0)
(0.355162 -0.037012 0)
(0.367389 -0.0349546 0)
(0.378729 -0.032392 0)
(0.389183 -0.0291383 0)
(0.398404 -0.0254708 0)
(0.406377 -0.0211628 0)
(0.412895 -0.0163432 0)
(0.417572 -0.011016 0)
(0.420445 -0.00528517 0)
(0.421133 0.000651609 0)
(0.419935 0.00683943 0)
(0.416508 0.0130365 0)
(0.410993 0.0191756 0)
(0.403378 0.0250347 0)
(0.393727 0.0305961 0)
(0.382138 0.0354577 0)
(0.369161 0.0396468 0)
(0.354709 0.0430217 0)
(0.339308 0.0454394 0)
(0.323368 0.0470399 0)
(0.30709 0.0479893 0)
(0.290671 0.0483168 0)
(0.274276 0.0481078 0)
(0.258145 0.047383 0)
(0.24229 0.0461666 0)
(0.227114 0.0443861 0)
(0.212592 0.0423172 0)
(0.199026 0.0399143 0)
(0.186322 0.0374182 0)
(0.174551 0.0348008 0)
(0.163707 0.0322722 0)
(0.153561 0.0296894 0)
(0.144438 0.0271047 0)
(0.135952 0.0244203 0)
(0.12847 0.021927 0)
(0.12155 0.019393 0)
(0.115569 0.0170013 0)
(0.110127 0.01485 0)
(0.105205 0.0129141 0)
(0.100517 0.0110308 0)
(0.0963635 0.00926344 0)
(0.0924148 0.00772261 0)
(0.0887934 0.00634836 0)
(0.0852528 0.00524778 0)
(0.0819001 0.00427167 0)
(0.0788758 0.00357699 0)
(0.0758767 0.00281683 0)
(0.0733145 0.00200866 0)
(0.0711829 0.00129328 0)
(0.0695968 0.000559568 0)
(0.0684319 -0.000311738 0)
(0.0679979 -0.00102739 0)
(0.0678661 -0.00172331 0)
(0.0682762 -0.0022267 0)
(0.0689831 -0.00264362 0)
(0.0697663 -0.00307288 0)
(0.0707752 -0.00359276 0)
(0.0719733 -0.00436808 0)
(0.0736067 -0.00531876 0)
(0.075613 -0.00641146 0)
(0.0778887 -0.00764212 0)
(0.0804845 -0.00924258 0)
(0.0836856 -0.0110191 0)
(0.0874972 -0.0131636 0)
(0.0920913 -0.0156563 0)
(0.0975654 -0.01837 0)
(0.10401 -0.0212261 0)
(0.111493 -0.024135 0)
(0.119915 -0.0268972 0)
(0.129264 -0.0297833 0)
(0.139479 -0.0325873 0)
(0.15064 -0.0354359 0)
(0.162683 -0.0381138 0)
(0.175595 -0.0407265 0)
(0.189244 -0.0434734 0)
(0.203887 -0.0461908 0)
(0.219422 -0.0490436 0)
(0.236031 -0.0517814 0)
(0.253633 -0.0543273 0)
(0.27215 -0.0565141 0)
(0.291474 -0.0578851 0)
(0.311192 -0.0587776 0)
(0.331231 -0.0588243 0)
(0.351356 -0.0579627 0)
(0.371027 -0.0561705 0)
(0.390049 -0.0533658 0)
(0.408055 -0.0493713 0)
(0.424544 -0.0442738 0)
(0.439123 -0.0379543 0)
(0.451277 -0.0307787 0)
(0.460806 -0.022603 0)
(0.467255 -0.0139301 0)
(0.47056 -0.00489801 0)
(0.470721 0.00434229 0)
(0.467541 0.0134704 0)
(0.46114 0.0223286 0)
(0.451638 0.0308308 0)
(0.439288 0.0385714 0)
(0.424377 0.0454936 0)
(0.407378 0.0513689 0)
(0.388752 0.0561745 0)
(0.368852 0.0597111 0)
(0.348391 0.0622359 0)
(0.328127 0.0634698 0)
(0.307817 0.0634457 0)
(0.287592 0.0621721 0)
(0.268052 0.0599846 0)
(0.249503 0.0573352 0)
(0.231934 0.054217 0)
(0.215473 0.0505854 0)
(0.200127 0.0470654 0)
(0.185762 0.0432703 0)
(0.172495 0.0394069 0)
(0.160434 0.0357205 0)
(0.149515 0.0319787 0)
(0.139949 0.0280973 0)
(0.131477 0.0244734 0)
(0.124136 0.0207471 0)
(0.118077 0.0175043 0)
(0.113044 0.0146703 0)
(0.109084 0.0121818 0)
(0.10579 0.0106902 0)
(0.102874 0.0094005 0)
(0.100416 0.00857141 0)
(0.0981112 0.00816233 0)
(0.0959017 0.00779513 0)
(0.0937552 0.00748023 0)
(0.0916331 0.00713035 0)
(0.0896115 0.00654118 0)
(0.0877743 0.0057379 0)
(0.0861971 0.00475213 0)
(0.0849376 0.0036393 0)
(0.0840149 0.00235739 0)
(0.0834968 0.00108623 0)
(0.0834083 -0.000237495 0)
(0.0838288 -0.00145196 0)
(0.0846209 -0.00250355 0)
(0.0857179 -0.00354554 0)
(0.0871247 -0.00453429 0)
(0.0887956 -0.00540704 0)
(0.0906878 -0.00642871 0)
(0.0928721 -0.00744325 0)
(0.0953369 -0.00869412 0)
(0.098178 -0.0101151 0)
(0.101485 -0.0116986 0)
(0.105324 -0.0137161 0)
(0.109851 -0.0159729 0)
(0.115191 -0.0184146 0)
(0.121383 -0.0214045 0)
(0.128661 -0.0243892 0)
(0.136964 -0.0278778 0)
(0.146493 -0.0312415 0)
(0.157241 -0.0344561 0)
(0.169096 -0.0382022 0)
(0.182241 -0.0413699 0)
(0.196514 -0.0440803 0)
(0.211717 -0.0473371 0)
(0.227926 -0.0494045 0)
(0.244848 -0.0518984 0)
(0.26244 -0.0530816 0)
(0.280413 -0.0534759 0)
(0.298614 -0.054307 0)
(0.316799 -0.0536201 0)
(0.334705 -0.0521126 0)
(0.35227 -0.0508971 0)
(0.369036 -0.0482141 0)
(0.384849 -0.044805 0)
(0.399723 -0.0414184 0)
(0.413019 -0.0368052 0)
(0.424931 -0.0320096 0)
(0.434846 -0.0263109 0)
(0.44279 -0.0202075 0)
(0.448738 -0.0138445 0)
(0.452331 -0.00715533 0)
(0.453694 -0.000346463 0)
(0.452656 0.0064426 0)
(0.449297 0.0131226 0)
(0.443555 0.0193664 0)
(0.435811 0.0253246 0)
(0.426155 0.0308711 0)
(0.414588 0.0352899 0)
(0.401723 0.0395135 0)
(0.387636 0.0431339 0)
(0.372465 0.0452387 0)
(0.356705 0.0474119 0)
(0.340438 0.0481073 0)
(0.323983 0.048991 0)
(0.307472 0.0493456 0)
(0.291109 0.0484513 0)
(0.275013 0.0478897 0)
(0.257624 0.0469936 0)
(0.427891 -0.038991 0)
(0.438873 -0.0337585 0)
(0.448842 -0.0274424 0)
(0.45675 -0.0206243 0)
(0.462424 -0.0133991 0)
(0.465627 -0.00582577 0)
(0.466275 0.00188986 0)
(0.464449 0.00959804 0)
(0.460176 0.0172061 0)
(0.453258 0.0242327 0)
(0.444306 0.03106 0)
(0.433294 0.0374522 0)
(0.420158 0.042493 0)
(0.405652 0.0474877 0)
(0.389609 0.0508571 0)
(0.372653 0.0542625 0)
(0.35485 0.057008 0)
(0.336401 0.0579229 0)
(0.317693 0.0590691 0)
(0.29887 0.0595988 0)
(0.280208 0.0584828 0)
(0.261822 0.0577052 0)
(0.243908 0.0564419 0)
(0.226718 0.0539859 0)
(0.210172 0.0518998 0)
(0.194558 0.0489802 0)
(0.179737 0.0464026 0)
(0.16585 0.0436636 0)
(0.152989 0.0405282 0)
(0.141007 0.0376645 0)
(0.12997 0.0347884 0)
(0.119892 0.0318194 0)
(0.11067 0.0290492 0)
(0.102333 0.026295 0)
(0.0947987 0.0237118 0)
(0.0880541 0.0212289 0)
(0.0820631 0.0188422 0)
(0.0767707 0.0165908 0)
(0.0721453 0.0144526 0)
(0.0681505 0.0124189 0)
(0.0647449 0.010494 0)
(0.0619003 0.00865743 0)
(0.0595827 0.00690635 0)
(0.0577695 0.00522827 0)
(0.0564358 0.00360705 0)
(0.0555534 0.00203561 0)
(0.0551057 0.000499785 0)
(0.0551083 -0.00103258 0)
(0.0555846 -0.00254852 0)
(0.0565308 -0.00403435 0)
(0.0579264 -0.00559876 0)
(0.0598074 -0.00712031 0)
(0.0621469 -0.00876338 0)
(0.0650013 -0.0104261 0)
(0.0683637 -0.0120244 0)
(0.0722194 -0.0138504 0)
(0.0766827 -0.0157391 0)
(0.0816882 -0.0174567 0)
(0.0872701 -0.0196314 0)
(0.0934995 -0.0216309 0)
(0.100358 -0.0240601 0)
(0.107969 -0.0265518 0)
(0.116336 -0.0290591 0)
(0.125485 -0.0320576 0)
(0.135766 -0.0352601 0)
(0.146951 -0.0383105 0)
(0.159568 -0.0419007 0)
(0.173179 -0.0448781 0)
(0.188175 -0.0478636 0)
(0.204367 -0.0506755 0)
(0.222444 -0.0518717 0)
(0.240581 -0.0519687 0)
(0.258724 -0.0500366 0)
(0.274571 -0.0473009 0)
(0.290244 -0.0434615 0)
(0.303334 -0.0395794 0)
(0.315939 -0.0351768 0)
(0.326513 -0.0312419 0)
(0.336756 -0.0297747 0)
(0.347533 -0.026714 0)
(0.357799 -0.0256177 0)
(0.368483 -0.0254254 0)
(0.379307 -0.0253412 0)
(0.390558 -0.0252574 0)
(0.401332 -0.0249461 0)
(0.412113 -0.0238786 0)
(0.422156 -0.0213187 0)
(0.431137 -0.0170102 0)
(0.438154 -0.0112999 0)
(0.442818 -0.00435942 0)
(0.444672 0.00338915 0)
(0.4435 0.011424 0)
(0.439389 0.0191341 0)
(0.432626 0.0262382 0)
(0.423516 0.032617 0)
(0.412373 0.0381947 0)
(0.399545 0.0430908 0)
(0.385218 0.047356 0)
(0.369626 0.0510337 0)
(0.352812 0.0539994 0)
(0.335173 0.0561552 0)
(0.316804 0.0574072 0)
(0.29838 0.0577229 0)
(0.279942 0.0572648 0)
(0.261969 0.0561179 0)
(0.244632 0.0544067 0)
(0.228027 0.0523198 0)
(0.2122 0.0500605 0)
(0.19707 0.0475387 0)
(0.182929 0.0448871 0)
(0.169516 0.0423364 0)
(0.157032 0.039659 0)
(0.145266 0.0369777 0)
(0.134423 0.0343891 0)
(0.124218 0.0316323 0)
(0.115121 0.0289137 0)
(0.106462 0.0261114 0)
(0.0991601 0.0232499 0)
(0.0923042 0.0204229 0)
(0.0867857 0.0176021 0)
(0.0817284 0.0148576 0)
(0.0778178 0.0121295 0)
(0.0745771 0.00957937 0)
(0.0722894 0.00716012 0)
(0.0702843 0.00474994 0)
(0.0697015 0.00246526 0)
(0.0692303 0.000589806 0)
(0.069448 -0.00150617 0)
(0.0705802 -0.00323925 0)
(0.0717512 -0.00486308 0)
(0.0736516 -0.00656812 0)
(0.076142 -0.00798358 0)
(0.0788881 -0.00916636 0)
(0.0817641 -0.0105516 0)
(0.0854915 -0.0118079 0)
(0.0892623 -0.0128971 0)
(0.0934985 -0.0139158 0)
(0.0981241 -0.0147437 0)
(0.102761 -0.0152703 0)
(0.107337 -0.0161266 0)
(0.112461 -0.0169006 0)
(0.117681 -0.0176195 0)
(0.123274 -0.0182317 0)
(0.128785 -0.0186817 0)
(0.134527 -0.0193509 0)
(0.140058 -0.0201921 0)
(0.146388 -0.0211636 0)
(0.152584 -0.0222072 0)
(0.159526 -0.0234878 0)
(0.166433 -0.0249005 0)
(0.174185 -0.0265112 0)
(0.182202 -0.0281961 0)
(0.191003 -0.0300101 0)
(0.200294 -0.0318278 0)
(0.210103 -0.0336213 0)
(0.220642 -0.0354187 0)
(0.231541 -0.0370132 0)
(0.243145 -0.038595 0)
(0.255024 -0.0399474 0)
(0.267551 -0.0410446 0)
(0.280178 -0.0419559 0)
(0.293353 -0.0424763 0)
(0.306364 -0.0427516 0)
(0.319821 -0.0426003 0)
(0.332796 -0.0420016 0)
(0.345978 -0.0410199 0)
(0.35853 -0.0394538 0)
(0.370835 -0.0372883 0)
(0.382234 -0.034551 0)
(0.392796 -0.0310906 0)
(0.402099 -0.0271978 0)
(0.410148 -0.0225885 0)
(0.416794 -0.017459 0)
(0.421538 -0.0117719 0)
(0.424449 -0.00563013 0)
(0.425158 0.000719353 0)
(0.423989 0.00732946 0)
(0.420516 0.0139499 0)
(0.414948 0.0204997 0)
(0.407284 0.0267836 0)
(0.397562 0.0327477 0)
(0.38583 0.0379495 0)
(0.372729 0.0424386 0)
(0.358128 0.0460358 0)
(0.342585 0.0485816 0)
(0.326453 0.0502792 0)
(0.310074 0.0512854 0)
(0.293526 0.0516095 0)
(0.276989 0.0513732 0)
(0.260721 0.0505905 0)
(0.244707 0.0492724 0)
(0.229417 0.0473639 0)
(0.214781 0.0451244 0)
(0.201104 0.0425232 0)
(0.188359 0.0398515 0)
(0.176579 0.0370507 0)
(0.165733 0.0343522 0)
(0.155558 0.0315981 0)
(0.146465 0.0288432 0)
(0.138026 0.0260011 0)
(0.130654 0.0233479 0)
(0.123838 0.0206501 0)
(0.118023 0.0181119 0)
(0.112774 0.0158576 0)
(0.10806 0.013859 0)
(0.103584 0.0118827 0)
(0.0995716 0.0100372 0)
(0.0956986 0.00848946 0)
(0.0921216 0.00707191 0)
(0.088522 0.00593617 0)
(0.084979 0.00492575 0)
(0.0816208 0.00421395 0)
(0.0781947 0.00340337 0)
(0.0751653 0.00252497 0)
(0.072499 0.0017354 0)
(0.0703604 0.000870496 0)
(0.0686233 -0.000135039 0)
(0.0677584 -0.000905117 0)
(0.0672318 -0.00172696 0)
(0.067228 -0.00231237 0)
(0.0676232 -0.00278558 0)
(0.06819 -0.00323548 0)
(0.0690141 -0.00379542 0)
(0.0700591 -0.00462729 0)
(0.0716071 -0.00565096 0)
(0.0735487 -0.00680795 0)
(0.0757652 -0.00812881 0)
(0.0783098 -0.00982203 0)
(0.0814693 -0.0116995 0)
(0.0852071 -0.0139758 0)
(0.0897638 -0.0166477 0)
(0.0952 -0.0195486 0)
(0.101642 -0.0226134 0)
(0.109157 -0.0257103 0)
(0.117598 -0.028632 0)
(0.126959 -0.0317213 0)
(0.137192 -0.0347124 0)
(0.148381 -0.0377481 0)
(0.160459 -0.0405822 0)
(0.173374 -0.043368 0)
(0.187029 -0.0462851 0)
(0.20168 -0.0491843 0)
(0.217226 -0.0522488 0)
(0.233885 -0.0551779 0)
(0.251551 -0.0579541 0)
(0.27019 -0.0602875 0)
(0.289666 -0.0617756 0)
(0.309537 -0.0627575 0)
(0.329784 -0.0628267 0)
(0.350123 -0.0619341 0)
(0.370019 -0.0600408 0)
(0.389294 -0.0570713 0)
(0.407558 -0.0528283 0)
(0.424297 -0.0473817 0)
(0.439107 -0.0406475 0)
(0.451459 -0.0329546 0)
(0.461154 -0.0242115 0)
(0.467703 -0.0149354 0)
(0.471069 -0.00525925 0)
(0.471237 0.00461693 0)
(0.468024 0.0143766 0)
(0.461555 0.023874 0)
(0.451942 0.0329604 0)
(0.439444 0.0412279 0)
(0.424358 0.0486166 0)
(0.407176 0.054869 0)
(0.388376 0.0599858 0)
(0.368296 0.0637364 0)
(0.34771 0.066414 0)
(0.327309 0.067689 0)
(0.306865 0.0676208 0)
(0.286584 0.066224 0)
(0.267028 0.0638538 0)
(0.248512 0.060987 0)
(0.231027 0.0576429 0)
(0.214644 0.0537794 0)
(0.199372 0.0500437 0)
(0.185061 0.046041 0)
(0.171783 0.0419663 0)
(0.15971 0.0380796 0)
(0.148721 0.0341424 0)
(0.139041 0.0300247 0)
(0.130459 0.0261708 0)
(0.122992 0.0221977 0)
(0.116826 0.0187082 0)
(0.111747 0.0156455 0)
(0.107782 0.012959 0)
(0.104511 0.0113425 0)
(0.101633 0.00994654 0)
(0.0992369 0.00903733 0)
(0.0970209 0.00858589 0)
(0.0949047 0.00819478 0)
(0.0928446 0.00785946 0)
(0.0908061 0.00749601 0)
(0.088859 0.00687321 0)
(0.0870938 0.00602361 0)
(0.0855833 0.00497847 0)
(0.0843878 0.00380153 0)
(0.0835233 0.00244235 0)
(0.0830627 0.00109474 0)
(0.0830317 -0.000305569 0)
(0.0835085 -0.00159177 0)
(0.0843455 -0.00270213 0)
(0.0854745 -0.00380127 0)
(0.0869031 -0.00484197 0)
(0.0885841 -0.00575667 0)
(0.0904689 -0.00682956 0)
(0.0926343 -0.00789455 0)
(0.0950637 -0.00921255 0)
(0.0978589 -0.0107142 0)
(0.101113 -0.0123916 0)
(0.104887 -0.0145346 0)
(0.109352 -0.0169377 0)
(0.114634 -0.0195412 0)
(0.120766 -0.0227323 0)
(0.128003 -0.0259214 0)
(0.136266 -0.0296507 0)
(0.14578 -0.033249 0)
(0.156534 -0.0366884 0)
(0.168397 -0.0406969 0)
(0.181582 -0.0440877 0)
(0.195915 -0.0469895 0)
(0.211181 -0.0504774 0)
(0.227481 -0.0526916 0)
(0.244498 -0.055364 0)
(0.262205 -0.0566335 0)
(0.2803 -0.0570595 0)
(0.298633 -0.057957 0)
(0.316953 -0.0572281 0)
(0.33499 -0.0556217 0)
(0.352704 -0.0543331 0)
(0.369604 -0.0514745 0)
(0.385544 -0.0478402 0)
(0.400571 -0.0442338 0)
(0.413985 -0.0393117 0)
(0.426034 -0.0341957 0)
(0.436043 -0.0281107 0)
(0.444066 -0.0215916 0)
(0.450089 -0.0147938 0)
(0.453718 -0.00764495 0)
(0.455096 -0.000366557 0)
(0.45404 0.00689194 0)
(0.450638 0.0140342 0)
(0.44481 0.0207086 0)
(0.43697 0.027077 0)
(0.427202 0.0330034 0)
(0.415482 0.0377169 0)
(0.402477 0.0422223 0)
(0.388246 0.0460805 0)
(0.372917 0.0483119 0)
(0.35702 0.0506194 0)
(0.340618 0.0513437 0)
(0.324045 0.0522725 0)
(0.307429 0.052636 0)
(0.290979 0.0516647 0)
(0.274808 0.0510514 0)
(0.257352 0.0500826 0)
(0.428952 -0.0415269 0)
(0.440084 -0.0359643 0)
(0.450175 -0.0292408 0)
(0.458189 -0.0219801 0)
(0.463947 -0.0142837 0)
(0.467199 -0.0062144 0)
(0.467856 0.00200733 0)
(0.466012 0.0102213 0)
(0.461697 0.0183274 0)
(0.454676 0.0258095 0)
(0.445624 0.0330787 0)
(0.434495 0.0398827 0)
(0.421191 0.0452393 0)
(0.406538 0.0505494 0)
(0.390318 0.0541217 0)
(0.373206 0.0577359 0)
(0.355246 0.0606469 0)
(0.336637 0.0616036 0)
(0.317784 0.062811 0)
(0.298824 0.0633619 0)
(0.280042 0.0621587 0)
(0.261545 0.0613184 0)
(0.243533 0.0599616 0)
(0.226275 0.0573362 0)
(0.209664 0.0551065 0)
(0.194013 0.0519926 0)
(0.179157 0.049244 0)
(0.165248 0.0463254 0)
(0.152387 0.0429888 0)
(0.140402 0.0399427 0)
(0.129372 0.036885 0)
(0.119311 0.0337306 0)
(0.110105 0.0307881 0)
(0.101791 0.0278642 0)
(0.0942782 0.0251225 0)
(0.0875571 0.0224882 0)
(0.081591 0.0199568 0)
(0.0763226 0.0175696 0)
(0.0717205 0.0153032 0)
(0.0677478 0.0131485 0)
(0.0643622 0.0111092 0)
(0.0615358 0.00916388 0)
(0.0592338 0.00730887 0)
(0.0574344 0.00553039 0)
(0.0561121 0.00381143 0)
(0.0552376 0.00214768 0)
(0.0547955 0.000521161 0)
(0.0548013 -0.00110036 0)
(0.0552791 -0.00270479 0)
(0.0562255 -0.00427732 0)
(0.0576166 -0.00593356 0)
(0.0594935 -0.00754495 0)
(0.0618248 -0.00928604 0)
(0.0646711 -0.0110481 0)
(0.0680251 -0.0127413 0)
(0.0718679 -0.0146773 0)
(0.0763212 -0.0166798 0)
(0.0813151 -0.0184992 0)
(0.0868827 -0.020804 0)
(0.0930959 -0.0229198 0)
(0.0999324 -0.0254918 0)
(0.107514 -0.0281279 0)
(0.115847 -0.0307818 0)
(0.124948 -0.0339644 0)
(0.135196 -0.0373606 0)
(0.146329 -0.0406168 0)
(0.158952 -0.0444604 0)
(0.172559 -0.0476426 0)
(0.187603 -0.05087 0)
(0.203898 -0.0539424 0)
(0.222337 -0.0552782 0)
(0.240863 -0.0554003 0)
(0.25941 -0.0535154 0)
(0.275555 -0.0507249 0)
(0.291616 -0.0465813 0)
(0.30487 -0.0423673 0)
(0.317704 -0.0376679 0)
(0.328411 -0.033491 0)
(0.33882 -0.0320463 0)
(0.349947 -0.0288543 0)
(0.36061 -0.0276911 0)
(0.37177 -0.0274459 0)
(0.38301 -0.0273727 0)
(0.394723 -0.0272543 0)
(0.405811 -0.0268632 0)
(0.416878 -0.0256651 0)
(0.427132 -0.0228952 0)
(0.436306 -0.0182834 0)
(0.443495 -0.0121812 0)
(0.448322 -0.00469746 0)
(0.45024 0.00356614 0)
(0.449036 0.0121259 0)
(0.444813 0.0203504 0)
(0.43794 0.0279463 0)
(0.428662 0.0347242 0)
(0.417378 0.0406445 0)
(0.404399 0.0458502 0)
(0.389923 0.0503598 0)
(0.374204 0.0542624 0)
(0.357216 0.0574236 0)
(0.339458 0.0597234 0)
(0.320906 0.0610568 0)
(0.302332 0.0613772 0)
(0.283746 0.0608665 0)
(0.265647 0.0596242 0)
(0.248209 0.0577644 0)
(0.231565 0.0555358 0)
(0.215691 0.0531197 0)
(0.200543 0.0504154 0)
(0.186409 0.0475968 0)
(0.172963 0.0449 0)
(0.160496 0.0420505 0)
(0.148705 0.0392124 0)
(0.137885 0.0364705 0)
(0.127636 0.0335459 0)
(0.118562 0.0306687 0)
(0.109858 0.0276833 0)
(0.102593 0.024651 0)
(0.0956931 0.0216485 0)
(0.0902173 0.018643 0)
(0.0851532 0.0157351 0)
(0.0812646 0.0128286 0)
(0.0780394 0.0101294 0)
(0.0757855 0.00757557 0)
(0.0737569 0.00500225 0)
(0.0732576 0.00255847 0)
(0.0727793 0.000609679 0)
(0.0730113 -0.00164198 0)
(0.074194 -0.00347212 0)
(0.0753524 -0.00518687 0)
(0.0772646 -0.0070032 0)
(0.0798236 -0.00848305 0)
(0.0825429 -0.00975253 0)
(0.0854449 -0.0112262 0)
(0.0891832 -0.0125439 0)
(0.0929789 -0.0137305 0)
(0.0972514 -0.0147992 0)
(0.101941 -0.0156516 0)
(0.106558 -0.0161916 0)
(0.111138 -0.0171077 0)
(0.116274 -0.0179237 0)
(0.121508 -0.0187085 0)
(0.127142 -0.0193249 0)
(0.132629 -0.0197732 0)
(0.138345 -0.0204939 0)
(0.143836 -0.0213732 0)
(0.150149 -0.0223862 0)
(0.156288 -0.0234997 0)
(0.163204 -0.0248684 0)
(0.17003 -0.0263486 0)
(0.177778 -0.0280632 0)
(0.185706 -0.0298621 0)
(0.1945 -0.0317991 0)
(0.203765 -0.0337218 0)
(0.213531 -0.0356438 0)
(0.224086 -0.0375495 0)
(0.234941 -0.0392506 0)
(0.24657 -0.0409349 0)
(0.258432 -0.042366 0)
(0.270971 -0.0435475 0)
(0.283607 -0.0445278 0)
(0.296796 -0.0450817 0)
(0.309803 -0.0453752 0)
(0.323293 -0.0452435 0)
(0.336293 -0.0446348 0)
(0.349531 -0.0435928 0)
(0.362119 -0.0419564 0)
(0.374518 -0.039667 0)
(0.386001 -0.0367537 0)
(0.39661 -0.0330954 0)
(0.406013 -0.028958 0)
(0.414172 -0.0240729 0)
(0.4209 -0.0186157 0)
(0.425722 -0.0125762 0)
(0.428731 -0.00604728 0)
(0.429453 0.000715196 0)
(0.428304 0.0077732 0)
(0.424806 0.0148259 0)
(0.419205 0.0217757 0)
(0.411462 0.0284791 0)
(0.40163 0.03484 0)
(0.389777 0.0404104 0)
(0.376508 0.0451981 0)
(0.361704 0.0490154 0)
(0.346038 0.0517265 0)
(0.329773 0.0535147 0)
(0.313271 0.0545519 0)
(0.296582 0.0548919 0)
(0.279982 0.0546355 0)
(0.263601 0.0538086 0)
(0.247425 0.052388 0)
(0.232006 0.0503274 0)
(0.21726 0.0479348 0)
(0.203514 0.0451487 0)
(0.190695 0.0422918 0)
(0.178819 0.0392831 0)
(0.167936 0.0364404 0)
(0.157729 0.033521 0)
(0.148594 0.0305667 0)
(0.140106 0.0275526 0)
(0.132726 0.0247413 0)
(0.125974 0.0218896 0)
(0.120264 0.0191947 0)
(0.115179 0.0168251 0)
(0.110641 0.0147376 0)
(0.106365 0.0126959 0)
(0.102604 0.0108014 0)
(0.0989528 0.0092212 0)
(0.0955197 0.00775519 0)
(0.0919941 0.00663719 0)
(0.0884723 0.00564733 0)
(0.0849872 0.00492054 0)
(0.0812673 0.00406451 0)
(0.077837 0.00312687 0)
(0.074676 0.00228347 0)
(0.0720167 0.00131452 0)
(0.0697253 0.000186412 0)
(0.068311 -0.000752865 0)
(0.0672465 -0.00163715 0)
(0.0668601 -0.0022668 0)
(0.0668024 -0.0028492 0)
(0.0669279 -0.00335296 0)
(0.0674581 -0.00396333 0)
(0.0682931 -0.00486946 0)
(0.0696944 -0.00597585 0)
(0.0715182 -0.00719537 0)
(0.0736264 -0.00859875 0)
(0.0760765 -0.0103789 0)
(0.0791739 -0.0123502 0)
(0.0828143 -0.0147681 0)
(0.08731 -0.0176203 0)
(0.0926979 -0.0207194 0)
(0.0991279 -0.02401 0)
(0.106673 -0.0273118 0)
(0.115131 -0.0303885 0)
(0.124498 -0.033677 0)
(0.13475 -0.036854 0)
(0.145965 -0.0400704 0)
(0.158077 -0.0430595 0)
(0.170991 -0.0460124 0)
(0.184652 -0.0490832 0)
(0.199309 -0.0521799 0)
(0.214864 -0.055452 0)
(0.231566 -0.0585895 0)
(0.249293 -0.0616064 0)
(0.268067 -0.0641035 0)
(0.287701 -0.0657133 0)
(0.307737 -0.066788 0)
(0.328201 -0.0668814 0)
(0.348766 -0.0659611 0)
(0.368902 -0.0639699 0)
(0.388447 -0.0608325 0)
(0.406993 -0.0563307 0)
(0.424008 -0.0505294 0)
(0.439078 -0.0433697 0)
(0.451659 -0.0351603 0)
(0.46154 -0.0258225 0)
(0.468203 -0.0159197 0)
(0.471639 -0.00558155 0)
(0.471823 0.00492268 0)
(0.468583 0.0153178 0)
(0.462039 0.0254504 0)
(0.4523 0.0351235 0)
(0.439639 0.0439341 0)
(0.424358 0.0517968 0)
(0.406982 0.0584292 0)
(0.387998 0.0638488 0)
(0.367719 0.0678115 0)
(0.346991 0.0706454 0)
(0.326444 0.0719449 0)
(0.305857 0.0718102 0)
(0.285503 0.0702735 0)
(0.265923 0.0677042 0)
(0.247446 0.0646203 0)
(0.230054 0.0610519 0)
(0.213754 0.0569573 0)
(0.198563 0.0530119 0)
(0.184314 0.0488095 0)
(0.171024 0.0445284 0)
(0.158937 0.0404438 0)
(0.147872 0.0363113 0)
(0.138065 0.0319619 0)
(0.129364 0.0278868 0)
(0.12176 0.023672 0)
(0.115477 0.0199331 0)
(0.110351 0.0166305 0)
(0.106381 0.0137389 0)
(0.103138 0.0119957 0)
(0.100303 0.0104865 0)
(0.0979738 0.00948819 0)
(0.0958552 0.00899169 0)
(0.0938419 0.00857089 0)
(0.091875 0.00822209 0)
(0.0899264 0.00784072 0)
(0.0880599 0.00718978 0)
(0.0863706 0.00629288 0)
(0.0849321 0.0051921 0)
(0.083805 0.00394711 0)
(0.0830033 0.0025107 0)
(0.0826035 0.00109174 0)
(0.0826329 -0.00038484 0)
(0.0831704 -0.00174065 0)
(0.0840554 -0.00290787 0)
(0.0852187 -0.00406229 0)
(0.0866706 -0.00515271 0)
(0.0883628 -0.00610661 0)
(0.0902396 -0.00722788 0)
(0.0923848 -0.00834037 0)
(0.094776 -0.00972281 0)
(0.0975221 -0.0113031 0)
(0.100719 -0.0130725 0)
(0.104424 -0.0153402 0)
(0.108821 -0.0178897 0)
(0.114042 -0.0206557 0)
(0.120108 -0.0240497 0)
(0.1273 -0.0274456 0)
(0.13552 -0.0314187 0)
(0.145018 -0.035255 0)
(0.155778 -0.0389223 0)
(0.16765 -0.0431972 0)
(0.180878 -0.0468146 0)
(0.195274 -0.0499112 0)
(0.210607 -0.0536342 0)
(0.227004 -0.0559978 0)
(0.244124 -0.058852 0)
(0.261953 -0.0602095 0)
(0.280177 -0.0606684 0)
(0.298652 -0.0616349 0)
(0.317116 -0.0608645 0)
(0.335293 -0.0591585 0)
(0.353167 -0.0577978 0)
(0.370208 -0.0547632 0)
(0.386283 -0.050903 0)
(0.401473 -0.0470767 0)
(0.415013 -0.0418435 0)
(0.427208 -0.0364051 0)
(0.437319 -0.0299302 0)
(0.445426 -0.0229913 0)
(0.451531 -0.0157541 0)
(0.455197 -0.0081401 0)
(0.456593 -0.000386262 0)
(0.455517 0.00734775 0)
(0.45207 0.0149586 0)
(0.446148 0.0220689 0)
(0.438205 0.0288526 0)
(0.428318 0.035163 0)
(0.416433 0.040173 0)
(0.40328 0.0449619 0)
(0.388895 0.0490587 0)
(0.373396 0.0514147 0)
(0.357352 0.0538553 0)
(0.340806 0.0546054 0)
(0.324108 0.0555769 0)
(0.30738 0.0559465 0)
(0.290838 0.0548945 0)
(0.274586 0.0542265 0)
(0.257061 0.053182 0)
(0.430078 -0.0440943 0)
(0.441369 -0.0381994 0)
(0.451593 -0.031064 0)
(0.459718 -0.0233552 0)
(0.465568 -0.0151815 0)
(0.468872 -0.00660946 0)
(0.469537 0.00212532 0)
(0.467675 0.010852 0)
(0.463315 0.019463 0)
(0.456184 0.0274061 0)
(0.447026 0.0351223 0)
(0.43577 0.0423424 0)
(0.422288 0.0480167 0)
(0.407478 0.0536443 0)
(0.39107 0.0574192 0)
(0.373791 0.0612425 0)
(0.355664 0.0643187 0)
(0.336886 0.0653148 0)
(0.317878 0.0665817 0)
(0.298771 0.0671521 0)
(0.279863 0.065858 0)
(0.261247 0.0649522 0)
(0.243131 0.0634988 0)
(0.225803 0.0607002 0)
(0.209122 0.0583238 0)
(0.193434 0.0550125 0)
(0.17854 0.0520903 0)
(0.164609 0.0489897 0)
(0.151746 0.0454497 0)
(0.139761 0.0422197 0)
(0.128737 0.0389793 0)
(0.118694 0.0356386 0)
(0.109506 0.032523 0)
(0.101216 0.0294288 0)
(0.0937268 0.0265284 0)
(0.0870307 0.0237425 0)
(0.0810913 0.0210664 0)
(0.0758483 0.0185435 0)
(0.071271 0.0161492 0)
(0.0673219 0.013874 0)
(0.0639576 0.0117208 0)
(0.0611502 0.00966711 0)
(0.0588647 0.00770865 0)
(0.0570798 0.00583008 0)
(0.0557697 0.00401377 0)
(0.0549038 0.00225763 0)
(0.0544678 0.000540641 0)
(0.0544771 -0.00116913 0)
(0.0549564 -0.00286148 0)
(0.055903 -0.00452002 0)
(0.0572892 -0.00626747 0)
(0.0591616 -0.00796828 0)
(0.0614839 -0.00980715 0)
(0.0643217 -0.0116684 0)
(0.0676668 -0.0134561 0)
(0.0714959 -0.0155021 0)
(0.0759383 -0.0176182 0)
(0.0809201 -0.0195391 0)
(0.0864732 -0.0219739 0)
(0.0926697 -0.024205 0)
(0.0994841 -0.0269195 0)
(0.107035 -0.0296982 0)
(0.115332 -0.0324978 0)
(0.124382 -0.0358653 0)
(0.134594 -0.0394532 0)
(0.14567 -0.0429189 0)
(0.158295 -0.0470217 0)
(0.171894 -0.0504136 0)
(0.186979 -0.0538924 0)
(0.203367 -0.05723 0)
(0.222202 -0.0586953 0)
(0.241103 -0.058797 0)
(0.260061 -0.0570009 0)
(0.276566 -0.0543511 0)
(0.293062 -0.0498966 0)
(0.306475 -0.0452627 0)
(0.319555 -0.0401727 0)
(0.330394 -0.0356957 0)
(0.340991 -0.0342668 0)
(0.3525 -0.030961 0)
(0.363617 -0.0297764 0)
(0.375253 -0.0295073 0)
(0.38692 -0.0294046 0)
(0.399116 -0.0291846 0)
(0.410577 -0.0286691 0)
(0.421986 -0.0273752 0)
(0.432487 -0.0244141 0)
(0.44185 -0.0195658 0)
(0.44919 -0.013075 0)
(0.454129 -0.00505369 0)
(0.456107 0.00382787 0)
(0.454878 0.0129868 0)
(0.450593 0.0217448 0)
(0.443601 0.0298201 0)
(0.434163 0.0369839 0)
(0.422683 0.0431967 0)
(0.409554 0.0486979 0)
(0.394906 0.0534639 0)
(0.379047 0.057595 0)
(0.361916 0.0609312 0)
(0.343995 0.0633689 0)
(0.325263 0.0647956 0)
(0.306527 0.0650936 0)
(0.287791 0.0645341 0)
(0.269531 0.0631926 0)
(0.252012 0.0611745 0)
(0.235305 0.0587918 0)
(0.219407 0.0562184 0)
(0.204216 0.0533332 0)
(0.190107 0.0503423 0)
(0.176621 0.0474902 0)
(0.164176 0.0444616 0)
(0.152364 0.0414694 0)
(0.141542 0.0385883 0)
(0.131269 0.0354814 0)
(0.12222 0.0324448 0)
(0.113444 0.0292863 0)
(0.106238 0.0260713 0)
(0.0992876 0.0228871 0)
(0.0938511 0.0196981 0)
(0.0887825 0.0166376 0)
(0.0849161 0.0135467 0)
(0.0817015 0.0106835 0)
(0.079499 0.00799413 0)
(0.0774304 0.00526606 0)
(0.0770173 0.00266597 0)
(0.0765436 0.000629209 0)
(0.0767709 -0.00178244 0)
(0.0780167 -0.00369241 0)
(0.079179 -0.00551063 0)
(0.0810908 -0.00744915 0)
(0.0837111 -0.00897116 0)
(0.0863986 -0.0103237 0)
(0.0893211 -0.0118929 0)
(0.0930636 -0.0132747 0)
(0.0969072 -0.0145691 0)
(0.101192 -0.0156767 0)
(0.105983 -0.0165566 0)
(0.110544 -0.0171295 0)
(0.11515 -0.0180955 0)
(0.120274 -0.0189343 0)
(0.125551 -0.0197834 0)
(0.131198 -0.020416 0)
(0.136708 -0.020858 0)
(0.142353 -0.0216437 0)
(0.147839 -0.0225322 0)
(0.154124 -0.0235861 0)
(0.160199 -0.0247793 0)
(0.167114 -0.0262237 0)
(0.173827 -0.0277904 0)
(0.181583 -0.0296034 0)
(0.189433 -0.031496 0)
(0.198198 -0.0335781 0)
(0.207446 -0.0355836 0)
(0.217174 -0.0376489 0)
(0.227728 -0.0396616 0)
(0.23857 -0.0414696 0)
(0.250197 -0.0432692 0)
(0.26206 -0.0447774 0)
(0.274628 -0.0460416 0)
(0.287249 -0.0470509 0)
(0.300467 -0.0476691 0)
(0.313488 -0.0479974 0)
(0.327023 -0.0478445 0)
(0.340017 -0.0472384 0)
(0.353322 -0.0461621 0)
(0.365959 -0.0444261 0)
(0.378442 -0.0420237 0)
(0.38999 -0.0389514 0)
(0.40069 -0.0350956 0)
(0.410186 -0.0307237 0)
(0.418409 -0.0255533 0)
(0.425262 -0.0197678 0)
(0.430155 -0.0133526 0)
(0.433214 -0.00640175 0)
(0.434003 0.000778611 0)
(0.432915 0.00826613 0)
(0.429364 0.0157666 0)
(0.423728 0.0231322 0)
(0.415942 0.0302756 0)
(0.405976 0.0370555 0)
(0.393941 0.0429742 0)
(0.380515 0.048069 0)
(0.365529 0.052094 0)
(0.349674 0.0549523 0)
(0.33323 0.0568299 0)
(0.316648 0.0579095 0)
(0.299844 0.0582436 0)
(0.283145 0.0579436 0)
(0.266651 0.057088 0)
(0.250399 0.0555848 0)
(0.23489 0.0533805 0)
(0.220012 0.0507852 0)
(0.2062 0.047796 0)
(0.193344 0.0447703 0)
(0.18143 0.0415635 0)
(0.170494 0.0385373 0)
(0.160191 0.0354578 0)
(0.150999 0.0323336 0)
(0.142463 0.0291355 0)
(0.135018 0.0261389 0)
(0.128198 0.0231046 0)
(0.122474 0.0202591 0)
(0.117491 0.0177667 0)
(0.113046 0.0155982 0)
(0.108929 0.013466 0)
(0.105351 0.0115034 0)
(0.101931 0.00989735 0)
(0.0987912 0.00841845 0)
(0.0954983 0.0073107 0)
(0.0921094 0.00633759 0)
(0.0886602 0.00564743 0)
(0.0848892 0.00478879 0)
(0.0812588 0.00381632 0)
(0.0776899 0.00291915 0)
(0.0745486 0.00184714 0)
(0.0717191 0.000610433 0)
(0.0698151 -0.000438346 0)
(0.0681995 -0.00146683 0)
(0.0672541 -0.00221247 0)
(0.0667263 -0.00280895 0)
(0.0664322 -0.00335673 0)
(0.0664452 -0.00406907 0)
(0.0668328 -0.00506698 0)
(0.0679824 -0.0062591 0)
(0.0696338 -0.0075587 0)
(0.0715834 -0.00905485 0)
(0.0739013 -0.0109268 0)
(0.0768864 -0.0129831 0)
(0.0803854 -0.015546 0)
(0.0847862 -0.0185894 0)
(0.0900931 -0.0218665 0)
(0.0964929 -0.02538 0)
(0.104064 -0.0288853 0)
(0.112532 -0.0321199 0)
(0.121898 -0.0356245 0)
(0.132169 -0.0389868 0)
(0.14341 -0.0423996 0)
(0.155554 -0.0455543 0)
(0.168467 -0.0486708 0)
(0.182129 -0.0518945 0)
(0.196787 -0.0551769 0)
(0.212352 -0.058661 0)
(0.2291 -0.0619962 0)
(0.246893 -0.0652621 0)
(0.265821 -0.0679192 0)
(0.285629 -0.069655 0)
(0.305847 -0.0708331 0)
(0.326556 -0.0709687 0)
(0.347362 -0.0700326 0)
(0.367748 -0.0679498 0)
(0.387568 -0.0646628 0)
(0.40639 -0.0599099 0)
(0.423679 -0.0537604 0)
(0.438999 -0.0461695 0)
(0.451804 -0.0374417 0)
(0.461867 -0.0275187 0)
(0.46863 -0.0169787 0)
(0.47212 -0.0059634 0)
(0.472311 0.00520183 0)
(0.469043 0.0162445 0)
(0.462427 0.0270307 0)
(0.452559 0.0372845 0)
(0.439729 0.0466559 0)
(0.424237 0.0549927 0)
(0.406652 0.0620066 0)
(0.387466 0.0677393 0)
(0.366991 0.0719081 0)
(0.346127 0.0748825 0)
(0.325431 0.0762072 0)
(0.304704 0.0760125 0)
(0.284293 0.0743368 0)
(0.2647 0.0715651 0)
(0.246275 0.0682409 0)
(0.228994 0.0644368 0)
(0.212795 0.0601141 0)
(0.197697 0.0559582 0)
(0.183515 0.0515663 0)
(0.170213 0.0470891 0)
(0.158112 0.0428224 0)
(0.146968 0.0385183 0)
(0.137025 0.0339376 0)
(0.1282 0.0296336 0)
(0.120445 0.0251708 0)
(0.114031 0.0211663 0)
(0.108856 0.0176109 0)
(0.104885 0.0145082 0)
(0.101673 0.0126284 0)
(0.0988818 0.0110077 0)
(0.0966243 0.00991572 0)
(0.0946139 0.00937045 0)
(0.0927128 0.00892602 0)
(0.0908459 0.00855944 0)
(0.0889942 0.00816688 0)
(0.0872131 0.00748549 0)
(0.0856058 0.00654384 0)
(0.084243 0.00538761 0)
(0.0831883 0.00407756 0)
(0.082454 0.00256544 0)
(0.0821199 0.00107648 0)
(0.082214 -0.000475487 0)
(0.0828149 -0.00189872 0)
(0.0837509 -0.00312091 0)
(0.0849509 -0.00432874 0)
(0.0864279 -0.00546662 0)
(0.0881321 -0.00645685 0)
(0.0900007 -0.00762347 0)
(0.0921242 -0.00878031 0)
(0.0944746 -0.0102243 0)
(0.0971678 -0.0118811 0)
(0.100304 -0.0137407 0)
(0.103934 -0.0161319 0)
(0.108258 -0.0188279 0)
(0.113413 -0.0217574 0)
(0.119409 -0.0253559 0)
(0.126553 -0.0289609 0)
(0.134726 -0.0331812 0)
(0.144207 -0.0372592 0)
(0.154973 -0.0411579 0)
(0.166854 -0.0457035 0)
(0.180128 -0.0495513 0)
(0.194592 -0.0528461 0)
(0.209995 -0.0568086 0)
(0.226496 -0.0593242 0)
(0.243725 -0.0623638 0)
(0.261684 -0.063811 0)
(0.280045 -0.0643044 0)
(0.298671 -0.0653425 0)
(0.317287 -0.0645308 0)
(0.335614 -0.0627248 0)
(0.353656 -0.061293 0)
(0.370847 -0.058082 0)
(0.387067 -0.0539951 0)
(0.40243 -0.0499489 0)
(0.416105 -0.0444023 0)
(0.428456 -0.0386394 0)
(0.438674 -0.0317709 0)
(0.446871 -0.0244077 0)
(0.453063 -0.0167262 0)
(0.456771 -0.00864126 0)
(0.458186 -0.000405588 0)
(0.457088 0.00781046 0)
(0.453593 0.0158964 0)
(0.447572 0.0234485 0)
(0.439519 0.0306528 0)
(0.429503 0.0373518 0)
(0.417443 0.0426602 0)
(0.40413 0.0477345 0)
(0.389581 0.0520706 0)
(0.373902 0.054549 0)
(0.3577 0.0571213 0)
(0.341002 0.0578938 0)
(0.324171 0.0589056 0)
(0.307323 0.0592785 0)
(0.290684 0.0581417 0)
(0.274348 0.0574159 0)
(0.256748 0.0562925 0)
(0.43127 -0.0466953 0)
(0.442731 -0.0404656 0)
(0.453095 -0.0329136 0)
(0.46134 -0.024751 0)
(0.467288 -0.0160935 0)
(0.470647 -0.0070114 0)
(0.471321 0.00224385 0)
(0.46944 0.0114908 0)
(0.465031 0.0206141 0)
(0.457782 0.0290239 0)
(0.448511 0.0371924 0)
(0.437121 0.0448333 0)
(0.423448 0.0508271 0)
(0.408471 0.0567745 0)
(0.391864 0.0607516 0)
(0.374408 0.0647844 0)
(0.356104 0.0680256 0)
(0.337145 0.0690584 0)
(0.317974 0.0703832 0)
(0.298712 0.0709709 0)
(0.27967 0.0695821 0)
(0.260929 0.0686078 0)
(0.242703 0.0670545 0)
(0.225299 0.0640787 0)
(0.208547 0.0615523 0)
(0.192818 0.0580404 0)
(0.177886 0.0549417 0)
(0.163931 0.0516564 0)
(0.151068 0.047911 0)
(0.139082 0.0444955 0)
(0.128066 0.0410712 0)
(0.118043 0.037543 0)
(0.108873 0.0342535 0)
(0.100609 0.0309887 0)
(0.0931445 0.0279292 0)
(0.0864751 0.0249916 0)
(0.0805638 0.0221706 0)
(0.075348 0.0195122 0)
(0.070797 0.0169902 0)
(0.0668729 0.014595 0)
(0.063531 0.0123284 0)
(0.0607438 0.010167 0)
(0.0584756 0.00810578 0)
(0.0567058 0.00612784 0)
(0.0554087 0.00421452 0)
(0.054552 0.00236538 0)
(0.0541226 0.000557824 0)
(0.0541358 -0.00123896 0)
(0.0546166 -0.00301867 0)
(0.0555632 -0.00476246 0)
(0.0569442 -0.00660043 0)
(0.0588117 -0.0083902 0)
(0.0611245 -0.0103266 0)
(0.0639532 -0.0122869 0)
(0.0672887 -0.0141685 0)
(0.0711032 -0.0163244 0)
(0.0755342 -0.018554 0)
(0.0805032 -0.0205763 0)
(0.0860415 -0.0231407 0)
(0.0922209 -0.0254868 0)
(0.0990128 -0.0283427 0)
(0.106532 -0.0312628 0)
(0.114791 -0.0342069 0)
(0.123787 -0.0377597 0)
(0.13396 -0.0415359 0)
(0.144974 -0.0452162 0)
(0.157595 -0.0495804 0)
(0.171183 -0.053192 0)
(0.186301 -0.056933 0)
(0.202772 -0.0605473 0)
(0.222036 -0.0621157 0)
(0.241299 -0.0622185 0)
(0.260628 -0.0604908 0)
(0.277549 -0.0580269 0)
(0.294582 -0.0534691 0)
(0.308197 -0.0483261 0)
(0.321533 -0.0428357 0)
(0.332507 -0.0380893 0)
(0.343259 -0.0367184 0)
(0.355155 -0.033317 0)
(0.366737 -0.0320775 0)
(0.378939 -0.0317419 0)
(0.391104 -0.0316376 0)
(0.403836 -0.0313633 0)
(0.41565 -0.0307349 0)
(0.427389 -0.0293311 0)
(0.438122 -0.0261139 0)
(0.447663 -0.0209538 0)
(0.45518 -0.0139786 0)
(0.460306 -0.00539124 0)
(0.462375 0.00400887 0)
(0.461122 0.0137103 0)
(0.456708 0.0229561 0)
(0.449569 0.0314902 0)
(0.439951 0.0390854 0)
(0.428282 0.0456885 0)
(0.415002 0.0514984 0)
(0.400173 0.0565036 0)
(0.384176 0.060872 0)
(0.366856 0.0643964 0)
(0.348793 0.0669766 0)
(0.329866 0.0684929 0)
(0.310952 0.068798 0)
(0.292067 0.0681903 0)
(0.273651 0.0667433 0)
(0.256023 0.0645527 0)
(0.23927 0.0620182 0)
(0.223322 0.0592827 0)
(0.208102 0.0562166 0)
(0.194025 0.0530727 0)
(0.180494 0.0500409 0)
(0.168067 0.0468508 0)
(0.156236 0.0436994 0)
(0.145418 0.0406636 0)
(0.13511 0.0373962 0)
(0.126078 0.0341912 0)
(0.117255 0.0308595 0)
(0.110077 0.0274711 0)
(0.103088 0.0241058 0)
(0.0976836 0.020724 0)
(0.0926206 0.0175065 0)
(0.0887764 0.0142332 0)
(0.0855587 0.0112237 0)
(0.0834124 0.00840161 0)
(0.0813032 0.00550396 0)
(0.0809856 0.00274533 0)
(0.0805035 0.000647363 0)
(0.0807545 -0.00192852 0)
(0.082038 -0.00392599 0)
(0.0832124 -0.00583855 0)
(0.0851197 -0.00790228 0)
(0.0878233 -0.00947018 0)
(0.0904478 -0.0109212 0)
(0.0934247 -0.0125669 0)
(0.0971404 -0.0140216 0)
(0.101035 -0.0154424 0)
(0.105337 -0.0165699 0)
(0.110226 -0.0174677 0)
(0.114727 -0.0180569 0)
(0.119359 -0.0190979 0)
(0.124462 -0.0199825 0)
(0.129786 -0.0208858 0)
(0.135464 -0.0215031 0)
(0.14097 -0.0219453 0)
(0.146572 -0.0228001 0)
(0.152059 -0.0237106 0)
(0.158294 -0.0247795 0)
(0.164331 -0.0260587 0)
(0.17122 -0.0275682 0)
(0.177854 -0.0292201 0)
(0.185607 -0.0311436 0)
(0.193373 -0.0331356 0)
(0.20211 -0.0353719 0)
(0.211365 -0.0374715 0)
(0.221005 -0.0396659 0)
(0.231606 -0.0417759 0)
(0.242398 -0.0437118 0)
(0.254053 -0.0455972 0)
(0.265911 -0.0471945 0)
(0.278491 -0.0485747 0)
(0.29114 -0.0496197 0)
(0.304378 -0.0502744 0)
(0.317404 -0.0506408 0)
(0.330988 -0.0505067 0)
(0.343999 -0.0498737 0)
(0.357368 -0.0487542 0)
(0.370051 -0.0469512 0)
(0.382626 -0.0444319 0)
(0.394252 -0.0411668 0)
(0.405004 -0.0371303 0)
(0.414604 -0.0325131 0)
(0.422907 -0.027054 0)
(0.429869 -0.0209728 0)
(0.434829 -0.0142119 0)
(0.437966 -0.0068442 0)
(0.438789 0.000750098 0)
(0.43773 0.00870963 0)
(0.434172 0.0166358 0)
(0.428526 0.0244138 0)
(0.420662 0.0320026 0)
(0.410601 0.0392064 0)
(0.398423 0.0454996 0)
(0.384766 0.0508836 0)
(0.369556 0.0551043 0)
(0.35353 0.0581303 0)
(0.336923 0.0600866 0)
(0.32017 0.0611969 0)
(0.303243 0.0615419 0)
(0.28647 0.0612363 0)
(0.269888 0.0603153 0)
(0.253508 0.058702 0)
(0.237901 0.0563854 0)
(0.222978 0.0536297 0)
(0.209137 0.050436 0)
(0.19623 0.0472163 0)
(0.1843 0.0438115 0)
(0.173367 0.0406375 0)
(0.163036 0.0374143 0)
(0.15379 0.034091 0)
(0.145185 0.0307133 0)
(0.13767 0.0275506 0)
(0.130802 0.0243477 0)
(0.125016 0.0213145 0)
(0.119982 0.0186914 0)
(0.115488 0.0164413 0)
(0.111433 0.0142049 0)
(0.107942 0.012189 0)
(0.104693 0.0105279 0)
(0.101796 0.00899111 0)
(0.0987692 0.00793385 0)
(0.0956993 0.00701607 0)
(0.0924682 0.00635711 0)
(0.088779 0.00551276 0)
(0.085138 0.00454145 0)
(0.0813942 0.00364672 0)
(0.0779519 0.00248422 0)
(0.0746576 0.00112426 0)
(0.072263 -5.44817e-05 0)
(0.0700953 -0.00116355 0)
(0.0686569 -0.00197197 0)
(0.0675704 -0.0027112 0)
(0.0667212 -0.00330123 0)
(0.0662892 -0.00406224 0)
(0.066241 -0.00516913 0)
(0.0669194 -0.0064976 0)
(0.068127 -0.00790311 0)
(0.0697505 -0.00948034 0)
(0.0718729 -0.0114376 0)
(0.0747209 -0.0135826 0)
(0.0780405 -0.0162926 0)
(0.0823127 -0.0195508 0)
(0.0875214 -0.0230324 0)
(0.0938652 -0.0267841 0)
(0.101442 -0.0304967 0)
(0.109891 -0.0338514 0)
(0.119235 -0.0375927 0)
(0.129505 -0.0411225 0)
(0.14074 -0.0447131 0)
(0.152891 -0.0480313 0)
(0.16578 -0.0513013 0)
(0.179437 -0.0546912 0)
(0.194076 -0.0581852 0)
(0.209632 -0.0618877 0)
(0.22641 -0.0654628 0)
(0.244265 -0.0689894 0)
(0.263346 -0.071833 0)
(0.283316 -0.0736813 0)
(0.303708 -0.0749461 0)
(0.324665 -0.0751179 0)
(0.345737 -0.074152 0)
(0.366414 -0.0719769 0)
(0.386569 -0.0685171 0)
(0.405749 -0.0635034 0)
(0.423386 -0.056994 0)
(0.439023 -0.0489635 0)
(0.452109 -0.0397003 0)
(0.462388 -0.0291665 0)
(0.46929 -0.0179851 0)
(0.472858 -0.0063063 0)
(0.473046 0.00551028 0)
(0.469733 0.0172072 0)
(0.463025 0.0286574 0)
(0.453024 0.0395183 0)
(0.440027 0.0494541 0)
(0.424314 0.058244 0)
(0.406518 0.0656435 0)
(0.38712 0.0716776 0)
(0.36641 0.0760621 0)
(0.345371 0.0791917 0)
(0.324484 0.0805263 0)
(0.30358 0.0802481 0)
(0.283077 0.0784126 0)
(0.263449 0.0754211 0)
(0.245074 0.0718534 0)
(0.22791 0.0678124 0)
(0.211806 0.0632615 0)
(0.1968 0.0589024 0)
(0.182688 0.0543315 0)
(0.169369 0.0496664 0)
(0.157255 0.045214 0)
(0.14602 0.0407319 0)
(0.135923 0.035926 0)
(0.12696 0.0314056 0)
(0.119043 0.0267036 0)
(0.112487 0.0224315 0)
(0.107264 0.0186112 0)
(0.103293 0.0152837 0)
(0.100118 0.0132681 0)
(0.0973756 0.0115224 0)
(0.0951927 0.0103251 0)
(0.0933003 0.00972503 0)
(0.0915197 0.00925284 0)
(0.0897592 0.00887643 0)
(0.0880104 0.00846991 0)
(0.08632 0.0077636 0)
(0.0847989 0.00677711 0)
(0.0835171 0.0055663 0)
(0.0825398 0.00419315 0)
(0.0818772 0.0026065 0)
(0.0816119 0.00103694 0)
(0.0817737 -0.000579065 0)
(0.0824427 -0.00206696 0)
(0.0834327 -0.00334205 0)
(0.0846718 -0.00460122 0)
(0.0861756 -0.00578404 0)
(0.0878929 -0.00680748 0)
(0.0897527 -0.00801622 0)
(0.0918532 -0.009214 0)
(0.0941598 -0.0107163 0)
(0.0967965 -0.0124472 0)
(0.0998669 -0.014395 0)
(0.103418 -0.0169086 0)
(0.107663 -0.0197511 0)
(0.112748 -0.0228451 0)
(0.118668 -0.0266501 0)
(0.12576 -0.0304669 0)
(0.133884 -0.0349378 0)
(0.143346 -0.0392615 0)
(0.154119 -0.0433953 0)
(0.166009 -0.0482161 0)
(0.179331 -0.0522984 0)
(0.193866 -0.0557951 0)
(0.209345 -0.0600016 0)
(0.225956 -0.0626721 0)
(0.2433 -0.0659007 0)
(0.261397 -0.0674397 0)
(0.279903 -0.067969 0)
(0.298688 -0.0690816 0)
(0.317468 -0.068229 0)
(0.335952 -0.0663224 0)
(0.354172 -0.0648205 0)
(0.371522 -0.0614327 0)
(0.387894 -0.0571184 0)
(0.403442 -0.0528523 0)
(0.417261 -0.04699 0)
(0.429776 -0.0409001 0)
(0.44011 -0.0336341 0)
(0.448403 -0.025842 0)
(0.454688 -0.0177109 0)
(0.45844 -0.0091489 0)
(0.459875 -0.000424597 0)
(0.458754 0.00828051 0)
(0.455209 0.0168487 0)
(0.449082 0.0248488 0)
(0.440913 0.0324795 0)
(0.430759 0.0395719 0)
(0.418512 0.0451807 0)
(0.405029 0.0505422 0)
(0.390304 0.0551183 0)
(0.374434 0.057717 0)
(0.358066 0.0604195 0)
(0.341206 0.0612108 0)
(0.324234 0.0622602 0)
(0.307259 0.0626332 0)
(0.290517 0.0614073 0)
(0.274092 0.0606201 0)
(0.256414 0.0594147 0)
(0.432528 -0.0493323 0)
(0.44417 -0.0427652 0)
(0.454683 -0.0347914 0)
(0.463056 -0.0261688 0)
(0.469107 -0.0170205 0)
(0.472525 -0.00742066 0)
(0.473209 0.00236296 0)
(0.471307 0.0121383 0)
(0.466847 0.0217815 0)
(0.459472 0.0306642 0)
(0.45008 0.0392908 0)
(0.438548 0.0473574 0)
(0.424673 0.0536727 0)
(0.409519 0.0599423 0)
(0.3927 0.0641212 0)
(0.375057 0.0683638 0)
(0.356566 0.0717695 0)
(0.337417 0.0728362 0)
(0.318072 0.0742172 0)
(0.298646 0.0748199 0)
(0.279463 0.0733326 0)
(0.260589 0.0722865 0)
(0.242248 0.0706298 0)
(0.224764 0.0674725 0)
(0.207936 0.0647924 0)
(0.192167 0.0610765 0)
(0.177193 0.0577983 0)
(0.163213 0.0543256 0)
(0.150352 0.0503725 0)
(0.138366 0.04677 0)
(0.127358 0.0431604 0)
(0.117355 0.0394437 0)
(0.108206 0.0359795 0)
(0.099969 0.0325435 0)
(0.0925312 0.0293245 0)
(0.08589 0.026235 0)
(0.0800087 0.0232693 0)
(0.0748216 0.0204754 0)
(0.0702986 0.0178262 0)
(0.0664009 0.0153112 0)
(0.0630826 0.0129319 0)
(0.0603167 0.0106634 0)
(0.0580666 0.00850026 0)
(0.0563125 0.00642371 0)
(0.0550289 0.00441349 0)
(0.0541821 0.00247098 0)
(0.05376 0.000575724 0)
(0.0537775 -0.00130989 0)
(0.0542597 -0.00317648 0)
(0.0552065 -0.00500463 0)
(0.0565818 -0.00693235 0)
(0.0584438 -0.00881061 0)
(0.0607465 -0.0108444 0)
(0.0635656 -0.0129032 0)
(0.0668909 -0.0148783 0)
(0.0706898 -0.017144 0)
(0.0751087 -0.0194871 0)
(0.0800644 -0.0216108 0)
(0.0855878 -0.0243047 0)
(0.0917496 -0.0267648 0)
(0.0985189 -0.0297618 0)
(0.106006 -0.0328216 0)
(0.114224 -0.0359086 0)
(0.123165 -0.0396476 0)
(0.133295 -0.0436099 0)
(0.144242 -0.0475082 0)
(0.15685 -0.0521351 0)
(0.170424 -0.055987 0)
(0.185562 -0.0599928 0)
(0.202115 -0.0639014 0)
(0.22183 -0.0655748 0)
(0.241435 -0.065714 0)
(0.261141 -0.0640043 0)
(0.278469 -0.0616203 0)
(0.296096 -0.057304 0)
(0.310016 -0.0516299 0)
(0.3236 -0.0455094 0)
(0.334696 -0.0403973 0)
(0.345632 -0.0390784 0)
(0.357962 -0.0355876 0)
(0.370072 -0.0343412 0)
(0.382853 -0.0339909 0)
(0.395492 -0.0338422 0)
(0.408805 -0.0334287 0)
(0.421026 -0.0326164 0)
(0.433161 -0.0310692 0)
(0.444176 -0.0276306 0)
(0.453904 -0.0222616 0)
(0.461571 -0.0149134 0)
(0.466807 -0.00579233 0)
(0.468909 0.0042424 0)
(0.467631 0.014597 0)
(0.463139 0.0244688 0)
(0.455878 0.0335127 0)
(0.446127 0.0414825 0)
(0.434237 0.048364 0)
(0.420759 0.0544519 0)
(0.405721 0.0596927 0)
(0.38957 0.0642879 0)
(0.372076 0.0679906 0)
(0.353864 0.0707168 0)
(0.334726 0.0723228 0)
(0.315643 0.0725929 0)
(0.296584 0.0719332 0)
(0.277996 0.0703617 0)
(0.260252 0.0679947 0)
(0.243444 0.0653102 0)
(0.227453 0.0623957 0)
(0.212203 0.0591259 0)
(0.19816 0.0558345 0)
(0.184593 0.052655 0)
(0.17217 0.0492682 0)
(0.160342 0.045982 0)
(0.149499 0.0427953 0)
(0.139165 0.0393422 0)
(0.130163 0.0359734 0)
(0.121261 0.0324619 0)
(0.114135 0.0288952 0)
(0.107111 0.0253445 0)
(0.101722 0.0217737 0)
(0.0966594 0.0183984 0)
(0.0928466 0.0149476 0)
(0.0896254 0.011762 0)
(0.0875425 0.00881797 0)
(0.0853779 0.00576478 0)
(0.0851795 0.00283989 0)
(0.0846664 0.000650682 0)
(0.0849586 -0.00208067 0)
(0.0862521 -0.00415329 0)
(0.0874848 -0.0061753 0)
(0.0893479 -0.00835354 0)
(0.092154 -0.00994123 0)
(0.0946969 -0.011498 0)
(0.0977445 -0.0132286 0)
(0.101397 -0.0147424 0)
(0.105382 -0.0163124 0)
(0.109682 -0.0174641 0)
(0.114679 -0.0183803 0)
(0.119096 -0.0189863 0)
(0.123777 -0.0200695 0)
(0.128825 -0.0210011 0)
(0.134245 -0.021985 0)
(0.139905 -0.0225922 0)
(0.145448 -0.0230152 0)
(0.150978 -0.0239456 0)
(0.156475 -0.0248485 0)
(0.162656 -0.0259639 0)
(0.168661 -0.0273469 0)
(0.175533 -0.028899 0)
(0.182076 -0.0306385 0)
(0.189828 -0.0326555 0)
(0.197521 -0.0347348 0)
(0.206241 -0.0371356 0)
(0.215471 -0.039317 0)
(0.225077 -0.0416779 0)
(0.235686 -0.0438982 0)
(0.246435 -0.0459365 0)
(0.258114 -0.0479553 0)
(0.269961 -0.0496066 0)
(0.282566 -0.0510631 0)
(0.295251 -0.0521652 0)
(0.308496 -0.0528892 0)
(0.321549 -0.0532635 0)
(0.335202 -0.0531372 0)
(0.348222 -0.0525277 0)
(0.361679 -0.0513529 0)
(0.374397 -0.0494608 0)
(0.387089 -0.0468237 0)
(0.398769 -0.04341 0)
(0.409607 -0.0391718 0)
(0.419304 -0.0343293 0)
(0.427671 -0.0285838 0)
(0.434744 -0.0221422 0)
(0.439758 -0.0149904 0)
(0.442982 -0.00721865 0)
(0.443835 0.000811369 0)
(0.44282 0.00921709 0)
(0.439232 0.0175943 0)
(0.433557 0.0257921 0)
(0.425656 0.033829 0)
(0.415484 0.0414667 0)
(0.403107 0.0481589 0)
(0.389267 0.0538737 0)
(0.373828 0.0583069 0)
(0.357609 0.0614635 0)
(0.340803 0.0634887 0)
(0.323937 0.064628 0)
(0.306855 0.0649552 0)
(0.289965 0.0646028 0)
(0.273265 0.0636673 0)
(0.256777 0.0619614 0)
(0.241092 0.0594578 0)
(0.226066 0.0565032 0)
(0.212185 0.053114 0)
(0.199286 0.0497233 0)
(0.187395 0.0461053 0)
(0.176426 0.0427518 0)
(0.166102 0.0393727 0)
(0.156856 0.0358792 0)
(0.148262 0.032326 0)
(0.140723 0.0289812 0)
(0.133808 0.0255891 0)
(0.127962 0.0223896 0)
(0.122901 0.0196453 0)
(0.118328 0.0172852 0)
(0.114181 0.0149345 0)
(0.110597 0.0128262 0)
(0.107376 0.0111285 0)
(0.104651 0.00954585 0)
(0.101846 0.00849916 0)
(0.0990926 0.00759536 0)
(0.09615 0.0070078 0)
(0.0927277 0.00622321 0)
(0.0892655 0.0052718 0)
(0.0855621 0.00437894 0)
(0.0820039 0.00316945 0)
(0.0784456 0.001742 0)
(0.0757132 0.000450525 0)
(0.0730791 -0.000770372 0)
(0.0711298 -0.00167311 0)
(0.069451 -0.00245803 0)
(0.0680198 -0.00309832 0)
(0.0669909 -0.00397488 0)
(0.0664316 -0.00518721 0)
(0.0667709 -0.00660962 0)
(0.0676176 -0.00812549 0)
(0.0687928 -0.0098807 0)
(0.0704787 -0.0119572 0)
(0.0729434 -0.0142087 0)
(0.0759259 -0.017029 0)
(0.0799591 -0.0204772 0)
(0.0849816 -0.024155 0)
(0.0912162 -0.0281657 0)
(0.0987888 -0.032102 0)
(0.107202 -0.0355803 0)
(0.116532 -0.039563 0)
(0.126836 -0.0432786 0)
(0.138079 -0.0470616 0)
(0.150267 -0.0505296 0)
(0.163141 -0.0539189 0)
(0.17678 -0.0574558 0)
(0.191417 -0.0611268 0)
(0.206971 -0.0650427 0)
(0.223785 -0.0688461 0)
(0.241686 -0.072644 0)
(0.260925 -0.0756828 0)
(0.281072 -0.0776889 0)
(0.301653 -0.0790837 0)
(0.322849 -0.0793102 0)
(0.344134 -0.078342 0)
(0.365035 -0.0761031 0)
(0.385446 -0.0725191 0)
(0.404918 -0.0672408 0)
(0.422858 -0.0603715 0)
(0.438796 -0.0519139 0)
(0.452153 -0.0421046 0)
(0.462652 -0.0309458 0)
(0.469665 -0.019074 0)
(0.473314 -0.00669346 0)
(0.473552 0.00579573 0)
(0.470225 0.0181571 0)
(0.46344 0.0302768 0)
(0.453281 0.0417615 0)
(0.440055 0.0522713 0)
(0.424063 0.061561 0)
(0.406005 0.0693321 0)
(0.386355 0.0756663 0)
(0.365426 0.0802465 0)
(0.344241 0.0835003 0)
(0.323199 0.0848327 0)
(0.302159 0.0844763 0)
(0.281598 0.082474 0)
(0.261954 0.079252 0)
(0.243653 0.0754234 0)
(0.226648 0.0711423 0)
(0.210685 0.0663711 0)
(0.195803 0.0618057 0)
(0.181782 0.0570659 0)
(0.168455 0.0522213 0)
(0.156333 0.0476089 0)
(0.145015 0.042985 0)
(0.134769 0.0379537 0)
(0.125672 0.033205 0)
(0.117578 0.0282571 0)
(0.110862 0.0236959 0)
(0.105585 0.0195933 0)
(0.101621 0.0160417 0)
(0.0984831 0.0138766 0)
(0.0957871 0.0120172 0)
(0.0936818 0.0107106 0)
(0.0919165 0.0100527 0)
(0.0902661 0.00955675 0)
(0.0886168 0.00916484 0)
(0.0869766 0.00875026 0)
(0.0853811 0.00801843 0)
(0.0839511 0.00698942 0)
(0.0827543 0.00572671 0)
(0.0818581 0.0042901 0)
(0.0812695 0.00262632 0)
(0.0810799 0.000978056 0)
(0.0813164 -0.000695824 0)
(0.0820542 -0.00224553 0)
(0.0831011 -0.00357143 0)
(0.0843817 -0.00487991 0)
(0.0859143 -0.00610512 0)
(0.0876456 -0.00715852 0)
(0.0894964 -0.00840594 0)
(0.0915725 -0.00964106 0)
(0.0938323 -0.0111983 0)
(0.0964088 -0.0130008 0)
(0.0994094 -0.0150347 0)
(0.102875 -0.0176691 0)
(0.107036 -0.0206582 0)
(0.112045 -0.023918 0)
(0.117885 -0.0279313 0)
(0.124922 -0.0319629 0)
(0.132992 -0.0366882 0)
(0.142435 -0.0412618 0)
(0.153214 -0.0456346 0)
(0.165113 -0.0507354 0)
(0.178486 -0.0550563 0)
(0.193097 -0.0587589 0)
(0.208656 -0.0632145 0)
(0.225384 -0.0660429 0)
(0.242849 -0.0694644 0)
(0.261092 -0.071097 0)
(0.279752 -0.071664 0)
(0.298705 -0.0728542 0)
(0.317657 -0.071961 0)
(0.336307 -0.0699531 0)
(0.354716 -0.068382 0)
(0.372233 -0.0648171 0)
(0.388766 -0.0602747 0)
(0.404509 -0.0557888 0)
(0.41848 -0.0496083 0)
(0.431171 -0.0431889 0)
(0.441627 -0.0355212 0)
(0.450022 -0.0272953 0)
(0.456406 -0.0187091 0)
(0.460205 -0.00966348 0)
(0.461663 -0.000443368 0)
(0.460518 0.00875834 0)
(0.456919 0.0178163 0)
(0.45068 0.0262712 0)
(0.442386 0.0343343 0)
(0.432085 0.0418253 0)
(0.41964 0.0477366 0)
(0.405975 0.0533874 0)
(0.391065 0.0582042 0)
(0.374992 0.0609205 0)
(0.358447 0.0637516 0)
(0.341417 0.0645579 0)
(0.324296 0.065642 0)
(0.307187 0.0660119 0)
(0.290337 0.0646923 0)
(0.273817 0.0638401 0)
(0.256058 0.062549 0)
(0.433853 -0.0520074 0)
(0.445686 -0.0451001 0)
(0.456359 -0.036699 0)
(0.464867 -0.0276101 0)
(0.471028 -0.0179635 0)
(0.474508 -0.00783771 0)
(0.475203 0.00248265 0)
(0.473278 0.012795 0)
(0.468763 0.0229664 0)
(0.461255 0.0323285 0)
(0.451735 0.0414193 0)
(0.440052 0.0499167 0)
(0.425962 0.0565555 0)
(0.41062 0.0631499 0)
(0.393579 0.06753 0)
(0.375737 0.0719828 0)
(0.357048 0.0755527 0)
(0.337698 0.0766501 0)
(0.318172 0.0780855 0)
(0.298572 0.078701 0)
(0.27924 0.0771107 0)
(0.260227 0.0759895 0)
(0.241764 0.0742256 0)
(0.224198 0.0708822 0)
(0.20729 0.0680448 0)
(0.191478 0.0641212 0)
(0.176462 0.0606604 0)
(0.162457 0.0569973 0)
(0.149597 0.0528341 0)
(0.137612 0.0490428 0)
(0.126613 0.0452467 0)
(0.116632 0.0413404 0)
(0.107504 0.0377005 0)
(0.0992966 0.0340928 0)
(0.0918868 0.0307141 0)
(0.0852756 0.0274724 0)
(0.079426 0.0243619 0)
(0.0742692 0.0214327 0)
(0.0697757 0.0186566 0)
(0.065906 0.0160222 0)
(0.0626126 0.013531 0)
(0.059869 0.011156 0)
(0.0576378 0.00889142 0)
(0.0558999 0.0067171 0)
(0.0546305 0.00461076 0)
(0.0537946 0.00257456 0)
(0.0533803 0.000594586 0)
(0.0534019 -0.00138206 0)
(0.053886 -0.00333506 0)
(0.054833 -0.00524656 0)
(0.056202 -0.00726316 0)
(0.0580581 -0.0092294 0)
(0.06035 -0.0113604 0)
(0.063159 -0.0135175 0)
(0.0664735 -0.0155853 0)
(0.0702558 -0.0179609 0)
(0.0746617 -0.0204173 0)
(0.0796037 -0.0226424 0)
(0.085112 -0.0254657 0)
(0.091256 -0.0280391 0)
(0.0980026 -0.0311765 0)
(0.105458 -0.0343743 0)
(0.113633 -0.0376026 0)
(0.122516 -0.0415285 0)
(0.132599 -0.0456727 0)
(0.143475 -0.0497943 0)
(0.156058 -0.0546843 0)
(0.169615 -0.0587963 0)
(0.184763 -0.0631098 0)
(0.20139 -0.0673038 0)
(0.221576 -0.0691195 0)
(0.24152 -0.0693118 0)
(0.261614 -0.0675868 0)
(0.279265 -0.0651471 0)
(0.297579 -0.0610512 0)
(0.312001 -0.0553881 0)
(0.32584 -0.0484293 0)
(0.336993 -0.0429509 0)
(0.34809 -0.041737 0)
(0.360849 -0.0381884 0)
(0.373498 -0.0369111 0)
(0.386947 -0.0364616 0)
(0.400168 -0.0363189 0)
(0.41411 -0.0358417 0)
(0.426741 -0.0349131 0)
(0.439252 -0.0332089 0)
(0.450499 -0.0294115 0)
(0.460395 -0.0236838 0)
(0.468215 -0.0158567 0)
(0.473636 -0.00611911 0)
(0.475863 0.00447245 0)
(0.474594 0.015365 0)
(0.470005 0.0256751 0)
(0.462526 0.035167 0)
(0.452562 0.0436092 0)
(0.440446 0.0508725 0)
(0.426809 0.0572898 0)
(0.411562 0.0627649 0)
(0.395246 0.0676281 0)
(0.377558 0.0715143 0)
(0.35918 0.0743722 0)
(0.339827 0.076094 0)
(0.320556 0.076347 0)
(0.301325 0.0756475 0)
(0.282578 0.0739555 0)
(0.2647 0.0713905 0)
(0.247844 0.0685461 0)
(0.231783 0.0654697 0)
(0.216518 0.0619954 0)
(0.202507 0.0585367 0)
(0.188929 0.0551966 0)
(0.17649 0.0516536 0)
(0.164678 0.0482072 0)
(0.153804 0.0448905 0)
(0.143423 0.0412643 0)
(0.134467 0.0377417 0)
(0.12548 0.0340449 0)
(0.118413 0.0302994 0)
(0.111331 0.0265669 0)
(0.105977 0.0228004 0)
(0.100902 0.0192529 0)
(0.0971397 0.0156302 0)
(0.0938887 0.0122907 0)
(0.0918904 0.00920338 0)
(0.0896527 0.00598419 0)
(0.0895774 0.00291495 0)
(0.0890207 0.000659899 0)
(0.0893938 -0.00225556 0)
(0.0906607 -0.00440117 0)
(0.0919635 -0.00651766 0)
(0.0937889 -0.00883949 0)
(0.0967163 -0.0104339 0)
(0.0991419 -0.0121161 0)
(0.102287 -0.0138997 0)
(0.105855 -0.0154764 0)
(0.109949 -0.0172112 0)
(0.114217 -0.018335 0)
(0.119357 -0.0193035 0)
(0.123661 -0.019928 0)
(0.128412 -0.0210684 0)
(0.133354 -0.0220567 0)
(0.138917 -0.0230969 0)
(0.14452 -0.0236841 0)
(0.150124 -0.0241188 0)
(0.155564 -0.0251199 0)
(0.161096 -0.0260012 0)
(0.167199 -0.0271392 0)
(0.173169 -0.0286279 0)
(0.180035 -0.0302294 0)
(0.186511 -0.0320626 0)
(0.194238 -0.0341851 0)
(0.201876 -0.0363637 0)
(0.210566 -0.0389226 0)
(0.219793 -0.0411688 0)
(0.229362 -0.0436673 0)
(0.239958 -0.0459902 0)
(0.250721 -0.0481638 0)
(0.262386 -0.0502637 0)
(0.274254 -0.0520235 0)
(0.28687 -0.0536035 0)
(0.299586 -0.0546913 0)
(0.312838 -0.0554955 0)
(0.325956 -0.0558953 0)
(0.339638 -0.0557765 0)
(0.352695 -0.0551501 0)
(0.366226 -0.0539506 0)
(0.37902 -0.0519963 0)
(0.391809 -0.0492413 0)
(0.403566 -0.0456569 0)
(0.414469 -0.0412177 0)
(0.424268 -0.0361249 0)
(0.432719 -0.0301314 0)
(0.439909 -0.0234068 0)
(0.44499 -0.0158804 0)
(0.448268 -0.00767765 0)
(0.44915 0.000745415 0)
(0.448174 0.00961831 0)
(0.444532 0.0184522 0)
(0.438822 0.0271101 0)
(0.430883 0.0356134 0)
(0.420596 0.0436724 0)
(0.408053 0.0507328 0)
(0.393986 0.0567383 0)
(0.378292 0.0613741 0)
(0.361869 0.0647047 0)
(0.344894 0.0668188 0)
(0.327876 0.0679748 0)
(0.310659 0.068278 0)
(0.293675 0.0679285 0)
(0.276856 0.0669182 0)
(0.260239 0.0651151 0)
(0.244452 0.0624881 0)
(0.229319 0.0593443 0)
(0.215425 0.0557309 0)
(0.20248 0.0521425 0)
(0.190613 0.0483501 0)
(0.17964 0.0448569 0)
(0.169364 0.0413309 0)
(0.160066 0.0376333 0)
(0.151546 0.033915 0)
(0.144001 0.0304021 0)
(0.137149 0.0268627 0)
(0.131292 0.0234862 0)
(0.126278 0.0205877 0)
(0.12161 0.018152 0)
(0.117391 0.0157043 0)
(0.113649 0.0135186 0)
(0.110336 0.0117048 0)
(0.107581 0.0100284 0)
(0.104836 0.00902921 0)
(0.102287 0.00815684 0)
(0.0995931 0.00761089 0)
(0.0965205 0.00686075 0)
(0.0933889 0.00594026 0)
(0.0899453 0.00511963 0)
(0.0864454 0.00386581 0)
(0.0828979 0.00237659 0)
(0.0800074 0.00100498 0)
(0.0770952 -0.000292217 0)
(0.074756 -0.00125665 0)
(0.0725495 -0.00211498 0)
(0.0705382 -0.0027963 0)
(0.0688653 -0.0037569 0)
(0.0676882 -0.00509772 0)
(0.0674711 -0.00666335 0)
(0.0678482 -0.00828717 0)
(0.0687145 -0.0100949 0)
(0.0701364 -0.0122738 0)
(0.0722315 -0.0146906 0)
(0.0747795 -0.0177282 0)
(0.078446 -0.0214154 0)
(0.0831705 -0.0253102 0)
(0.0891418 -0.0295925 0)
(0.0965362 -0.0337378 0)
(0.104749 -0.0373423 0)
(0.113905 -0.0415571 0)
(0.124087 -0.0454291 0)
(0.135228 -0.0494264 0)
(0.147386 -0.0531013 0)
(0.160211 -0.0566084 0)
(0.17381 -0.0603261 0)
(0.188399 -0.0641881 0)
(0.203942 -0.0683261 0)
(0.220807 -0.0723841 0)
(0.2388 -0.0764504 0)
(0.258234 -0.0796695 0)
(0.278562 -0.0817725 0)
(0.299369 -0.0832759 0)
(0.320885 -0.0835374 0)
(0.342492 -0.0825297 0)
(0.363717 -0.0801938 0)
(0.384496 -0.0764614 0)
(0.404308 -0.0709473 0)
(0.422575 -0.0637316 0)
(0.43879 -0.0548416 0)
(0.452426 -0.0444666 0)
(0.463128 -0.0326906 0)
(0.470269 -0.0201503 0)
(0.473965 -0.00707156 0)
(0.474162 0.00607971 0)
(0.470778 0.0191498 0)
(0.463896 0.0319391 0)
(0.453598 0.0440422 0)
(0.440222 0.055133 0)
(0.423988 0.0648803 0)
(0.405711 0.0730647 0)
(0.385855 0.0797008 0)
(0.364711 0.0845026 0)
(0.343372 0.0878952 0)
(0.322136 0.08923 0)
(0.300911 0.0887714 0)
(0.28028 0.0865999 0)
(0.260632 0.0831309 0)
(0.242411 0.0790146 0)
(0.225541 0.0744788 0)
(0.209675 0.0694841 0)
(0.194885 0.0647273 0)
(0.180941 0.0598354 0)
(0.16759 0.0548228 0)
(0.15546 0.0500441 0)
(0.144035 0.045256 0)
(0.133591 0.0400072 0)
(0.124329 0.0350468 0)
(0.116052 0.0298632 0)
(0.109171 0.0250116 0)
(0.103845 0.0206108 0)
(0.0998854 0.0168098 0)
(0.0967883 0.0145019 0)
(0.0941403 0.0125027 0)
(0.0921071 0.0110677 0)
(0.0904751 0.0103435 0)
(0.0889577 0.00982658 0)
(0.0874231 0.00943104 0)
(0.0858954 0.00900728 0)
(0.0843983 0.00825355 0)
(0.0830634 0.00718077 0)
(0.0819556 0.00586918 0)
(0.0811443 0.00436579 0)
(0.0806343 0.00263042 0)
(0.0805254 0.000911943 0)
(0.0808397 -0.000826423 0)
(0.0816501 -0.00243533 0)
(0.0827567 -0.0038099 0)
(0.0840814 -0.00516545 0)
(0.0856446 -0.00643025 0)
(0.0873912 -0.00751009 0)
(0.0892326 -0.0087925 0)
(0.0912828 -0.0100611 0)
(0.0934928 -0.0116695 0)
(0.0960051 -0.013541 0)
(0.0989313 -0.0156586 0)
(0.102305 -0.0184122 0)
(0.106377 -0.0215481 0)
(0.111306 -0.0249749 0)
(0.11706 -0.0291986 0)
(0.124037 -0.0334481 0)
(0.13205 -0.0384318 0)
(0.141471 -0.0432598 0)
(0.152258 -0.0478757 0)
(0.164166 -0.0532617 0)
(0.177593 -0.0578256 0)
(0.192284 -0.0617385 0)
(0.207926 -0.0664483 0)
(0.224778 -0.0694379 0)
(0.242372 -0.0730562 0)
(0.260768 -0.0747845 0)
(0.279589 -0.0753911 0)
(0.298721 -0.0766621 0)
(0.317854 -0.0757286 0)
(0.33668 -0.0736188 0)
(0.355287 -0.0719792 0)
(0.37298 -0.0682371 0)
(0.389683 -0.063466 0)
(0.405633 -0.0587604 0)
(0.419765 -0.052259 0)
(0.432641 -0.0455075 0)
(0.443227 -0.0374337 0)
(0.451729 -0.0287688 0)
(0.458219 -0.0197217 0)
(0.462069 -0.0101855 0)
(0.46355 -0.000462005 0)
(0.462381 0.00924439 0)
(0.458725 0.0188001 0)
(0.452366 0.027717 0)
(0.44394 0.0362191 0)
(0.433484 0.0441141 0)
(0.420827 0.05033 0)
(0.406971 0.0562722 0)
(0.391863 0.0613305 0)
(0.375575 0.0641617 0)
(0.358844 0.0671198 0)
(0.341634 0.0679369 0)
(0.324355 0.0690527 0)
(0.307105 0.0694159 0)
(0.290142 0.0679977 0)
(0.273523 0.0670764 0)
(0.255679 0.0656961 0)
(0.435245 -0.0547228 0)
(0.447281 -0.0474725 0)
(0.458122 -0.0386384 0)
(0.466774 -0.0290761 0)
(0.473052 -0.0189234 0)
(0.476597 -0.00826301 0)
(0.477304 0.00260294 0)
(0.475356 0.0134616 0)
(0.470782 0.0241701 0)
(0.463132 0.0340183 0)
(0.453477 0.0435795 0)
(0.441632 0.0525134 0)
(0.427317 0.0594777 0)
(0.411776 0.0663995 0)
(0.394499 0.0709803 0)
(0.376449 0.0756437 0)
(0.357551 0.0793771 0)
(0.33799 0.0805022 0)
(0.318272 0.0819899 0)
(0.298489 0.0826157 0)
(0.279002 0.0809181 0)
(0.259842 0.0797179 0)
(0.241251 0.0778429 0)
(0.223598 0.0743087 0)
(0.206607 0.0713099 0)
(0.190751 0.0671749 0)
(0.175691 0.0635282 0)
(0.16166 0.0596714 0)
(0.148803 0.0552956 0)
(0.136819 0.051314 0)
(0.12583 0.04733 0)
(0.115873 0.0432327 0)
(0.106768 0.0394162 0)
(0.0985916 0.0356363 0)
(0.0912114 0.0320975 0)
(0.0846318 0.0287036 0)
(0.0788155 0.0254482 0)
(0.0736909 0.0223839 0)
(0.0692286 0.0194813 0)
(0.0653882 0.0167279 0)
(0.062121 0.0141253 0)
(0.0594008 0.0116448 0)
(0.0571894 0.00927952 0)
(0.0554683 0.00700839 0)
(0.0542133 0.0048065 0)
(0.0533895 0.00267626 0)
(0.0529833 0.000610575 0)
(0.0530089 -0.00145569 0)
(0.0534957 -0.00349464 0)
(0.0544429 -0.00548827 0)
(0.055805 -0.00759276 0)
(0.0576546 -0.00964649 0)
(0.059935 -0.0118746 0)
(0.0627335 -0.0141295 0)
(0.0660364 -0.0162892 0)
(0.0698012 -0.0187748 0)
(0.0741932 -0.0213443 0)
(0.079121 -0.0236712 0)
(0.0846142 -0.0266235 0)
(0.0907403 -0.0293097 0)
(0.097464 -0.0325871 0)
(0.104887 -0.0359207 0)
(0.113018 -0.0392896 0)
(0.121842 -0.0434025 0)
(0.131874 -0.0477224 0)
(0.142674 -0.0520728 0)
(0.155217 -0.0572218 0)
(0.168745 -0.0616153 0)
(0.183899 -0.0663259 0)
(0.200597 -0.0708079 0)
(0.22126 -0.0728103 0)
(0.241558 -0.0730253 0)
(0.262047 -0.0712352 0)
(0.280006 -0.0687537 0)
(0.29896 -0.0646179 0)
(0.313956 -0.0595094 0)
(0.328195 -0.0514079 0)
(0.33936 -0.0454099 0)
(0.350633 -0.0442438 0)
(0.363899 -0.0406493 0)
(0.377147 -0.0394291 0)
(0.391279 -0.0389367 0)
(0.405018 -0.0387336 0)
(0.419627 -0.038058 0)
(0.432755 -0.0368693 0)
(0.445748 -0.0349728 0)
(0.457314 -0.0309398 0)
(0.467385 -0.024933 0)
(0.475318 -0.0168093 0)
(0.480841 -0.00655956 0)
(0.483083 0.00463956 0)
(0.481763 0.0162462 0)
(0.477091 0.0272585 0)
(0.469469 0.0373386 0)
(0.459409 0.0462169 0)
(0.44707 0.0537483 0)
(0.433223 0.0604177 0)
(0.417707 0.0660745 0)
(0.401217 0.0711112 0)
(0.383291 0.0751893 0)
(0.364772 0.0782108 0)
(0.345193 0.0800307 0)
(0.325747 0.0802485 0)
(0.306329 0.0794874 0)
(0.287413 0.0776491 0)
(0.269371 0.0748842 0)
(0.252473 0.0718744 0)
(0.236331 0.0685939 0)
(0.221063 0.064919 0)
(0.207061 0.0613157 0)
(0.193504 0.0578079 0)
(0.181042 0.0540647 0)
(0.169254 0.0505 0)
(0.158347 0.0470309 0)
(0.147908 0.043192 0)
(0.139005 0.0395337 0)
(0.129915 0.0356611 0)
(0.122907 0.0317338 0)
(0.115775 0.0278141 0)
(0.110472 0.0238644 0)
(0.105348 0.0201424 0)
(0.101662 0.0163527 0)
(0.0983695 0.0128275 0)
(0.0964546 0.00963621 0)
(0.0941291 0.00623592 0)
(0.0942148 0.00297098 0)
(0.09359 0.00066803 0)
(0.0940472 -0.0024069 0)
(0.0952811 -0.00465843 0)
(0.0966744 -0.00685657 0)
(0.0984397 -0.0092996 0)
(0.101495 -0.010913 0)
(0.103804 -0.0127396 0)
(0.107043 -0.0145721 0)
(0.110504 -0.0162191 0)
(0.114729 -0.0181466 0)
(0.118977 -0.019219 0)
(0.124253 -0.0202068 0)
(0.128412 -0.0208525 0)
(0.133255 -0.0220309 0)
(0.138077 -0.0230832 0)
(0.143786 -0.0241877 0)
(0.149324 -0.0247413 0)
(0.154969 -0.0251695 0)
(0.160327 -0.0262495 0)
(0.165895 -0.0271123 0)
(0.171913 -0.0282991 0)
(0.177853 -0.029913 0)
(0.184716 -0.0315366 0)
(0.191098 -0.0334618 0)
(0.198825 -0.0356793 0)
(0.206398 -0.0379706 0)
(0.215092 -0.0407053 0)
(0.224294 -0.0430455 0)
(0.233856 -0.0457119 0)
(0.244428 -0.048136 0)
(0.255218 -0.0504309 0)
(0.266842 -0.0526566 0)
(0.278761 -0.0544712 0)
(0.291355 -0.0561434 0)
(0.304143 -0.0572741 0)
(0.31739 -0.0581799 0)
(0.330562 -0.0585865 0)
(0.34428 -0.058477 0)
(0.357406 -0.0578462 0)
(0.371015 -0.0565991 0)
(0.383901 -0.0545805 0)
(0.396791 -0.0516722 0)
(0.408662 -0.0479361 0)
(0.419648 -0.0433306 0)
(0.429555 -0.0379831 0)
(0.438045 -0.0316699 0)
(0.445375 -0.0246087 0)
(0.450517 -0.016696 0)
(0.453843 -0.00807598 0)
(0.454734 0.000806474 0)
(0.453799 0.0101429 0)
(0.450121 0.0193799 0)
(0.444368 0.0284232 0)
(0.436385 0.0374193 0)
(0.42595 0.0459788 0)
(0.41322 0.0534834 0)
(0.398912 0.0598247 0)
(0.382959 0.0646492 0)
(0.36632 0.0681028 0)
(0.34915 0.0702603 0)
(0.331977 0.071439 0)
(0.314625 0.0717356 0)
(0.297536 0.0713626 0)
(0.280596 0.0703151 0)
(0.26386 0.0684164 0)
(0.247985 0.0656391 0)
(0.232757 0.0622635 0)
(0.218864 0.0584446 0)
(0.20586 0.0546472 0)
(0.194052 0.0506246 0)
(0.182992 0.0469776 0)
(0.17279 0.0433023 0)
(0.163428 0.0393922 0)
(0.154981 0.0354918 0)
(0.14743 0.031825 0)
(0.140673 0.0281005 0)
(0.134868 0.0245588 0)
(0.129947 0.0215607 0)
(0.125267 0.0190287 0)
(0.1211 0.0164838 0)
(0.117225 0.0142205 0)
(0.113828 0.0123219 0)
(0.110936 0.0105572 0)
(0.108073 0.00954177 0)
(0.105583 0.00865839 0)
(0.102976 0.00813966 0)
(0.100137 0.00743643 0)
(0.0973106 0.00659243 0)
(0.0942445 0.00582126 0)
(0.0910117 0.00456222 0)
(0.0877065 0.00301613 0)
(0.0848595 0.00159774 0)
(0.0819994 0.000252716 0)
(0.0794942 -0.000756456 0)
(0.0769236 -0.00166334 0)
(0.0744 -0.00238799 0)
(0.0720665 -0.00343638 0)
(0.0702719 -0.00490878 0)
(0.0694382 -0.00659742 0)
(0.0692914 -0.00836007 0)
(0.0696257 -0.0103395 0)
(0.0706362 -0.012608 0)
(0.0723342 -0.0150596 0)
(0.0745467 -0.0181817 0)
(0.0778352 -0.022149 0)
(0.0822615 -0.0262647 0)
(0.0879738 -0.0308595 0)
(0.0952134 -0.0352388 0)
(0.103202 -0.0390047 0)
(0.112202 -0.0435146 0)
(0.122207 -0.047534 0)
(0.133129 -0.0517479 0)
(0.145139 -0.0555764 0)
(0.157796 -0.059204 0)
(0.171242 -0.063119 0)
(0.185694 -0.0671446 0)
(0.20112 -0.0714969 0)
(0.217908 -0.0758358 0)
(0.2359 -0.0801915 0)
(0.255493 -0.0836558 0)
(0.275962 -0.0859197 0)
(0.296928 -0.0875541 0)
(0.318704 -0.0878792 0)
(0.340569 -0.0868739 0)
(0.362113 -0.0844801 0)
(0.383281 -0.0805818 0)
(0.403536 -0.0747547 0)
(0.422211 -0.0671805 0)
(0.438821 -0.0578567 0)
(0.452787 -0.0469212 0)
(0.463732 -0.034495 0)
(0.470995 -0.0212385 0)
(0.474766 -0.00746459 0)
(0.474981 0.00636865 0)
(0.471583 0.0201404 0)
(0.464635 0.0336222 0)
(0.454193 0.0463445 0)
(0.440599 0.0580313 0)
(0.424079 0.0682885 0)
(0.405542 0.0768161 0)
(0.385407 0.0837311 0)
(0.363978 0.0887281 0)
(0.342419 0.0922465 0)
(0.320954 0.0935648 0)
(0.299531 0.0930128 0)
(0.278769 0.0906313 0)
(0.259039 0.0869046 0)
(0.240882 0.082512 0)
(0.224206 0.0777337 0)
(0.208503 0.0725289 0)
(0.193857 0.0675659 0)
(0.180034 0.0625278 0)
(0.166673 0.0573559 0)
(0.154527 0.0524412 0)
(0.143005 0.0475518 0)
(0.132407 0.0420859 0)
(0.12301 0.0368988 0)
(0.114525 0.0314755 0)
(0.107449 0.0263078 0)
(0.102072 0.021592 0)
(0.0981309 0.017555 0)
(0.0950652 0.0150842 0)
(0.0924482 0.0129759 0)
(0.090483 0.0114162 0)
(0.0889879 0.0106202 0)
(0.0876093 0.0100764 0)
(0.0861864 0.00966653 0)
(0.0847715 0.0092374 0)
(0.0833738 0.00846209 0)
(0.0821372 0.00735251 0)
(0.0811212 0.00598471 0)
(0.0803984 0.00443026 0)
(0.0799712 0.00262428 0)
(0.0799475 0.000815057 0)
(0.0803455 -0.000970937 0)
(0.0812311 -0.00263625 0)
(0.0824 -0.00405749 0)
(0.0837713 -0.00545797 0)
(0.0853673 -0.00675953 0)
(0.0871303 -0.0078622 0)
(0.0889621 -0.00917577 0)
(0.0909849 -0.0104736 0)
(0.0931418 -0.0121292 0)
(0.0955858 -0.014067 0)
(0.0984332 -0.0162657 0)
(0.10171 -0.0191367 0)
(0.105686 -0.0224196 0)
(0.110529 -0.026015 0)
(0.116191 -0.0304512 0)
(0.123105 -0.0349218 0)
(0.131057 -0.0401684 0)
(0.140455 -0.0452555 0)
(0.151249 -0.0501188 0)
(0.163167 -0.0557953 0)
(0.17665 -0.0606067 0)
(0.191425 -0.0647347 0)
(0.207156 -0.0697043 0)
(0.224138 -0.0728584 0)
(0.241867 -0.0766778 0)
(0.260424 -0.0785036 0)
(0.279416 -0.0791519 0)
(0.298735 -0.0805075 0)
(0.31806 -0.0795336 0)
(0.337071 -0.0773211 0)
(0.355885 -0.0756139 0)
(0.373762 -0.0716944 0)
(0.390644 -0.0666942 0)
(0.406812 -0.0617691 0)
(0.421114 -0.054944 0)
(0.434187 -0.0478575 0)
(0.444909 -0.0393731 0)
(0.453526 -0.0302638 0)
(0.460128 -0.0207496 0)
(0.464032 -0.0107155 0)
(0.465539 -0.000480548 0)
(0.464344 0.00973912 0)
(0.460628 0.019801 0)
(0.454144 0.0291875 0)
(0.445577 0.0381357 0)
(0.434955 0.0464406 0)
(0.422075 0.0529634 0)
(0.408015 0.059199 0)
(0.392698 0.0644996 0)
(0.376184 0.0674428 0)
(0.359256 0.0705258 0)
(0.341856 0.0713494 0)
(0.324412 0.0724936 0)
(0.307014 0.0728465 0)
(0.289931 0.0713244 0)
(0.273209 0.07033 0)
(0.255277 0.0688565 0)
(0.436705 -0.0574811 0)
(0.448956 -0.0498847 0)
(0.459976 -0.0406114 0)
(0.468779 -0.0305684 0)
(0.475181 -0.0199013 0)
(0.478796 -0.00869706 0)
(0.479514 0.00272384 0)
(0.477541 0.0141386 0)
(0.472905 0.0253935 0)
(0.465105 0.0357352 0)
(0.455305 0.0457735 0)
(0.443292 0.0551495 0)
(0.428737 0.0624414 0)
(0.412987 0.0696934 0)
(0.395462 0.0744743 0)
(0.377192 0.0793485 0)
(0.358075 0.083245 0)
(0.338292 0.0843943 0)
(0.318372 0.0859322 0)
(0.298398 0.0865657 0)
(0.278747 0.084756 0)
(0.259433 0.0834731 0)
(0.240707 0.0814829 0)
(0.222964 0.0777526 0)
(0.205887 0.0745881 0)
(0.189985 0.0702379 0)
(0.174881 0.0664018 0)
(0.160823 0.0623479 0)
(0.14797 0.0577567 0)
(0.135988 0.0535832 0)
(0.12501 0.0494099 0)
(0.115078 0.0451204 0)
(0.105998 0.0411264 0)
(0.0978537 0.0371737 0)
(0.0905049 0.0334744 0)
(0.0839586 0.0299281 0)
(0.0781774 0.0265278 0)
(0.0730867 0.0233285 0)
(0.0686572 0.0202998 0)
(0.0648478 0.017428 0)
(0.0616081 0.0147148 0)
(0.0589123 0.0121297 0)
(0.0567215 0.00966483 0)
(0.0550178 0.00729675 0)
(0.0537775 0.00500067 0)
(0.0529666 0.00277612 0)
(0.0525692 0.000622962 0)
(0.052599 -0.0015309 0)
(0.0530888 -0.00365554 0)
(0.0540364 -0.00572981 0)
(0.055391 -0.00792108 0)
(0.0572333 -0.0100618 0)
(0.0595016 -0.0123869 0)
(0.0622892 -0.0147391 0)
(0.0655799 -0.0169899 0)
(0.0693259 -0.0195854 0)
(0.0737031 -0.0222679 0)
(0.0786163 -0.0246968 0)
(0.0840944 -0.0277781 0)
(0.0902024 -0.0305767 0)
(0.0969036 -0.0339937 0)
(0.104295 -0.0374612 0)
(0.112379 -0.0409682 0)
(0.121143 -0.0452704 0)
(0.131121 -0.0497618 0)
(0.141842 -0.0543391 0)
(0.154326 -0.0597524 0)
(0.167805 -0.0644392 0)
(0.182962 -0.0696365 0)
(0.199723 -0.0744695 0)
(0.220896 -0.0766831 0)
(0.241557 -0.0768992 0)
(0.262436 -0.0749857 0)
(0.280651 -0.0723212 0)
(0.3003 -0.0682003 0)
(0.315906 -0.0637986 0)
(0.330786 -0.054836 0)
(0.341885 -0.0481611 0)
(0.353227 -0.0471412 0)
(0.366973 -0.0435329 0)
(0.380857 -0.0422595 0)
(0.395817 -0.04166 0)
(0.410207 -0.0414357 0)
(0.425524 -0.0407115 0)
(0.439111 -0.0394218 0)
(0.452565 -0.0373339 0)
(0.464372 -0.0329266 0)
(0.474608 -0.0264245 0)
(0.482648 -0.0177799 0)
(0.488325 -0.0068398 0)
(0.490698 0.00493637 0)
(0.489427 0.0170755 0)
(0.48474 0.028525 0)
(0.476882 0.0389836 0)
(0.46657 0.0482717 0)
(0.453915 0.0561911 0)
(0.439887 0.063229 0)
(0.424122 0.0691949 0)
(0.407466 0.0745533 0)
(0.389301 0.0787735 0)
(0.37062 0.0819268 0)
(0.350787 0.0838454 0)
(0.331181 0.0840204 0)
(0.311545 0.0832329 0)
(0.292489 0.0812837 0)
(0.274276 0.0783143 0)
(0.257344 0.0751269 0)
(0.241084 0.0716666 0)
(0.225824 0.067778 0)
(0.211829 0.0640149 0)
(0.198281 0.0603498 0)
(0.185843 0.0564393 0)
(0.174044 0.0527329 0)
(0.163146 0.0491314 0)
(0.15259 0.045114 0)
(0.143772 0.0412802 0)
(0.134572 0.0372242 0)
(0.127626 0.0331105 0)
(0.120439 0.0290102 0)
(0.11519 0.024884 0)
(0.110013 0.0209819 0)
(0.106403 0.0170361 0)
(0.10307 0.0133359 0)
(0.10124 0.0100149 0)
(0.098819 0.0064864 0)
(0.0990579 0.00303595 0)
(0.0983681 0.000660775 0)
(0.0989207 -0.00257105 0)
(0.100116 -0.0049033 0)
(0.101599 -0.00722807 0)
(0.103303 -0.0097767 0)
(0.106491 -0.0113679 0)
(0.108674 -0.0133819 0)
(0.11201 -0.015234 0)
(0.115352 -0.0169579 0)
(0.119738 -0.0191049 0)
(0.123948 -0.0201237 0)
(0.129383 -0.0211629 0)
(0.13338 -0.0218185 0)
(0.138321 -0.0230457 0)
(0.142999 -0.0241469 0)
(0.14887 -0.0253142 0)
(0.15434 -0.0258527 0)
(0.160001 -0.0262837 0)
(0.165294 -0.0274319 0)
(0.170867 -0.0282114 0)
(0.176807 -0.0294413 0)
(0.182709 -0.0311863 0)
(0.189569 -0.0328259 0)
(0.195889 -0.0348574 0)
(0.203595 -0.0371545 0)
(0.2111 -0.0395453 0)
(0.219807 -0.0424351 0)
(0.228967 -0.0448267 0)
(0.238565 -0.0476468 0)
(0.249082 -0.0501703 0)
(0.259935 -0.0525916 0)
(0.271523 -0.0548971 0)
(0.28352 -0.0568385 0)
(0.296081 -0.0586314 0)
(0.308939 -0.0597324 0)
(0.322172 -0.0607076 0)
(0.33542 -0.0611563 0)
(0.349179 -0.061122 0)
(0.362392 -0.0604904 0)
(0.376061 -0.0591761 0)
(0.389066 -0.0571111 0)
(0.402066 -0.0541363 0)
(0.414042 -0.0502418 0)
(0.425094 -0.045392 0)
(0.435122 -0.0398212 0)
(0.443699 -0.033277 0)
(0.451143 -0.0258884 0)
(0.456379 -0.0175561 0)
(0.459761 -0.00850723 0)
(0.460717 0.000771778 0)
(0.459753 0.0106069 0)
(0.456006 0.0203894 0)
(0.450178 0.0299307 0)
(0.442154 0.0393559 0)
(0.431581 0.0483244 0)
(0.418687 0.0562109 0)
(0.404072 0.0628447 0)
(0.387863 0.06788 0)
(0.370935 0.0714971 0)
(0.353596 0.0736946 0)
(0.336226 0.0748677 0)
(0.31876 0.0751113 0)
(0.301546 0.0747205 0)
(0.284502 0.0736215 0)
(0.267603 0.0716144 0)
(0.251663 0.0686751 0)
(0.236334 0.0651075 0)
(0.222486 0.0610845 0)
(0.20942 0.0570808 0)
(0.197755 0.0528799 0)
(0.186567 0.0490671 0)
(0.176452 0.0452676 0)
(0.16697 0.0411836 0)
(0.158598 0.0370589 0)
(0.151049 0.0332142 0)
(0.144373 0.029338 0)
(0.138615 0.0256416 0)
(0.133814 0.0224964 0)
(0.129166 0.0198943 0)
(0.125158 0.01726 0)
(0.121255 0.0149516 0)
(0.117881 0.0129283 0)
(0.114911 0.0111097 0)
(0.111904 0.0100423 0)
(0.109326 0.00915213 0)
(0.106581 0.00864965 0)
(0.103846 0.00794911 0)
(0.101193 0.00710359 0)
(0.0984335 0.00641822 0)
(0.0954752 0.00517588 0)
(0.0925969 0.00362033 0)
(0.090002 0.0021444 0)
(0.0874349 0.000776153 0)
(0.085029 -0.000198507 0)
(0.0823842 -0.0010806 0)
(0.0796195 -0.00182324 0)
(0.0768033 -0.00296459 0)
(0.0744179 -0.00458261 0)
(0.0729424 -0.00643426 0)
(0.0721801 -0.00834454 0)
(0.0719575 -0.0104485 0)
(0.0724825 -0.0128234 0)
(0.0736547 -0.0154138 0)
(0.0754054 -0.0187176 0)
(0.078257 -0.0229316 0)
(0.0823831 -0.0272501 0)
(0.0877478 -0.0321234 0)
(0.0947869 -0.0367119 0)
(0.102511 -0.0405436 0)
(0.111321 -0.0453803 0)
(0.121141 -0.0495021 0)
(0.131805 -0.0539995 0)
(0.143663 -0.0580149 0)
(0.156109 -0.0617105 0)
(0.169358 -0.065861 0)
(0.183676 -0.0701143 0)
(0.19893 -0.0747394 0)
(0.215603 -0.0793639 0)
(0.23351 -0.0840112 0)
(0.253154 -0.0876879 0)
(0.273667 -0.0901002 0)
(0.294736 -0.0919071 0)
(0.316696 -0.0922967 0)
(0.338715 -0.0912693 0)
(0.360476 -0.0888421 0)
(0.381967 -0.0848702 0)
(0.402596 -0.078788 0)
(0.421663 -0.070851 0)
(0.438674 -0.0610172 0)
(0.453009 -0.0494519 0)
(0.464253 -0.0363296 0)
(0.471685 -0.0223245 0)
(0.475547 -0.0077876 0)
(0.475802 0.0067486 0)
(0.472369 0.0211859 0)
(0.465301 0.0353402 0)
(0.454658 0.0487331 0)
(0.440781 0.0610557 0)
(0.423896 0.0717873 0)
(0.405005 0.0807496 0)
(0.384563 0.0879707 0)
(0.362897 0.0931814 0)
(0.341181 0.096795 0)
(0.319512 0.0980918 0)
(0.297894 0.0974125 0)
(0.277062 0.0948489 0)
(0.257354 0.0908351 0)
(0.239348 0.086095 0)
(0.222923 0.0810424 0)
(0.207419 0.0756259 0)
(0.19293 0.0704841 0)
(0.179217 0.065323 0)
(0.165867 0.0600055 0)
(0.153735 0.0549442 0)
(0.142132 0.0499041 0)
(0.131354 0.0442236 0)
(0.121798 0.0388259 0)
(0.113121 0.0331712 0)
(0.105838 0.0276831 0)
(0.100367 0.0226241 0)
(0.0964039 0.018314 0)
(0.0933675 0.0156998 0)
(0.0907728 0.0134312 0)
(0.0888472 0.0117078 0)
(0.0874783 0.010832 0)
(0.0862275 0.010282 0)
(0.0849135 0.00987822 0)
(0.0836104 0.009445 0)
(0.0823124 0.00865398 0)
(0.0811739 0.00749664 0)
(0.0802551 0.00609311 0)
(0.0796243 0.00446428 0)
(0.0792769 0.00258421 0)
(0.0793463 0.000673788 0)
(0.0798362 -0.00113103 0)
(0.0807975 -0.00284955 0)
(0.0820315 -0.00431529 0)
(0.0834522 -0.00575829 0)
(0.085083 -0.00709346 0)
(0.0868637 -0.00821505 0)
(0.0886857 -0.00955566 0)
(0.0906797 -0.0108782 0)
(0.0927802 -0.0125768 0)
(0.0951516 -0.0145779 0)
(0.0979155 -0.0168548 0)
(0.101088 -0.0198412 0)
(0.104962 -0.0232711 0)
(0.109714 -0.027037 0)
(0.115278 -0.031688 0)
(0.122125 -0.0363833 0)
(0.130011 -0.0418973 0)
(0.139386 -0.0472486 0)
(0.150187 -0.0523638 0)
(0.162115 -0.0583366 0)
(0.175657 -0.0634003 0)
(0.19052 -0.0677484 0)
(0.206343 -0.0729836 0)
(0.223463 -0.0763059 0)
(0.241335 -0.0803306 0)
(0.260061 -0.0822558 0)
(0.27923 -0.0829483 0)
(0.298748 -0.0843923 0)
(0.318274 -0.0833781 0)
(0.337479 -0.081062 0)
(0.35651 -0.0792877 0)
(0.37458 -0.0751908 0)
(0.391649 -0.0699612 0)
(0.408047 -0.0648171 0)
(0.422529 -0.0576653 0)
(0.435809 -0.0502408 0)
(0.446676 -0.041341 0)
(0.455414 -0.0317816 0)
(0.462135 -0.0217938 0)
(0.466096 -0.0112541 0)
(0.467631 -0.000499049 0)
(0.466409 0.0102429 0)
(0.462631 0.02082 0)
(0.456013 0.0306844 0)
(0.447297 0.0400861 0)
(0.4365 0.0488069 0)
(0.423383 0.0556391 0)
(0.409108 0.0621704 0)
(0.39357 0.0677139 0)
(0.376817 0.0707657 0)
(0.359681 0.0739717 0)
(0.342084 0.0747971 0)
(0.324466 0.0759664 0)
(0.306911 0.0763049 0)
(0.289704 0.0746735 0)
(0.272875 0.0736014 0)
(0.254849 0.0720307 0)
(0.438233 -0.0602846 0)
(0.450712 -0.052339 0)
(0.46192 -0.0426199 0)
(0.470884 -0.0320886 0)
(0.477416 -0.0208982 0)
(0.481105 -0.00914034 0)
(0.481836 0.00284534 0)
(0.479836 0.0148268 0)
(0.475134 0.026638 0)
(0.467175 0.0374807 0)
(0.457223 0.0480031 0)
(0.44503 0.0578273 0)
(0.430223 0.065449 0)
(0.414253 0.073034 0)
(0.396468 0.0780143 0)
(0.377966 0.0830997 0)
(0.358618 0.0871585 0)
(0.338604 0.0883283 0)
(0.318471 0.0899143 0)
(0.298297 0.0905529 0)
(0.278474 0.0886261 0)
(0.258999 0.0872563 0)
(0.240133 0.0851466 0)
(0.222296 0.0812145 0)
(0.205129 0.0778801 0)
(0.189181 0.0733106 0)
(0.174029 0.0692813 0)
(0.159944 0.0650268 0)
(0.147096 0.0602172 0)
(0.135117 0.0558503 0)
(0.124151 0.0514864 0)
(0.114246 0.0470031 0)
(0.105192 0.0428306 0)
(0.097083 0.0387047 0)
(0.0897672 0.0348446 0)
(0.0832559 0.0311456 0)
(0.0775117 0.0276004 0)
(0.0724567 0.0242662 0)
(0.0680617 0.0211117 0)
(0.0642848 0.0181223 0)
(0.0610739 0.015299 0)
(0.0584036 0.0126098 0)
(0.0562342 0.0100459 0)
(0.0545483 0.00758314 0)
(0.0533233 0.00519347 0)
(0.0525256 0.00287428 0)
(0.052138 0.00063199 0)
(0.0521723 -0.00160776 0)
(0.0526655 -0.00381808 0)
(0.0536139 -0.00597129 0)
(0.0549602 -0.00824805 0)
(0.0567944 -0.0104751 0)
(0.0590498 -0.0128974 0)
(0.0618261 -0.0153462 0)
(0.0651038 -0.0176869 0)
(0.0688298 -0.0203924 0)
(0.0731911 -0.0231877 0)
(0.0780893 -0.0257193 0)
(0.0835524 -0.0289293 0)
(0.0896424 -0.0318403 0)
(0.0963219 -0.0353959 0)
(0.103681 -0.0389963 0)
(0.111718 -0.0426384 0)
(0.120419 -0.0471316 0)
(0.130344 -0.0517881 0)
(0.140977 -0.0565973 0)
(0.153387 -0.0622626 0)
(0.166788 -0.0672643 0)
(0.181933 -0.0730106 0)
(0.198762 -0.0781617 0)
(0.220465 -0.0807979 0)
(0.241512 -0.0809445 0)
(0.262829 -0.0788261 0)
(0.281218 -0.0760182 0)
(0.30152 -0.0718298 0)
(0.317726 -0.0677106 0)
(0.333476 -0.0585897 0)
(0.344519 -0.0508281 0)
(0.35593 -0.0498222 0)
(0.370253 -0.046224 0)
(0.38483 -0.0450883 0)
(0.400581 -0.044457 0)
(0.415598 -0.0441477 0)
(0.43164 -0.0431212 0)
(0.445786 -0.0414931 0)
(0.459826 -0.0390654 0)
(0.471984 -0.0344915 0)
(0.482412 -0.0277188 0)
(0.490527 -0.0187368 0)
(0.496234 -0.0073219 0)
(0.498601 0.00502521 0)
(0.497228 0.0179271 0)
(0.492498 0.0301624 0)
(0.484475 0.0413018 0)
(0.474077 0.0510993 0)
(0.461211 0.0593338 0)
(0.446995 0.0666003 0)
(0.430922 0.0726143 0)
(0.414032 0.0781125 0)
(0.395538 0.0825207 0)
(0.376708 0.0858121 0)
(0.356608 0.0878853 0)
(0.336883 0.0880256 0)
(0.317034 0.087161 0)
(0.297853 0.0850267 0)
(0.279446 0.0818421 0)
(0.262473 0.0785008 0)
(0.246071 0.0747917 0)
(0.230809 0.0707176 0)
(0.216821 0.0667886 0)
(0.203271 0.0629543 0)
(0.190908 0.0588861 0)
(0.179063 0.0550511 0)
(0.168217 0.0513071 0)
(0.157516 0.0470848 0)
(0.148782 0.0431315 0)
(0.139464 0.0388706 0)
(0.132566 0.0345615 0)
(0.125325 0.0302503 0)
(0.120143 0.0259491 0)
(0.114917 0.0218631 0)
(0.111375 0.0177469 0)
(0.108021 0.0138636 0)
(0.106255 0.0104115 0)
(0.103755 0.00670244 0)
(0.104124 0.00309994 0)
(0.103381 0.000668504 0)
(0.10402 -0.00272763 0)
(0.105168 -0.00512462 0)
(0.106767 -0.00754351 0)
(0.108403 -0.0102359 0)
(0.111704 -0.0117887 0)
(0.113785 -0.0139887 0)
(0.117201 -0.0158413 0)
(0.120411 -0.0176807 0)
(0.124957 -0.0200431 0)
(0.129137 -0.0209438 0)
(0.134717 -0.0220453 0)
(0.138565 -0.0227337 0)
(0.143576 -0.0240111 0)
(0.148149 -0.0251972 0)
(0.154146 -0.0263762 0)
(0.159544 -0.0269011 0)
(0.165199 -0.0273566 0)
(0.17045 -0.0285801 0)
(0.176006 -0.0293169 0)
(0.181882 -0.0306171 0)
(0.187687 -0.0325007 0)
(0.1946 -0.0341469 0)
(0.200792 -0.0362967 0)
(0.208518 -0.0387048 0)
(0.215925 -0.0412207 0)
(0.224685 -0.0442782 0)
(0.233786 -0.046797 0)
(0.243443 -0.0497954 0)
(0.253895 -0.0524226 0)
(0.264841 -0.054991 0)
(0.276349 -0.0574034 0)
(0.288446 -0.0593783 0)
(0.300972 -0.0612833 0)
(0.313938 -0.0624478 0)
(0.327142 -0.0635085 0)
(0.340449 -0.0638803 0)
(0.354234 -0.0638723 0)
(0.367536 -0.0632996 0)
(0.381301 -0.0619322 0)
(0.39439 -0.0597357 0)
(0.407534 -0.0565483 0)
(0.419642 -0.0525166 0)
(0.430852 -0.0475473 0)
(0.440985 -0.0417461 0)
(0.449707 -0.034874 0)
(0.457211 -0.0272215 0)
(0.462597 -0.0185549 0)
(0.465895 -0.00908778 0)
(0.466867 0.000662612 0)
(0.465897 0.0109199 0)
(0.462189 0.0210098 0)
(0.456313 0.0309525 0)
(0.448237 0.0409347 0)
(0.437476 0.0504492 0)
(0.424365 0.0588557 0)
(0.409415 0.0658527 0)
(0.39298 0.0710742 0)
(0.375767 0.0748614 0)
(0.358244 0.0771173 0)
(0.340661 0.078309 0)
(0.323092 0.0785689 0)
(0.305716 0.0781778 0)
(0.288562 0.0770151 0)
(0.271468 0.0749376 0)
(0.255462 0.0718281 0)
(0.240013 0.0680123 0)
(0.226256 0.0637464 0)
(0.213144 0.0595244 0)
(0.201678 0.0551316 0)
(0.19038 0.0511604 0)
(0.18042 0.0472158 0)
(0.170859 0.042935 0)
(0.162528 0.0386363 0)
(0.154952 0.0346175 0)
(0.148368 0.030554 0)
(0.142695 0.0266767 0)
(0.137966 0.0234364 0)
(0.133337 0.020753 0)
(0.129491 0.0180768 0)
(0.125668 0.0156879 0)
(0.122407 0.0135625 0)
(0.11955 0.0117205 0)
(0.116448 0.0106466 0)
(0.113829 0.00974137 0)
(0.110873 0.00922512 0)
(0.108054 0.00849894 0)
(0.105359 0.00765645 0)
(0.102815 0.00699683 0)
(0.0999734 0.00570143 0)
(0.0974811 0.00413435 0)
(0.0952432 0.00260408 0)
(0.0931807 0.00119083 0)
(0.0911021 0.000259367 0)
(0.0886031 -0.00058716 0)
(0.0858834 -0.00124537 0)
(0.0828973 -0.00237693 0)
(0.0801741 -0.00409133 0)
(0.0782303 -0.00608399 0)
(0.0769424 -0.00818122 0)
(0.0761853 -0.010461 0)
(0.0761426 -0.0129593 0)
(0.0766663 -0.0156569 0)
(0.0778278 -0.0190636 0)
(0.0801142 -0.0235754 0)
(0.0838332 -0.0281209 0)
(0.0887832 -0.0333435 0)
(0.095536 -0.0382081 0)
(0.102918 -0.0421461 0)
(0.111484 -0.0473106 0)
(0.121063 -0.051502 0)
(0.131441 -0.0562482 0)
(0.143135 -0.0604071 0)
(0.155365 -0.0642001 0)
(0.168364 -0.0685281 0)
(0.182491 -0.0728498 0)
(0.197513 -0.0777531 0)
(0.214022 -0.0826574 0)
(0.231808 -0.0876478 0)
(0.251441 -0.0915857 0)
(0.271932 -0.0941088 0)
(0.293049 -0.0960295 0)
(0.315137 -0.0965024 0)
(0.337296 -0.0954757 0)
(0.359192 -0.093028 0)
(0.380916 -0.0889221 0)
(0.40178 -0.0826227 0)
(0.421159 -0.0744154 0)
(0.438494 -0.0642387 0)
(0.453185 -0.0521735 0)
(0.464677 -0.0384281 0)
(0.472255 -0.0237257 0)
(0.476198 -0.0085034 0)
(0.476462 0.0067538 0)
(0.473006 0.022051 0)
(0.465859 0.0369596 0)
(0.455029 0.0510375 0)
(0.440881 0.0639627 0)
(0.423634 0.0751996 0)
(0.404492 0.0844727 0)
(0.383776 0.0919501 0)
(0.361872 0.097355 0)
(0.340001 0.101114 0)
(0.31818 0.10241 0)
(0.296448 0.101629 0)
(0.275651 0.0988098 0)
(0.256023 0.0944891 0)
(0.23819 0.0894348 0)
(0.221966 0.0841321 0)
(0.206633 0.0785266 0)
(0.192277 0.073196 0)
(0.178729 0.0679219 0)
(0.165406 0.0624741 0)
(0.153262 0.0573148 0)
(0.14155 0.0522099 0)
(0.130561 0.0463296 0)
(0.120813 0.040722 0)
(0.111897 0.0348529 0)
(0.10436 0.0290278 0)
(0.0988189 0.0236193 0)
(0.0948441 0.0190538 0)
(0.091738 0.0162626 0)
(0.0891122 0.0139049 0)
(0.0872218 0.012046 0)
(0.0859796 0.0110759 0)
(0.0848511 0.0104889 0)
(0.0836258 0.0100653 0)
(0.0824231 0.0096265 0)
(0.0812172 0.00881139 0)
(0.0801773 0.00762575 0)
(0.0793581 0.00615781 0)
(0.0788131 0.00448452 0)
(0.0785502 0.00254324 0)
(0.0787244 0.000531525 0)
(0.0793154 -0.00130337 0)
(0.08035 -0.00307442 0)
(0.0816518 -0.00458296 0)
(0.0831247 -0.00606635 0)
(0.0847927 -0.00743204 0)
(0.0865924 -0.00856861 0)
(0.0884043 -0.00993206 0)
(0.090368 -0.0112744 0)
(0.0924085 -0.0130114 0)
(0.0947031 -0.0150729 0)
(0.0973788 -0.0174247 0)
(0.100441 -0.0205242 0)
(0.104206 -0.0241013 0)
(0.10886 -0.0280398 0)
(0.114322 -0.032908 0)
(0.121095 -0.037832 0)
(0.128912 -0.043618 0)
(0.138262 -0.0492388 0)
(0.149071 -0.0546107 0)
(0.161008 -0.0608859 0)
(0.174612 -0.0662067 0)
(0.189568 -0.0707806 0)
(0.205488 -0.0762875 0)
(0.222753 -0.0797818 0)
(0.240775 -0.0840162 0)
(0.259677 -0.0860426 0)
(0.279033 -0.0867821 0)
(0.298758 -0.0883186 0)
(0.318497 -0.0872639 0)
(0.337905 -0.0848433 0)
(0.357162 -0.0830023 0)
(0.375434 -0.0787282 0)
(0.392699 -0.0732692 0)
(0.409339 -0.0679064 0)
(0.424011 -0.0604248 0)
(0.437508 -0.052659 0)
(0.448527 -0.0433388 0)
(0.457393 -0.0333236 0)
(0.46424 -0.0228553 0)
(0.468262 -0.0118019 0)
(0.469827 -0.000517571 0)
(0.468579 0.0107562 0)
(0.464734 0.021858 0)
(0.457976 0.0322092 0)
(0.449102 0.0420722 0)
(0.43812 0.0512155 0)
(0.424752 0.0583594 0)
(0.410249 0.0651888 0)
(0.394478 0.0709759 0)
(0.377475 0.0741328 0)
(0.360121 0.0774596 0)
(0.342315 0.0782819 0)
(0.324515 0.0794726 0)
(0.306797 0.0797926 0)
(0.28946 0.078046 0)
(0.272518 0.0768913 0)
(0.254397 0.0752193 0)
(0.43983 -0.0631359 0)
(0.452549 -0.0548377 0)
(0.463956 -0.0446659 0)
(0.47309 -0.0336381 0)
(0.479759 -0.0219151 0)
(0.483526 -0.00959339 0)
(0.484271 0.00296746 0)
(0.482244 0.0155269 0)
(0.47747 0.0279049 0)
(0.469344 0.0392565 0)
(0.459231 0.0502702 0)
(0.446848 0.0605492 0)
(0.431777 0.0685028 0)
(0.415575 0.0764237 0)
(0.397516 0.0816027 0)
(0.378771 0.0868995 0)
(0.359181 0.0911198 0)
(0.338924 0.0923063 0)
(0.31857 0.093938 0)
(0.298185 0.094579 0)
(0.278183 0.0925299 0)
(0.258539 0.0910687 0)
(0.239526 0.0888349 0)
(0.221592 0.0846953 0)
(0.204333 0.0811861 0)
(0.188336 0.0763931 0)
(0.173136 0.0721669 0)
(0.159023 0.0677079 0)
(0.146183 0.0626769 0)
(0.134208 0.0581151 0)
(0.123255 0.0535593 0)
(0.113377 0.0488806 0)
(0.104352 0.0445284 0)
(0.0962793 0.0402288 0)
(0.0889983 0.0362076 0)
(0.0825238 0.0323558 0)
(0.0768184 0.0286656 0)
(0.0718009 0.0251966 0)
(0.0674422 0.0219167 0)
(0.0636993 0.0188104 0)
(0.0605186 0.0158777 0)
(0.0578749 0.0130852 0)
(0.0557279 0.0104232 0)
(0.0540606 0.00786746 0)
(0.0528503 0.00538469 0)
(0.0520664 0.00297095 0)
(0.0516896 0.000638047 0)
(0.051729 -0.0016863 0)
(0.0522261 -0.00398259 0)
(0.0531756 -0.00621284 0)
(0.0545127 -0.00857362 0)
(0.0563379 -0.0108865 0)
(0.0585797 -0.0134062 0)
(0.0613445 -0.0159507 0)
(0.0646083 -0.0183801 0)
(0.0683131 -0.0211954 0)
(0.0726572 -0.0241033 0)
(0.0775399 -0.0267385 0)
(0.0829884 -0.0300771 0)
(0.0890601 -0.0331004 0)
(0.0957191 -0.0367949 0)
(0.103046 -0.0405249 0)
(0.111034 -0.0443019 0)
(0.119673 -0.0489871 0)
(0.129544 -0.0538015 0)
(0.140082 -0.0588365 0)
(0.152402 -0.0647596 0)
(0.165688 -0.0700607 0)
(0.180819 -0.0763832 0)
(0.197684 -0.0817222 0)
(0.219944 -0.0850105 0)
(0.241446 -0.0852887 0)
(0.263159 -0.0828065 0)
(0.281716 -0.0796929 0)
(0.30277 -0.0756111 0)
(0.319439 -0.0713721 0)
(0.33622 -0.0631205 0)
(0.347366 -0.0539781 0)
(0.358681 -0.0529544 0)
(0.373482 -0.0494033 0)
(0.388786 -0.048278 0)
(0.405511 -0.0474095 0)
(0.421356 -0.0470855 0)
(0.438228 -0.0460384 0)
(0.452834 -0.0443053 0)
(0.467372 -0.0416851 0)
(0.479782 -0.0366747 0)
(0.490391 -0.0293968 0)
(0.498631 -0.0196789 0)
(0.504375 -0.00758121 0)
(0.506876 0.00539192 0)
(0.505519 0.0187964 0)
(0.500837 0.0314265 0)
(0.492637 0.0429686 0)
(0.48207 0.0530827 0)
(0.468832 0.0616349 0)
(0.45434 0.0693243 0)
(0.43792 0.0757876 0)
(0.420856 0.0817021 0)
(0.402111 0.0863055 0)
(0.383118 0.0897575 0)
(0.362697 0.0918045 0)
(0.342828 0.0919078 0)
(0.322737 0.0910237 0)
(0.303435 0.0887598 0)
(0.284881 0.085347 0)
(0.267824 0.0818077 0)
(0.251305 0.0778911 0)
(0.236002 0.073564 0)
(0.222054 0.0694825 0)
(0.208434 0.0654517 0)
(0.196209 0.0612386 0)
(0.184285 0.0572765 0)
(0.173535 0.0533953 0)
(0.162694 0.0489837 0)
(0.154034 0.0448734 0)
(0.144597 0.0404728 0)
(0.137707 0.0359669 0)
(0.130441 0.0314654 0)
(0.125305 0.0269872 0)
(0.120067 0.0226949 0)
(0.116559 0.0184365 0)
(0.113223 0.0143714 0)
(0.111474 0.0108226 0)
(0.108921 0.0069152 0)
(0.109409 0.00310693 0)
(0.108638 0.000640599 0)
(0.109359 -0.00297717 0)
(0.110445 -0.0054709 0)
(0.112197 -0.00798362 0)
(0.113743 -0.010759 0)
(0.117138 -0.0122822 0)
(0.119142 -0.014685 0)
(0.122608 -0.016485 0)
(0.125686 -0.0184432 0)
(0.130427 -0.021056 0)
(0.134578 -0.021845 0)
(0.1403 -0.0229824 0)
(0.143995 -0.0236435 0)
(0.149067 -0.0249786 0)
(0.153551 -0.026238 0)
(0.159666 -0.0274632 0)
(0.165006 -0.0279617 0)
(0.170608 -0.0284238 0)
(0.175858 -0.0296833 0)
(0.18132 -0.0302951 0)
(0.187172 -0.03166 0)
(0.192847 -0.033669 0)
(0.199819 -0.0353017 0)
(0.205883 -0.0375528 0)
(0.213621 -0.0400075 0)
(0.220935 -0.0426656 0)
(0.229742 -0.0458635 0)
(0.238763 -0.0483968 0)
(0.248517 -0.0515696 0)
(0.258895 -0.0542884 0)
(0.269955 -0.056984 0)
(0.28141 -0.0595087 0)
(0.29366 -0.0616659 0)
(0.306128 -0.0636298 0)
(0.319183 -0.0647874 0)
(0.332407 -0.065999 0)
(0.345797 -0.0664667 0)
(0.35961 -0.0664689 0)
(0.372979 -0.065878 0)
(0.386872 -0.0645626 0)
(0.400094 -0.0624188 0)
(0.413419 -0.0591859 0)
(0.425575 -0.0549677 0)
(0.436853 -0.0496145 0)
(0.447083 -0.043607 0)
(0.455934 -0.0364577 0)
(0.463558 -0.0283754 0)
(0.469184 -0.0191296 0)
(0.4726 -0.009174 0)
(0.473757 0.00100007 0)
(0.472675 0.0118634 0)
(0.468838 0.0225867 0)
(0.462818 0.0330531 0)
(0.454658 0.0434414 0)
(0.443692 0.0533985 0)
(0.430415 0.0621753 0)
(0.415108 0.0694174 0)
(0.398406 0.0747835 0)
(0.380842 0.0786201 0)
(0.363137 0.0808381 0)
(0.34534 0.0819824 0)
(0.327679 0.0821336 0)
(0.310162 0.0817131 0)
(0.292878 0.080485 0)
(0.275575 0.0782684 0)
(0.259496 0.0749696 0)
(0.243879 0.0709023 0)
(0.230214 0.0664396 0)
(0.217038 0.0619691 0)
(0.205808 0.0573834 0)
(0.194479 0.0532471 0)
(0.184669 0.0491617 0)
(0.175099 0.0446851 0)
(0.166862 0.0401685 0)
(0.159321 0.0359687 0)
(0.152898 0.0317056 0)
(0.147291 0.0276694 0)
(0.14264 0.0243016 0)
(0.138007 0.021488 0)
(0.134308 0.0187243 0)
(0.130516 0.0163003 0)
(0.127433 0.0140677 0)
(0.124812 0.0121868 0)
(0.121789 0.0111372 0)
(0.119252 0.0102656 0)
(0.116127 0.00975385 0)
(0.113219 0.00903237 0)
(0.110343 0.00815356 0)
(0.107843 0.00758811 0)
(0.104987 0.00622379 0)
(0.102719 0.00461051 0)
(0.100706 0.00303395 0)
(0.0991039 0.00156108 0)
(0.0975535 0.000704284 0)
(0.0954145 -0.000103605 0)
(0.0929761 -0.000714406 0)
(0.0900743 -0.00185195 0)
(0.0872385 -0.00362858 0)
(0.0850963 -0.00574095 0)
(0.0835471 -0.00797711 0)
(0.0825416 -0.0103682 0)
(0.0820768 -0.0129582 0)
(0.0819885 -0.0158118 0)
(0.082492 -0.019406 0)
(0.0841038 -0.0242314 0)
(0.0872553 -0.0290448 0)
(0.0916598 -0.0346014 0)
(0.0979303 -0.0396579 0)
(0.104817 -0.0436774 0)
(0.113002 -0.0492057 0)
(0.122185 -0.0534993 0)
(0.132232 -0.058606 0)
(0.143659 -0.0628829 0)
(0.155621 -0.0667763 0)
(0.168334 -0.0714099 0)
(0.182244 -0.0758969 0)
(0.197002 -0.0810683 0)
(0.213327 -0.0862219 0)
(0.231022 -0.0915 0)
(0.250652 -0.0957255 0)
(0.271126 -0.0984543 0)
(0.292274 -0.100568 0)
(0.314408 -0.101098 0)
(0.336638 -0.0999714 0)
(0.358602 -0.0974645 0)
(0.380519 -0.0932376 0)
(0.401564 -0.0865779 0)
(0.42119 -0.0779714 0)
(0.438748 -0.0671617 0)
(0.453704 -0.0543811 0)
(0.46534 -0.0398798 0)
(0.472974 -0.0243181 0)
(0.47693 -0.00832821 0)
(0.477166 0.00757176 0)
(0.473694 0.023365 0)
(0.466456 0.0388663 0)
(0.455484 0.0536345 0)
(0.441151 0.0672597 0)
(0.423628 0.078999 0)
(0.40422 0.0887525 0)
(0.383309 0.0965008 0)
(0.361325 0.102082 0)
(0.339392 0.10586 0)
(0.317444 0.107114 0)
(0.295557 0.106175 0)
(0.274754 0.103151 0)
(0.255216 0.0985382 0)
(0.237516 0.093108 0)
(0.221544 0.0875193 0)
(0.206451 0.0817012 0)
(0.192248 0.0761792 0)
(0.178829 0.0707921 0)
(0.165491 0.0652105 0)
(0.153291 0.0599144 0)
(0.14141 0.054688 0)
(0.130173 0.0485927 0)
(0.120203 0.0427578 0)
(0.111 0.0366487 0)
(0.103168 0.0304755 0)
(0.0974959 0.0246768 0)
(0.0934699 0.0198342 0)
(0.0903872 0.0169038 0)
(0.0876559 0.0143355 0)
(0.0856884 0.0122541 0)
(0.0845286 0.0111892 0)
(0.0834867 0.0106226 0)
(0.0823329 0.010223 0)
(0.0812184 0.00978537 0)
(0.0801018 0.00896389 0)
(0.0791441 0.00772087 0)
(0.0784399 0.00622839 0)
(0.0779798 0.00448446 0)
(0.0777916 0.00247297 0)
(0.0780757 0.00039802 0)
(0.0787773 -0.00149106 0)
(0.0798887 -0.00331318 0)
(0.0812613 -0.0048622 0)
(0.0827894 -0.00638332 0)
(0.084497 -0.00777593 0)
(0.0863171 -0.00892315 0)
(0.088119 -0.010305 0)
(0.090051 -0.0116618 0)
(0.0920276 -0.0134325 0)
(0.094241 -0.015551 0)
(0.0968236 -0.0179742 0)
(0.0997679 -0.0211843 0)
(0.103416 -0.0249085 0)
(0.107968 -0.0290222 0)
(0.113319 -0.0341102 0)
(0.120016 -0.0392671 0)
(0.127759 -0.0453301 0)
(0.137082 -0.0512258 0)
(0.1479 -0.0568596 0)
(0.159846 -0.0634436 0)
(0.173514 -0.0690263 0)
(0.188566 -0.0738322 0)
(0.204589 -0.0796173 0)
(0.222007 -0.0832878 0)
(0.240185 -0.087736 0)
(0.259271 -0.0898652 0)
(0.278822 -0.0906552 0)
(0.298766 -0.0922886 0)
(0.318727 -0.091193 0)
(0.338349 -0.088667 0)
(0.357842 -0.0867592 0)
(0.376322 -0.0823084 0)
(0.393793 -0.0766202 0)
(0.410687 -0.0710394 0)
(0.42556 -0.0632246 0)
(0.439285 -0.0551138 0)
(0.450465 -0.0453683 0)
(0.459466 -0.034891 0)
(0.466446 -0.0239351 0)
(0.470533 -0.0123595 0)
(0.472131 -0.000536287 0)
(0.470854 0.0112794 0)
(0.46694 0.0229161 0)
(0.460034 0.0337633 0)
(0.450993 0.0440962 0)
(0.439815 0.0536687 0)
(0.426183 0.061127 0)
(0.41144 0.0682568 0)
(0.395423 0.0742881 0)
(0.378156 0.0775463 0)
(0.360573 0.0809914 0)
(0.34255 0.0818054 0)
(0.324558 0.0830138 0)
(0.306669 0.083311 0)
(0.289198 0.0814427 0)
(0.272139 0.0802005 0)
(0.253918 0.0784228 0)
(0.441497 -0.0660376 0)
(0.454469 -0.0573833 0)
(0.466086 -0.0467515 0)
(0.475399 -0.0352186 0)
(0.482214 -0.0229532 0)
(0.486062 -0.0100567 0)
(0.486821 0.0030902 0)
(0.484765 0.0162396 0)
(0.479917 0.0291956 0)
(0.471612 0.0410644 0)
(0.46133 0.0525769 0)
(0.448748 0.0633173 0)
(0.433397 0.0716052 0)
(0.416951 0.0798651 0)
(0.398606 0.0852417 0)
(0.379606 0.0907502 0)
(0.359763 0.0951311 0)
(0.339253 0.0963303 0)
(0.318666 0.0980053 0)
(0.298061 0.0986457 0)
(0.277873 0.0964688 0)
(0.258052 0.0949114 0)
(0.238886 0.0925491 0)
(0.220851 0.0881955 0)
(0.203496 0.0845065 0)
(0.187451 0.079486 0)
(0.1722 0.0750588 0)
(0.15806 0.0703911 0)
(0.145228 0.0651353 0)
(0.133259 0.0603773 0)
(0.122319 0.0556283 0)
(0.112472 0.0507524 0)
(0.103477 0.0462196 0)
(0.0954426 0.0417458 0)
(0.0881982 0.0375631 0)
(0.0817622 0.0335583 0)
(0.0760974 0.0297231 0)
(0.0711194 0.0261192 0)
(0.0667989 0.0227146 0)
(0.0630916 0.019492 0)
(0.0599424 0.0164507 0)
(0.0573265 0.0135559 0)
(0.0552027 0.010797 0)
(0.0535544 0.00814753 0)
(0.052359 0.00557401 0)
(0.0515889 0.00306639 0)
(0.0512241 0.00064144 0)
(0.0512691 -0.00176618 0)
(0.0517707 -0.00414923 0)
(0.052722 -0.00645473 0)
(0.0540488 -0.00889785 0)
(0.0558638 -0.0112959 0)
(0.0580914 -0.0139133 0)
(0.0608446 -0.0165523 0)
(0.0640937 -0.0190689 0)
(0.0677755 -0.0219941 0)
(0.0721011 -0.0250139 0)
(0.0769679 -0.0277542 0)
(0.0824022 -0.0312209 0)
(0.0884554 -0.0343578 0)
(0.0950955 -0.0381899 0)
(0.10239 -0.0420488 0)
(0.110329 -0.0459572 0)
(0.118905 -0.050838 0)
(0.128726 -0.0558019 0)
(0.139159 -0.0610616 0)
(0.151378 -0.0672252 0)
(0.164506 -0.0728605 0)
(0.179641 -0.0796716 0)
(0.196488 -0.0851954 0)
(0.219261 -0.0891632 0)
(0.24134 -0.0897789 0)
(0.263507 -0.0869199 0)
(0.282164 -0.0835425 0)
(0.303849 -0.0793576 0)
(0.320997 -0.0750211 0)
(0.338881 -0.0674932 0)
(0.350377 -0.0570155 0)
(0.361638 -0.0558702 0)
(0.376959 -0.0523813 0)
(0.393059 -0.0514029 0)
(0.410657 -0.0506245 0)
(0.427226 -0.0501324 0)
(0.444964 -0.0486792 0)
(0.460253 -0.046526 0)
(0.475448 -0.0435269 0)
(0.488307 -0.038193 0)
(0.499082 -0.0307135 0)
(0.507384 -0.0206266 0)
(0.513009 -0.00815233 0)
(0.515485 0.00543618 0)
(0.514013 0.0197061 0)
(0.509359 0.0331947 0)
(0.500984 0.0454078 0)
(0.490263 0.0561855 0)
(0.476723 0.065112 0)
(0.462043 0.072988 0)
(0.445306 0.0793299 0)
(0.427948 0.0852072 0)
(0.408817 0.0898274 0)
(0.389561 0.0934607 0)
(0.368874 0.0957663 0)
(0.34894 0.0957937 0)
(0.328717 0.0948774 0)
(0.30926 0.0923943 0)
(0.290613 0.0888279 0)
(0.273425 0.0851334 0)
(0.256853 0.0809978 0)
(0.24143 0.0765056 0)
(0.227528 0.0722272 0)
(0.213798 0.06801 0)
(0.201728 0.0636401 0)
(0.189743 0.0595751 0)
(0.179104 0.0555631 0)
(0.168157 0.0509682 0)
(0.159537 0.0466352 0)
(0.150026 0.0420516 0)
(0.143096 0.0373693 0)
(0.135836 0.0326508 0)
(0.130683 0.0280279 0)
(0.125497 0.02354 0)
(0.121988 0.0191003 0)
(0.118689 0.014863 0)
(0.116965 0.0112232 0)
(0.114356 0.00716135 0)
(0.114962 0.00314749 0)
(0.114153 0.00067088 0)
(0.114969 -0.00306371 0)
(0.115934 -0.00567988 0)
(0.117934 -0.00835632 0)
(0.119367 -0.0112132 0)
(0.122801 -0.0127131 0)
(0.124793 -0.0153579 0)
(0.12826 -0.0170826 0)
(0.131248 -0.0192468 0)
(0.13616 -0.0220799 0)
(0.140286 -0.0227453 0)
(0.146175 -0.0239715 0)
(0.149677 -0.0246529 0)
(0.154832 -0.0260195 0)
(0.159199 -0.0273816 0)
(0.165413 -0.0286304 0)
(0.17069 -0.0291495 0)
(0.176205 -0.0296715 0)
(0.181533 -0.030978 0)
(0.186815 -0.0315437 0)
(0.192713 -0.0330487 0)
(0.198154 -0.0351781 0)
(0.205221 -0.0368128 0)
(0.211128 -0.0392134 0)
(0.218862 -0.041784 0)
(0.22606 -0.0445243 0)
(0.234919 -0.0479179 0)
(0.243887 -0.050629 0)
(0.253704 -0.0539408 0)
(0.263981 -0.0567821 0)
(0.275193 -0.0596077 0)
(0.286512 -0.0621695 0)
(0.298903 -0.0643644 0)
(0.311386 -0.0664254 0)
(0.324486 -0.0676162 0)
(0.337753 -0.0688782 0)
(0.35119 -0.0692653 0)
(0.365102 -0.0694117 0)
(0.378576 -0.0687606 0)
(0.392568 -0.0672126 0)
(0.405845 -0.0648813 0)
(0.419353 -0.061446 0)
(0.43171 -0.0571735 0)
(0.443306 -0.0518625 0)
(0.453708 -0.0456045 0)
(0.462795 -0.0382557 0)
(0.470313 -0.0300566 0)
(0.475968 -0.0206584 0)
(0.479063 -0.0103669 0)
(0.480226 0.000185036 0)
(0.479161 0.0113904 0)
(0.475431 0.0223574 0)
(0.469546 0.033205 0)
(0.461565 0.0440811 0)
(0.450458 0.0545606 0)
(0.436928 0.0639554 0)
(0.42103 0.0717203 0)
(0.404009 0.0774663 0)
(0.386074 0.0815785 0)
(0.36812 0.0839274 0)
(0.350132 0.0851191 0)
(0.332382 0.0853231 0)
(0.314686 0.0849502 0)
(0.297396 0.0837479 0)
(0.279842 0.0814985 0)
(0.263816 0.0780641 0)
(0.248066 0.0737408 0)
(0.234564 0.0690413 0)
(0.221359 0.0643554 0)
(0.210365 0.05962 0)
(0.199077 0.0553773 0)
(0.189376 0.0511632 0)
(0.179922 0.046477 0)
(0.171835 0.041766 0)
(0.164392 0.0373928 0)
(0.158205 0.0329736 0)
(0.152769 0.0287794 0)
(0.14822 0.0253134 0)
(0.14366 0.0224497 0)
(0.140055 0.0195761 0)
(0.136264 0.0170482 0)
(0.133295 0.0146933 0)
(0.130929 0.0127962 0)
(0.128066 0.0117944 0)
(0.125738 0.0108825 0)
(0.122652 0.0103481 0)
(0.119731 0.00964544 0)
(0.116699 0.00869718 0)
(0.114158 0.0081232 0)
(0.1112 0.00669715 0)
(0.108926 0.00502815 0)
(0.107009 0.00339555 0)
(0.105724 0.0018334 0)
(0.104563 0.0010917 0)
(0.102846 0.000371093 0)
(0.100786 -0.000145987 0)
(0.0981864 -0.00120901 0)
(0.0954459 -0.00302166 0)
(0.0933343 -0.0052285 0)
(0.091687 -0.00767579 0)
(0.0906836 -0.0101798 0)
(0.0900576 -0.0128071 0)
(0.0896057 -0.0156765 0)
(0.0896759 -0.0193781 0)
(0.0907617 -0.0245269 0)
(0.0933931 -0.0295435 0)
(0.0972951 -0.0355707 0)
(0.102889 -0.0408743 0)
(0.1091 -0.0450047 0)
(0.116813 -0.0508418 0)
(0.125314 -0.0552042 0)
(0.134932 -0.060702 0)
(0.14591 -0.0650491 0)
(0.157436 -0.0689833 0)
(0.169705 -0.0738407 0)
(0.183261 -0.0784324 0)
(0.197659 -0.0839497 0)
(0.213624 -0.0894736 0)
(0.231102 -0.0951127 0)
(0.250641 -0.0995509 0)
(0.27103 -0.102363 0)
(0.292171 -0.104652 0)
(0.314355 -0.105369 0)
(0.336681 -0.104372 0)
(0.358694 -0.101943 0)
(0.380791 -0.0976569 0)
(0.402006 -0.0909022 0)
(0.42182 -0.0820645 0)
(0.439604 -0.0710134 0)
(0.454862 -0.0577629 0)
(0.466705 -0.042591 0)
(0.474536 -0.0263717 0)
(0.47854 -0.00964254 0)
(0.478718 0.00718157 0)
(0.475227 0.024137 0)
(0.467973 0.040552 0)
(0.45687 0.0560031 0)
(0.442341 0.0701543 0)
(0.424496 0.0823888 0)
(0.404977 0.0923204 0)
(0.383874 0.100332 0)
(0.36161 0.106125 0)
(0.339364 0.110116 0)
(0.317226 0.11133 0)
(0.29531 0.110252 0)
(0.274576 0.106875 0)
(0.255074 0.101867 0)
(0.237536 0.0960881 0)
(0.221826 0.0902359 0)
(0.206978 0.0842837 0)
(0.192909 0.0786285 0)
(0.179592 0.073191 0)
(0.166222 0.067559 0)
(0.153914 0.0622532 0)
(0.141884 0.0569993 0)
(0.130393 0.0507353 0)
(0.120156 0.0447276 0)
(0.110653 0.0384562 0)
(0.102491 0.0318997 0)
(0.0966556 0.025695 0)
(0.0925399 0.0205659 0)
(0.0892446 0.0174732 0)
(0.0864618 0.0148841 0)
(0.0843746 0.0126537 0)
(0.0832181 0.0114529 0)
(0.0822278 0.0108281 0)
(0.0810875 0.0103852 0)
(0.080026 0.00992931 0)
(0.0789698 0.00907518 0)
(0.0780874 0.0078057 0)
(0.0775055 0.00624292 0)
(0.0770948 0.00445928 0)
(0.0770044 0.00239768 0)
(0.0774099 0.000248813 0)
(0.0782243 -0.00168927 0)
(0.0794149 -0.00356368 0)
(0.0808609 -0.00515197 0)
(0.0824471 -0.00670879 0)
(0.0841968 -0.00812497 0)
(0.0860389 -0.00927863 0)
(0.0878306 -0.0106743 0)
(0.0897296 -0.0120401 0)
(0.0916384 -0.0138392 0)
(0.093766 -0.0160108 0)
(0.0962507 -0.018502 0)
(0.0990697 -0.0218201 0)
(0.102594 -0.0256909 0)
(0.107037 -0.0299833 0)
(0.112272 -0.0352934 0)
(0.118887 -0.040688 0)
(0.12655 -0.047033 0)
(0.135845 -0.0532093 0)
(0.146672 -0.0591104 0)
(0.158627 -0.0660101 0)
(0.172361 -0.0718596 0)
(0.187515 -0.0769041 0)
(0.203645 -0.0829743 0)
(0.221224 -0.0868253 0)
(0.239567 -0.0914919 0)
(0.258844 -0.093725 0)
(0.278598 -0.0945694 0)
(0.298771 -0.0963047 0)
(0.318966 -0.0951674 0)
(0.33881 -0.0925351 0)
(0.358549 -0.0905598 0)
(0.377246 -0.0859331 0)
(0.394932 -0.0800163 0)
(0.412093 -0.0742182 0)
(0.427176 -0.0660667 0)
(0.441142 -0.0576072 0)
(0.452489 -0.0474311 0)
(0.461633 -0.0364854 0)
(0.468753 -0.0250343 0)
(0.472911 -0.0129275 0)
(0.474544 -0.000555443 0)
(0.473237 0.0118129 0)
(0.469252 0.0239952 0)
(0.462189 0.0353486 0)
(0.452972 0.0461601 0)
(0.441587 0.0561692 0)
(0.427677 0.0639445 0)
(0.41268 0.071377 0)
(0.396403 0.0776532 0)
(0.378861 0.0810084 0)
(0.361038 0.0845693 0)
(0.342788 0.0853695 0)
(0.324596 0.0865914 0)
(0.306527 0.0868614 0)
(0.288916 0.0848648 0)
(0.271736 0.0835295 0)
(0.253412 0.0816416 0)
(0.443235 -0.0689924 0)
(0.456472 -0.0599784 0)
(0.468311 -0.0488787 0)
(0.477813 -0.0368318 0)
(0.484781 -0.0240136 0)
(0.488715 -0.0105309 0)
(0.48949 0.00321363 0)
(0.487403 0.0169657 0)
(0.482474 0.0305115 0)
(0.473982 0.0429062 0)
(0.463521 0.0549252 0)
(0.450729 0.0661343 0)
(0.435085 0.0747586 0)
(0.418384 0.0833607 0)
(0.399739 0.0889339 0)
(0.380472 0.0946545 0)
(0.360364 0.0991948 0)
(0.339589 0.100402 0)
(0.318761 0.102118 0)
(0.297926 0.102755 0)
(0.277543 0.100444 0)
(0.257538 0.0987859 0)
(0.238212 0.0962903 0)
(0.220073 0.0917158 0)
(0.202619 0.0878418 0)
(0.186524 0.0825895 0)
(0.171221 0.0779571 0)
(0.157053 0.0730762 0)
(0.144232 0.067592 0)
(0.132271 0.0626368 0)
(0.121345 0.0576933 0)
(0.111529 0.0526182 0)
(0.102566 0.0479036 0)
(0.0945728 0.0432551 0)
(0.0873668 0.0389108 0)
(0.0809711 0.0347528 0)
(0.0753488 0.0307724 0)
(0.0704122 0.0270337 0)
(0.0661318 0.023505 0)
(0.0624618 0.0201667 0)
(0.0593453 0.0170178 0)
(0.0567583 0.0140214 0)
(0.0546587 0.0111661 0)
(0.0530301 0.0084251 0)
(0.0518496 0.00576113 0)
(0.051093 0.00316066 0)
(0.0507414 0.000642471 0)
(0.0507926 -0.00184653 0)
(0.0512993 -0.0043183 0)
(0.0522534 -0.0066971 0)
(0.0535687 -0.00922086 0)
(0.0553721 -0.0117033 0)
(0.0575848 -0.0144193 0)
(0.0603266 -0.0171508 0)
(0.0635599 -0.0197531 0)
(0.0672171 -0.0227882 0)
(0.0715226 -0.0259188 0)
(0.076373 -0.0287662 0)
(0.0817938 -0.0323609 0)
(0.0878279 -0.0356125 0)
(0.0944513 -0.0395823 0)
(0.101714 -0.043567 0)
(0.109603 -0.0476068 0)
(0.118116 -0.052684 0)
(0.127891 -0.0577898 0)
(0.138215 -0.0632658 0)
(0.150306 -0.0696693 0)
(0.163266 -0.0756149 0)
(0.178381 -0.0829436 0)
(0.195183 -0.0886536 0)
(0.218435 -0.0931806 0)
(0.241146 -0.0944442 0)
(0.263761 -0.091305 0)
(0.282632 -0.0874159 0)
(0.304901 -0.0832733 0)
(0.322459 -0.0788103 0)
(0.341513 -0.0721005 0)
(0.353501 -0.0608365 0)
(0.36455 -0.0592736 0)
(0.380313 -0.0558448 0)
(0.397208 -0.0550123 0)
(0.415988 -0.0538782 0)
(0.433571 -0.0533705 0)
(0.452239 -0.0518726 0)
(0.468054 -0.049604 0)
(0.483672 -0.0463808 0)
(0.496861 -0.0405443 0)
(0.507785 -0.0324089 0)
(0.516255 -0.0215087 0)
(0.521836 -0.00831625 0)
(0.524368 0.00580662 0)
(0.522791 0.0204193 0)
(0.518169 0.0342916 0)
(0.509715 0.046999 0)
(0.499067 0.0581155 0)
(0.485367 0.0673615 0)
(0.470468 0.0756874 0)
(0.453359 0.0826868 0)
(0.435597 0.0892826 0)
(0.416165 0.0943015 0)
(0.396697 0.0980303 0)
(0.37566 0.10022 0)
(0.355443 0.100228 0)
(0.335017 0.0991713 0)
(0.315331 0.0965377 0)
(0.296728 0.0926472 0)
(0.279353 0.0886657 0)
(0.26273 0.0842238 0)
(0.247122 0.0794949 0)
(0.233236 0.0750279 0)
(0.219377 0.0705891 0)
(0.20747 0.0660547 0)
(0.195414 0.0618298 0)
(0.184842 0.0576653 0)
(0.17383 0.0529453 0)
(0.165216 0.0484927 0)
(0.155739 0.043696 0)
(0.148723 0.0387961 0)
(0.141499 0.0338597 0)
(0.136274 0.0290281 0)
(0.131157 0.0243261 0)
(0.127635 0.0197878 0)
(0.12442 0.015323 0)
(0.12274 0.011586 0)
(0.120092 0.00735178 0)
(0.120812 0.00312551 0)
(0.119974 0.000542842 0)
(0.120935 -0.00335067 0)
(0.121708 -0.00600107 0)
(0.124008 -0.00875553 0)
(0.125358 -0.0116337 0)
(0.128779 -0.0131289 0)
(0.130843 -0.0160414 0)
(0.134221 -0.017587 0)
(0.137146 -0.019949 0)
(0.142275 -0.0229997 0)
(0.146353 -0.0235243 0)
(0.152428 -0.0247849 0)
(0.155722 -0.0254348 0)
(0.160979 -0.0268767 0)
(0.165248 -0.0282259 0)
(0.171534 -0.0295333 0)
(0.176745 -0.0300164 0)
(0.182115 -0.0305206 0)
(0.18759 -0.0318548 0)
(0.192584 -0.0322186 0)
(0.198587 -0.0338684 0)
(0.203775 -0.0361341 0)
(0.210914 -0.0377551 0)
(0.216657 -0.0402109 0)
(0.224356 -0.042881 0)
(0.231515 -0.0458119 0)
(0.240289 -0.0492733 0)
(0.249259 -0.0520297 0)
(0.259114 -0.0555195 0)
(0.269315 -0.058458 0)
(0.280738 -0.0614477 0)
(0.291983 -0.0641818 0)
(0.304581 -0.0665757 0)
(0.317054 -0.0686284 0)
(0.330176 -0.0698158 0)
(0.343526 -0.0712748 0)
(0.356952 -0.071776 0)
(0.370876 -0.0719818 0)
(0.384321 -0.0714597 0)
(0.39854 -0.070173 0)
(0.4119 -0.0679752 0)
(0.425666 -0.0644783 0)
(0.437878 -0.059865 0)
(0.449408 -0.0540229 0)
(0.459656 -0.0475066 0)
(0.469133 -0.0395855 0)
(0.477247 -0.0308359 0)
(0.483526 -0.0205321 0)
(0.487221 -0.0096007 0)
(0.488471 0.00154323 0)
(0.487302 0.013439 0)
(0.483365 0.0250873 0)
(0.476897 0.0366763 0)
(0.468396 0.0481618 0)
(0.456838 0.0591988 0)
(0.443217 0.0689071 0)
(0.427312 0.0766289 0)
(0.410206 0.0822922 0)
(0.391971 0.0862842 0)
(0.373813 0.0884333 0)
(0.355519 0.0894173 0)
(0.337747 0.0894699 0)
(0.319887 0.0889342 0)
(0.302522 0.0875238 0)
(0.284676 0.0850823 0)
(0.268675 0.0813364 0)
(0.252788 0.0767007 0)
(0.239497 0.0717384 0)
(0.226385 0.0667244 0)
(0.21572 0.0617548 0)
(0.204543 0.0573192 0)
(0.195046 0.0530133 0)
(0.18574 0.0480996 0)
(0.177878 0.0431071 0)
(0.170592 0.0385395 0)
(0.164778 0.0339232 0)
(0.159651 0.0295977 0)
(0.155257 0.0260197 0)
(0.150899 0.0231055 0)
(0.147326 0.0201715 0)
(0.143559 0.0175814 0)
(0.140738 0.0150282 0)
(0.138586 0.01309 0)
(0.135857 0.0121158 0)
(0.133725 0.0112705 0)
(0.130739 0.0107686 0)
(0.127897 0.0100928 0)
(0.124872 0.0091739 0)
(0.122281 0.00859884 0)
(0.119316 0.00710314 0)
(0.116915 0.00531797 0)
(0.115005 0.00355528 0)
(0.113808 0.00187973 0)
(0.112869 0.00121822 0)
(0.111422 0.00063593 0)
(0.109552 0.000221744 0)
(0.107318 -0.000807728 0)
(0.104785 -0.00269838 0)
(0.102919 -0.00494076 0)
(0.1013 -0.00751162 0)
(0.100571 -0.0101139 0)
(0.0999028 -0.0127483 0)
(0.0993106 -0.01573 0)
(0.0991861 -0.0194993 0)
(0.0999475 -0.0250425 0)
(0.102272 -0.0302279 0)
(0.10594 -0.036511 0)
(0.110877 -0.0420341 0)
(0.116606 -0.046392 0)
(0.123767 -0.0526035 0)
(0.131388 -0.0570034 0)
(0.140539 -0.0630117 0)
(0.150729 -0.0674515 0)
(0.161732 -0.0715808 0)
(0.173371 -0.0766861 0)
(0.186491 -0.0813368 0)
(0.200396 -0.0872477 0)
(0.215875 -0.0929051 0)
(0.233058 -0.0989922 0)
(0.252295 -0.103796 0)
(0.272438 -0.106784 0)
(0.293357 -0.109165 0)
(0.315343 -0.109795 0)
(0.337626 -0.108648 0)
(0.359637 -0.106099 0)
(0.381914 -0.101641 0)
(0.403293 -0.0944281 0)
(0.423351 -0.0851685 0)
(0.441212 -0.0733828 0)
(0.456598 -0.0594471 0)
(0.468434 -0.0434647 0)
(0.4762 -0.0262837 0)
(0.480131 -0.00884242 0)
(0.480279 0.00832321 0)
(0.476779 0.0254007 0)
(0.469449 0.0422896 0)
(0.458261 0.0585614 0)
(0.443562 0.0735791 0)
(0.425567 0.0863307 0)
(0.405841 0.0968294 0)
(0.384552 0.105036 0)
(0.362219 0.111014 0)
(0.34003 0.114952 0)
(0.317882 0.116197 0)
(0.295808 0.114985 0)
(0.275084 0.111491 0)
(0.255759 0.106294 0)
(0.23846 0.10012 0)
(0.223072 0.0939815 0)
(0.208514 0.087799 0)
(0.194541 0.0819218 0)
(0.18134 0.0763457 0)
(0.168007 0.0705409 0)
(0.155604 0.0650256 0)
(0.143351 0.0596613 0)
(0.13158 0.0531617 0)
(0.121028 0.0468905 0)
(0.111172 0.0403397 0)
(0.102588 0.0334434 0)
(0.0965412 0.0268219 0)
(0.0922556 0.0214256 0)
(0.0887502 0.0181723 0)
(0.0856452 0.0152915 0)
(0.0833988 0.0127873 0)
(0.0821457 0.0114609 0)
(0.0810524 0.0108875 0)
(0.0798888 0.0104991 0)
(0.0788475 0.010052 0)
(0.0778411 0.0091983 0)
(0.0770139 0.00785131 0)
(0.0765429 0.0062786 0)
(0.0761912 0.00442689 0)
(0.0762007 0.0022779 0)
(0.0767254 8.2595e-05 0)
(0.0776583 -0.00190665 0)
(0.0789284 -0.00383012 0)
(0.0804508 -0.00545486 0)
(0.0820984 -0.00704441 0)
(0.0838928 -0.00847994 0)
(0.0857585 -0.00963541 0)
(0.0875404 -0.0110402 0)
(0.0894049 -0.0124087 0)
(0.0912417 -0.0142308 0)
(0.0932789 -0.016451 0)
(0.0956607 -0.0190066 0)
(0.0983465 -0.0224298 0)
(0.101738 -0.0264466 0)
(0.106066 -0.0309218 0)
(0.111177 -0.0364565 0)
(0.117705 -0.042094 0)
(0.125285 -0.0487262 0)
(0.134551 -0.0551888 0)
(0.145386 -0.0613632 0)
(0.15735 -0.0685858 0)
(0.171154 -0.0747067 0)
(0.186413 -0.0799975 0)
(0.202655 -0.0863597 0)
(0.220403 -0.0903961 0)
(0.238918 -0.0952854 0)
(0.258394 -0.0976232 0)
(0.278359 -0.0985268 0)
(0.298774 -0.100369 0)
(0.319213 -0.0991889 0)
(0.33929 -0.0964497 0)
(0.359284 -0.0944054 0)
(0.378204 -0.0896042 0)
(0.396115 -0.0834598 0)
(0.413557 -0.0774454 0)
(0.428861 -0.0689535 0)
(0.443079 -0.0601409 0)
(0.454602 -0.0495289 0)
(0.463895 -0.0381084 0)
(0.471165 -0.0261541 0)
(0.475396 -0.0135066 0)
(0.477068 -0.000575053 0)
(0.47573 0.0123574 0)
(0.47167 0.0250964 0)
(0.464443 0.0369667 0)
(0.45504 0.0482663 0)
(0.443436 0.0587194 0)
(0.429232 0.0668145 0)
(0.413968 0.0745522 0)
(0.397419 0.0810738 0)
(0.379587 0.0845213 0)
(0.361514 0.0881953 0)
(0.343027 0.088976 0)
(0.324626 0.0902072 0)
(0.306371 0.0904452 0)
(0.288613 0.0883132 0)
(0.271308 0.0868789 0)
(0.252877 0.0848765 0)
(0.445044 -0.0720031 0)
(0.458562 -0.0626257 0)
(0.470633 -0.0510498 0)
(0.480333 -0.0384792 0)
(0.487462 -0.0250975 0)
(0.491487 -0.011017 0)
(0.492279 0.00333777 0)
(0.490159 0.0177061 0)
(0.485146 0.0318542 0)
(0.476456 0.0447839 0)
(0.465806 0.0573173 0)
(0.452794 0.0690026 0)
(0.436842 0.0779655 0)
(0.419873 0.0869131 0)
(0.400914 0.0926816 0)
(0.381368 0.0986146 0)
(0.360982 0.103313 0)
(0.339932 0.104524 0)
(0.318852 0.106278 0)
(0.297777 0.106908 0)
(0.277191 0.104458 0)
(0.256995 0.102693 0)
(0.237502 0.10006 0)
(0.219255 0.0952567 0)
(0.2017 0.0911923 0)
(0.185555 0.085704 0)
(0.170198 0.0808619 0)
(0.156002 0.0757632 0)
(0.143195 0.0700463 0)
(0.131243 0.0648933 0)
(0.120332 0.0597543 0)
(0.110549 0.0544775 0)
(0.10162 0.0495801 0)
(0.0936698 0.0447565 0)
(0.086504 0.0402502 0)
(0.0801504 0.0359388 0)
(0.0745725 0.0318132 0)
(0.0696794 0.0279397 0)
(0.065441 0.0242877 0)
(0.0618099 0.0208343 0)
(0.0587277 0.0175786 0)
(0.0561707 0.0144821 0)
(0.0540961 0.0115318 0)
(0.0524878 0.0087006 0)
(0.0513221 0.00594765 0)
(0.0505787 0.00325408 0)
(0.0502416 0.000641313 0)
(0.0502995 -0.00192614 0)
(0.0508119 -0.00448976 0)
(0.0517701 -0.00694001 0)
(0.0530727 -0.00954292 0)
(0.0548629 -0.0121088 0)
(0.05706 -0.0149244 0)
(0.0597908 -0.0177459 0)
(0.0630072 -0.020432 0)
(0.066638 -0.0235773 0)
(0.0709216 -0.0268166 0)
(0.0757547 -0.0297737 0)
(0.0811628 -0.0334962 0)
(0.0871772 -0.0368653 0)
(0.0937865 -0.0409728 0)
(0.101018 -0.0450798 0)
(0.108855 -0.0492509 0)
(0.117308 -0.0545295 0)
(0.127046 -0.0597638 0)
(0.137248 -0.06545 0)
(0.149205 -0.0720722 0)
(0.161948 -0.0783415 0)
(0.177066 -0.0861913 0)
(0.193764 -0.0920622 0)
(0.217422 -0.0972078 0)
(0.240852 -0.0990194 0)
(0.264038 -0.0959588 0)
(0.282995 -0.0914768 0)
(0.305711 -0.0871432 0)
(0.323899 -0.0826876 0)
(0.34402 -0.0759453 0)
(0.356791 -0.064912 0)
(0.367837 -0.0625187 0)
(0.383896 -0.0591379 0)
(0.401709 -0.0585255 0)
(0.421415 -0.0575126 0)
(0.439856 -0.0568247 0)
(0.459408 -0.0548144 0)
(0.476253 -0.0520546 0)
(0.492677 -0.0482841 0)
(0.506472 -0.0420666 0)
(0.517576 -0.0337604 0)
(0.52599 -0.0226057 0)
(0.531279 -0.00892128 0)
(0.533732 0.00597851 0)
(0.532066 0.021653 0)
(0.527446 0.0364081 0)
(0.518689 0.049708 0)
(0.507809 0.061365 0)
(0.493661 0.0710464 0)
(0.478237 0.0794953 0)
(0.4607 0.086119 0)
(0.442584 0.0923133 0)
(0.422797 0.0971126 0)
(0.402988 0.100965 0)
(0.38178 0.103355 0)
(0.361502 0.103354 0)
(0.341184 0.102358 0)
(0.321383 0.0995222 0)
(0.302887 0.0956753 0)
(0.285301 0.0916413 0)
(0.268698 0.087101 0)
(0.253022 0.0822519 0)
(0.239152 0.0775841 0)
(0.225188 0.0729516 0)
(0.213331 0.0683361 0)
(0.201236 0.0640881 0)
(0.190738 0.0597878 0)
(0.179799 0.0549391 0)
(0.171185 0.0502664 0)
(0.161798 0.0453851 0)
(0.15463 0.0403228 0)
(0.147515 0.0351602 0)
(0.142167 0.0302391 0)
(0.137213 0.0252788 0)
(0.133703 0.0205798 0)
(0.130535 0.015883 0)
(0.1289 0.0121076 0)
(0.126269 0.0076421 0)
(0.127082 0.0032571 0)
(0.126256 0.000609356 0)
(0.12742 -0.00345624 0)
(0.128014 -0.00629714 0)
(0.130734 -0.00920715 0)
(0.131946 -0.0121022 0)
(0.135275 -0.0136396 0)
(0.137532 -0.0168406 0)
(0.140721 -0.018373 0)
(0.143664 -0.020961 0)
(0.149034 -0.024158 0)
(0.153026 -0.0245947 0)
(0.159402 -0.0260063 0)
(0.162401 -0.0265635 0)
(0.167766 -0.0281079 0)
(0.171939 -0.0295328 0)
(0.178249 -0.0307995 0)
(0.183352 -0.0314081 0)
(0.18841 -0.0319053 0)
(0.194135 -0.0332817 0)
(0.198752 -0.0335816 0)
(0.204872 -0.0353698 0)
(0.209778 -0.0376862 0)
(0.216913 -0.0393677 0)
(0.222508 -0.0419695 0)
(0.230026 -0.0446896 0)
(0.237165 -0.0477488 0)
(0.245785 -0.0514182 0)
(0.254809 -0.054404 0)
(0.264613 -0.0580583 0)
(0.274638 -0.0611865 0)
(0.286251 -0.0643074 0)
(0.297244 -0.0670463 0)
(0.310057 -0.0695497 0)
(0.322502 -0.0717341 0)
(0.335724 -0.0729636 0)
(0.349259 -0.0743158 0)
(0.362778 -0.0746135 0)
(0.377088 -0.0749076 0)
(0.390725 -0.0741518 0)
(0.405238 -0.0723694 0)
(0.418505 -0.0699033 0)
(0.432475 -0.0662746 0)
(0.445287 -0.0618318 0)
(0.457602 -0.0562924 0)
(0.468282 -0.049739 0)
(0.477334 -0.041916 0)
(0.484539 -0.0331617 0)
(0.490231 -0.0230894 0)
(0.493243 -0.0118855 0)
(0.494707 -0.000534552 0)
(0.493548 0.0117666 0)
(0.489714 0.0236859 0)
(0.484104 0.0353196 0)
(0.476496 0.047051 0)
(0.465277 0.0585164 0)
(0.451375 0.0689344 0)
(0.434354 0.0774579 0)
(0.416382 0.0837714 0)
(0.397616 0.0880979 0)
(0.379107 0.0904793 0)
(0.360694 0.0916682 0)
(0.342898 0.0918942 0)
(0.324787 0.0916153 0)
(0.307612 0.0904569 0)
(0.289566 0.0879798 0)
(0.273881 0.0841865 0)
(0.258131 0.0792992 0)
(0.245267 0.0740933 0)
(0.232367 0.0688954 0)
(0.222286 0.0638552 0)
(0.211368 0.0593845 0)
(0.202307 0.0549674 0)
(0.193382 0.0499267 0)
(0.185837 0.0447774 0)
(0.178885 0.0399397 0)
(0.173514 0.0351523 0)
(0.168916 0.0306651 0)
(0.164625 0.0270611 0)
(0.160586 0.0241046 0)
(0.15706 0.0211545 0)
(0.153381 0.0184474 0)
(0.150758 0.0158049 0)
(0.148738 0.0138777 0)
(0.146159 0.0128387 0)
(0.144186 0.0120173 0)
(0.141302 0.0115611 0)
(0.138473 0.0109199 0)
(0.13567 0.00988434 0)
(0.132847 0.00933514 0)
(0.130164 0.00782545 0)
(0.127565 0.00607178 0)
(0.125758 0.00401631 0)
(0.124537 0.00218121 0)
(0.1236 0.00153037 0)
(0.12229 0.000981254 0)
(0.120109 0.000574993 0)
(0.118112 -0.000367582 0)
(0.115528 -0.0020699 0)
(0.114087 -0.00438368 0)
(0.112404 -0.00718959 0)
(0.112111 -0.00988679 0)
(0.111767 -0.0125073 0)
(0.111164 -0.0155093 0)
(0.111156 -0.0193489 0)
(0.111682 -0.0250781 0)
(0.113697 -0.0306484 0)
(0.117482 -0.037283 0)
(0.12174 -0.0429341 0)
(0.127205 -0.0474155 0)
(0.13416 -0.0538988 0)
(0.14074 -0.058323 0)
(0.149774 -0.0647321 0)
(0.158829 -0.0690552 0)
(0.169234 -0.0733123 0)
(0.180253 -0.0786767 0)
(0.19268 -0.0834455 0)
(0.205962 -0.0898037 0)
(0.220742 -0.095821 0)
(0.237541 -0.102339 0)
(0.25628 -0.107521 0)
(0.275863 -0.110665 0)
(0.296395 -0.113464 0)
(0.317923 -0.114448 0)
(0.339895 -0.1135 0)
(0.361583 -0.11111 0)
(0.38381 -0.106698 0)
(0.40525 -0.0994322 0)
(0.425532 -0.0899958 0)
(0.443893 -0.0780871 0)
(0.459817 -0.0637079 0)
(0.472066 -0.046925 0)
(0.480054 -0.0292273 0)
(0.484105 -0.0108741 0)
(0.484311 0.00760534 0)
(0.480808 0.0261534 0)
(0.473454 0.044085 0)
(0.4622 0.0610392 0)
(0.447325 0.0765182 0)
(0.428875 0.0898106 0)
(0.408735 0.10043 0)
(0.387063 0.109046 0)
(0.364546 0.115201 0)
(0.341764 0.119456 0)
(0.319227 0.12045 0)
(0.297053 0.118923 0)
(0.27661 0.114786 0)
(0.2577 0.108946 0)
(0.240827 0.102351 0)
(0.225729 0.0958832 0)
(0.211522 0.089649 0)
(0.197679 0.0837452 0)
(0.184591 0.0782277 0)
(0.171308 0.0725213 0)
(0.158718 0.0672517 0)
(0.146258 0.0619313 0)
(0.134201 0.0553464 0)
(0.123258 0.0489852 0)
(0.113024 0.0423837 0)
(0.103994 0.0349977 0)
(0.0975321 0.0278668 0)
(0.0928937 0.0221916 0)
(0.0889304 0.0188451 0)
(0.0854055 0.0160222 0)
(0.0827619 0.0133595 0)
(0.0814357 0.0118873 0)
(0.0802063 0.0111991 0)
(0.0788575 0.0106952 0)
(0.0777453 0.0101897 0)
(0.0767164 0.00928271 0)
(0.0759659 0.00789976 0)
(0.0755142 0.00624644 0)
(0.0753524 0.00436104 0)
(0.0754144 0.00217484 0)
(0.0760392 -3.74824e-05 0)
(0.0770798 -0.00213077 0)
(0.0784308 -0.0041075 0)
(0.0800319 -0.00576863 0)
(0.0817442 -0.00738934 0)
(0.0835862 -0.00884046 0)
(0.0854771 -0.00999346 0)
(0.0872492 -0.0114027 0)
(0.0890781 -0.0127675 0)
(0.0908387 -0.0146067 0)
(0.0927805 -0.0168696 0)
(0.0950542 -0.0194867 0)
(0.0975987 -0.023012 0)
(0.100848 -0.0271731 0)
(0.105054 -0.0318367 0)
(0.110035 -0.0375982 0)
(0.11647 -0.0434845 0)
(0.123963 -0.050409 0)
(0.133197 -0.0571637 0)
(0.144041 -0.0636179 0)
(0.156015 -0.071171 0)
(0.16989 -0.0775678 0)
(0.185258 -0.0831134 0)
(0.201618 -0.0897749 0)
(0.219543 -0.0940021 0)
(0.23824 -0.0991185 0)
(0.257921 -0.101561 0)
(0.278105 -0.10253 0)
(0.298772 -0.104484 0)
(0.319468 -0.103259 0)
(0.339788 -0.100413 0)
(0.360046 -0.0982971 0)
(0.379196 -0.0933236 0)
(0.397342 -0.0869531 0)
(0.415078 -0.0807234 0)
(0.430616 -0.0718871 0)
(0.445097 -0.0627165 0)
(0.456804 -0.0516634 0)
(0.466256 -0.0397614 0)
(0.473682 -0.0272956 0)
(0.477992 -0.0140978 0)
(0.479705 -0.000595076 0)
(0.478336 0.0129129 0)
(0.474197 0.0262207 0)
(0.466799 0.0386194 0)
(0.457199 0.0504171 0)
(0.445364 0.0613221 0)
(0.430852 0.0697399 0)
(0.415307 0.0777853 0)
(0.398471 0.0845527 0)
(0.380336 0.0880874 0)
(0.362 0.0918716 0)
(0.343266 0.0926267 0)
(0.324648 0.0938626 0)
(0.306198 0.094064 0)
(0.288289 0.091789 0)
(0.270854 0.0902492 0)
(0.252314 0.0881279 0)
(0.446925 -0.0750725 0)
(0.460737 -0.065328 0)
(0.473054 -0.053267 0)
(0.482963 -0.0401626 0)
(0.490261 -0.0262063 0)
(0.494381 -0.0115162 0)
(0.495191 0.0034629 0)
(0.493038 0.0184618 0)
(0.487934 0.0332253 0)
(0.479034 0.0466995 0)
(0.468186 0.0597552 0)
(0.454942 0.0719248 0)
(0.438669 0.0812285 0)
(0.421418 0.0905253 0)
(0.402131 0.0964873 0)
(0.382293 0.102633 0)
(0.361619 0.107488 0)
(0.340282 0.108698 0)
(0.318939 0.110487 0)
(0.297614 0.111108 0)
(0.276817 0.108513 0)
(0.256421 0.106634 0)
(0.236756 0.103858 0)
(0.218397 0.0988188 0)
(0.200738 0.0945581 0)
(0.184542 0.0888298 0)
(0.169131 0.0837734 0)
(0.154906 0.0784517 0)
(0.142115 0.0724975 0)
(0.130175 0.0671468 0)
(0.119279 0.061811 0)
(0.10953 0.0563298 0)
(0.100638 0.0512485 0)
(0.0927335 0.0462494 0)
(0.0856099 0.041581 0)
(0.0793002 0.037116 0)
(0.0737686 0.032845 0)
(0.0689211 0.0288366 0)
(0.0647269 0.025062 0)
(0.0611362 0.0214944 0)
(0.0580896 0.018133 0)
(0.0555638 0.0149369 0)
(0.0535153 0.0118924 0)
(0.0519279 0.00897132 0)
(0.0507767 0.00613309 0)
(0.0500457 0.00334615 0)
(0.049725 0.000635711 0)
(0.0497898 -0.0020038 0)
(0.0503083 -0.00466165 0)
(0.0512725 -0.00718423 0)
(0.052561 -0.0098643 0)
(0.0543362 -0.0125129 0)
(0.0565172 -0.0154295 0)
(0.0592375 -0.0183373 0)
(0.0624357 -0.0211052 0)
(0.0660379 -0.0243612 0)
(0.0702973 -0.0277057 0)
(0.0751125 -0.0307759 0)
(0.0805081 -0.0346262 0)
(0.0865026 -0.0381172 0)
(0.0931001 -0.0423621 0)
(0.100303 -0.0465886 0)
(0.108083 -0.0508908 0)
(0.11648 -0.0563732 0)
(0.126192 -0.0617284 0)
(0.136268 -0.0676088 0)
(0.148072 -0.0744493 0)
(0.160572 -0.0810007 0)
(0.175666 -0.0894456 0)
(0.192251 -0.0954992 0)
(0.216296 -0.101237 0)
(0.240351 -0.103586 0)
(0.264174 -0.100875 0)
(0.283478 -0.0955775 0)
(0.306464 -0.0912187 0)
(0.32524 -0.0868143 0)
(0.346218 -0.0796722 0)
(0.35993 -0.0699612 0)
(0.371087 -0.0663383 0)
(0.387466 -0.0628958 0)
(0.406161 -0.0625285 0)
(0.427254 -0.0611698 0)
(0.447027 -0.0603618 0)
(0.467606 -0.0582881 0)
(0.484956 -0.0553877 0)
(0.501603 -0.0514027 0)
(0.515686 -0.0446155 0)
(0.526806 -0.0353644 0)
(0.535468 -0.0232758 0)
(0.540637 -0.00894604 0)
(0.543042 0.00619717 0)
(0.541189 0.0220065 0)
(0.536979 0.0370749 0)
(0.528536 0.0510684 0)
(0.517659 0.0633191 0)
(0.503598 0.0733692 0)
(0.488381 0.0825258 0)
(0.47096 0.0901099 0)
(0.452251 0.0972527 0)
(0.432011 0.102791 0)
(0.411399 0.106908 0)
(0.38972 0.109226 0)
(0.368915 0.109099 0)
(0.348386 0.107844 0)
(0.328225 0.104754 0)
(0.309869 0.100494 0)
(0.292224 0.0959353 0)
(0.275606 0.0909409 0)
(0.259767 0.0858772 0)
(0.245624 0.0808669 0)
(0.231473 0.076004 0)
(0.219592 0.0711167 0)
(0.207446 0.0665912 0)
(0.196973 0.0620335 0)
(0.186064 0.0569326 0)
(0.177368 0.0520767 0)
(0.168186 0.0469644 0)
(0.160934 0.0416922 0)
(0.154058 0.0362629 0)
(0.148664 0.0310827 0)
(0.143852 0.0259258 0)
(0.140296 0.0211185 0)
(0.13726 0.0162281 0)
(0.135653 0.0124075 0)
(0.133219 0.00777196 0)
(0.134128 0.00318726 0)
(0.133406 0.000468696 0)
(0.134902 -0.00368883 0)
(0.135269 -0.00662889 0)
(0.138561 -0.00972374 0)
(0.139528 -0.0123887 0)
(0.142783 -0.0139626 0)
(0.145386 -0.0172658 0)
(0.148266 -0.0187397 0)
(0.151412 -0.0217364 0)
(0.157069 -0.0249666 0)
(0.160855 -0.0252024 0)
(0.167688 -0.0265609 0)
(0.170314 -0.0271491 0)
(0.175819 -0.0288003 0)
(0.179846 -0.0301838 0)
(0.186192 -0.0314879 0)
(0.191067 -0.0320306 0)
(0.195684 -0.0326142 0)
(0.201683 -0.0339511 0)
(0.205847 -0.0340825 0)
(0.212077 -0.0361035 0)
(0.216888 -0.0384198 0)
(0.223817 -0.0401435 0)
(0.229398 -0.0427501 0)
(0.23663 -0.0456037 0)
(0.243874 -0.0487858 0)
(0.252174 -0.0524813 0)
(0.261228 -0.0555319 0)
(0.270838 -0.0592619 0)
(0.280785 -0.0624825 0)
(0.29249 -0.0656645 0)
(0.303252 -0.068598 0)
(0.316408 -0.0712014 0)
(0.328642 -0.0733649 0)
(0.341878 -0.0748229 0)
(0.355322 -0.0766436 0)
(0.368395 -0.077182 0)
(0.382672 -0.0778126 0)
(0.395893 -0.0774779 0)
(0.410557 -0.0761694 0)
(0.424175 -0.0738398 0)
(0.438383 -0.0700299 0)
(0.450467 -0.0649921 0)
(0.462083 -0.0585898 0)
(0.472934 -0.0514788 0)
(0.483413 -0.042734 0)
(0.492545 -0.03328 0)
(0.499264 -0.0219986 0)
(0.50299 -0.0103584 0)
(0.504441 0.00168418 0)
(0.503431 0.0144733 0)
(0.499505 0.027042 0)
(0.492756 0.0398425 0)
(0.484077 0.0524445 0)
(0.471698 0.0648746 0)
(0.45714 0.0757928 0)
(0.440333 0.0842383 0)
(0.4229 0.090341 0)
(0.404329 0.0945318 0)
(0.385763 0.0965725 0)
(0.366991 0.0972065 0)
(0.349405 0.0970669 0)
(0.331276 0.096289 0)
(0.31445 0.0947625 0)
(0.296264 0.0920707 0)
(0.28083 0.0878428 0)
(0.265115 0.0826488 0)
(0.252793 0.0771545 0)
(0.24023 0.0715075 0)
(0.230913 0.0661043 0)
(0.220434 0.0614061 0)
(0.212052 0.0567366 0)
(0.203895 0.0513431 0)
(0.196902 0.0459579 0)
(0.190467 0.0409376 0)
(0.185752 0.035881 0)
(0.181938 0.0313018 0)
(0.177718 0.0274738 0)
(0.174001 0.0244159 0)
(0.170589 0.0214282 0)
(0.166979 0.0185856 0)
(0.164823 0.0156981 0)
(0.162662 0.0137798 0)
(0.160194 0.0129066 0)
(0.158384 0.0121783 0)
(0.155583 0.0117738 0)
(0.1528 0.0111928 0)
(0.15031 0.0103381 0)
(0.147055 0.00975681 0)
(0.144853 0.00816195 0)
(0.142318 0.00645518 0)
(0.140449 0.00432972 0)
(0.139196 0.00241306 0)
(0.138031 0.00188978 0)
(0.136718 0.00153458 0)
(0.133779 0.00127442 0)
(0.132135 0.000488931 0)
(0.129054 -0.0015498 0)
(0.127869 -0.00390716 0)
(0.125779 -0.00689523 0)
(0.125976 -0.0097728 0)
(0.125596 -0.0123849 0)
(0.125302 -0.0154763 0)
(0.125579 -0.0194806 0)
(0.126217 -0.0254801 0)
(0.128053 -0.0311673 0)
(0.131967 -0.0380517 0)
(0.135702 -0.0438048 0)
(0.140826 -0.0485748 0)
(0.147643 -0.0552866 0)
(0.152843 -0.0598243 0)
(0.162092 -0.0668399 0)
(0.169909 -0.0712089 0)
(0.180158 -0.0759671 0)
(0.191135 -0.0814719 0)
(0.202924 -0.0863184 0)
(0.215402 -0.0931229 0)
(0.229253 -0.0992282 0)
(0.245475 -0.105922 0)
(0.263561 -0.11124 0)
(0.282791 -0.114454 0)
(0.302702 -0.117126 0)
(0.32342 -0.118003 0)
(0.344988 -0.116985 0)
(0.365974 -0.114569 0)
(0.387725 -0.110003 0)
(0.408853 -0.102443 0)
(0.429086 -0.0926675 0)
(0.446955 -0.0799396 0)
(0.462657 -0.0647747 0)
(0.474671 -0.0473358 0)
(0.482697 -0.0285376 0)
(0.486566 -0.00969071 0)
(0.486705 0.00888455 0)
(0.483263 0.0274497 0)
(0.475871 0.0458276 0)
(0.464391 0.0635474 0)
(0.449115 0.0798998 0)
(0.430372 0.0937151 0)
(0.410053 0.104908 0)
(0.388409 0.113429 0)
(0.365922 0.119881 0)
(0.343599 0.123931 0)
(0.321862 0.125219 0)
(0.300584 0.123712 0)
(0.280703 0.119689 0)
(0.261955 0.113959 0)
(0.245469 0.107071 0)
(0.23064 0.100458 0)
(0.216976 0.0940229 0)
(0.203419 0.0878727 0)
(0.190431 0.0821107 0)
(0.177285 0.0761634 0)
(0.164408 0.0704067 0)
(0.151542 0.064935 0)
(0.139132 0.0580071 0)
(0.127651 0.0512806 0)
(0.116803 0.0442812 0)
(0.107123 0.0366927 0)
(0.100147 0.0292213 0)
(0.094918 0.0232801 0)
(0.0902502 0.0197205 0)
(0.0861067 0.0164625 0)
(0.0828979 0.0134185 0)
(0.081097 0.0117771 0)
(0.0795743 0.01121 0)
(0.0779573 0.0108063 0)
(0.0767079 0.0103109 0)
(0.0756475 0.00938805 0)
(0.0748878 0.00791759 0)
(0.0745505 0.00624511 0)
(0.074377 0.00426839 0)
(0.0745678 0.00201692 0)
(0.0753146 -0.000188893 0)
(0.0764739 -0.00237746 0)
(0.0779195 -0.00440241 0)
(0.0796042 -0.00609705 0)
(0.0813851 -0.00774587 0)
(0.0832776 -0.00920741 0)
(0.0851953 -0.0103532 0)
(0.0869584 -0.0117619 0)
(0.0887505 -0.0131163 0)
(0.0904306 -0.0149661 0)
(0.092272 -0.0172646 0)
(0.094432 -0.0199409 0)
(0.0968269 -0.0235651 0)
(0.0999244 -0.0278679 0)
(0.104001 -0.0327272 0)
(0.108845 -0.0387171 0)
(0.115182 -0.0448592 0)
(0.122581 -0.0520809 0)
(0.131782 -0.0591333 0)
(0.142636 -0.0658745 0)
(0.154619 -0.0737663 0)
(0.168567 -0.0804429 0)
(0.184049 -0.0862531 0)
(0.200532 -0.093221 0)
(0.218644 -0.0976454 0)
(0.23753 -0.102993 0)
(0.257423 -0.105538 0)
(0.277834 -0.10658 0)
(0.298768 -0.108653 0)
(0.319732 -0.107381 0)
(0.340305 -0.104428 0)
(0.360836 -0.102236 0)
(0.380222 -0.0970929 0)
(0.398612 -0.0904985 0)
(0.416658 -0.0840548 0)
(0.432441 -0.0748699 0)
(0.447197 -0.065336 0)
(0.459097 -0.0538366 0)
(0.468714 -0.0414461 0)
(0.476307 -0.0284601 0)
(0.4807 -0.0147017 0)
(0.482458 -0.000615668 0)
(0.481057 0.01348 0)
(0.476837 0.0273691 0)
(0.469258 0.0403086 0)
(0.459451 0.0526149 0)
(0.447372 0.0639801 0)
(0.432535 0.0727235 0)
(0.416694 0.0810792 0)
(0.399557 0.0880928 0)
(0.381105 0.0917091 0)
(0.362496 0.0956003 0)
(0.343506 0.0963234 0)
(0.324661 0.0975594 0)
(0.306007 0.0977193 0)
(0.287941 0.095293 0)
(0.270372 0.0936408 0)
(0.25172 0.0913964 0)
(0.448879 -0.0782035 0)
(0.463001 -0.0680883 0)
(0.475576 -0.0555327 0)
(0.485703 -0.0418838 0)
(0.49318 -0.0273413 0)
(0.497399 -0.0120284 0)
(0.498229 0.00358977 0)
(0.496041 0.0192336 0)
(0.490841 0.0346265 0)
(0.48172 0.0486552 0)
(0.470663 0.0622412 0)
(0.457176 0.0749038 0)
(0.440565 0.0845504 0)
(0.42302 0.0942001 0)
(0.403391 0.100353 0)
(0.383248 0.106713 0)
(0.362272 0.111723 0)
(0.340637 0.112926 0)
(0.319021 0.114748 0)
(0.297437 0.115356 0)
(0.276419 0.112608 0)
(0.255817 0.11061 0)
(0.235971 0.107688 0)
(0.217497 0.102402 0)
(0.199733 0.0979395 0)
(0.183486 0.0919672 0)
(0.168017 0.0866916 0)
(0.153763 0.0811415 0)
(0.140993 0.0749447 0)
(0.129066 0.069397 0)
(0.118186 0.0638637 0)
(0.108473 0.0581746 0)
(0.0996211 0.0529087 0)
(0.091764 0.0477337 0)
(0.0846844 0.0429029 0)
(0.0784204 0.0382841 0)
(0.072937 0.0338676 0)
(0.0681374 0.0297243 0)
(0.0639894 0.0258279 0)
(0.0604409 0.0221466 0)
(0.0574313 0.0186803 0)
(0.0549377 0.0153859 0)
(0.0529162 0.0122484 0)
(0.0513508 0.00924011 0)
(0.0502138 0.00631752 0)
(0.0494935 0.00344042 0)
(0.0491919 0.000625902 0)
(0.0492641 -0.00207921 0)
(0.0497881 -0.00482852 0)
(0.0507605 -0.0074321 0)
(0.0520338 -0.0101855 0)
(0.0537918 -0.0129162 0)
(0.0559563 -0.0159356 0)
(0.0586668 -0.0189242 0)
(0.061845 -0.0217721 0)
(0.0654166 -0.0251393 0)
(0.0696485 -0.0285835 0)
(0.0744452 -0.0317711 0)
(0.079827 -0.0357502 0)
(0.0858025 -0.0393679 0)
(0.09239 -0.0437555 0)
(0.099568 -0.0480908 0)
(0.107284 -0.0525283 0)
(0.115636 -0.0582251 0)
(0.125321 -0.0636759 0)
(0.135292 -0.0697497 0)
(0.1469 -0.0767722 0)
(0.159137 -0.08362 0)
(0.174192 -0.0926996 0)
(0.190626 -0.0989093 0)
(0.215008 -0.105295 0)
(0.23971 -0.107954 0)
(0.264284 -0.105978 0)
(0.283758 -0.0998641 0)
(0.307049 -0.0952606 0)
(0.326705 -0.0909469 0)
(0.348406 -0.0831847 0)
(0.363036 -0.0749363 0)
(0.37466 -0.0700683 0)
(0.391094 -0.066553 0)
(0.410869 -0.0665422 0)
(0.433038 -0.0653089 0)
(0.453824 -0.0643023 0)
(0.475002 -0.0616466 0)
(0.493488 -0.058078 0)
(0.511364 -0.0533586 0)
(0.526286 -0.046131 0)
(0.53799 -0.0368808 0)
(0.546641 -0.0245133 0)
(0.551479 -0.009503 0)
(0.55352 0.00666753 0)
(0.551257 0.0235503 0)
(0.546185 0.0395685 0)
(0.53715 0.053987 0)
(0.526661 0.0665896 0)
(0.512652 0.0769958 0)
(0.496603 0.086027 0)
(0.478158 0.093267 0)
(0.458784 0.0998523 0)
(0.438176 0.1048 0)
(0.417396 0.108687 0)
(0.395613 0.110942 0)
(0.374676 0.110712 0)
(0.354383 0.109406 0)
(0.334154 0.106113 0)
(0.316021 0.101999 0)
(0.298199 0.0974434 0)
(0.281528 0.0924416 0)
(0.265742 0.0873299 0)
(0.251561 0.0821997 0)
(0.237519 0.0771337 0)
(0.225732 0.0723734 0)
(0.213533 0.0678747 0)
(0.203095 0.0634255 0)
(0.192361 0.0584261 0)
(0.183767 0.0534063 0)
(0.175037 0.0482243 0)
(0.167852 0.0428984 0)
(0.161408 0.0372901 0)
(0.155948 0.0320947 0)
(0.151535 0.0266559 0)
(0.14801 0.0218046 0)
(0.145318 0.0166259 0)
(0.143676 0.0127183 0)
(0.141791 0.00786999 0)
(0.142571 0.00310445 0)
(0.142118 0.000264177 0)
(0.144222 -0.00388917 0)
(0.144485 -0.00705547 0)
(0.148531 -0.0102986 0)
(0.149317 -0.0130079 0)
(0.152476 -0.0147457 0)
(0.15559 -0.0180965 0)
(0.157926 -0.0193652 0)
(0.16156 -0.0230051 0)
(0.167488 -0.0263325 0)
(0.170936 -0.0264795 0)
(0.178339 -0.0278223 0)
(0.180633 -0.0281695 0)
(0.186098 -0.0300052 0)
(0.190028 -0.0314123 0)
(0.196394 -0.0326319 0)
(0.20083 -0.0334089 0)
(0.204756 -0.0339916 0)
(0.210962 -0.0354296 0)
(0.214458 -0.0355496 0)
(0.220726 -0.0378123 0)
(0.225434 -0.0401394 0)
(0.231909 -0.0420713 0)
(0.237352 -0.0448699 0)
(0.244029 -0.0478948 0)
(0.251155 -0.0512826 0)
(0.259102 -0.055225 0)
(0.267849 -0.058622 0)
(0.27751 -0.0624443 0)
(0.28674 -0.0660445 0)
(0.298655 -0.0693729 0)
(0.30918 -0.0723901 0)
(0.322499 -0.0751396 0)
(0.334647 -0.0771302 0)
(0.348058 -0.078264 0)
(0.362293 -0.0796824 0)
(0.375439 -0.0798399 0)
(0.390412 -0.0800665 0)
(0.404098 -0.0792013 0)
(0.419133 -0.0774497 0)
(0.432509 -0.074979 0)
(0.446892 -0.0711797 0)
(0.460051 -0.066543 0)
(0.472825 -0.0607321 0)
(0.483166 -0.053921 0)
(0.492237 -0.0457303 0)
(0.499796 -0.0361382 0)
(0.506274 -0.0249383 0)
(0.509807 -0.0125652 0)
(0.511306 -0.000273552 0)
(0.510206 0.0133114 0)
(0.506061 0.0262741 0)
(0.499588 0.0388472 0)
(0.491885 0.0511859 0)
(0.480576 0.0637649 0)
(0.466773 0.0750683 0)
(0.449904 0.0840494 0)
(0.431486 0.0906489 0)
(0.411873 0.0949948 0)
(0.393206 0.0973733 0)
(0.374032 0.0984006 0)
(0.356764 0.0987623 0)
(0.338274 0.0984312 0)
(0.321451 0.097322 0)
(0.303205 0.0944471 0)
(0.28836 0.0901431 0)
(0.27333 0.0844376 0)
(0.262204 0.0785818 0)
(0.250641 0.0727376 0)
(0.242325 0.0673871 0)
(0.232754 0.0627342 0)
(0.225343 0.0580035 0)
(0.218536 0.0526142 0)
(0.212487 0.0471462 0)
(0.207239 0.0420396 0)
(0.203457 0.0367645 0)
(0.200379 0.032205 0)
(0.196658 0.0285788 0)
(0.193109 0.0255677 0)
(0.189993 0.0226174 0)
(0.186281 0.0196881 0)
(0.184592 0.0167838 0)
(0.182128 0.0147894 0)
(0.179603 0.0137177 0)
(0.177936 0.0129316 0)
(0.175236 0.0124361 0)
(0.172743 0.0117401 0)
(0.170642 0.010905 0)
(0.167275 0.0101786 0)
(0.165317 0.00843682 0)
(0.163011 0.00665948 0)
(0.160702 0.0042785 0)
(0.159271 0.00222325 0)
(0.157372 0.00177436 0)
(0.156081 0.00148506 0)
(0.152494 0.00113167 0)
(0.150726 0.000125029 0)
(0.147039 -0.00199215 0)
(0.145792 -0.00442245 0)
(0.14353 -0.00760151 0)
(0.143675 -0.0104816 0)
(0.143283 -0.0129274 0)
(0.143209 -0.0159716 0)
(0.143712 -0.0198598 0)
(0.144652 -0.0261624 0)
(0.146328 -0.0321075 0)
(0.15039 -0.0392518 0)
(0.153444 -0.0451342 0)
(0.158604 -0.0499894 0)
(0.165369 -0.0568177 0)
(0.169461 -0.0616173 0)
(0.179595 -0.068863 0)
(0.185621 -0.0727361 0)
(0.195592 -0.0777905 0)
(0.205635 -0.0832086 0)
(0.216611 -0.0881195 0)
(0.228889 -0.0955319 0)
(0.24226 -0.102178 0)
(0.258314 -0.109787 0)
(0.275467 -0.115642 0)
(0.293445 -0.118989 0)
(0.312638 -0.121979 0)
(0.33219 -0.123235 0)
(0.353058 -0.122123 0)
(0.373146 -0.119793 0)
(0.394446 -0.115227 0)
(0.414551 -0.107569 0)
(0.434169 -0.0974362 0)
(0.451769 -0.0846817 0)
(0.46777 -0.0691041 0)
(0.47978 -0.0506596 0)
(0.487889 -0.0311149 0)
(0.491701 -0.0111919 0)
(0.492036 0.0085607 0)
(0.488736 0.0282611 0)
(0.481463 0.0477832 0)
(0.470109 0.0665196 0)
(0.454928 0.083481 0)
(0.436317 0.0979507 0)
(0.416374 0.109156 0)
(0.394783 0.118277 0)
(0.372799 0.124617 0)
(0.350131 0.128943 0)
(0.32819 0.129764 0)
(0.306345 0.127633 0)
(0.287061 0.122601 0)
(0.269782 0.115787 0)
(0.254421 0.108322 0)
(0.240014 0.101109 0)
(0.226446 0.0945775 0)
(0.212731 0.088495 0)
(0.199341 0.0829247 0)
(0.186128 0.0772283 0)
(0.172892 0.0722451 0)
(0.15974 0.0669451 0)
(0.146964 0.0602421 0)
(0.134718 0.0536628 0)
(0.123213 0.0468312 0)
(0.112843 0.0385152 0)
(0.105001 0.0303845 0)
(0.0987862 0.024225 0)
(0.0929219 0.020672 0)
(0.0877623 0.017634 0)
(0.0838192 0.0144586 0)
(0.0815646 0.0125901 0)
(0.0795031 0.0118064 0)
(0.0774851 0.0111778 0)
(0.0758957 0.0105164 0)
(0.074643 0.00948798 0)
(0.0738954 0.00794777 0)
(0.0734872 0.00617251 0)
(0.0735707 0.00416609 0)
(0.0737855 0.00186794 0)
(0.0746056 -0.000364341 0)
(0.0758607 -0.00263646 0)
(0.0773993 -0.00470937 0)
(0.0791688 -0.00643748 0)
(0.081022 -0.00811299 0)
(0.082968 -0.00957994 0)
(0.0849141 -0.0107148 0)
(0.0866689 -0.0121181 0)
(0.0884236 -0.0134548 0)
(0.0900188 -0.0153084 0)
(0.0917543 -0.0176334 0)
(0.0937946 -0.020368 0)
(0.0960316 -0.0240878 0)
(0.0989658 -0.0285278 0)
(0.102905 -0.0335923 0)
(0.107605 -0.0398115 0)
(0.113837 -0.0462178 0)
(0.121139 -0.053741 0)
(0.130306 -0.0610966 0)
(0.141169 -0.0681333 0)
(0.153162 -0.0763724 0)
(0.167185 -0.0833317 0)
(0.182783 -0.0894178 0)
(0.199396 -0.0966994 0)
(0.217704 -0.101328 0)
(0.23679 -0.106911 0)
(0.256901 -0.109556 0)
(0.277544 -0.11068 0)
(0.298759 -0.112878 0)
(0.320003 -0.111555 0)
(0.340842 -0.108496 0)
(0.361653 -0.106221 0)
(0.38128 -0.100914 0)
(0.399926 -0.0940987 0)
(0.418296 -0.0874424 0)
(0.434337 -0.0779044 0)
(0.449381 -0.0680009 0)
(0.461481 -0.0560503 0)
(0.471274 -0.0431644 0)
(0.47904 -0.0296488 0)
(0.483523 -0.0153193 0)
(0.485329 -0.000637199 0)
(0.483895 0.014059 0)
(0.479591 0.0285429 0)
(0.471823 0.0420364 0)
(0.461797 0.0548623 0)
(0.449461 0.0666963 0)
(0.434282 0.0757686 0)
(0.41813 0.0844369 0)
(0.400677 0.091697 0)
(0.381895 0.0953886 0)
(0.363 0.0993836 0)
(0.343744 0.100068 0)
(0.324663 0.101299 0)
(0.305797 0.101413 0)
(0.287568 0.0988263 0)
(0.269863 0.097054 0)
(0.251095 0.0946828 0)
(0.450907 -0.0813993 0)
(0.465353 -0.0709096 0)
(0.4782 -0.0578493 0)
(0.488557 -0.0436443 0)
(0.496221 -0.028504 0)
(0.500544 -0.0125534 0)
(0.501396 0.00371953 0)
(0.499171 0.0200227 0)
(0.493868 0.0360597 0)
(0.484514 0.0506535 0)
(0.473239 0.0647774 0)
(0.459496 0.0779426 0)
(0.442531 0.0879337 0)
(0.424678 0.0979408 0)
(0.404693 0.104282 0)
(0.384232 0.110856 0)
(0.362941 0.116019 0)
(0.340998 0.11721 0)
(0.319098 0.119062 0)
(0.297243 0.119654 0)
(0.275997 0.116747 0)
(0.25518 0.114623 0)
(0.235147 0.111549 0)
(0.216554 0.106008 0)
(0.198683 0.101336 0)
(0.182384 0.0951172 0)
(0.166856 0.0896173 0)
(0.152573 0.0838331 0)
(0.139827 0.0773874 0)
(0.127918 0.0716439 0)
(0.117052 0.065912 0)
(0.107378 0.0600105 0)
(0.0985682 0.0545591 0)
(0.0907612 0.049208 0)
(0.0837275 0.0442148 0)
(0.077511 0.039442 0)
(0.0720778 0.0348798 0)
(0.0673283 0.0306013 0)
(0.0632287 0.0265841 0)
(0.0597241 0.02279 0)
(0.0567531 0.0192197 0)
(0.054293 0.015828 0)
(0.0522995 0.0125984 0)
(0.0507567 0.00950302 0)
(0.0496336 0.00649312 0)
(0.0489219 0.00352543 0)
(0.0486419 0.000609426 0)
(0.0487232 -0.00215336 0)
(0.0492505 -0.00498484 0)
(0.0502329 -0.00768153 0)
(0.0514913 -0.0105065 0)
(0.0532292 -0.0133188 0)
(0.0553765 -0.0164424 0)
(0.0580767 -0.019504 0)
(0.0612333 -0.0224311 0)
(0.0647718 -0.0259106 0)
(0.0689702 -0.0294446 0)
(0.073749 -0.0327551 0)
(0.0791139 -0.0368641 0)
(0.0850732 -0.0406182 0)
(0.091652 -0.0451527 0)
(0.0988047 -0.0495876 0)
(0.106448 -0.0541665 0)
(0.114767 -0.0600804 0)
(0.124443 -0.0656198 0)
(0.134306 -0.0718572 0)
(0.145708 -0.0790599 0)
(0.157624 -0.0861633 0)
(0.172656 -0.0959391 0)
(0.188918 -0.102395 0)
(0.213571 -0.109378 0)
(0.238834 -0.112397 0)
(0.264255 -0.111188 0)
(0.2841 -0.104325 0)
(0.30749 -0.0995791 0)
(0.327798 -0.0952563 0)
(0.350117 -0.0869833 0)
(0.365901 -0.0801987 0)
(0.378356 -0.0743869 0)
(0.394941 -0.0706821 0)
(0.415707 -0.0709666 0)
(0.439043 -0.069413 0)
(0.461211 -0.0681385 0)
(0.484068 -0.0652946 0)
(0.503685 -0.0617426 0)
(0.521929 -0.0568277 0)
(0.536923 -0.048818 0)
(0.548212 -0.0384032 0)
(0.556458 -0.0249813 0)
(0.560883 -0.00940087 0)
(0.562813 0.00685279 0)
(0.560497 0.0240099 0)
(0.556411 0.0401862 0)
(0.547665 0.0553568 0)
(0.536433 0.0686198 0)
(0.521888 0.0795835 0)
(0.506047 0.0894304 0)
(0.488221 0.0974811 0)
(0.468523 0.105011 0)
(0.44752 0.111112 0)
(0.425568 0.115454 0)
(0.403218 0.118051 0)
(0.381582 0.117955 0)
(0.361139 0.116496 0)
(0.340759 0.113104 0)
(0.323066 0.108713 0)
(0.305845 0.103772 0)
(0.289378 0.0984735 0)
(0.274236 0.0931963 0)
(0.259786 0.0876363 0)
(0.245821 0.0822536 0)
(0.233839 0.0771255 0)
(0.221438 0.072198 0)
(0.210886 0.0671513 0)
(0.200273 0.061702 0)
(0.191551 0.0562047 0)
(0.183202 0.0506389 0)
(0.176111 0.0449186 0)
(0.170334 0.0389831 0)
(0.16499 0.0333785 0)
(0.16139 0.0277159 0)
(0.15792 0.0225756 0)
(0.155864 0.0172847 0)
(0.153937 0.0132561 0)
(0.15334 0.00817481 0)
(0.153682 0.00310667 0)
(0.153888 0.000108721 0)
(0.157071 -0.00409579 0)
(0.157716 -0.00739302 0)
(0.162409 -0.0105804 0)
(0.163368 -0.0130942 0)
(0.166252 -0.0153407 0)
(0.169932 -0.0186925 0)
(0.171933 -0.0199133 0)
(0.175881 -0.0235986 0)
(0.182091 -0.0271933 0)
(0.185189 -0.0275848 0)
(0.192925 -0.0288297 0)
(0.195274 -0.0292117 0)
(0.200968 -0.0311375 0)
(0.204469 -0.0324829 0)
(0.210889 -0.0335689 0)
(0.214192 -0.0339327 0)
(0.217613 -0.0344878 0)
(0.223531 -0.0355673 0)
(0.226796 -0.0354636 0)
(0.2331 -0.037839 0)
(0.237961 -0.0399423 0)
(0.244066 -0.0417517 0)
(0.249275 -0.0444196 0)
(0.255414 -0.0474437 0)
(0.262253 -0.05103 0)
(0.269979 -0.0549481 0)
(0.277864 -0.0584641 0)
(0.287642 -0.0622212 0)
(0.295848 -0.0660958 0)
(0.307444 -0.0697212 0)
(0.317093 -0.0730137 0)
(0.329682 -0.0760853 0)
(0.341449 -0.0785079 0)
(0.353965 -0.0803635 0)
(0.36771 -0.0824506 0)
(0.3804 -0.0831654 0)
(0.395331 -0.0845403 0)
(0.409161 -0.0839022 0)
(0.424185 -0.0822609 0)
(0.438184 -0.0798565 0)
(0.452957 -0.0757037 0)
(0.465845 -0.0704711 0)
(0.478471 -0.0637482 0)
(0.490064 -0.0556822 0)
(0.50039 -0.046502 0)
(0.508736 -0.0365461 0)
(0.515127 -0.0247571 0)
(0.518514 -0.012305 0)
(0.52029 0.000541151 0)
(0.519135 0.014225 0)
(0.515612 0.0276971 0)
(0.509986 0.0415381 0)
(0.501771 0.0550025 0)
(0.490068 0.0688411 0)
(0.474907 0.0809247 0)
(0.456074 0.0903686 0)
(0.437091 0.0972284 0)
(0.417161 0.101601 0)
(0.39853 0.103744 0)
(0.379286 0.104047 0)
(0.362516 0.103697 0)
(0.344582 0.102833 0)
(0.329188 0.101185 0)
(0.3125 0.0981936 0)
(0.299393 0.0934227 0)
(0.286129 0.0876337 0)
(0.276312 0.081706 0)
(0.266164 0.0755872 0)
(0.258653 0.0699875 0)
(0.25041 0.0651431 0)
(0.244284 0.0601198 0)
(0.239548 0.0541801 0)
(0.234528 0.0482456 0)
(0.231131 0.0428699 0)
(0.228672 0.0376827 0)
(0.226247 0.0329758 0)
(0.223249 0.0291148 0)
(0.22002 0.0258983 0)
(0.217533 0.0227845 0)
(0.213945 0.0195916 0)
(0.211917 0.0166812 0)
(0.209134 0.0148745 0)
(0.206348 0.01393 0)
(0.204743 0.0133561 0)
(0.202225 0.0130744 0)
(0.200646 0.0123823 0)
(0.19892 0.0119423 0)
(0.195681 0.0112605 0)
(0.193494 0.00951986 0)
(0.191233 0.00801044 0)
(0.188464 0.00548247 0)
(0.186455 0.00320369 0)
(0.183385 0.00293843 0)
(0.181851 0.00287187 0)
(0.177659 0.00275848 0)
(0.175369 0.00201043 0)
(0.171332 0.000307272 0)
(0.169451 -0.00214381 0)
(0.166835 -0.00567543 0)
(0.166111 -0.00893404 0)
(0.165506 -0.0115159 0)
(0.165238 -0.0147908 0)
(0.165937 -0.0189421 0)
(0.167478 -0.0254584 0)
(0.16852 -0.0319753 0)
(0.17262 -0.0392804 0)
(0.174407 -0.0452503 0)
(0.179592 -0.0506601 0)
(0.186226 -0.0572057 0)
(0.189134 -0.0622697 0)
(0.1996 -0.0700586 0)
(0.20424 -0.0736841 0)
(0.214875 -0.0798865 0)
(0.224436 -0.08505 0)
(0.235008 -0.0901383 0)
(0.246905 -0.0977669 0)
(0.259296 -0.104026 0)
(0.274897 -0.111768 0)
(0.291222 -0.117668 0)
(0.309069 -0.121419 0)
(0.327247 -0.124455 0)
(0.345364 -0.125998 0)
(0.365581 -0.12534 0)
(0.384281 -0.123025 0)
(0.404705 -0.118595 0)
(0.423939 -0.110736 0)
(0.443386 -0.100497 0)
(0.460636 -0.087034 0)
(0.476467 -0.0711057 0)
(0.487941 -0.0520926 0)
(0.495921 -0.031812 0)
(0.499624 -0.0112886 0)
(0.499855 0.00910235 0)
(0.496673 0.0292414 0)
(0.489252 0.0492289 0)
(0.477749 0.068243 0)
(0.462076 0.0859489 0)
(0.443162 0.100643 0)
(0.422535 0.11247 0)
(0.40067 0.121268 0)
(0.378792 0.128218 0)
(0.356266 0.132694 0)
(0.334847 0.133996 0)
(0.315317 0.131882 0)
(0.297956 0.126924 0)
(0.281333 0.120626 0)
(0.266913 0.113207 0)
(0.253425 0.106362 0)
(0.240829 0.099935 0)
(0.227589 0.0938294 0)
(0.214503 0.0880055 0)
(0.201159 0.0821045 0)
(0.18747 0.0763188 0)
(0.172862 0.0707731 0)
(0.159229 0.063234 0)
(0.145803 0.0561078 0)
(0.13288 0.0486478 0)
(0.121357 0.0404756 0)
(0.112555 0.0323115 0)
(0.105064 0.0259075 0)
(0.097779 0.0220018 0)
(0.0913986 0.0181711 0)
(0.0862168 0.014421 0)
(0.0828948 0.012368 0)
(0.0799242 0.0118159 0)
(0.0771851 0.0113499 0)
(0.0753129 0.010706 0)
(0.0737777 0.00961678 0)
(0.0728946 0.00796983 0)
(0.0725715 0.00614416 0)
(0.0725837 0.00401929 0)
(0.0729085 0.00168556 0)
(0.0738482 -0.000571017 0)
(0.0752233 -0.00291632 0)
(0.076866 -0.00503188 0)
(0.0787256 -0.00679242 0)
(0.0806557 -0.00849301 0)
(0.082658 -0.00995872 0)
(0.084634 -0.0110791 0)
(0.0863818 -0.0124715 0)
(0.0880987 -0.0137827 0)
(0.0896051 -0.0156334 0)
(0.0912281 -0.0179725 0)
(0.0931424 -0.0207668 0)
(0.0952136 -0.0245786 0)
(0.0979721 -0.0291487 0)
(0.101766 -0.0344314 0)
(0.106315 -0.0408794 0)
(0.112436 -0.0475603 0)
(0.119636 -0.0553886 0)
(0.128766 -0.0630519 0)
(0.139638 -0.0703941 0)
(0.151642 -0.0789896 0)
(0.165742 -0.0862335 0)
(0.18146 -0.0926087 0)
(0.198209 -0.100211 0)
(0.216723 -0.105053 0)
(0.23602 -0.110874 0)
(0.256352 -0.113614 0)
(0.277235 -0.114833 0)
(0.298746 -0.117161 0)
(0.320283 -0.115783 0)
(0.341398 -0.112621 0)
(0.362499 -0.110254 0)
(0.38237 -0.104789 0)
(0.401283 -0.0977563 0)
(0.419993 -0.090889 0)
(0.436305 -0.0809931 0)
(0.451649 -0.0707127 0)
(0.463958 -0.0583066 0)
(0.473935 -0.0449181 0)
(0.481886 -0.030863 0)
(0.486463 -0.0159515 0)
(0.488321 -0.0006599 0)
(0.486854 0.0146499 0)
(0.482463 0.0297433 0)
(0.474497 0.0438049 0)
(0.46424 0.057162 0)
(0.451633 0.0694737 0)
(0.436095 0.0788781 0)
(0.419616 0.0878617 0)
(0.40183 0.0953682 0)
(0.382704 0.0991283 0)
(0.363512 0.103224 0)
(0.34398 0.103863 0)
(0.324653 0.105083 0)
(0.305567 0.105146 0)
(0.287169 0.10239 0)
(0.269323 0.100489 0)
(0.250437 0.0979878 0)
(0.453008 -0.0846629 0)
(0.467797 -0.0737953 0)
(0.480929 -0.0602194 0)
(0.491526 -0.0454458 0)
(0.499387 -0.0296962 0)
(0.50382 -0.0130914 0)
(0.504695 0.003854 0)
(0.502431 0.0208299 0)
(0.49702 0.037527 0)
(0.487418 0.0526969 0)
(0.475913 0.0673659 0)
(0.461904 0.0810445 0)
(0.444569 0.0913815 0)
(0.426394 0.101751 0)
(0.406036 0.108276 0)
(0.385245 0.115067 0)
(0.363625 0.120379 0)
(0.341363 0.121551 0)
(0.319169 0.12343 0)
(0.297033 0.124005 0)
(0.275548 0.120932 0)
(0.254509 0.118672 0)
(0.234281 0.115446 0)
(0.215566 0.109637 0)
(0.197587 0.10475 0)
(0.181237 0.0982789 0)
(0.165647 0.0925469 0)
(0.151335 0.0865215 0)
(0.138618 0.0798199 0)
(0.12673 0.0738855 0)
(0.115878 0.0679567 0)
(0.106243 0.0618389 0)
(0.0974792 0.0562028 0)
(0.0897248 0.0506758 0)
(0.082739 0.04552 0)
(0.0765718 0.0405932 0)
(0.0711907 0.0358851 0)
(0.0664939 0.0314716 0)
(0.0624451 0.0273346 0)
(0.058986 0.0234288 0)
(0.0560549 0.0197563 0)
(0.0536294 0.0162694 0)
(0.0516648 0.0129511 0)
(0.0501449 0.00976908 0)
(0.0490352 0.00668361 0)
(0.0483315 0.00364844 0)
(0.0480772 0.000631341 0)
(0.0481688 -0.0022221 0)
(0.0486944 -0.0051315 0)
(0.0496872 -0.00793112 0)
(0.0509309 -0.0108327 0)
(0.0526468 -0.0137289 0)
(0.0547739 -0.0169592 0)
(0.0574577 -0.0200837 0)
(0.0605943 -0.0230904 0)
(0.0640958 -0.0266868 0)
(0.0682474 -0.0302942 0)
(0.073017 -0.0337326 0)
(0.0783564 -0.0379734 0)
(0.0843096 -0.041875 0)
(0.0908761 -0.0465689 0)
(0.0979884 -0.0510776 0)
(0.105558 -0.0558111 0)
(0.113858 -0.0619547 0)
(0.123543 -0.0675523 0)
(0.133305 -0.0739483 0)
(0.144478 -0.0812614 0)
(0.156065 -0.0886284 0)
(0.170976 -0.0991514 0)
(0.187144 -0.105907 0)
(0.212028 -0.113412 0)
(0.237688 -0.116792 0)
(0.264151 -0.116212 0)
(0.284216 -0.109197 0)
(0.308107 -0.10394 0)
(0.329203 -0.0996105 0)
(0.351965 -0.0907038 0)
(0.368824 -0.0854194 0)
(0.382092 -0.0788315 0)
(0.39859 -0.0747959 0)
(0.420345 -0.0754645 0)
(0.445526 -0.0740393 0)
(0.469619 -0.0726764 0)
(0.493173 -0.0693009 0)
(0.512848 -0.0648965 0)
(0.531729 -0.0589012 0)
(0.546974 -0.0504062 0)
(0.55918 -0.0397858 0)
(0.567723 -0.0259882 0)
(0.57255 -0.00981695 0)
(0.574475 0.00741804 0)
(0.572049 0.0251744 0)
(0.567703 0.0422997 0)
(0.558943 0.0579084 0)
(0.548185 0.0715675 0)
(0.534138 0.0828928 0)
(0.518296 0.0930542 0)
(0.50028 0.101216 0)
(0.479764 0.108497 0)
(0.45834 0.114218 0)
(0.435305 0.118065 0)
(0.412686 0.120119 0)
(0.390255 0.119515 0)
(0.369556 0.117435 0)
(0.349112 0.11351 0)
(0.33123 0.108751 0)
(0.313899 0.10338 0)
(0.297203 0.0978943 0)
(0.282147 0.0924479 0)
(0.267199 0.0867927 0)
(0.253211 0.0812463 0)
(0.241046 0.0761777 0)
(0.228632 0.0713673 0)
(0.217883 0.0664575 0)
(0.207628 0.0612927 0)
(0.199232 0.0558012 0)
(0.191943 0.0504193 0)
(0.185773 0.0449249 0)
(0.181592 0.0389572 0)
(0.176859 0.0334841 0)
(0.175016 0.0278446 0)
(0.171941 0.0227762 0)
(0.171003 0.0173604 0)
(0.169119 0.0131917 0)
(0.170519 0.00819047 0)
(0.17071 0.00309871 0)
(0.171741 -0.000494807 0)
(0.176597 -0.00471818 0)
(0.178045 -0.00797276 0)
(0.183393 -0.0110565 0)
(0.185085 -0.0132401 0)
(0.187714 -0.0156062 0)
(0.191317 -0.0191078 0)
(0.193187 -0.0207533 0)
(0.198252 -0.0243354 0)
(0.203699 -0.0277619 0)
(0.20628 -0.0285303 0)
(0.213812 -0.0296413 0)
(0.216511 -0.0298948 0)
(0.222858 -0.0316898 0)
(0.225908 -0.0332801 0)
(0.232284 -0.0349818 0)
(0.233852 -0.0354155 0)
(0.236974 -0.0367949 0)
(0.24179 -0.0381369 0)
(0.244811 -0.0385565 0)
(0.250944 -0.0412461 0)
(0.25526 -0.0434457 0)
(0.260791 -0.0454501 0)
(0.265321 -0.0482469 0)
(0.270652 -0.0512838 0)
(0.276402 -0.0548417 0)
(0.283388 -0.0588698 0)
(0.290099 -0.062743 0)
(0.299575 -0.0663583 0)
(0.306854 -0.070179 0)
(0.318249 -0.073642 0)
(0.327729 -0.0767162 0)
(0.339949 -0.0795201 0)
(0.351473 -0.0812615 0)
(0.363827 -0.0825777 0)
(0.377321 -0.0844898 0)
(0.389234 -0.0844203 0)
(0.403775 -0.0852665 0)
(0.416451 -0.0847253 0)
(0.431691 -0.0829784 0)
(0.445506 -0.0805447 0)
(0.459428 -0.0763724 0)
(0.472259 -0.0716834 0)
(0.484602 -0.0655029 0)
(0.49626 -0.0580232 0)
(0.506969 -0.0488297 0)
(0.516908 -0.0381975 0)
(0.524249 -0.026128 0)
(0.528418 -0.012875 0)
(0.530266 0.000551679 0)
(0.529831 0.015332 0)
(0.525912 0.0295608 0)
(0.519318 0.0433994 0)
(0.510766 0.0564606 0)
(0.498063 0.0708258 0)
(0.482232 0.0835597 0)
(0.464273 0.0933845 0)
(0.447064 0.0999856 0)
(0.428028 0.103949 0)
(0.410297 0.10587 0)
(0.391244 0.106272 0)
(0.375755 0.106416 0)
(0.358534 0.105678 0)
(0.344271 0.104543 0)
(0.328691 0.101125 0)
(0.316447 0.0962007 0)
(0.304711 0.0895372 0)
(0.295698 0.082941 0)
(0.286547 0.0763936 0)
(0.280352 0.0705343 0)
(0.273623 0.0652864 0)
(0.269591 0.0598683 0)
(0.268469 0.0541519 0)
(0.265551 0.0483011 0)
(0.264293 0.04262 0)
(0.264183 0.036971 0)
(0.26287 0.0325623 0)
(0.260741 0.0293244 0)
(0.25764 0.0265458 0)
(0.255197 0.0236461 0)
(0.251847 0.0203052 0)
(0.249517 0.0173139 0)
(0.246558 0.0154487 0)
(0.24396 0.0141554 0)
(0.242641 0.0132212 0)
(0.240588 0.0126758 0)
(0.239873 0.0118961 0)
(0.238537 0.0112762 0)
(0.235583 0.0105839 0)
(0.232827 0.00883158 0)
(0.230155 0.00720368 0)
(0.22706 0.00499325 0)
(0.223808 0.00301486 0)
(0.219934 0.00268686 0)
(0.218178 0.00248039 0)
(0.213559 0.00217417 0)
(0.210429 0.00103297 0)
(0.206322 -0.000845861 0)
(0.203595 -0.00383896 0)
(0.200004 -0.0077292 0)
(0.197881 -0.0110649 0)
(0.197256 -0.013641 0)
(0.196611 -0.0164413 0)
(0.197588 -0.0201463 0)
(0.1998 -0.0263589 0)
(0.199493 -0.0327156 0)
(0.203495 -0.039884 0)
(0.203817 -0.0458269 0)
(0.208569 -0.0515531 0)
(0.21389 -0.0580064 0)
(0.216359 -0.0634877 0)
(0.226565 -0.0715842 0)
(0.230098 -0.0749793 0)
(0.239968 -0.0815949 0)
(0.247799 -0.0868745 0)
(0.258254 -0.0923468 0)
(0.269793 -0.100751 0)
(0.282005 -0.107493 0)
(0.297674 -0.116512 0)
(0.312768 -0.122704 0)
(0.330384 -0.126205 0)
(0.347219 -0.12885 0)
(0.36381 -0.130289 0)
(0.382639 -0.129105 0)
(0.398834 -0.126865 0)
(0.417739 -0.122457 0)
(0.435417 -0.114802 0)
(0.453576 -0.104409 0)
(0.469188 -0.0906671 0)
(0.48434 -0.0737698 0)
(0.495008 -0.0538925 0)
(0.502857 -0.032773 0)
(0.506186 -0.0115899 0)
(0.506582 0.0091288 0)
(0.503362 0.0299305 0)
(0.496032 0.051323 0)
(0.484717 0.0718669 0)
(0.469133 0.0903226 0)
(0.450959 0.106076 0)
(0.431449 0.118236 0)
(0.410938 0.127493 0)
(0.391148 0.134084 0)
(0.371143 0.138172 0)
(0.352305 0.138715 0)
(0.335781 0.136124 0)
(0.32019 0.13035 0)
(0.305179 0.122819 0)
(0.290969 0.114731 0)
(0.275953 0.106979 0)
(0.261307 0.100183 0)
(0.246734 0.0939156 0)
(0.231262 0.0882013 0)
(0.217479 0.082398 0)
(0.202783 0.077581 0)
(0.188139 0.0724259 0)
(0.174248 0.0660163 0)
(0.160087 0.0592375 0)
(0.146923 0.0521293 0)
(0.134864 0.0428142 0)
(0.124425 0.0336809 0)
(0.114662 0.0272201 0)
(0.104865 0.0235565 0)
(0.0966579 0.0202846 0)
(0.0902538 0.0164369 0)
(0.0857731 0.0140329 0)
(0.0815736 0.0130673 0)
(0.0777847 0.0120873 0)
(0.0751394 0.0111212 0)
(0.0732321 0.00983931 0)
(0.0720721 0.00802565 0)
(0.0716504 0.00605722 0)
(0.0716993 0.00387797 0)
(0.0720811 0.00145812 0)
(0.0731093 -0.000812412 0)
(0.0745841 -0.00322185 0)
(0.076324 -0.00537284 0)
(0.0782742 -0.00716693 0)
(0.0802854 -0.00888955 0)
(0.0823463 -0.0103431 0)
(0.0843551 -0.0114462 0)
(0.0860978 -0.0128192 0)
(0.0877773 -0.014099 0)
(0.0891907 -0.0159402 0)
(0.0906933 -0.0182768 0)
(0.0924747 -0.0211368 0)
(0.0943732 -0.0250375 0)
(0.0969416 -0.0297268 0)
(0.100582 -0.0352457 0)
(0.104973 -0.04192 0)
(0.110977 -0.0488882 0)
(0.118071 -0.0570244 0)
(0.127162 -0.0649985 0)
(0.138041 -0.0726582 0)
(0.150058 -0.0816196 0)
(0.164236 -0.0891478 0)
(0.180078 -0.0958274 0)
(0.196968 -0.103757 0)
(0.215699 -0.108822 0)
(0.235219 -0.114886 0)
(0.255776 -0.117712 0)
(0.276904 -0.119041 0)
(0.298729 -0.121508 0)
(0.320571 -0.120067 0)
(0.341976 -0.116807 0)
(0.363374 -0.114333 0)
(0.38349 -0.10872 0)
(0.402682 -0.101474 0)
(0.42175 -0.0943978 0)
(0.438348 -0.084139 0)
(0.454004 -0.0734729 0)
(0.466528 -0.0606075 0)
(0.476699 -0.046709 0)
(0.484845 -0.032104 0)
(0.489523 -0.0165991 0)
(0.491437 -0.000683927 0)
(0.489935 0.0152528 0)
(0.485455 0.0309717 0)
(0.477282 0.0456163 0)
(0.46678 0.0595167 0)
(0.453888 0.0723152 0)
(0.437973 0.0820557 0)
(0.421151 0.0913568 0)
(0.403016 0.0991094 0)
(0.383532 0.10293 0)
(0.36403 0.107123 0)
(0.344212 0.107709 0)
(0.324631 0.108913 0)
(0.305315 0.108921 0)
(0.286742 0.105985 0)
(0.268753 0.103946 0)
(0.249747 0.101312 0)
(0.455186 -0.0879975 0)
(0.470333 -0.0767487 0)
(0.483764 -0.0626459 0)
(0.494614 -0.0472901 0)
(0.50268 -0.0309195 0)
(0.507231 -0.0136423 0)
(0.508129 0.00399593 0)
(0.505823 0.021656 0)
(0.500298 0.0390304 0)
(0.490435 0.0547885 0)
(0.47869 0.0700088 0)
(0.464401 0.0842137 0)
(0.446678 0.0948966 0)
(0.428166 0.105635 0)
(0.407422 0.112336 0)
(0.386286 0.119347 0)
(0.364324 0.124807 0)
(0.341731 0.125952 0)
(0.319233 0.127856 0)
(0.296804 0.128409 0)
(0.275072 0.125165 0)
(0.253804 0.12276 0)
(0.233373 0.119376 0)
(0.214531 0.113282 0)
(0.196445 0.108172 0)
(0.180043 0.101455 0)
(0.164388 0.0954959 0)
(0.150045 0.0892314 0)
(0.137364 0.0822688 0)
(0.125504 0.0761408 0)
(0.114663 0.0699988 0)
(0.105069 0.0636426 0)
(0.0963563 0.0578127 0)
(0.0886569 0.052105 0)
(0.081721 0.0467848 0)
(0.0756047 0.041705 0)
(0.0702774 0.0368524 0)
(0.0656357 0.0323044 0)
(0.0616398 0.0280515 0)
(0.0582278 0.0240349 0)
(0.0553382 0.0202607 0)
(0.0529483 0.0166778 0)
(0.0510133 0.0132696 0)
(0.0495182 0.00999518 0)
(0.0484257 0.00681222 0)
(0.0477251 0.00368228 0)
(0.0474862 0.000511738 0)
(0.0475878 -0.00233052 0)
(0.0481113 -0.0052676 0)
(0.0491137 -0.00817209 0)
(0.050337 -0.0111499 0)
(0.0520327 -0.0141369 0)
(0.054125 -0.0174701 0)
(0.0567683 -0.0206441 0)
(0.0599062 -0.023728 0)
(0.063356 -0.0274402 0)
(0.0674276 -0.0311009 0)
(0.0722356 -0.0346814 0)
(0.0775214 -0.039048 0)
(0.0835021 -0.0431336 0)
(0.0900403 -0.0480113 0)
(0.0970448 -0.0525787 0)
(0.104576 -0.0574818 0)
(0.112893 -0.0638605 0)
(0.122533 -0.0694949 0)
(0.132312 -0.0760253 0)
(0.143147 -0.0834464 0)
(0.154432 -0.09103 0)
(0.16925 -0.102328 0)
(0.185264 -0.109578 0)
(0.210211 -0.117368 0)
(0.236555 -0.121404 0)
(0.263797 -0.121011 0)
(0.284068 -0.114348 0)
(0.308433 -0.108575 0)
(0.329942 -0.104007 0)
(0.353292 -0.0947938 0)
(0.371421 -0.0904493 0)
(0.385981 -0.0839246 0)
(0.402522 -0.0793806 0)
(0.42538 -0.0804602 0)
(0.452143 -0.0789313 0)
(0.476543 -0.0770156 0)
(0.501036 -0.0730193 0)
(0.521928 -0.0684584 0)
(0.542667 -0.062394 0)
(0.559631 -0.0533196 0)
(0.573004 -0.0415957 0)
(0.581519 -0.0267666 0)
(0.585279 -0.00992169 0)
(0.585813 0.00776588 0)
(0.582032 0.0261567 0)
(0.576477 0.0434998 0)
(0.567441 0.059835 0)
(0.557277 0.0739901 0)
(0.5435 0.0855934 0)
(0.527448 0.0959708 0)
(0.50863 0.104349 0)
(0.48706 0.112169 0)
(0.465203 0.118697 0)
(0.440727 0.122807 0)
(0.417329 0.12538 0)
(0.39431 0.125073 0)
(0.373436 0.123029 0)
(0.353087 0.119234 0)
(0.335342 0.114535 0)
(0.318543 0.109068 0)
(0.302237 0.103607 0)
(0.28809 0.0982573 0)
(0.273756 0.0924102 0)
(0.260844 0.0867125 0)
(0.249413 0.0816334 0)
(0.238403 0.0766305 0)
(0.228081 0.0713418 0)
(0.219312 0.0656994 0)
(0.212328 0.0596225 0)
(0.2062 0.053399 0)
(0.202463 0.0470955 0)
(0.200763 0.0405628 0)
(0.197238 0.0344313 0)
(0.197553 0.0283626 0)
(0.195379 0.0229943 0)
(0.195729 0.0174611 0)
(0.194414 0.0129208 0)
(0.197583 0.00773019 0)
(0.198973 0.00275115 0)
(0.200875 -0.00144966 0)
(0.207678 -0.00590274 0)
(0.210289 -0.00946454 0)
(0.216396 -0.0124523 0)
(0.218731 -0.0145887 0)
(0.221967 -0.0169596 0)
(0.224185 -0.0199472 0)
(0.226577 -0.0223595 0)
(0.233675 -0.0258028 0)
(0.235261 -0.0285703 0)
(0.23584 -0.0299583 0)
(0.24238 -0.0312812 0)
(0.246736 -0.0315949 0)
(0.256228 -0.0329225 0)
(0.259172 -0.0334355 0)
(0.264317 -0.0343434 0)
(0.264863 -0.0340852 0)
(0.267019 -0.0348819 0)
(0.271063 -0.0360264 0)
(0.274107 -0.0363296 0)
(0.280186 -0.0390583 0)
(0.283169 -0.0412507 0)
(0.287528 -0.0435221 0)
(0.290882 -0.046415 0)
(0.294589 -0.0499126 0)
(0.298468 -0.0537511 0)
(0.303656 -0.0580205 0)
(0.308356 -0.0625981 0)
(0.316163 -0.0664502 0)
(0.322048 -0.070593 0)
(0.331654 -0.0745877 0)
(0.340344 -0.0783241 0)
(0.351111 -0.0816169 0)
(0.361765 -0.0840749 0)
(0.37315 -0.0857101 0)
(0.386708 -0.0876757 0)
(0.398394 -0.088612 0)
(0.413853 -0.0902728 0)
(0.427174 -0.0889857 0)
(0.441964 -0.0874027 0)
(0.456285 -0.0848425 0)
(0.470045 -0.0802915 0)
(0.483698 -0.0754955 0)
(0.496632 -0.0684235 0)
(0.508054 -0.0603236 0)
(0.517907 -0.0514003 0)
(0.526429 -0.0402312 0)
(0.533533 -0.0278221 0)
(0.537176 -0.0142564 0)
(0.538351 -0.000578973 0)
(0.537063 0.0138087 0)
(0.532736 0.0285064 0)
(0.526033 0.0436532 0)
(0.518039 0.0572065 0)
(0.507697 0.0729841 0)
(0.494233 0.0852644 0)
(0.477272 0.0952718 0)
(0.459809 0.102443 0)
(0.439785 0.106965 0)
(0.42157 0.109273 0)
(0.40186 0.109442 0)
(0.386917 0.109 0)
(0.369775 0.10814 0)
(0.356264 0.106054 0)
(0.341611 0.102351 0)
(0.331663 0.0967657 0)
(0.323259 0.0900015 0)
(0.317846 0.0834207 0)
(0.313655 0.0768973 0)
(0.312226 0.0712096 0)
(0.311631 0.0663941 0)
(0.31292 0.0610042 0)
(0.31584 0.0551839 0)
(0.316806 0.0497062 0)
(0.319047 0.0442848 0)
(0.318058 0.0395744 0)
(0.312864 0.035214 0)
(0.307898 0.0315859 0)
(0.303901 0.0280999 0)
(0.302043 0.0247847 0)
(0.299727 0.0215758 0)
(0.297669 0.018556 0)
(0.294706 0.016704 0)
(0.292356 0.0154961 0)
(0.291752 0.0147777 0)
(0.290822 0.0142735 0)
(0.291167 0.0136293 0)
(0.291172 0.0136723 0)
(0.289694 0.0129772 0)
(0.28695 0.011215 0)
(0.284059 0.00947702 0)
(0.28019 0.00652128 0)
(0.273149 0.00393645 0)
(0.266252 0.00378101 0)
(0.263643 0.00388184 0)
(0.258333 0.00377702 0)
(0.255659 0.0031052 0)
(0.252238 0.00123732 0)
(0.247181 -0.00123872 0)
(0.243388 -0.00483697 0)
(0.237792 -0.00871606 0)
(0.235536 -0.0119794 0)
(0.236004 -0.0159493 0)
(0.237685 -0.0207038 0)
(0.240526 -0.027171 0)
(0.238759 -0.0340091 0)
(0.241616 -0.0416289 0)
(0.239662 -0.0476143 0)
(0.242485 -0.0540692 0)
(0.245674 -0.0603211 0)
(0.247507 -0.066585 0)
(0.256306 -0.0743731 0)
(0.258575 -0.0776699 0)
(0.266745 -0.0846699 0)
(0.272281 -0.0892529 0)
(0.282858 -0.0958543 0)
(0.29343 -0.103745 0)
(0.305651 -0.109714 0)
(0.322581 -0.118741 0)
(0.33692 -0.124927 0)
(0.355836 -0.129096 0)
(0.372572 -0.131898 0)
(0.388727 -0.133698 0)
(0.407382 -0.13267 0)
(0.421557 -0.130453 0)
(0.439298 -0.125831 0)
(0.454431 -0.117542 0)
(0.470202 -0.106852 0)
(0.483454 -0.0933721 0)
(0.497737 -0.0765088 0)
(0.507239 -0.0561499 0)
(0.515298 -0.0339795 0)
(0.518352 -0.0114908 0)
(0.519823 0.0104675 0)
(0.517053 0.0316012 0)
(0.510713 0.0533726 0)
(0.50072 0.0740251 0)
(0.486255 0.0928414 0)
(0.470461 0.10836 0)
(0.452745 0.1202 0)
(0.431598 0.128911 0)
(0.411931 0.135795 0)
(0.390879 0.140261 0)
(0.370713 0.14093 0)
(0.352844 0.138561 0)
(0.33779 0.133019 0)
(0.323872 0.126195 0)
(0.313191 0.118175 0)
(0.302833 0.111037 0)
(0.293162 0.104642 0)
(0.280425 0.0988768 0)
(0.26826 0.0930908 0)
(0.253758 0.0872404 0)
(0.239121 0.0821635 0)
(0.221024 0.0767079 0)
(0.20371 0.0683819 0)
(0.185515 0.0616347 0)
(0.166741 0.0538398 0)
(0.15095 0.0450235 0)
(0.138369 0.036637 0)
(0.126956 0.0301024 0)
(0.115401 0.025672 0)
(0.105619 0.0208611 0)
(0.0971302 0.0162643 0)
(0.0904508 0.0137864 0)
(0.0842113 0.0131858 0)
(0.0790204 0.0124496 0)
(0.0754988 0.0114535 0)
(0.0729188 0.0100743 0)
(0.0714208 0.00812165 0)
(0.0708201 0.00605613 0)
(0.0707838 0.00375939 0)
(0.0712506 0.00127752 0)
(0.072371 -0.00105057 0)
(0.0739367 -0.00353856 0)
(0.0757627 -0.00571529 0)
(0.0778101 -0.00753944 0)
(0.0799088 -0.00928826 0)
(0.0820282 -0.0107206 0)
(0.084076 -0.0118133 0)
(0.0858147 -0.0131585 0)
(0.0874591 -0.014409 0)
(0.0887747 -0.0162362 0)
(0.0901454 -0.0185469 0)
(0.0917883 -0.0214835 0)
(0.0935085 -0.0254704 0)
(0.0958699 -0.0302619 0)
(0.0993495 -0.036038 0)
(0.103575 -0.0429336 0)
(0.109455 -0.0502044 0)
(0.11644 -0.0586489 0)
(0.125488 -0.0669377 0)
(0.136375 -0.07493 0)
(0.148408 -0.0842669 0)
(0.162664 -0.0920759 0)
(0.178632 -0.0990781 0)
(0.195673 -0.107339 0)
(0.21463 -0.112639 0)
(0.234389 -0.118948 0)
(0.255172 -0.121848 0)
(0.276549 -0.123309 0)
(0.298708 -0.125919 0)
(0.320868 -0.124406 0)
(0.342576 -0.121058 0)
(0.364278 -0.118457 0)
(0.384639 -0.112709 0)
(0.404122 -0.105256 0)
(0.423566 -0.097972 0)
(0.440465 -0.0873449 0)
(0.456445 -0.0762826 0)
(0.469193 -0.0629554 0)
(0.479569 -0.0485395 0)
(0.48792 -0.0333733 0)
(0.492704 -0.0172631 0)
(0.494679 -0.000709607 0)
(0.493143 0.0158674 0)
(0.488571 0.0322297 0)
(0.480181 0.0474732 0)
(0.469421 0.0619295 0)
(0.456229 0.0752241 0)
(0.439918 0.0853046 0)
(0.422735 0.0949258 0)
(0.404235 0.102924 0)
(0.384376 0.106797 0)
(0.364555 0.111084 0)
(0.344439 0.111609 0)
(0.324595 0.11279 0)
(0.30504 0.11274 0)
(0.286284 0.109613 0)
(0.268151 0.107424 0)
(0.249022 0.104657 0)
(0.457439 -0.0914065 0)
(0.472963 -0.0797733 0)
(0.48671 -0.0651315 0)
(0.497821 -0.0491802 0)
(0.506105 -0.0321749 0)
(0.510779 -0.0142052 0)
(0.511701 0.00414964 0)
(0.509352 0.0225015 0)
(0.503706 0.0405723 0)
(0.493566 0.0569317 0)
(0.481569 0.072708 0)
(0.466989 0.0874546 0)
(0.448861 0.0984826 0)
(0.429995 0.109598 0)
(0.408849 0.116463 0)
(0.387355 0.1237 0)
(0.365035 0.129304 0)
(0.342102 0.130414 0)
(0.319288 0.132343 0)
(0.296556 0.132872 0)
(0.274566 0.129442 0)
(0.253062 0.126876 0)
(0.23242 0.123347 0)
(0.213444 0.116977 0)
(0.195252 0.111648 0)
(0.178797 0.104658 0)
(0.163075 0.0983923 0)
(0.14871 0.091823 0)
(0.136076 0.0845771 0)
(0.12424 0.0782775 0)
(0.1134 0.0719711 0)
(0.103846 0.0654201 0)
(0.0951868 0.0594337 0)
(0.0875438 0.0535712 0)
(0.0806587 0.0481035 0)
(0.0745941 0.0428797 0)
(0.0693216 0.0378835 0)
(0.0647389 0.0332064 0)
(0.0608007 0.0288353 0)
(0.0574382 0.0247113 0)
(0.0545936 0.0208434 0)
(0.052243 0.017176 0)
(0.0503398 0.0136903 0)
(0.0488654 0.0103424 0)
(0.0477757 0.00710412 0)
(0.0470524 0.00395492 0)
(0.0468254 0.000772843 0)
(0.0469196 -0.00224796 0)
(0.0473919 -0.00530758 0)
(0.0483858 -0.00835758 0)
(0.0495792 -0.0113903 0)
(0.0512892 -0.0145019 0)
(0.053293 -0.0178993 0)
(0.0558364 -0.0210841 0)
(0.0590857 -0.0242605 0)
(0.0624144 -0.0280297 0)
(0.0663358 -0.0316955 0)
(0.0713735 -0.0354558 0)
(0.0764863 -0.0399042 0)
(0.0826107 -0.0442185 0)
(0.0890229 -0.0493177 0)
(0.0957513 -0.0539544 0)
(0.103446 -0.0590803 0)
(0.11175 -0.065715 0)
(0.121331 -0.0713783 0)
(0.131221 -0.078044 0)
(0.141592 -0.0854994 0)
(0.152767 -0.0933418 0)
(0.167469 -0.105521 0)
(0.183335 -0.113316 0)
(0.208504 -0.121368 0)
(0.235355 -0.12593 0)
(0.263397 -0.125759 0)
(0.284037 -0.119954 0)
(0.309151 -0.113317 0)
(0.330694 -0.108489 0)
(0.354634 -0.0988428 0)
(0.373898 -0.0953732 0)
(0.389621 -0.089494 0)
(0.406865 -0.0840688 0)
(0.430503 -0.0855379 0)
(0.458564 -0.0838818 0)
(0.484868 -0.0817502 0)
(0.511606 -0.077438 0)
(0.534535 -0.0723824 0)
(0.556403 -0.0654742 0)
(0.57259 -0.0556446 0)
(0.584481 -0.0431106 0)
(0.591865 -0.0274908 0)
(0.595321 -0.00986164 0)
(0.595445 0.0086467 0)
(0.591526 0.0272934 0)
(0.586192 0.0450675 0)
(0.576832 0.0616243 0)
(0.566293 0.0760617 0)
(0.552383 0.0880725 0)
(0.536363 0.0995299 0)
(0.518068 0.108689 0)
(0.496516 0.116895 0)
(0.475026 0.123915 0)
(0.450353 0.127783 0)
(0.426924 0.130195 0)
(0.403786 0.129371 0)
(0.382391 0.126637 0)
(0.362062 0.122454 0)
(0.344805 0.117303 0)
(0.329685 0.1114 0)
(0.314894 0.105665 0)
(0.303932 0.100054 0)
(0.292174 0.093914 0)
(0.282424 0.087879 0)
(0.272955 0.0824304 0)
(0.265072 0.0771636 0)
(0.255666 0.0713032 0)
(0.248949 0.0651431 0)
(0.243834 0.0585301 0)
(0.238277 0.0520817 0)
(0.235734 0.0456994 0)
(0.233877 0.0393447 0)
(0.230577 0.0332934 0)
(0.230283 0.0274559 0)
(0.227648 0.0220491 0)
(0.227642 0.0167302 0)
(0.225646 0.0117869 0)
(0.228208 0.00693078 0)
(0.22905 0.0020206 0)
(0.230501 -0.00296179 0)
(0.235328 -0.00745109 0)
(0.237889 -0.0112256 0)
(0.24292 -0.0143412 0)
(0.245151 -0.0167082 0)
(0.249059 -0.0188918 0)
(0.252015 -0.0215736 0)
(0.255581 -0.0245475 0)
(0.263384 -0.0278057 0)
(0.270849 -0.0298587 0)
(0.273648 -0.030757 0)
(0.280347 -0.0319364 0)
(0.288044 -0.0341248 0)
(0.296288 -0.0357331 0)
(0.298428 -0.0362893 0)
(0.303537 -0.0370999 0)
(0.305526 -0.0376728 0)
(0.310653 -0.0385249 0)
(0.31479 -0.0398326 0)
(0.319768 -0.0403073 0)
(0.326132 -0.0421534 0)
(0.327174 -0.0436476 0)
(0.329714 -0.0454553 0)
(0.331105 -0.0478745 0)
(0.332469 -0.0511709 0)
(0.333803 -0.0549616 0)
(0.336455 -0.0593671 0)
(0.338618 -0.0642721 0)
(0.343939 -0.0681448 0)
(0.348033 -0.0727491 0)
(0.355284 -0.0763304 0)
(0.361832 -0.0801199 0)
(0.370164 -0.0835821 0)
(0.378262 -0.0857187 0)
(0.386893 -0.0880349 0)
(0.398111 -0.0899705 0)
(0.407385 -0.0899734 0)
(0.422264 -0.0927023 0)
(0.434974 -0.0914579 0)
(0.449388 -0.090264 0)
(0.463802 -0.0870077 0)
(0.478705 -0.082602 0)
(0.492959 -0.0784159 0)
(0.506306 -0.070847 0)
(0.518461 -0.0625271 0)
(0.527754 -0.0526131 0)
(0.536825 -0.0409987 0)
(0.543275 -0.0286728 0)
(0.546434 -0.0140639 0)
(0.549428 0.000320604 0)
(0.548718 0.0157602 0)
(0.545063 0.0311106 0)
(0.53948 0.0459164 0)
(0.531783 0.0591628 0)
(0.521528 0.0757799 0)
(0.507797 0.089778 0)
(0.489049 0.100753 0)
(0.469773 0.107586 0)
(0.448839 0.111836 0)
(0.430786 0.113619 0)
(0.41196 0.113119 0)
(0.398472 0.112544 0)
(0.383294 0.111067 0)
(0.37343 0.10982 0)
(0.364454 0.105522 0)
(0.364164 0.0999799 0)
(0.367239 0.0930306 0)
(0.371268 0.0861974 0)
(0.373953 0.0792962 0)
(0.374045 0.0725311 0)
(0.372956 0.0657716 0)
(0.371723 0.0583951 0)
(0.370369 0.0511141 0)
(0.367781 0.0439877 0)
(0.363812 0.0378502 0)
(0.362087 0.0329293 0)
(0.359481 0.0289537 0)
(0.357465 0.0254661 0)
(0.354642 0.0224655 0)
(0.354218 0.0195256 0)
(0.353202 0.0165559 0)
(0.35316 0.0143806 0)
(0.352209 0.0127523 0)
(0.351738 0.0114382 0)
(0.35309 0.010558 0)
(0.35396 0.00989349 0)
(0.354816 0.00941112 0)
(0.354653 0.00926651 0)
(0.354958 0.0095364 0)
(0.354664 0.00890808 0)
(0.353358 0.00802994 0)
(0.349324 0.00749556 0)
(0.337627 0.00652532 0)
(0.326475 0.00534943 0)
(0.322713 0.00500866 0)
(0.32244 0.00455542 0)
(0.323085 0.00309991 0)
(0.322228 0.00157046 0)
(0.317821 -0.000680189 0)
(0.311772 -0.0046024 0)
(0.302879 -0.00844955 0)
(0.299296 -0.0122581 0)
(0.299053 -0.0160496 0)
(0.299116 -0.0203818 0)
(0.300782 -0.0261425 0)
(0.295587 -0.0325795 0)
(0.293906 -0.0396075 0)
(0.288104 -0.0457836 0)
(0.288042 -0.0527666 0)
(0.290458 -0.0585859 0)
(0.291762 -0.0660186 0)
(0.298196 -0.0727463 0)
(0.298798 -0.0773583 0)
(0.305954 -0.0847432 0)
(0.309553 -0.0888988 0)
(0.319486 -0.0974849 0)
(0.33004 -0.105581 0)
(0.341486 -0.112617 0)
(0.358702 -0.12244 0)
(0.369523 -0.128889 0)
(0.386718 -0.133073 0)
(0.401338 -0.135576 0)
(0.41578 -0.138033 0)
(0.433223 -0.135545 0)
(0.447493 -0.133567 0)
(0.465057 -0.129577 0)
(0.479968 -0.121478 0)
(0.495618 -0.110511 0)
(0.508693 -0.0962544 0)
(0.523122 -0.0787385 0)
(0.531825 -0.0573007 0)
(0.539621 -0.035314 0)
(0.542153 -0.0132329 0)
(0.543045 0.00885044 0)
(0.540512 0.03078 0)
(0.533725 0.0537814 0)
(0.524274 0.0753919 0)
(0.509417 0.0948872 0)
(0.492151 0.111123 0)
(0.4721 0.124943 0)
(0.44838 0.133947 0)
(0.428144 0.140941 0)
(0.407802 0.145575 0)
(0.390208 0.145451 0)
(0.376215 0.142358 0)
(0.366825 0.135979 0)
(0.359549 0.128498 0)
(0.353736 0.120282 0)
(0.343722 0.112755 0)
(0.329682 0.106481 0)
(0.314806 0.1006 0)
(0.296463 0.0951367 0)
(0.280636 0.0895966 0)
(0.263938 0.0847365 0)
(0.244409 0.0805066 0)
(0.225536 0.074393 0)
(0.205429 0.0665166 0)
(0.189254 0.0590583 0)
(0.175969 0.0489696 0)
(0.166883 0.0387931 0)
(0.153434 0.0318794 0)
(0.135825 0.0280974 0)
(0.121306 0.0245626 0)
(0.108867 0.0200145 0)
(0.0989676 0.0170566 0)
(0.0896734 0.0157141 0)
(0.0822261 0.0139755 0)
(0.077008 0.0123712 0)
(0.0732763 0.0106071 0)
(0.071076 0.00833031 0)
(0.0700603 0.00604261 0)
(0.0699482 0.00356795 0)
(0.0704208 0.00094246 0)
(0.0716173 -0.00135663 0)
(0.0732583 -0.0038883 0)
(0.0751435 -0.00608052 0)
(0.0773084 -0.00797638 0)
(0.0794994 -0.00975527 0)
(0.0816728 -0.0111452 0)
(0.0837789 -0.0122263 0)
(0.0855119 -0.0135164 0)
(0.0871311 -0.0147212 0)
(0.0883398 -0.0165189 0)
(0.08956 -0.0187537 0)
(0.0910669 -0.0217674 0)
(0.092602 -0.0258347 0)
(0.0947367 -0.0307009 0)
(0.0980534 -0.0367565 0)
(0.102103 -0.0438662 0)
(0.107858 -0.0514661 0)
(0.114727 -0.0602129 0)
(0.123731 -0.0688366 0)
(0.134631 -0.0771862 0)
(0.146684 -0.0869127 0)
(0.161022 -0.0950093 0)
(0.177121 -0.102362 0)
(0.194319 -0.11096 0)
(0.213516 -0.116512 0)
(0.23353 -0.123066 0)
(0.254539 -0.126019 0)
(0.276168 -0.127639 0)
(0.298683 -0.130398 0)
(0.321172 -0.128803 0)
(0.343199 -0.125379 0)
(0.365212 -0.122621 0)
(0.385814 -0.116759 0)
(0.405604 -0.109104 0)
(0.425442 -0.101615 0)
(0.44266 -0.0906142 0)
(0.458976 -0.0791427 0)
(0.471954 -0.0653527 0)
(0.482546 -0.0504116 0)
(0.491112 -0.0346723 0)
(0.496011 -0.0179441 0)
(0.49805 -0.000738067 0)
(0.49648 0.0164934 0)
(0.491814 0.0335191 0)
(0.483196 0.0493782 0)
(0.472165 0.0644033 0)
(0.458657 0.0782036 0)
(0.44193 0.0886288 0)
(0.424368 0.0985723 0)
(0.405484 0.106813 0)
(0.385237 0.110731 0)
(0.365083 0.115109 0)
(0.34466 0.115566 0)
(0.324544 0.116716 0)
(0.30474 0.116605 0)
(0.285794 0.113275 0)
(0.267515 0.110922 0)
(0.248262 0.108024 0)
(0.459769 -0.0948935 0)
(0.475688 -0.0828728 0)
(0.489768 -0.0676793 0)
(0.501153 -0.0511226 0)
(0.509663 -0.0334626 0)
(0.51447 -0.0147781 0)
(0.515415 0.00432188 0)
(0.513019 0.0233652 0)
(0.507247 0.0421545 0)
(0.496812 0.0591296 0)
(0.484552 0.0754644 0)
(0.46967 0.0907668 0)
(0.451119 0.102141 0)
(0.431882 0.113644 0)
(0.410318 0.120658 0)
(0.388456 0.128129 0)
(0.365761 0.133876 0)
(0.342477 0.134938 0)
(0.31934 0.136883 0)
(0.296292 0.137383 0)
(0.274031 0.133792 0)
(0.252281 0.131088 0)
(0.231416 0.127379 0)
(0.21231 0.120574 0)
(0.194039 0.114935 0)
(0.177542 0.107738 0)
(0.161778 0.101371 0)
(0.147358 0.0948103 0)
(0.134627 0.0875964 0)
(0.12283 0.0813267 0)
(0.112044 0.074573 0)
(0.102586 0.0671721 0)
(0.0940127 0.0605459 0)
(0.0864315 0.0541914 0)
(0.0795876 0.0483601 0)
(0.0735597 0.0428925 0)
(0.0683449 0.0377488 0)
(0.0638267 0.0329909 0)
(0.0599308 0.0285781 0)
(0.0565972 0.0244084 0)
(0.0537535 0.0204798 0)
(0.0513613 0.0167236 0)
(0.0493334 0.0131305 0)
(0.0476149 0.00968152 0)
(0.0461581 0.00636348 0)
(0.0450157 0.00323431 0)
(0.0445114 0.000168307 0)
(0.0444642 -0.0032288 0)
(0.0449469 -0.00643854 0)
(0.0460542 -0.0096259 0)
(0.0470918 -0.0127621 0)
(0.0490258 -0.0160655 0)
(0.0509714 -0.0195848 0)
(0.0535209 -0.0229255 0)
(0.0574177 -0.0262865 0)
(0.0605169 -0.0301995 0)
(0.0643299 -0.03388 0)
(0.0702373 -0.037754 0)
(0.0747496 -0.0421577 0)
(0.0813471 -0.046446 0)
(0.0872713 -0.0514711 0)
(0.0933762 -0.0559362 0)
(0.101989 -0.0610856 0)
(0.110146 -0.067706 0)
(0.119507 -0.073259 0)
(0.129949 -0.0799362 0)
(0.139567 -0.0873772 0)
(0.151208 -0.0953816 0)
(0.165624 -0.108386 0)
(0.18154 -0.117124 0)
(0.207176 -0.125335 0)
(0.234631 -0.130569 0)
(0.263468 -0.130663 0)
(0.28406 -0.12583 0)
(0.310505 -0.118378 0)
(0.331819 -0.112897 0)
(0.356175 -0.103342 0)
(0.375978 -0.0997573 0)
(0.393116 -0.0958447 0)
(0.411007 -0.0893737 0)
(0.434928 -0.0909921 0)
(0.465448 -0.0894806 0)
(0.494198 -0.0869511 0)
(0.523022 -0.081995 0)
(0.545875 -0.076452 0)
(0.567338 -0.0687206 0)
(0.58316 -0.0578563 0)
(0.59506 -0.0442868 0)
(0.602214 -0.027956 0)
(0.606165 -0.00960243 0)
(0.606887 0.00948689 0)
(0.603611 0.0286286 0)
(0.598961 0.0468207 0)
(0.589497 0.0636915 0)
(0.57866 0.0786134 0)
(0.564705 0.091211 0)
(0.548664 0.103081 0)
(0.531546 0.112153 0)
(0.510278 0.120454 0)
(0.489029 0.127697 0)
(0.464359 0.131496 0)
(0.439907 0.133637 0)
(0.416843 0.132756 0)
(0.394685 0.12957 0)
(0.374887 0.124974 0)
(0.358567 0.11927 0)
(0.345133 0.112646 0)
(0.331485 0.106334 0)
(0.32126 0.100241 0)
(0.30925 0.0934881 0)
(0.298734 0.0867058 0)
(0.287762 0.0807407 0)
(0.278416 0.0752141 0)
(0.267731 0.0690664 0)
(0.259855 0.0625204 0)
(0.254756 0.0560246 0)
(0.249377 0.0495146 0)
(0.247879 0.0431513 0)
(0.246087 0.0370673 0)
(0.24391 0.0311849 0)
(0.242723 0.0256043 0)
(0.239536 0.020322 0)
(0.238161 0.0155118 0)
(0.235142 0.0107853 0)
(0.236197 0.00612539 0)
(0.235926 0.00158253 0)
(0.237305 -0.0037849 0)
(0.241305 -0.00871179 0)
(0.243922 -0.0125388 0)
(0.248277 -0.0151325 0)
(0.249921 -0.0175595 0)
(0.253175 -0.0197687 0)
(0.256733 -0.0227833 0)
(0.260539 -0.0270487 0)
(0.267609 -0.0300748 0)
(0.279216 -0.033172 0)
(0.3011 -0.0361107 0)
(0.319884 -0.0387249 0)
(0.316891 -0.0393031 0)
(0.31057 -0.0388887 0)
(0.31088 -0.0391525 0)
(0.316371 -0.0400838 0)
(0.320768 -0.0412579 0)
(0.330487 -0.0427064 0)
(0.337518 -0.0442554 0)
(0.346707 -0.0454945 0)
(0.355872 -0.0467917 0)
(0.364009 -0.0478998 0)
(0.373115 -0.049329 0)
(0.378792 -0.0505566 0)
(0.382352 -0.0524824 0)
(0.382364 -0.0550806 0)
(0.381404 -0.0585786 0)
(0.379743 -0.0633818 0)
(0.381462 -0.0674785 0)
(0.383701 -0.0727623 0)
(0.38823 -0.0768856 0)
(0.393268 -0.0808135 0)
(0.399409 -0.0841118 0)
(0.405413 -0.086774 0)
(0.411462 -0.0890235 0)
(0.419453 -0.0916426 0)
(0.424849 -0.0921461 0)
(0.437319 -0.0949243 0)
(0.446414 -0.0929925 0)
(0.459436 -0.0928025 0)
(0.473057 -0.0897901 0)
(0.48631 -0.0853416 0)
(0.499633 -0.0812811 0)
(0.511994 -0.0732141 0)
(0.525363 -0.0650219 0)
(0.536153 -0.0555677 0)
(0.545597 -0.0424708 0)
(0.553246 -0.0301716 0)
(0.557291 -0.015281 0)
(0.559991 -0.000433454 0)
(0.561324 0.0144446 0)
(0.559314 0.0312005 0)
(0.552833 0.0477166 0)
(0.5463 0.0599976 0)
(0.534743 0.0790125 0)
(0.518177 0.0913837 0)
(0.499239 0.103511 0)
(0.481906 0.110736 0)
(0.463494 0.115024 0)
(0.448811 0.116546 0)
(0.434885 0.115627 0)
(0.427648 0.11492 0)
(0.41995 0.112793 0)
(0.419627 0.110908 0)
(0.41962 0.104925 0)
(0.422219 0.0970516 0)
(0.421505 0.0881634 0)
(0.418386 0.0794152 0)
(0.412849 0.0715319 0)
(0.406627 0.0648488 0)
(0.401744 0.0593077 0)
(0.398291 0.0542083 0)
(0.395591 0.0492271 0)
(0.392411 0.0448724 0)
(0.389244 0.0406232 0)
(0.388138 0.036685 0)
(0.388895 0.0334829 0)
(0.394741 0.0305768 0)
(0.39807 0.0275163 0)
(0.403795 0.0241637 0)
(0.406145 0.0210989 0)
(0.410099 0.0183999 0)
(0.410544 0.0165441 0)
(0.412114 0.014768 0)
(0.411701 0.0137606 0)
(0.411325 0.0132372 0)
(0.41296 0.0129394 0)
(0.412305 0.0127923 0)
(0.409569 0.0118364 0)
(0.39816 0.0103984 0)
(0.384687 0.00927718 0)
(0.380484 0.00779949 0)
(0.380413 0.00645331 0)
(0.38338 0.00533766 0)
(0.388332 0.00323194 0)
(0.388714 0.00205248 0)
(0.387501 0.00185756 0)
(0.383278 0.00143401 0)
(0.378399 0.000162312 0)
(0.375805 -0.00228638 0)
(0.372148 -0.00612503 0)
(0.371215 -0.0107615 0)
(0.371882 -0.0149848 0)
(0.371761 -0.0195214 0)
(0.372778 -0.0250912 0)
(0.367685 -0.0317491 0)
(0.365751 -0.0387886 0)
(0.358108 -0.0448473 0)
(0.351039 -0.0529346 0)
(0.351397 -0.0596963 0)
(0.352991 -0.06778 0)
(0.357723 -0.0738616 0)
(0.357828 -0.0782845 0)
(0.3633 -0.0855146 0)
(0.366246 -0.0902091 0)
(0.375686 -0.0994109 0)
(0.385719 -0.107705 0)
(0.396343 -0.11568 0)
(0.413031 -0.125052 0)
(0.42053 -0.130779 0)
(0.433592 -0.134702 0)
(0.443523 -0.136055 0)
(0.455348 -0.140579 0)
(0.46586 -0.13865 0)
(0.476443 -0.137269 0)
(0.489922 -0.132432 0)
(0.50292 -0.12346 0)
(0.517947 -0.113126 0)
(0.531133 -0.0998424 0)
(0.545104 -0.0818937 0)
(0.55326 -0.0605512 0)
(0.560119 -0.0365767 0)
(0.561553 -0.0125419 0)
(0.561463 0.00982843 0)
(0.558779 0.0320283 0)
(0.550847 0.0554581 0)
(0.541047 0.0783134 0)
(0.526164 0.0988492 0)
(0.509452 0.115909 0)
(0.49124 0.129721 0)
(0.471813 0.138486 0)
(0.455766 0.144906 0)
(0.442509 0.148773 0)
(0.434927 0.147871 0)
(0.431547 0.144184 0)
(0.430308 0.137433 0)
(0.425526 0.130503 0)
(0.417403 0.123055 0)
(0.403795 0.116915 0)
(0.387963 0.110886 0)
(0.372025 0.105365 0)
(0.353615 0.0994104 0)
(0.338 0.0927262 0)
(0.316921 0.0869539 0)
(0.297852 0.0813416 0)
(0.274513 0.0754559 0)
(0.248817 0.0703518 0)
(0.22541 0.0604382 0)
(0.217583 0.0488147 0)
(0.204992 0.0408362 0)
(0.182025 0.036621 0)
(0.158212 0.0322463 0)
(0.137752 0.0260189 0)
(0.12022 0.0204294 0)
(0.105595 0.0174113 0)
(0.093723 0.0164033 0)
(0.0843929 0.014839 0)
(0.0775134 0.0131411 0)
(0.0731974 0.0111683 0)
(0.0705926 0.00868786 0)
(0.0691094 0.0062089 0)
(0.0690699 0.00355752 0)
(0.069408 0.000824704 0)
(0.0706803 -0.00153738 0)
(0.072298 -0.00419701 0)
(0.0741611 -0.00641595 0)
(0.0765243 -0.0083516 0)
(0.0788231 -0.0101471 0)
(0.0810664 -0.011394 0)
(0.083291 -0.0124604 0)
(0.0850325 -0.0136976 0)
(0.0866674 -0.0148765 0)
(0.0877661 -0.0166379 0)
(0.0888171 -0.01888 0)
(0.0902159 -0.0219872 0)
(0.0915431 -0.0261019 0)
(0.0934374 -0.0310668 0)
(0.0965964 -0.0374254 0)
(0.100454 -0.0447208 0)
(0.106085 -0.0527204 0)
(0.112841 -0.061762 0)
(0.121827 -0.0706576 0)
(0.132768 -0.0793737 0)
(0.144846 -0.0894803 0)
(0.15928 -0.0978811 0)
(0.175524 -0.105614 0)
(0.192895 -0.114593 0)
(0.21235 -0.120434 0)
(0.232642 -0.127247 0)
(0.253874 -0.130226 0)
(0.275756 -0.132041 0)
(0.298656 -0.134951 0)
(0.321484 -0.133255 0)
(0.343848 -0.129777 0)
(0.366178 -0.12682 0)
(0.387011 -0.120872 0)
(0.407126 -0.113022 0)
(0.427379 -0.105331 0)
(0.444933 -0.0939503 0)
(0.461597 -0.0820534 0)
(0.474811 -0.0678023 0)
(0.485632 -0.0523279 0)
(0.494426 -0.0360024 0)
(0.499444 -0.0186426 0)
(0.501553 -0.000769 0)
(0.49995 0.0171303 0)
(0.495189 0.0348422 0)
(0.486332 0.0513344 0)
(0.475012 0.0669416 0)
(0.461173 0.081257 0)
(0.444009 0.0920323 0)
(0.426049 0.102301 0)
(0.406764 0.110781 0)
(0.386113 0.114735 0)
(0.365614 0.1192 0)
(0.344874 0.11958 0)
(0.324477 0.120691 0)
(0.304414 0.12052 0)
(0.285269 0.116974 0)
(0.266844 0.114439 0)
(0.247466 0.111416 0)
(0.462177 -0.0984629 0)
(0.478511 -0.0860502 0)
(0.49294 -0.0702912 0)
(0.504612 -0.0531219 0)
(0.513361 -0.0347819 0)
(0.518308 -0.0153602 0)
(0.519271 0.00451468 0)
(0.516825 0.0242439 0)
(0.510924 0.0437848 0)
(0.500175 0.0613861 0)
(0.48764 0.0782797 0)
(0.47244 0.0941522 0)
(0.453445 0.105876 0)
(0.433816 0.117786 0)
(0.411818 0.124926 0)
(0.389573 0.132642 0)
(0.366484 0.138513 0)
(0.342838 0.139522 0)
(0.319363 0.141519 0)
(0.295982 0.142026 0)
(0.273436 0.138145 0)
(0.251477 0.135073 0)
(0.230428 0.131234 0)
(0.211249 0.124547 0)
(0.1926 0.119201 0)
(0.175963 0.112202 0)
(0.1599 0.103942 0)
(0.144308 0.0951253 0)
(0.129713 0.0855713 0)
(0.114724 0.0762454 0)
(0.103061 0.0686747 0)
(0.0955167 0.0630499 0)
(0.0888597 0.0575856 0)
(0.0827465 0.0521544 0)
(0.076952 0.0470319 0)
(0.0716314 0.0420968 0)
(0.0668387 0.0373199 0)
(0.0625545 0.0327935 0)
(0.0588102 0.0285581 0)
(0.0556146 0.0245264 0)
(0.0529571 0.0207044 0)
(0.0508156 0.0170387 0)
(0.0491304 0.0135211 0)
(0.0479176 0.0101179 0)
(0.0470608 0.0068136 0)
(0.0465916 0.0036274 0)
(0.0470145 0.000348461 0)
(0.0472554 -0.00400951 0)
(0.0478053 -0.00785476 0)
(0.0489916 -0.011516 0)
(0.0486022 -0.0152176 0)
(0.0501247 -0.0188979 0)
(0.0501999 -0.0228211 0)
(0.0513535 -0.0262789 0)
(0.0561028 -0.02982 0)
(0.0568695 -0.033499 0)
(0.0598789 -0.0371369 0)
(0.0675163 -0.0414463 0)
(0.0692835 -0.0452771 0)
(0.0771146 -0.049374 0)
(0.0813187 -0.0541899 0)
(0.0867882 -0.059015 0)
(0.0987471 -0.0646397 0)
(0.10659 -0.0714354 0)
(0.115995 -0.0770808 0)
(0.128143 -0.0835769 0)
(0.136789 -0.0907725 0)
(0.14999 -0.0987746 0)
(0.16436 -0.111587 0)
(0.18098 -0.120713 0)
(0.207922 -0.128814 0)
(0.235671 -0.134421 0)
(0.26491 -0.134733 0)
(0.284836 -0.1316 0)
(0.312339 -0.123433 0)
(0.332329 -0.117413 0)
(0.35731 -0.107648 0)
(0.37792 -0.104247 0)
(0.397216 -0.102432 0)
(0.414335 -0.0947244 0)
(0.440261 -0.0967079 0)
(0.472452 -0.0953476 0)
(0.50307 -0.0924977 0)
(0.531572 -0.0868101 0)
(0.554036 -0.0803076 0)
(0.576506 -0.0717697 0)
(0.594681 -0.0600444 0)
(0.609171 -0.0455588 0)
(0.617163 -0.0284764 0)
(0.620956 -0.00952805 0)
(0.621121 0.00995511 0)
(0.617394 0.029253 0)
(0.612758 0.0478596 0)
(0.603129 0.0653296 0)
(0.592556 0.0803406 0)
(0.57928 0.0931195 0)
(0.563252 0.105506 0)
(0.546782 0.114998 0)
(0.524683 0.124085 0)
(0.502243 0.131579 0)
(0.476449 0.1358 0)
(0.450271 0.137647 0)
(0.42667 0.136196 0)
(0.403786 0.132444 0)
(0.38435 0.126587 0)
(0.368282 0.120063 0)
(0.354872 0.11291 0)
(0.34141 0.105746 0)
(0.330965 0.0994385 0)
(0.318563 0.0930776 0)
(0.307421 0.0867078 0)
(0.296186 0.081061 0)
(0.286938 0.0760074 0)
(0.277254 0.0704152 0)
(0.270399 0.0643431 0)
(0.266145 0.0581452 0)
(0.260835 0.051838 0)
(0.257974 0.0457352 0)
(0.254612 0.0399659 0)
(0.251935 0.0344851 0)
(0.249106 0.0292332 0)
(0.243217 0.0241677 0)
(0.236416 0.019254 0)
(0.226485 0.0140699 0)
(0.217739 0.00874042 0)
(0.213486 0.00281224 0)
(0.216344 -0.00164713 0)
(0.220688 -0.00578955 0)
(0.226283 -0.00940085 0)
(0.232147 -0.0118451 0)
(0.237339 -0.0139898 0)
(0.241223 -0.0160255 0)
(0.246858 -0.0189645 0)
(0.252899 -0.023482 0)
(0.261872 -0.0280951 0)
(0.27732 -0.0325012 0)
(0.332413 -0.0337343 0)
(0.335728 -0.0287566 0)
(0.326626 -0.0275258 0)
(0.310106 -0.0309944 0)
(0.306462 -0.0341151 0)
(0.308183 -0.0355506 0)
(0.31139 -0.0378509 0)
(0.321402 -0.0395742 0)
(0.329514 -0.0414545 0)
(0.34032 -0.0439417 0)
(0.352073 -0.0462832 0)
(0.366099 -0.0494 0)
(0.381474 -0.052608 0)
(0.393113 -0.0555095 0)
(0.402968 -0.0581163 0)
(0.411385 -0.0605717 0)
(0.419856 -0.0632976 0)
(0.426928 -0.0669059 0)
(0.430443 -0.07009 0)
(0.4308 -0.074168 0)
(0.429652 -0.0778981 0)
(0.430648 -0.0817661 0)
(0.433824 -0.0850408 0)
(0.43802 -0.0878596 0)
(0.442467 -0.0902142 0)
(0.44903 -0.0928204 0)
(0.452792 -0.0940446 0)
(0.463175 -0.0968759 0)
(0.468929 -0.0945151 0)
(0.480699 -0.094959 0)
(0.49281 -0.0911188 0)
(0.503017 -0.0873592 0)
(0.514838 -0.0835032 0)
(0.524947 -0.0749156 0)
(0.536871 -0.0670696 0)
(0.548388 -0.0572882 0)
(0.557793 -0.0445655 0)
(0.566042 -0.0317784 0)
(0.571033 -0.0153085 0)
(0.573411 -0.000298775 0)
(0.573085 0.0150268 0)
(0.570758 0.0316653 0)
(0.563768 0.0475252 0)
(0.557489 0.0611802 0)
(0.544879 0.0822834 0)
(0.533234 0.095219 0)
(0.520574 0.107018 0)
(0.511008 0.112841 0)
(0.499902 0.117128 0)
(0.490547 0.118264 0)
(0.479375 0.116206 0)
(0.471521 0.115049 0)
(0.462677 0.111342 0)
(0.458822 0.107412 0)
(0.454189 0.0998872 0)
(0.452666 0.0920014 0)
(0.450438 0.0845829 0)
(0.448432 0.0786446 0)
(0.445291 0.0737645 0)
(0.442051 0.0691267 0)
(0.439124 0.0644417 0)
(0.43529 0.0593466 0)
(0.430855 0.0542832 0)
(0.428533 0.0494424 0)
(0.428651 0.0452875 0)
(0.433173 0.0414936 0)
(0.44038 0.0376731 0)
(0.44769 0.0330197 0)
(0.44302 0.0298428 0)
(0.43644 0.0250898 0)
(0.439628 0.0214511 0)
(0.451141 0.0191687 0)
(0.469983 0.0171751 0)
(0.522198 0.0158073 0)
(0.573304 0.0149946 0)
(0.573429 0.014021 0)
(0.549541 0.0130052 0)
(0.474986 0.0131644 0)
(0.423205 0.0154172 0)
(0.403731 0.0161161 0)
(0.392756 0.0135514 0)
(0.381198 0.0099976 0)
(0.37478 0.00710988 0)
(0.374889 0.00492493 0)
(0.373543 0.00476692 0)
(0.371907 0.00508489 0)
(0.370237 0.0045988 0)
(0.371381 0.00379664 0)
(0.374968 0.00139116 0)
(0.381655 -0.00405793 0)
(0.387422 -0.00964693 0)
(0.392492 -0.0144665 0)
(0.397154 -0.0187191 0)
(0.399202 -0.0232354 0)
(0.402323 -0.0281844 0)
(0.402071 -0.0342794 0)
(0.404387 -0.0404675 0)
(0.409261 -0.0466945 0)
(0.41234 -0.0536539 0)
(0.410841 -0.0614093 0)
(0.414193 -0.069287 0)
(0.42041 -0.0754024 0)
(0.421766 -0.079329 0)
(0.427615 -0.0857577 0)
(0.43103 -0.0919266 0)
(0.442582 -0.101566 0)
(0.449289 -0.108733 0)
(0.459065 -0.118706 0)
(0.472085 -0.127405 0)
(0.478313 -0.133247 0)
(0.487254 -0.137449 0)
(0.495711 -0.138617 0)
(0.507812 -0.141158 0)
(0.514013 -0.138507 0)
(0.521729 -0.138177 0)
(0.530097 -0.134289 0)
(0.538317 -0.125815 0)
(0.547005 -0.114597 0)
(0.555173 -0.100543 0)
(0.565441 -0.0822933 0)
(0.57199 -0.0598362 0)
(0.578313 -0.0367447 0)
(0.58031 -0.0127856 0)
(0.580046 0.0106685 0)
(0.578714 0.0341116 0)
(0.572905 0.0586831 0)
(0.566263 0.0815186 0)
(0.554855 0.101904 0)
(0.543482 0.11837 0)
(0.533801 0.132186 0)
(0.525188 0.139875 0)
(0.515083 0.145973 0)
(0.504962 0.149533 0)
(0.500562 0.147353 0)
(0.497305 0.143209 0)
(0.493282 0.136134 0)
(0.48621 0.129606 0)
(0.475902 0.122393 0)
(0.461557 0.115892 0)
(0.448235 0.109158 0)
(0.432374 0.102991 0)
(0.416731 0.097306 0)
(0.399659 0.0915829 0)
(0.37728 0.0863189 0)
(0.355198 0.0813914 0)
(0.328323 0.0764396 0)
(0.299537 0.0731544 0)
(0.278487 0.065564 0)
(0.250799 0.0548571 0)
(0.21315 0.0473264 0)
(0.181447 0.0418745 0)
(0.156972 0.0379098 0)
(0.139278 0.0333305 0)
(0.121967 0.0274224 0)
(0.104204 0.0232837 0)
(0.0903397 0.0207768 0)
(0.0807312 0.0177575 0)
(0.0740397 0.0149695 0)
(0.0700834 0.0121398 0)
(0.067184 0.00913986 0)
(0.065522 0.00620185 0)
(0.06562 0.00321914 0)
(0.0657785 0.000460072 0)
(0.0674614 -0.00211257 0)
(0.0690982 -0.00481248 0)
(0.0710323 -0.00708362 0)
(0.0739416 -0.00923531 0)
(0.0762727 -0.0111092 0)
(0.0786502 -0.0124097 0)
(0.0812657 -0.0137154 0)
(0.0829179 -0.0148503 0)
(0.0847873 -0.0161589 0)
(0.0856983 -0.0179148 0)
(0.0867633 -0.0201218 0)
(0.0883832 -0.0237161 0)
(0.0894893 -0.0279766 0)
(0.0913353 -0.0331034 0)
(0.0943567 -0.0398791 0)
(0.0979218 -0.0472564 0)
(0.103232 -0.0555338 0)
(0.110057 -0.0648196 0)
(0.119424 -0.0734077 0)
(0.130611 -0.0822292 0)
(0.142663 -0.0924935 0)
(0.157294 -0.100966 0)
(0.173758 -0.108896 0)
(0.191335 -0.118178 0)
(0.211095 -0.124354 0)
(0.231711 -0.131409 0)
(0.253169 -0.134432 0)
(0.275307 -0.136509 0)
(0.298624 -0.139582 0)
(0.321802 -0.137766 0)
(0.344525 -0.134265 0)
(0.367176 -0.131047 0)
(0.388228 -0.125053 0)
(0.408688 -0.117014 0)
(0.429377 -0.109123 0)
(0.447288 -0.0973575 0)
(0.46431 -0.0850146 0)
(0.477766 -0.0703074 0)
(0.488829 -0.0542908 0)
(0.497864 -0.0373659 0)
(0.503008 -0.0193587 0)
(0.505192 -0.000803445 0)
(0.503556 0.0177766 0)
(0.498699 0.0362024 0)
(0.489591 0.053345 0)
(0.477967 0.0695473 0)
(0.463778 0.0843871 0)
(0.446157 0.0955193 0)
(0.427777 0.106114 0)
(0.408071 0.114827 0)
(0.387003 0.118809 0)
(0.366148 0.12336 0)
(0.345078 0.123653 0)
(0.324392 0.124717 0)
(0.304061 0.124487 0)
(0.284705 0.12071 0)
(0.266137 0.117973 0)
(0.246634 0.114832 0)
(0.464664 -0.102118 0)
(0.481433 -0.0893071 0)
(0.496228 -0.0729683 0)
(0.508201 -0.0551784 0)
(0.517203 -0.0361336 0)
(0.5223 -0.0159396 0)
(0.523273 0.00473043 0)
(0.520775 0.0251327 0)
(0.514742 0.0454745 0)
(0.503653 0.0637063 0)
(0.490831 0.0811538 0)
(0.475302 0.097617 0)
(0.455844 0.10969 0)
(0.435802 0.12202 0)
(0.413354 0.129258 0)
(0.390717 0.137232 0)
(0.367215 0.143264 0)
(0.343191 0.144247 0)
(0.319374 0.146084 0)
(0.295714 0.146388 0)
(0.272986 0.142563 0)
(0.250473 0.140423 0)
(0.228953 0.136843 0)
(0.208218 0.127271 0)
(0.185849 0.11741 0)
(0.164213 0.105331 0)
(0.153136 0.10009 0)
(0.144709 0.0945303 0)
(0.144365 0.0929435 0)
(0.139067 0.0842111 0)
(0.140306 0.0790135 0)
(0.101618 0.05413 0)
(0.0936955 0.0494373 0)
(0.0872184 0.0450968 0)
(0.0808999 0.0408242 0)
(0.0748718 0.0366344 0)
(0.0693117 0.0326325 0)
(0.0645778 0.0288292 0)
(0.0605407 0.0246925 0)
(0.0569973 0.0211142 0)
(0.0543804 0.0177768 0)
(0.0522846 0.0146467 0)
(0.050856 0.0117003 0)
(0.0505799 0.00901442 0)
(0.0455186 0.00740126 0)
(0.0188556 0.00581162 0)
(-0.015999 0.00227763 0)
(-0.0296491 0.000188545 0)
(-0.0334792 -0.00234423 0)
(-0.0304982 -0.0043323 0)
(-0.0422143 -0.0067852 0)
(-0.0304673 -0.00975904 0)
(-0.03476 -0.012835 0)
(-0.0325449 -0.0173377 0)
(-0.00140648 -0.0208605 0)
(-0.0120765 -0.0247417 0)
(-0.00154705 -0.0317689 0)
(0.0429543 -0.0374852 0)
(0.0272772 -0.0416189 0)
(0.0585022 -0.0527715 0)
(0.0572951 -0.0567492 0)
(0.0651591 -0.0644737 0)
(0.0932371 -0.0712294 0)
(0.0959418 -0.0756919 0)
(0.104975 -0.0810273 0)
(0.122141 -0.0875058 0)
(0.129821 -0.0954146 0)
(0.148098 -0.104316 0)
(0.164979 -0.116731 0)
(0.18307 -0.12651 0)
(0.215029 -0.134258 0)
(0.242548 -0.139272 0)
(0.271609 -0.13915 0)
(0.290571 -0.136294 0)
(0.318656 -0.1292 0)
(0.335002 -0.121352 0)
(0.358903 -0.112291 0)
(0.380513 -0.108897 0)
(0.400841 -0.109048 0)
(0.418405 -0.100813 0)
(0.445952 -0.103005 0)
(0.479139 -0.101696 0)
(0.51218 -0.0979372 0)
(0.541273 -0.0911047 0)
(0.565408 -0.0843946 0)
(0.590227 -0.0754526 0)
(0.611244 -0.0632282 0)
(0.628086 -0.0474787 0)
(0.636203 -0.0289262 0)
(0.638299 -0.00885953 0)
(0.635926 0.0112013 0)
(0.630032 0.0305827 0)
(0.624059 0.0494894 0)
(0.613642 0.0674843 0)
(0.603158 0.0823984 0)
(0.590555 0.0954037 0)
(0.574791 0.108053 0)
(0.558332 0.11842 0)
(0.535494 0.127983 0)
(0.512117 0.135366 0)
(0.485516 0.139701 0)
(0.458828 0.14095 0)
(0.435668 0.138848 0)
(0.413524 0.13461 0)
(0.395534 0.12825 0)
(0.380946 0.121226 0)
(0.368689 0.114311 0)
(0.357377 0.10742 0)
(0.349044 0.101512 0)
(0.33847 0.0961393 0)
(0.329008 0.0908625 0)
(0.320302 0.0858856 0)
(0.313278 0.0811907 0)
(0.305246 0.0760393 0)
(0.301269 0.0707753 0)
(0.301429 0.0654854 0)
(0.300901 0.0608886 0)
(0.293403 0.0580618 0)
(0.231325 0.0503632 0)
(0.214113 0.0422291 0)
(0.215097 0.0350833 0)
(0.220981 0.0300203 0)
(0.228755 0.0234698 0)
(0.233808 0.0176541 0)
(0.237534 0.0096844 0)
(0.245633 0.00109473 0)
(0.255261 -0.00399572 0)
(0.261165 -0.00868524 0)
(0.266195 -0.0115407 0)
(0.26803 -0.0138747 0)
(0.273177 -0.0153716 0)
(0.281871 -0.0176709 0)
(0.294289 -0.0217136 0)
(0.308003 -0.0272605 0)
(0.321544 -0.0328441 0)
(0.355045 -0.0434735 0)
(0.370757 -0.040278 0)
(0.365477 -0.033115 0)
(0.347543 -0.029173 0)
(0.342951 -0.0294782 0)
(0.34114 -0.032223 0)
(0.337461 -0.0342007 0)
(0.335217 -0.0361602 0)
(0.335596 -0.0380948 0)
(0.338424 -0.0393748 0)
(0.340659 -0.0413751 0)
(0.342266 -0.0434098 0)
(0.350021 -0.0463896 0)
(0.358673 -0.048432 0)
(0.366564 -0.0505393 0)
(0.377883 -0.0541255 0)
(0.395815 -0.0588881 0)
(0.420109 -0.0644739 0)
(0.439029 -0.0698133 0)
(0.452727 -0.0738525 0)
(0.46351 -0.0776879 0)
(0.473316 -0.0809705 0)
(0.478065 -0.0836951 0)
(0.477343 -0.085677 0)
(0.473912 -0.0887149 0)
(0.474933 -0.0916421 0)
(0.479062 -0.0945605 0)
(0.482158 -0.0962874 0)
(0.491617 -0.0987459 0)
(0.496905 -0.0967482 0)
(0.507658 -0.0981352 0)
(0.519997 -0.0935956 0)
(0.529118 -0.089587 0)
(0.540993 -0.0859947 0)
(0.5508 -0.0773808 0)
(0.560978 -0.0698264 0)
(0.568805 -0.0596045 0)
(0.577694 -0.0470402 0)
(0.58379 -0.0333724 0)
(0.587917 -0.015502 0)
(0.59033 -0.000738516 0)
(0.587969 0.0158599 0)
(0.587408 0.0341105 0)
(0.581365 0.0483969 0)
(0.577777 0.0608227 0)
(0.565642 0.0841959 0)
(0.557149 0.0958683 0)
(0.552831 0.107839 0)
(0.548789 0.112677 0)
(0.538286 0.117421 0)
(0.524099 0.11877 0)
(0.508349 0.116666 0)
(0.498071 0.114167 0)
(0.490194 0.109341 0)
(0.489247 0.105879 0)
(0.491472 0.100059 0)
(0.497693 0.0948355 0)
(0.503626 0.0903118 0)
(0.509848 0.0867232 0)
(0.512239 0.0835691 0)
(0.514842 0.0805786 0)
(0.521824 0.0771649 0)
(0.530427 0.0745919 0)
(0.462543 0.0674111 0)
(0.418277 0.0580777 0)
(0.409921 0.0488849 0)
(0.412628 0.0413378 0)
(0.427675 0.0392999 0)
(0.452602 0.0344148 0)
(0.459546 0.0299839 0)
(0.457198 0.0260777 0)
(0.453393 0.0193135 0)
(0.45683 0.0131562 0)
(0.474221 0.00357116 0)
(0.530545 -0.00675082 0)
(0.652608 0.00588507 0)
(0.671207 0.0211221 0)
(0.637499 0.0357902 0)
(0.506852 0.0379343 0)
(0.471877 0.0238939 0)
(0.475712 0.0180867 0)
(0.487282 0.0147516 0)
(0.515406 0.0132023 0)
(0.524017 0.00994956 0)
(0.50821 0.00721724 0)
(0.425874 0.00576618 0)
(0.365848 0.0025559 0)
(0.356473 0.00247518 0)
(0.348966 0.000967113 0)
(0.332902 -0.00165605 0)
(0.323646 -0.00361471 0)
(0.323837 -0.00690015 0)
(0.333697 -0.0112309 0)
(0.350927 -0.0155263 0)
(0.362046 -0.0198085 0)
(0.375102 -0.0257028 0)
(0.391015 -0.0330515 0)
(0.400904 -0.0409189 0)
(0.412595 -0.0476393 0)
(0.444247 -0.0553828 0)
(0.474947 -0.0647584 0)
(0.485334 -0.0736905 0)
(0.496227 -0.0805781 0)
(0.499317 -0.0854322 0)
(0.506348 -0.0898851 0)
(0.513895 -0.0960543 0)
(0.526511 -0.104711 0)
(0.529183 -0.111413 0)
(0.535287 -0.121343 0)
(0.537944 -0.129031 0)
(0.540991 -0.134164 0)
(0.543267 -0.138508 0)
(0.548836 -0.141661 0)
(0.557847 -0.144376 0)
(0.564056 -0.141194 0)
(0.57344 -0.14138 0)
(0.581066 -0.136075 0)
(0.590853 -0.127882 0)
(0.598462 -0.116505 0)
(0.601221 -0.101896 0)
(0.604271 -0.0838152 0)
(0.607723 -0.061218 0)
(0.614071 -0.0368308 0)
(0.620197 -0.013073 0)
(0.622458 0.00997905 0)
(0.623741 0.0333664 0)
(0.620546 0.0579796 0)
(0.618343 0.0814447 0)
(0.613699 0.102571 0)
(0.608792 0.118302 0)
(0.600991 0.132352 0)
(0.588796 0.139512 0)
(0.575103 0.145446 0)
(0.562042 0.147767 0)
(0.555069 0.144916 0)
(0.548696 0.141159 0)
(0.542856 0.134245 0)
(0.535945 0.128379 0)
(0.527434 0.122165 0)
(0.516008 0.116653 0)
(0.504169 0.111254 0)
(0.4892 0.106452 0)
(0.472178 0.101678 0)
(0.452521 0.097272 0)
(0.427779 0.0928526 0)
(0.398488 0.0884255 0)
(0.36993 0.0845192 0)
(0.331751 0.0774057 0)
(0.308121 0.0712028 0)
(0.270548 0.0616755 0)
(0.213122 0.0544546 0)
(0.173493 0.0484932 0)
(0.149653 0.0412642 0)
(0.135902 0.0338154 0)
(0.118587 0.028423 0)
(0.0919479 0.0247947 0)
(0.0780455 0.0218321 0)
(0.0748664 0.0185548 0)
(0.0726525 0.0156175 0)
(0.072544 0.0127397 0)
(0.0705499 0.00966886 0)
(0.0698117 0.00647794 0)
(0.0720353 0.00336636 0)
(0.071876 0.000491718 0)
(0.0742451 -0.00246977 0)
(0.0753666 -0.00560078 0)
(0.0765827 -0.00852635 0)
(0.0803468 -0.0111105 0)
(0.0815248 -0.0134833 0)
(0.0829625 -0.0152285 0)
(0.0861409 -0.0162819 0)
(0.0859908 -0.0177422 0)
(0.087642 -0.0189255 0)
(0.0866523 -0.0208994 0)
(0.0861933 -0.0234856 0)
(0.0885694 -0.0265895 0)
(0.0861629 -0.0312152 0)
(0.0867901 -0.0362547 0)
(0.0915206 -0.0418699 0)
(0.08995 -0.049028 0)
(0.097033 -0.0560691 0)
(0.102038 -0.0655542 0)
(0.113797 -0.0761649 0)
(0.127351 -0.0860977 0)
(0.139025 -0.0976263 0)
(0.154241 -0.106013 0)
(0.171444 -0.113696 0)
(0.18935 -0.122358 0)
(0.209571 -0.128589 0)
(0.230645 -0.135525 0)
(0.252361 -0.138563 0)
(0.27479 -0.140957 0)
(0.298574 -0.144253 0)
(0.32212 -0.142319 0)
(0.345235 -0.138855 0)
(0.368211 -0.135294 0)
(0.389459 -0.129308 0)
(0.410289 -0.121085 0)
(0.431437 -0.112996 0)
(0.449728 -0.10084 0)
(0.467117 -0.0880238 0)
(0.480817 -0.0728708 0)
(0.49214 -0.0563028 0)
(0.501429 -0.0387637 0)
(0.506706 -0.0200922 0)
(0.508968 -0.000844097 0)
(0.507304 0.0184329 0)
(0.502349 0.0376028 0)
(0.492975 0.0554143 0)
(0.481029 0.0722251 0)
(0.466474 0.0875976 0)
(0.448373 0.0990955 0)
(0.429551 0.110019 0)
(0.409405 0.118954 0)
(0.387904 0.122957 0)
(0.36668 0.127591 0)
(0.345271 0.12779 0)
(0.324288 0.128792 0)
(0.303677 0.128508 0)
(0.284097 0.124483 0)
(0.265392 0.121529 0)
(0.245767 0.118294 0)
(0.467231 -0.105862 0)
(0.484457 -0.0926424 0)
(0.499636 -0.0757117 0)
(0.511925 -0.0572928 0)
(0.521197 -0.0375192 0)
(0.52645 -0.0165024 0)
(0.52742 0.00497463 0)
(0.524871 0.0260242 0)
(0.518708 0.047217 0)
(0.507249 0.0660922 0)
(0.494132 0.0840814 0)
(0.478263 0.101168 0)
(0.458324 0.113577 0)
(0.437848 0.126336 0)
(0.414936 0.133702 0)
(0.391891 0.141973 0)
(0.367959 0.147924 0)
(0.343613 0.148716 0)
(0.319616 0.151138 0)
(0.295159 0.152897 0)
(0.271552 0.14793 0)
(0.243239 0.139485 0)
(0.215836 0.129782 0)
(0.206905 0.126641 0)
(0.182313 0.109625 0)
(0.228838 0.128543 0)
(0.168091 0.0850085 0)
(0.156866 0.0789555 0)
(0.159401 0.0735461 0)
(0.107928 0.0640996 0)
(0.0697449 0.0554575 0)
(0.055604 0.0570485 0)
(0.0494311 0.0498364 0)
(0.0438771 0.0452019 0)
(0.039391 0.0408846 0)
(0.0355207 0.0366578 0)
(0.0320959 0.0326178 0)
(0.0292224 0.0287621 0)
(0.0264896 0.024805 0)
(0.0238205 0.0212518 0)
(0.0213742 0.017947 0)
(0.018895 0.0148513 0)
(0.0164051 0.0117665 0)
(0.0131541 0.00959012 0)
(0.00988047 0.0106916 0)
(0.00954089 0.0117914 0)
(0.0104586 0.00635869 0)
(0.00896135 -0.00118704 0)
(0.00509939 -0.00644643 0)
(0.00142164 -0.00820322 0)
(-0.00370304 -0.0124214 0)
(-0.00714033 -0.0160896 0)
(-0.0126301 -0.0184352 0)
(-0.0182084 -0.0262339 0)
(-0.0197934 -0.0260882 0)
(-0.0253278 -0.0261529 0)
(-0.0295221 -0.0365482 0)
(-0.0188184 -0.0343135 0)
(-0.035792 -0.0364165 0)
(-0.0259947 -0.0392662 0)
(-0.0237121 -0.0432106 0)
(-0.0344875 -0.0542948 0)
(0.00188401 -0.0671212 0)
(0.000904646 -0.0742827 0)
(0.0164102 -0.0854072 0)
(0.0828378 -0.0950146 0)
(0.0918719 -0.0999755 0)
(0.136356 -0.111323 0)
(0.166134 -0.117918 0)
(0.185558 -0.127851 0)
(0.225571 -0.14103 0)
(0.248881 -0.1417 0)
(0.278732 -0.144771 0)
(0.309767 -0.142057 0)
(0.330796 -0.13648 0)
(0.344821 -0.125588 0)
(0.365385 -0.1165 0)
(0.385814 -0.113667 0)
(0.405081 -0.115625 0)
(0.423022 -0.107105 0)
(0.451366 -0.109426 0)
(0.487129 -0.108188 0)
(0.52314 -0.104046 0)
(0.55491 -0.0963094 0)
(0.581397 -0.0891411 0)
(0.609299 -0.0796368 0)
(0.631255 -0.0668174 0)
(0.647554 -0.0492709 0)
(0.653887 -0.0290032 0)
(0.653531 -0.00782395 0)
(0.648338 0.0124689 0)
(0.639914 0.0318214 0)
(0.63215 0.0511146 0)
(0.620811 0.0695824 0)
(0.61 0.0846218 0)
(0.597823 0.0984394 0)
(0.582282 0.111506 0)
(0.56582 0.122393 0)
(0.543031 0.132845 0)
(0.52016 0.140524 0)
(0.494973 0.145475 0)
(0.470573 0.146958 0)
(0.450457 0.144796 0)
(0.432181 0.140628 0)
(0.419127 0.134847 0)
(0.410071 0.128432 0)
(0.402475 0.12216 0)
(0.396897 0.116215 0)
(0.393758 0.11112 0)
(0.386057 0.105972 0)
(0.38064 0.10087 0)
(0.380505 0.0969708 0)
(0.398329 0.0950132 0)
(0.351985 0.0893315 0)
(0.308233 0.0806335 0)
(0.294778 0.0702952 0)
(0.280598 0.063202 0)
(0.268629 0.0594243 0)
(0.265791 0.0473776 0)
(0.272401 0.0367748 0)
(0.281139 0.0281048 0)
(0.296394 0.0229546 0)
(0.314132 0.0177987 0)
(0.33216 0.0142613 0)
(0.341195 0.0078594 0)
(0.341243 0.000108616 0)
(0.344249 -0.00488652 0)
(0.345509 -0.00846183 0)
(0.343688 -0.0107352 0)
(0.337454 -0.0140481 0)
(0.331018 -0.0180079 0)
(0.331278 -0.0207013 0)
(0.336791 -0.0238561 0)
(0.343399 -0.028924 0)
(0.345033 -0.0380489 0)
(0.357137 -0.0452291 0)
(0.384699 -0.0392766 0)
(0.402287 -0.0283399 0)
(0.403372 -0.0274254 0)
(0.400923 -0.0296345 0)
(0.400183 -0.0328375 0)
(0.404164 -0.0344893 0)
(0.407866 -0.0373216 0)
(0.413779 -0.039462 0)
(0.426032 -0.0410563 0)
(0.433321 -0.0418856 0)
(0.441745 -0.0442714 0)
(0.454078 -0.0471221 0)
(0.453449 -0.0472719 0)
(0.435332 -0.0484494 0)
(0.408672 -0.0522301 0)
(0.389834 -0.0586726 0)
(0.387619 -0.0648082 0)
(0.401278 -0.0690906 0)
(0.425105 -0.0731545 0)
(0.452755 -0.0779125 0)
(0.480195 -0.0823584 0)
(0.500049 -0.0855587 0)
(0.515855 -0.0877199 0)
(0.524303 -0.0893323 0)
(0.521972 -0.0914629 0)
(0.516984 -0.0943563 0)
(0.515818 -0.0966688 0)
(0.519071 -0.0993013 0)
(0.522677 -0.0984667 0)
(0.531133 -0.100975 0)
(0.542862 -0.0955797 0)
(0.552811 -0.0929003 0)
(0.565399 -0.0882445 0)
(0.576628 -0.0792099 0)
(0.587523 -0.0720505 0)
(0.595955 -0.0612498 0)
(0.601465 -0.0489997 0)
(0.607306 -0.034927 0)
(0.609209 -0.0166636 0)
(0.610975 -0.00291422 0)
(0.608792 0.0151612 0)
(0.609071 0.0357045 0)
(0.605507 0.0490086 0)
(0.607469 0.0635379 0)
(0.597303 0.0866532 0)
(0.592839 0.0946987 0)
(0.584765 0.107976 0)
(0.577263 0.113106 0)
(0.56391 0.120039 0)
(0.54795 0.12247 0)
(0.535359 0.120287 0)
(0.53147 0.119423 0)
(0.535534 0.117019 0)
(0.550596 0.113941 0)
(0.56935 0.110275 0)
(0.588393 0.106262 0)
(0.605281 0.102358 0)
(0.641855 0.0973634 0)
(0.641805 0.0895978 0)
(0.561727 0.0855525 0)
(0.520832 0.0770244 0)
(0.497924 0.0732705 0)
(0.487257 0.0640676 0)
(0.489655 0.0535545 0)
(0.48624 0.0434734 0)
(0.470649 0.0336254 0)
(0.461944 0.0271041 0)
(0.46298 0.0262041 0)
(0.460021 0.027697 0)
(0.451064 0.0238553 0)
(0.429818 0.0194414 0)
(0.39894 0.0137055 0)
(0.380197 -0.00151618 0)
(0.3926 -0.01919 0)
(0.494179 -0.0156881 0)
(0.625215 0.0209232 0)
(0.625803 0.0464291 0)
(0.586794 0.0463236 0)
(0.551574 0.0220341 0)
(0.541345 0.0120623 0)
(0.54388 0.00541041 0)
(0.557718 0.00229825 0)
(0.605538 0.00851432 0)
(0.644171 0.0242997 0)
(0.637105 0.0291333 0)
(0.60762 0.0167492 0)
(0.535584 0.00797193 0)
(0.497058 0.00814311 0)
(0.474237 0.00548827 0)
(0.459133 -0.00233275 0)
(0.448105 -0.0110725 0)
(0.426747 -0.0171896 0)
(0.401258 -0.0203177 0)
(0.378583 -0.0237983 0)
(0.364912 -0.0298425 0)
(0.365709 -0.0353348 0)
(0.374853 -0.0405135 0)
(0.389422 -0.0514619 0)
(0.43669 -0.0595438 0)
(0.554878 -0.0630336 0)
(0.622425 -0.0690185 0)
(0.644398 -0.0760128 0)
(0.641487 -0.081745 0)
(0.635944 -0.0910325 0)
(0.600914 -0.0981181 0)
(0.5866 -0.105489 0)
(0.590965 -0.112052 0)
(0.609216 -0.122 0)
(0.623445 -0.130297 0)
(0.627173 -0.135299 0)
(0.623167 -0.139161 0)
(0.618487 -0.142555 0)
(0.618889 -0.143142 0)
(0.622303 -0.142169 0)
(0.627158 -0.141998 0)
(0.63118 -0.137209 0)
(0.64004 -0.130892 0)
(0.651431 -0.119382 0)
(0.660992 -0.104145 0)
(0.66513 -0.0856649 0)
(0.666711 -0.0632307 0)
(0.670522 -0.0389584 0)
(0.67713 -0.0153547 0)
(0.685237 0.00720804 0)
(0.690186 0.0314758 0)
(0.687409 0.0570415 0)
(0.68179 0.0809763 0)
(0.673631 0.102905 0)
(0.668099 0.118957 0)
(0.657364 0.134199 0)
(0.643025 0.142422 0)
(0.628899 0.148808 0)
(0.617796 0.150924 0)
(0.611599 0.148836 0)
(0.607453 0.14644 0)
(0.60355 0.140427 0)
(0.599596 0.136214 0)
(0.593506 0.131686 0)
(0.584951 0.127816 0)
(0.574296 0.123452 0)
(0.559153 0.118832 0)
(0.535792 0.113002 0)
(0.510838 0.107787 0)
(0.484779 0.104006 0)
(0.451633 0.0992298 0)
(0.421956 0.0949153 0)
(0.37923 0.0857756 0)
(0.349683 0.07667 0)
(0.303212 0.0655314 0)
(0.228031 0.0574235 0)
(0.187581 0.0492733 0)
(0.13765 0.0392685 0)
(0.108019 0.0312788 0)
(0.0857319 0.0267009 0)
(0.0443848 0.0234209 0)
(0.0318733 0.018049 0)
(0.0410294 0.0137793 0)
(0.0470229 0.0112998 0)
(0.0419587 0.009639 0)
(0.0297771 0.00757093 0)
(0.0240054 0.00495369 0)
(0.0220388 0.0022989 0)
(0.0128227 3.50063e-05 0)
(0.0210183 -0.0022794 0)
(0.0218247 -0.00410964 0)
(0.0206752 -0.00607337 0)
(0.0279446 -0.00727643 0)
(0.0231814 -0.00776081 0)
(0.0235859 -0.00879858 0)
(0.0433282 -0.00897425 0)
(0.0254115 -0.00899825 0)
(0.0441964 -0.00922621 0)
(0.0298087 -0.00940257 0)
(0.0247556 -0.0117957 0)
(0.0605266 -0.0145796 0)
(0.0292661 -0.0168025 0)
(0.0369718 -0.0230348 0)
(0.09061 -0.0347287 0)
(0.0463753 -0.0373239 0)
(0.101759 -0.0586801 0)
(0.109237 -0.0735686 0)
(0.117384 -0.0846573 0)
(0.12668 -0.0891736 0)
(0.128246 -0.0974846 0)
(0.143431 -0.105296 0)
(0.167665 -0.116246 0)
(0.185616 -0.127996 0)
(0.206714 -0.134449 0)
(0.228954 -0.141511 0)
(0.251126 -0.143326 0)
(0.274045 -0.145645 0)
(0.298371 -0.148922 0)
(0.32238 -0.146836 0)
(0.345963 -0.143487 0)
(0.369278 -0.139526 0)
(0.390696 -0.133648 0)
(0.411929 -0.125241 0)
(0.433558 -0.116956 0)
(0.452256 -0.104404 0)
(0.47002 -0.0910774 0)
(0.483966 -0.0754971 0)
(0.495566 -0.058367 0)
(0.505124 -0.0401956 0)
(0.510539 -0.0208474 0)
(0.512884 -0.00089029 0)
(0.511197 0.0191024 0)
(0.506145 0.0390432 0)
(0.496489 0.0575467 0)
(0.4842 0.0749793 0)
(0.469263 0.0908914 0)
(0.450659 0.102766 0)
(0.431368 0.114015 0)
(0.410762 0.123165 0)
(0.388816 0.127181 0)
(0.36721 0.131893 0)
(0.345448 0.131986 0)
(0.324163 0.132926 0)
(0.303263 0.132617 0)
(0.283443 0.128304 0)
(0.264596 0.12503 0)
(0.24485 0.121697 0)
(0.46988 -0.109697 0)
(0.487584 -0.0960525 0)
(0.503164 -0.0785223 0)
(0.515785 -0.0594647 0)
(0.525349 -0.0389518 0)
(0.530765 -0.0170767 0)
(0.531709 0.00523362 0)
(0.529115 0.0269241 -8.34905e-38)
(0.522831 0.0489974 0)
(0.510966 0.068548 0)
(0.497543 0.0870535 0)
(0.481324 0.104801 0)
(0.460886 0.117574 0)
(0.439949 0.130803 0)
(0.416559 0.138033 0)
(0.393132 0.14649 0)
(0.368975 0.153418 0)
(0.343877 0.155908 0)
(0.317006 0.155422 0)
(0.280426 0.147441 0)
(0.261894 0.143334 0)
(0.253804 0.140783 0)
(0.307767 0.160487 0)
(0.228728 0.106216 0)
(0.216524 0.0883667 0)
(0.15878 0.0757891 0)
(0.0929346 0.0842113 0)
(0.0740076 0.0707458 1.85907e-37)
(0.0602735 0.0743234 0)
(0.0483286 0.0765971 0)
(0.0445741 0.0666652 0)
(0.0407535 0.0596389 -2.9978e-37)
(0.0373091 0.0525092 0)
(0.0336564 0.0474211 0)
(0.0308011 0.0427783 0)
(0.0283622 0.0383152 7.26546e-38)
(0.0261367 0.0340575 0)
(0.0241851 0.0300299 0)
(0.0222467 0.0259726 0)
(0.0202242 0.0222907 1.32927e-37)
(0.0182895 0.0188413 0)
(0.0163739 0.0156242 0)
(0.0143757 0.0125768 0)
(0.011561 0.00996648 2.49289e-38)
(0.0096786 0.00909342 0)
(0.0108505 0.00886503 0)
(0.0121266 0.00553404 0)
(0.0113734 0.000800454 0)
(0.00856889 -0.0027093 0)
(0.00638817 -0.00484303 0)
(0.00539609 -0.00826988 0)
(0.00295044 -0.0118229 0)
(0.00230269 -0.0146941 0)
(0.000159835 -0.0210941 0)
(-0.00441378 -0.0241718 0)
(-0.00297789 -0.0271427 0)
(-0.00605001 -0.0377293 0)
(-0.00878793 -0.0386846 0)
(-0.0103327 -0.0421673 0)
(-0.0116204 -0.0505572 0)
(-0.00701202 -0.0494113 0)
(-0.0133595 -0.0611899 0)
(-0.0051792 -0.0652039 1.95782e-39)
(-0.0034762 -0.0692246 0)
(0.00276409 -0.0852563 0)
(0.025338 -0.0903818 0)
(0.0327391 -0.0967675 0)
(0.0600808 -0.105837 0)
(0.111404 -0.111903 0)
(0.136529 -0.121204 0)
(0.200297 -0.127508 0)
(0.226108 -0.130536 -2.15962e-38)
(0.253045 -0.138275 0)
(0.325901 -0.146707 0)
(0.330089 -0.139071 0)
(0.358706 -0.131804 0)
(0.382595 -0.122711 0)
(0.398301 -0.119395 0)
(0.413545 -0.123586 0)
(0.427527 -0.114548 6.19424e-38)
(0.456067 -0.116595 0)
(0.495262 -0.116102 0)
(0.534527 -0.111673 0)
(0.568764 -0.102824 0)
(0.597084 -0.094876 0)
(0.626017 -0.0847033 0)
(0.647409 -0.0697212 0)
(0.661531 -0.0507191 -5.75034e-38)
(0.665587 -0.029039 0)
(0.663255 -0.00718285 5.48275e-38)
(0.656231 0.0140481 0)
(0.646442 0.0340712 0)
(0.637584 0.0539895 -6.13597e-38)
(0.625404 0.0732009 0)
(0.614192 0.0885902 0)
(0.602321 0.103822 0)
(0.587696 0.117563 0)
(0.572253 0.129634 0)
(0.55212 0.141646 0)
(0.532993 0.150461 0)
(0.513432 0.156409 0)
(0.496816 0.158084 0)
(0.486881 0.156542 0)
(0.479182 0.152853 0)
(0.476124 0.147644 0)
(0.476074 0.140977 0)
(0.4731 0.133635 0)
(0.476901 0.126482 0)
(0.505159 0.119564 0)
(0.463878 0.114428 0)
(0.392527 0.107701 0)
(0.35244 0.0951572 2.41858e-38)
(0.322857 0.0908395 0)
(0.302188 0.0824032 0)
(0.2944 0.0748249 0)
(0.290523 0.065907 0)
(0.288193 0.0607014 0)
(0.290146 0.0576915 0)
(0.290052 0.0467747 0)
(0.288361 0.0357003 0)
(0.282172 0.0260815 0)
(0.280527 0.0201764 0)
(0.280558 0.0138113 0)
(0.289181 0.0111159 0)
(0.303353 0.00616561 0)
(0.302008 -0.000369854 0)
(0.304764 -0.00495593 0)
(0.309753 -0.00860466 0)
(0.311056 -0.0109763 0)
(0.308366 -0.0124812 0)
(0.295279 -0.0159291 0)
(0.284175 -0.020728 0)
(0.285085 -0.0240041 0)
(0.286367 -0.0302899 0)
(0.271583 -0.0361311 0)
(0.256628 -0.0482305 0)
(0.276927 -0.0485794 0)
(0.342596 -0.0368353 0)
(0.377842 -0.0298493 0)
(0.388583 -0.0304929 0)
(0.388964 -0.0346658 0)
(0.395656 -0.0360968 0)
(0.400374 -0.0399173 0)
(0.409486 -0.0422961 0)
(0.426287 -0.044053 0)
(0.439571 -0.0451185 0)
(0.456001 -0.0485204 0)
(0.482654 -0.0501833 0)
(0.512168 -0.0474439 0)
(0.52607 -0.045855 0)
(0.52997 -0.0478803 0)
(0.531378 -0.0540669 0)
(0.521698 -0.0624857 0)
(0.484376 -0.0694189 0)
(0.449641 -0.075584 0)
(0.434602 -0.0810706 0)
(0.440558 -0.0851065 0)
(0.467021 -0.0872185 0)
(0.505001 -0.0885876 -4.0169e-38)
(0.55143 -0.0901558 0)
(0.574519 -0.0920643 0)
(0.580672 -0.0936141 0)
(0.575532 -0.0955115 0)
(0.568985 -0.0984936 0)
(0.563306 -0.0991187 0)
(0.56428 -0.100907 0)
(0.567217 -0.0961908 0)
(0.574105 -0.0945755 0)
(0.585153 -0.0893178 0)
(0.594187 -0.0802736 0)
(0.60514 -0.0733962 0)
(0.616138 -0.0617118 0)
(0.623596 -0.049205 0)
(0.630882 -0.03575 0)
(0.632164 -0.0163094 0)
(0.633387 -0.00160853 0)
(0.633408 0.0169575 0)
(0.633643 0.0383904 0)
(0.629796 0.0505479 0)
(0.634818 0.0680825 0)
(0.627572 0.0928436 0)
(0.625157 0.101044 0)
(0.620353 0.114404 0)
(0.610197 0.119787 0)
(0.599201 0.127566 0)
(0.590517 0.131019 0)
(0.591242 0.130421 0)
(0.602194 0.127646 0)
(0.629578 0.126176 0)
(0.6637 0.12145 0)
(0.715352 0.11534 0)
(0.759519 0.100294 0)
(0.687903 0.0933476 0)
(0.601287 0.089038 0)
(0.549995 0.0833443 0)
(0.529296 0.0851808 1.16568e-38)
(0.530438 0.0757427 0)
(0.537771 0.071182 0)
(0.545929 0.0628832 0)
(0.54356 0.0559068 0)
(0.528198 0.0505114 0)
(0.495841 0.0416454 0)
(0.451569 0.0334733 0)
(0.415495 0.030034 0)
(0.39474 0.0306119 0)
(0.356901 0.0314436 0)
(0.286168 0.0301086 0)
(0.231719 0.0197949 0)
(0.221624 -0.000819157 0)
(0.245932 -0.0345348 0)
(0.322138 -0.041523 0)
(0.502155 -0.00227105 0)
(0.579103 0.0413331 0)
(0.573872 0.0452102 0)
(0.570081 0.0311433 0)
(0.561 0.0184426 0)
(0.555718 0.00797743 0)
(0.562611 -0.0015129 0)
(0.584598 -0.00776714 0)
(0.640951 0.00678235 0)
(0.66975 0.0221586 0)
(0.667398 0.0221409 0)
(0.64684 0.0192809 0)
(0.620076 0.0146747 0)
(0.606074 0.00895859 0)
(0.601969 0.00184049 0)
(0.604701 -0.00335694 0)
(0.618707 -0.00700302 0)
(0.632898 -0.0116188 0)
(0.63335 -0.0145947 0)
(0.618168 -0.0215177 0)
(0.579929 -0.0347765 0)
(0.560157 -0.046122 0)
(0.563925 -0.0594545 0)
(0.582483 -0.0855005 0)
(0.62889 -0.0974162 0)
(0.720099 -0.0850436 0)
(0.75112 -0.0762063 0)
(0.744465 -0.076043 0)
(0.709142 -0.0745499 0)
(0.626705 -0.0857074 0)
(0.594497 -0.102457 0)
(0.598209 -0.113002 0)
(0.620878 -0.124298 0)
(0.651487 -0.13153 0)
(0.671492 -0.136638 0)
(0.698794 -0.140738 0)
(0.708149 -0.143112 0)
(0.703593 -0.142361 0)
(0.701806 -0.143249 0)
(0.699013 -0.142637 0)
(0.695799 -0.138121 0)
(0.697124 -0.13076 0)
(0.699624 -0.119998 0)
(0.706552 -0.104955 0)
(0.716905 -0.0857312 0)
(0.72597 -0.0633203 0)
(0.732787 -0.0398645 0)
(0.736771 -0.0158629 0)
(0.73985 0.00786557 0)
(0.742327 0.0339779 0)
(0.739851 0.0613624 0)
(0.734728 0.0864965 0)
(0.725803 0.109053 0)
(0.719206 0.125892 0)
(0.710347 0.142398 0)
(0.700522 0.150775 0)
(0.694434 0.156535 0)
(0.691525 0.158736 0)
(0.691763 0.158164 0)
(0.692901 0.156264 0)
(0.691877 0.152395 0)
(0.694303 0.148557 0)
(0.687817 0.144261 -1.95833e-38)
(0.683708 0.139074 0)
(0.692941 0.133961 0)
(0.755817 0.128572 0)
(0.748116 0.128164 0)
(0.686458 0.127468 0)
(0.603891 0.122815 0)
(0.543796 0.114454 0)
(0.501656 0.0989922 0)
(0.489059 0.0870599 0)
(0.47276 0.0788295 0)
(0.43782 0.0798564 0)
(0.35825 0.0767868 0)
(0.246419 0.0621008 0)
(0.125356 0.0543803 0)
(0.0306509 0.04141 0)
(-0.00155271 0.0372 0)
(-0.00179271 0.0312851 0)
(0.00655803 0.0188877 0)
(0.0165648 0.0116904 0)
(0.0199015 0.0129692 0)
(0.0149907 0.0140881 0)
(0.0173444 0.0100794 -2.55553e-39)
(0.0211451 0.00738839 0)
(0.020361 0.00432231 0)
(0.0154565 0.000617234 0)
(0.0170473 -0.0030878 0)
(0.0170487 -0.00525257 0)
(0.0151756 -0.00835208 0)
(0.0137433 -0.0100241 0)
(0.0135766 -0.0114042 0)
(0.0124556 -0.0161047 0)
(0.01404 -0.0142573 0)
(0.0110821 -0.015399 0)
(0.0138353 -0.0162085 0)
(0.016952 -0.0144141 0)
(0.0158957 -0.0236029 0)
(0.0200337 -0.0207377 0)
(0.0223332 -0.0207729 0)
(0.0232549 -0.037257 0)
(0.0324727 -0.0281515 0)
(0.0192227 -0.0387052 0)
(0.029139 -0.0411917 0)
(0.0454268 -0.0430116 0)
(0.00617157 -0.0561656 0)
(0.0792581 -0.0694778 0)
(0.0563688 -0.0813593 0)
(0.113201 -0.0965674 0)
(0.1765 -0.124363 0)
(0.173977 -0.127858 0)
(0.198259 -0.132714 0)
(0.226121 -0.144122 0)
(0.247756 -0.150234 0)
(0.272179 -0.152472 0)
(0.297373 -0.154504 0)
(0.322269 -0.151692 0)
(0.346621 -0.148172 -4.76129e-41)
(0.370324 -0.143607 0)
(0.391909 -0.13801 0)
(0.413601 -0.129454 0)
(0.435739 -0.121006 0)
(0.454875 -0.108059 0)
(0.47302 -0.0941708 0)
(0.48721 -0.0781916 0)
(0.499111 -0.060487 0)
(0.508951 -0.0416616 0)
(0.514511 -0.0216288 0)
(0.516945 -0.000936174 -4.48905e-38)
(0.51524 0.0197858 0)
(0.510091 0.0405217 0)
(0.500136 0.0597457 0)
(0.487484 0.0778151 0)
(0.472147 0.0942726 0)
(0.453015 0.106536 0)
(0.433227 0.118105 0)
(0.412141 0.127457 0)
(0.389736 0.131476 0)
(0.367738 0.136298 0)
(0.345613 0.136284 0)
(0.324001 0.137034 0)
(0.302779 0.136609 0)
(0.282715 0.13208 0)
(0.264086 0.129517 0)
(0.244279 0.12648 0)
(0.472613 -0.113626 0)
(0.490817 -0.0995254 0)
(0.506813 -0.0814017 0)
(0.519783 -0.0616972 0)
(0.529661 -0.0404483 0)
(0.535253 -0.0177409 0)
(0.536149 0.0054014 0)
(0.533508 0.02786 -8.68423e-38)
(0.527117 0.0508081 0)
(0.514807 0.071074 0)
(0.501065 0.0900897 0)
(0.48448 0.108606 0)
(0.463512 0.121492 0)
(0.442156 0.135139 0)
(0.418402 0.143631 0)
(0.394584 0.153527 0)
(0.365164 0.156674 0)
(0.327014 0.150546 0)
(0.319066 0.156094 0)
(0.27809 0.131785 0)
(0.28676 0.116004 0)
(0.273116 0.105922 0)
(0.218924 0.0848923 0)
(0.115321 0.0945187 0)
(0.0978526 0.0987671 0)
(0.0625714 0.107297 0)
(0.0559976 0.0964762 0)
(0.0486454 0.0822564 2.45872e-37)
(0.0414132 0.0791251 0)
(0.0414153 0.0750615 0)
(0.0403874 0.0663241 0)
(0.0375638 0.0594781 -2.96027e-37)
(0.0346529 0.0526669 0)
(0.0314953 0.0474738 0)
(0.0289413 0.0427808 0)
(0.0267313 0.0383202 7.27115e-38)
(0.0246944 0.0340828 0)
(0.02288 0.0300733 0)
(0.0210743 0.0260736 0)
(0.0191938 0.0224359 1.34069e-37)
(0.0173801 0.0190438 0)
(0.0155733 0.0159104 0)
(0.0137335 0.0129357 0)
(0.0112518 0.010595 2.59316e-38)
(0.00954954 0.0100344 0)
(0.0104307 0.00905755 0)
(0.0113459 0.00517314 0)
(0.0107565 9.84336e-05 0)
(0.00856163 -0.00409357 0)
(0.00672874 -0.00608847 0)
(0.00616015 -0.00963434 0)
(0.00410044 -0.0129566 0)
(0.00383744 -0.0155813 0)
(0.00239164 -0.021575 0)
(-0.00144095 -0.0234159 0)
(0.000556225 -0.0252615 0)
(-0.00133819 -0.0343437 0)
(-0.00485706 -0.0354268 0)
(-0.00153105 -0.0385268 0)
(-0.00252524 -0.0464871 0)
(0.00409365 -0.0490552 0)
(0.00698216 -0.0596576 0)
(0.00731264 -0.0697753 3.17393e-39)
(0.0151441 -0.0741942 0)
(0.0204878 -0.0894736 0)
(0.0280105 -0.0939952 0)
(0.0371635 -0.100791 0)
(0.0538244 -0.111566 0)
(0.0668702 -0.118316 0)
(0.087956 -0.131328 0)
(0.112364 -0.136756 0)
(0.148622 -0.131753 -1.04144e-38)
(0.137494 -0.135999 0)
(0.207203 -0.137518 0)
(0.267114 -0.1373 0)
(0.358342 -0.135309 0)
(0.392718 -0.126331 0)
(0.41039 -0.123697 0)
(0.418517 -0.127372 0)
(0.429524 -0.121905 6.41848e-38)
(0.456593 -0.12454 0)
(0.497575 -0.12356 0)
(0.538526 -0.117802 0)
(0.573165 -0.108233 0)
(0.602225 -0.0999374 0)
(0.631227 -0.0890309 0)
(0.65428 -0.0719052 0)
(0.66845 -0.0502561 -6.00408e-38)
(0.672256 -0.0268092 0)
(0.670023 -0.00433898 5.12823e-38)
(0.663316 0.0172574 0)
(0.653806 0.0373854 0)
(0.644445 0.0581384 -6.28011e-38)
(0.631942 0.0782025 0)
(0.62067 0.0939127 0)
(0.609752 0.110936 0)
(0.597798 0.126209 0)
(0.586135 0.140264 0)
(0.57389 0.153206 0)
(0.566009 0.161992 0)
(0.562686 0.167404 0)
(0.561483 0.168525 0)
(0.566545 0.165986 0)
(0.565277 0.161532 0)
(0.578753 0.152912 0)
(0.620038 0.136735 0)
(0.556098 0.127423 0)
(0.477292 0.116485 0)
(0.415842 0.111668 0)
(0.360093 0.110571 0)
(0.320725 0.107361 0)
(0.297628 0.0970521 2.77489e-38)
(0.285062 0.0934503 0)
(0.278619 0.0851885 0)
(0.275582 0.0754692 0)
(0.271076 0.0666886 0)
(0.267593 0.061076 0)
(0.262928 0.0572314 0)
(0.246262 0.0485875 0)
(0.216988 0.0391782 0)
(0.174321 0.0296538 0)
(0.153533 0.0231933 0)
(0.13744 0.0141435 0)
(0.140797 0.00951542 0)
(0.145209 0.00415842 0)
(0.138255 -0.00136151 0)
(0.143082 -0.00634241 0)
(0.145355 -0.0111271 0)
(0.153246 -0.0112006 0)
(0.149303 -0.0115767 0)
(0.130955 -0.013688 0)
(0.117017 -0.0196465 0)
(0.118342 -0.024115 0)
(0.11646 -0.0285103 0)
(0.102167 -0.0362341 0)
(0.0970883 -0.0495672 0)
(0.11081 -0.0555963 0)
(0.167424 -0.0486206 0)
(0.226878 -0.0381959 0)
(0.264564 -0.0335729 0)
(0.267568 -0.0359384 0)
(0.282646 -0.036851 0)
(0.287853 -0.0418861 0)
(0.302425 -0.0454662 0)
(0.325304 -0.0484121 0)
(0.351619 -0.0493544 0)
(0.371279 -0.0550751 0)
(0.399793 -0.0586322 0)
(0.45323 -0.0554322 0)
(0.493924 -0.0509817 0)
(0.5153 -0.0520705 0)
(0.536057 -0.0557565 0)
(0.556685 -0.0591494 0)
(0.565494 -0.0617167 0)
(0.565847 -0.0676445 0)
(0.555577 -0.0769731 0)
(0.539616 -0.0860181 0)
(0.515137 -0.0922518 0)
(0.502069 -0.0974713 -4.51491e-38)
(0.53825 -0.0987815 0)
(0.568793 -0.0943834 0)
(0.628594 -0.0940562 0)
(0.648217 -0.0955063 0)
(0.651075 -0.0968653 0)
(0.63943 -0.0976296 0)
(0.630504 -0.0997831 0)
(0.621468 -0.0967637 0)
(0.616575 -0.0956848 0)
(0.616371 -0.0904738 0)
(0.61902 -0.0818917 0)
(0.626078 -0.0753873 0)
(0.634642 -0.0621745 0)
(0.6424 -0.0504491 0)
(0.65377 -0.0371539 0)
(0.657669 -0.0167318 0)
(0.658376 -0.00124051 0)
(0.661813 0.0198714 0)
(0.659981 0.0409935 0)
(0.659139 0.0510647 0)
(0.664201 0.0704142 0)
(0.659211 0.0921938 0)
(0.657639 0.10621 0)
(0.662425 0.120306 0)
(0.66862 0.129363 0)
(0.678628 0.13463 0)
(0.688039 0.136132 0)
(0.710265 0.132413 0)
(0.739687 0.126328 0)
(0.80264 0.121611 0)
(0.833228 0.101812 0)
(0.759906 0.0971292 0)
(0.653938 0.0913547 0)
(0.571317 0.103518 0)
(0.527856 0.102688 0)
(0.513746 0.0919444 0)
(0.512173 0.0853406 1.43705e-38)
(0.517433 0.0752038 0)
(0.518578 0.0706023 0)
(0.514636 0.0634126 0)
(0.503667 0.0570248 0)
(0.481832 0.0519421 0)
(0.433355 0.0488046 0)
(0.322456 0.0465509 0)
(0.246915 0.0430279 0)
(0.210808 0.0411113 0)
(0.182502 0.041988 0)
(0.161786 0.0391648 0)
(0.156794 0.0248073 0)
(0.167558 -0.00633829 0)
(0.18711 -0.0440876 0)
(0.220645 -0.0616488 0)
(0.337778 -0.0280697 0)
(0.464441 0.0300521 0)
(0.516974 0.046227 0)
(0.535416 0.0292837 0)
(0.536036 0.0168661 0)
(0.526379 0.00435071 0)
(0.49407 -0.00557254 0)
(0.484315 -0.00547439 0)
(0.504631 0.0023667 0)
(0.583693 0.018876 0)
(0.618811 0.0215579 0)
(0.618009 0.0200352 0)
(0.611757 0.016345 0)
(0.604484 0.00831467 0)
(0.595198 -0.0024891 0)
(0.588654 -0.0109502 0)
(0.592243 -0.0162035 0)
(0.614771 -0.017479 0)
(0.641762 -0.0177127 0)
(0.644265 -0.0196293 0)
(0.639426 -0.0242366 0)
(0.626582 -0.0356014 0)
(0.616312 -0.0570456 0)
(0.61709 -0.0808493 0)
(0.643976 -0.0973662 0)
(0.719676 -0.0969906 0)
(0.766699 -0.0795151 0)
(0.765121 -0.072126 0)
(0.73111 -0.0625697 0)
(0.698329 -0.0701625 0)
(0.672595 -0.0929566 0)
(0.645617 -0.116081 0)
(0.63079 -0.130979 0)
(0.64712 -0.137989 0)
(0.664545 -0.141655 0)
(0.702983 -0.143756 0)
(0.796597 -0.144218 0)
(0.807323 -0.143709 0)
(0.808812 -0.142569 0)
(0.802383 -0.14039 0)
(0.782725 -0.136547 0)
(0.7737 -0.130414 0)
(0.766107 -0.119623 0)
(0.75878 -0.105211 0)
(0.760717 -0.086838 0)
(0.769059 -0.0642817 0)
(0.780515 -0.039392 0)
(0.788905 -0.0144842 0)
(0.791832 0.0105317 0)
(0.790221 0.0372321 0)
(0.786042 0.0655758 0)
(0.782951 0.0918793 0)
(0.782197 0.115127 0)
(0.783625 0.133404 0)
(0.787506 0.149281 0)
(0.788329 0.158175 0)
(0.792131 0.160337 0)
(0.795531 0.161428 0)
(0.803846 0.161674 0)
(0.815223 0.158737 0)
(0.82256 0.155398 0)
(0.884971 0.143327 0)
(0.934131 0.136099 5.32561e-39)
(0.908226 0.129906 0)
(0.797179 0.118137 0)
(0.707617 0.110947 0)
(0.634516 0.118958 0)
(0.580969 0.122122 0)
(0.53047 0.117974 0)
(0.49007 0.108473 0)
(0.4703 0.0954292 0)
(0.483507 0.0865302 0)
(0.482417 0.0864554 0)
(0.455472 0.0941796 0)
(0.361349 0.0913312 0)
(0.241141 0.0861869 0)
(0.136167 0.0739411 0)
(0.0676464 0.0517265 0)
(0.066468 0.03452 0)
(0.0775962 0.0253661 0)
(0.0825162 0.0165683 0)
(0.0720489 0.0101705 0)
(0.0629392 0.0112334 0)
(0.0574212 0.0112915 0)
(0.0492524 0.00744559 -2.2768e-39)
(0.0424797 0.00575182 0)
(0.0358977 0.00383631 0)
(0.0302556 0.000448346 0)
(0.0254379 -0.003225 0)
(0.022273 -0.0048949 0)
(0.0200255 -0.00671169 0)
(0.0173286 -0.00842297 0)
(0.0173218 -0.00962055 0)
(0.0155122 -0.012023 0)
(0.0146615 -0.011585 0)
(0.0159091 -0.0120981 0)
(0.0159505 -0.0137344 0)
(0.0206953 -0.0129909 0)
(0.0230655 -0.0182175 0)
(0.0232565 -0.0204214 0)
(0.0316648 -0.0213321 0)
(0.0332607 -0.0330149 0)
(0.0344851 -0.0365589 0)
(0.0416801 -0.0418573 0)
(0.0405689 -0.0588772 0)
(0.047503 -0.0527796 0)
(0.0459758 -0.0722181 0)
(0.0465683 -0.0742721 0)
(0.0412267 -0.0780205 0)
(0.0134485 -0.0985314 0)
(0.105044 -0.0950071 0)
(0.0375052 -0.0960128 0)
(0.214232 -0.144251 0)
(0.231532 -0.146998 0)
(0.228193 -0.147711 0)
(0.266296 -0.153538 0)
(0.292969 -0.160891 0)
(0.320012 -0.158594 0)
(0.346809 -0.154866 4.17304e-40)
(0.371001 -0.148031 0)
(0.392953 -0.142393 0)
(0.415264 -0.133629 0)
(0.437962 -0.125107 0)
(0.457586 -0.111789 0)
(0.476116 -0.0972886 0)
(0.490545 -0.0809615 0)
(0.502776 -0.0626652 0)
(0.512914 -0.0431643 0)
(0.518626 -0.0224353 0)
(0.521155 -0.000981903 -4.60874e-38)
(0.519437 0.0204848 0)
(0.514196 0.042034 0)
(0.503923 0.0620161 0)
(0.490882 0.080739 0)
(0.475131 0.0977427 0)
(0.455445 0.110406 0)
(0.435127 0.122282 0)
(0.413538 0.131898 0)
(0.39066 0.13589 0)
(0.368236 0.140626 0)
(0.345702 0.140422 0)
(0.324174 0.141873 0)
(0.303018 0.142622 0)
(0.282082 0.136192 0)
(0.255358 0.129459 0)
(0.233406 0.123165 0)
(0.475426 -0.117693 0)
(0.494151 -0.10307 0)
(0.510578 -0.0843447 0)
(0.523917 -0.0639926 0)
(0.534129 -0.0420062 0)
(0.539906 -0.0185439 0)
(0.540761 0.00543657 0)
(0.538068 0.0288082 0)
(0.531564 0.0526894 0)
(0.518768 0.0736725 0)
(0.504684 0.093172 0)
(0.487797 0.112139 0)
(0.466437 0.126896 0)
(0.444413 0.142 0)
(0.412012 0.146446 0)
(0.378785 0.148319 0)
(0.341317 0.144668 0)
(0.430611 0.180301 0)
(0.349111 0.125103 0)
(0.331722 0.101698 0)
(0.182471 0.103143 0)
(0.114386 0.107877 0)
(0.072151 0.129527 0)
(0.0571958 0.118195 0)
(0.0516015 0.109539 0)
(0.0485051 0.104241 0)
(0.0487036 0.0944747 0)
(0.0438777 0.0821144 0)
(0.0386592 0.0797813 0)
(0.0390222 0.0751258 0)
(0.0380612 0.0668863 0)
(0.0355318 0.0601628 0)
(0.0328539 0.0535148 0)
(0.0299642 0.0482055 0)
(0.0275494 0.0434137 0)
(0.0254423 0.0388887 0)
(0.0235003 0.0346006 0)
(0.0217567 0.0305511 0)
(0.0200302 0.0265495 0)
(0.018249 0.0228923 0)
(0.0165196 0.0194688 0)
(0.0147969 0.0163099 0)
(0.0130572 0.0133644 0)
(0.0108131 0.0108912 0)
(0.00935532 0.00991151 0)
(0.0100221 0.00889399 0)
(0.010654 0.0053887 0)
(0.0101485 0.00113196 0)
(0.00816196 -0.00272584 0)
(0.00644302 -0.0051727 0)
(0.00597066 -0.0087301 0)
(0.00407222 -0.0123663 0)
(0.00378046 -0.0152186 0)
(0.0025821 -0.0211852 0)
(-0.000972352 -0.0240492 0)
(0.000897866 -0.0266972 0)
(-0.000562196 -0.0353349 0)
(-0.00418092 -0.0366249 0)
(-0.000441067 -0.0402868 0)
(-0.00130756 -0.0480194 0)
(0.0039847 -0.0496181 0)
(0.00843591 -0.0600161 0)
(0.00824482 -0.0685697 0)
(0.0165348 -0.0742116 0)
(0.0215183 -0.0894646 0)
(0.0243035 -0.0955782 0)
(0.0352973 -0.103222 0)
(0.0445882 -0.115082 0)
(0.0558643 -0.120099 0)
(0.0799463 -0.133629 0)
(0.0837204 -0.143738 0)
(0.12971 -0.136072 0)
(0.142211 -0.148617 0)
(0.132153 -0.150183 0)
(0.128811 -0.152295 0)
(0.188183 -0.159262 0)
(0.354381 -0.131163 0)
(0.402388 -0.124172 0)
(0.409226 -0.127618 0)
(0.418836 -0.127497 0)
(0.443489 -0.131707 0)
(0.486099 -0.131674 0)
(0.530389 -0.125327 0)
(0.567953 -0.114274 0)
(0.599695 -0.105793 0)
(0.629536 -0.0942822 0)
(0.656177 -0.074588 0)
(0.673663 -0.0502569 0)
(0.681003 -0.0271389 0)
(0.681724 -0.00469044 0)
(0.677494 0.0182801 0)
(0.669444 0.0395175 0)
(0.659965 0.0619536 0)
(0.647861 0.0835983 0)
(0.636956 0.101398 0)
(0.62941 0.118873 0)
(0.624692 0.134742 0)
(0.624567 0.148187 0)
(0.630537 0.158594 0)
(0.641375 0.166887 0)
(0.654582 0.169907 0)
(0.666612 0.167242 0)
(0.721123 0.155122 0)
(0.69527 0.143919 0)
(0.595506 0.129901 0)
(0.506189 0.124916 0)
(0.417974 0.131614 0)
(0.350838 0.130363 0)
(0.310928 0.125547 0)
(0.28334 0.119987 0)
(0.26533 0.11312 0)
(0.25436 0.101629 0)
(0.235783 0.0955576 0)
(0.219973 0.0870772 0)
(0.199775 0.077017 0)
(0.180016 0.0682418 0)
(0.168005 0.0628399 0)
(0.150512 0.0599628 0)
(0.127933 0.0537255 0)
(0.109103 0.045798 0)
(0.0851642 0.0351714 0)
(0.0789429 0.0255643 0)
(0.0684119 0.0157332 0)
(0.0682109 0.00990796 0)
(0.064836 0.00531385 0)
(0.059565 -0.00111493 0)
(0.0624358 -0.00722569 0)
(0.0552616 -0.0114172 0)
(0.0551816 -0.0107801 0)
(0.0508717 -0.0104462 0)
(0.0482579 -0.0132713 0)
(0.047171 -0.0195877 0)
(0.0466299 -0.0250128 0)
(0.0485927 -0.0281251 0)
(0.0475239 -0.0365868 0)
(0.0494009 -0.0509996 0)
(0.0501021 -0.0596185 0)
(0.0569937 -0.0564909 0)
(0.0781278 -0.0462097 0)
(0.0978816 -0.0390137 0)
(0.102921 -0.039431 0)
(0.125782 -0.0400115 0)
(0.130919 -0.0462419 0)
(0.149286 -0.0496679 0)
(0.16237 -0.0538361 0)
(0.186622 -0.0555838 0)
(0.198229 -0.0615263 0)
(0.216417 -0.0687695 0)
(0.269171 -0.0678983 0)
(0.328658 -0.0613388 0)
(0.365244 -0.060329 0)
(0.401235 -0.0641616 0)
(0.457416 -0.0660256 0)
(0.500094 -0.066649 0)
(0.537945 -0.0698292 0)
(0.554742 -0.0753655 0)
(0.568467 -0.0807315 0)
(0.590524 -0.085735 0)
(0.60738 -0.0985123 0)
(0.646044 -0.103266 0)
(0.644002 -0.103905 0)
(0.64814 -0.103664 0)
(0.659994 -0.0974529 0)
(0.677553 -0.0942444 0)
(0.722212 -0.0960785 0)
(0.7263 -0.0977009 0)
(0.717334 -0.0935458 0)
(0.700528 -0.0950616 0)
(0.684562 -0.0894903 0)
(0.673039 -0.0842371 0)
(0.671525 -0.0791314 0)
(0.673489 -0.0651429 0)
(0.678058 -0.0540892 0)
(0.687536 -0.0397229 0)
(0.692679 -0.0193845 0)
(0.695984 -0.00349709 0)
(0.700049 0.0171406 0)
(0.700935 0.038903 0)
(0.702282 0.0524492 0)
(0.709677 0.0735046 0)
(0.72232 0.092131 0)
(0.726096 0.112244 0)
(0.746253 0.121787 0)
(0.767006 0.130291 0)
(0.80592 0.132614 0)
(0.848755 0.132277 0)
(0.931899 0.118883 0)
(0.95715 0.101598 0)
(0.86577 0.104012 0)
(0.724453 0.10032 0)
(0.613949 0.121172 0)
(0.548416 0.119153 0)
(0.514602 0.116112 0)
(0.492634 0.106147 0)
(0.464603 0.0935838 0)
(0.432941 0.0861668 0)
(0.406162 0.0771353 0)
(0.382074 0.0717722 0)
(0.358354 0.0657496 0)
(0.331777 0.0614287 0)
(0.299987 0.0629803 0)
(0.242238 0.0672261 0)
(0.18194 0.062034 0)
(0.148266 0.0495018 0)
(0.129003 0.0445189 0)
(0.1168 0.0430485 0)
(0.116178 0.0371445 0)
(0.130011 0.0194126 0)
(0.139876 -0.00842185 0)
(0.144293 -0.0442369 0)
(0.142819 -0.0669269 0)
(0.188292 -0.0487274 0)
(0.318962 0.00366343 0)
(0.402384 0.0274817 0)
(0.430483 0.0226673 0)
(0.428443 0.0181912 0)
(0.384014 0.0162412 0)
(0.268516 0.00659718 0)
(0.243734 -0.00766248 0)
(0.270749 -0.00838078 0)
(0.380425 0.002335 0)
(0.467374 0.0121086 0)
(0.49962 0.0156127 0)
(0.503413 0.0150391 0)
(0.493782 0.0128145 0)
(0.453872 0.00546596 0)
(0.419169 -0.00527934 0)
(0.414994 -0.0145147 0)
(0.431442 -0.0227946 0)
(0.491235 -0.0218251 0)
(0.523433 -0.0231292 0)
(0.536622 -0.0284602 0)
(0.541659 -0.0387076 0)
(0.524831 -0.050599 0)
(0.488551 -0.0815914 0)
(0.492771 -0.108566 0)
(0.559207 -0.111983 0)
(0.682304 -0.0881094 0)
(0.734327 -0.0683643 0)
(0.743177 -0.0658811 0)
(0.756873 -0.0744149 0)
(0.795762 -0.092818 0)
(0.826334 -0.110605 0)
(0.829631 -0.126923 0)
(0.80186 -0.136675 0)
(0.762325 -0.145358 0)
(0.74075 -0.161599 0)
(0.836229 -0.159077 0)
(0.887117 -0.142202 0)
(0.870614 -0.140989 0)
(0.872107 -0.13654 0)
(0.879709 -0.1316 0)
(0.874878 -0.126654 0)
(0.855241 -0.116548 0)
(0.841903 -0.103654 0)
(0.833351 -0.0875985 0)
(0.831508 -0.0666925 0)
(0.837041 -0.0428994 0)
(0.84585 -0.0176951 0)
(0.853234 0.00881738 0)
(0.857449 0.037801 0)
(0.860275 0.0674943 0)
(0.865283 0.0947204 0)
(0.87578 0.118048 0)
(0.888995 0.135561 0)
(0.906852 0.148194 0)
(0.915428 0.157213 0)
(0.93606 0.156057 0)
(0.952085 0.155479 0)
(0.986753 0.152078 0)
(1.08722 0.139602 0)
(1.08896 0.136011 0)
(1.02304 0.1193 0)
(0.912439 0.124636 0)
(0.786622 0.137517 0)
(0.671652 0.140618 0)
(0.5946 0.133001 0)
(0.549253 0.131574 0)
(0.500134 0.132652 0)
(0.433522 0.131001 0)
(0.380738 0.116485 0)
(0.374014 0.0942173 0)
(0.423426 0.0830921 0)
(0.467319 0.0887623 0)
(0.448863 0.101204 0)
(0.365716 0.110984 0)
(0.265969 0.105609 0)
(0.192126 0.0893891 0)
(0.165251 0.0568325 0)
(0.167913 0.0337753 0)
(0.15951 0.0253353 0)
(0.143782 0.0186631 0)
(0.114227 0.0148978 0)
(0.090374 0.0150504 0)
(0.0750223 0.0147875 0)
(0.0601645 0.0113343 0)
(0.0477756 0.00842817 0)
(0.038826 0.00620618 0)
(0.0325591 0.00261244 0)
(0.0265202 -0.00167556 0)
(0.0228085 -0.00401877 0)
(0.0203882 -0.00685241 0)
(0.0177995 -0.00863518 0)
(0.0177218 -0.00990159 0)
(0.0160147 -0.0132333 0)
(0.0150172 -0.012447 0)
(0.0166317 -0.0134335 0)
(0.0166313 -0.0147605 0)
(0.020692 -0.0141293 0)
(0.0235477 -0.0198714 0)
(0.0237392 -0.020296 0)
(0.0314617 -0.0217701 0)
(0.0337352 -0.0326751 0)
(0.0346053 -0.0327619 0)
(0.0424396 -0.0395264 0)
(0.0412699 -0.0508734 0)
(0.0456882 -0.0520803 0)
(0.0510954 -0.0642617 0)
(0.0481202 -0.0761012 0)
(0.0569138 -0.0785458 0)
(0.0511415 -0.109125 0)
(0.0467765 -0.097974 0)
(0.0388316 -0.120767 0)
(0.0200609 -0.121179 0)
(0.17543 -0.117421 0)
(0.0571998 -0.103043 0)
(0.286633 -0.166854 0)
(0.279462 -0.15617 0)
(0.305917 -0.157054 0)
(0.345607 -0.159757 0)
(0.368388 -0.155874 0)
(0.393025 -0.148582 0)
(0.416674 -0.138915 0)
(0.44015 -0.129357 0)
(0.460375 -0.115534 0)
(0.479304 -0.100315 0)
(0.493963 -0.0838051 0)
(0.506562 -0.0649094 0)
(0.517015 -0.0447067 0)
(0.522885 -0.0232503 0)
(0.525518 -0.00105007 0)
(0.523792 0.0211891 0)
(0.518466 0.0435717 0)
(0.50786 0.0643582 0)
(0.494397 0.0837493 0)
(0.478212 0.101331 0)
(0.457946 0.114448 0)
(0.437055 0.126525 0)
(0.41495 0.136115 0)
(0.391623 0.140145 0)
(0.369206 0.146719 0)
(0.34664 0.146366 0)
(0.317821 0.142975 0)
(0.287349 0.137082 0)
(0.28072 0.137717 0)
(0.171136 0.0839879 0)
(0.236612 0.0938896 0)
(0.478169 -0.122058 0)
(0.497561 -0.106675 0)
(0.514441 -0.0873682 0)
(0.52818 -0.0663881 0)
(0.538744 -0.0436275 0)
(0.54472 -0.0193883 0)
(0.545555 0.00545284 0)
(0.54281 0.0298211 0)
(0.536164 0.0546004 0)
(0.52297 0.0763383 0)
(0.508673 0.0977432 0)
(0.491008 0.118208 0)
(0.4544 0.128336 0)
(0.425994 0.136969 0)
(0.435123 0.153601 0)
(0.503581 0.164157 0)
(0.367159 0.109532 0)
(0.299212 0.0822814 0)
(0.158042 0.108876 0)
(0.114527 0.152853 0)
(0.0678363 0.141116 0)
(0.0542179 0.126963 0)
(0.0482378 0.125593 0)
(0.0466128 0.115576 0)
(0.0445632 0.10927 0)
(0.0449624 0.103895 0)
(0.045235 0.0950182 0)
(0.041267 0.0834287 0)
(0.0369768 0.0800864 0)
(0.0369847 0.0750466 0)
(0.0359261 0.0672466 0)
(0.0336091 0.0605761 0)
(0.0311259 0.0540694 0)
(0.0284618 0.0486882 0)
(0.0261746 0.043829 0)
(0.0241637 0.0392626 0)
(0.0223112 0.0349437 0)
(0.02064 0.0308689 0)
(0.018992 0.0268797 0)
(0.0173061 0.0232192 0)
(0.0156653 0.0197966 0)
(0.0140286 0.0166556 0)
(0.0123934 0.0137378 0)
(0.0103634 0.0112985 0)
(0.00903746 0.0100982 0)
(0.00952328 0.00863023 0)
(0.00993532 0.00519327 0)
(0.00946036 0.0010394 0)
(0.00778446 -0.00282506 0)
(0.00622217 -0.00520461 0)
(0.00573805 -0.00865343 0)
(0.00396234 -0.0121086 0)
(0.00357371 -0.0149476 0)
(0.00255504 -0.0203316 0)
(-0.000711737 -0.0232864 0)
(0.000733237 -0.0260895 0)
(-0.000488586 -0.0338719 0)
(-0.00395381 -0.0361012 0)
(-0.000664245 -0.0402347 0)
(-0.00139003 -0.0481727 0)
(0.000708615 -0.0510084 0)
(0.00591482 -0.0605743 0)
(0.00443482 -0.06938 0)
(0.0107258 -0.0756479 0)
(0.0131786 -0.0894783 0)
(0.0115782 -0.0962127 0)
(0.0183198 -0.104854 0)
(0.0209157 -0.115927 0)
(0.0305303 -0.12359 0)
(0.0460708 -0.133929 0)
(0.0513311 -0.144398 0)
(0.0773839 -0.141935 0)
(0.129944 -0.144194 0)
(0.145469 -0.144067 0)
(0.166214 -0.158061 0)
(0.140168 -0.169193 0)
(0.11196 -0.170334 0)
(0.153397 -0.140502 0)
(0.2791 -0.132421 0)
(0.341898 -0.131839 0)
(0.391282 -0.136052 0)
(0.441203 -0.136628 0)
(0.494771 -0.129886 0)
(0.54244 -0.119849 0)
(0.583648 -0.112386 0)
(0.618564 -0.0980499 0)
(0.656098 -0.0766849 0)
(0.683917 -0.0494543 0)
(0.700781 -0.0241897 0)
(0.710119 -0.000736055 0)
(0.713995 0.0253361 0)
(0.711198 0.0477442 0)
(0.70406 0.0692802 0)
(0.69436 0.088735 0)
(0.68495 0.105877 0)
(0.684199 0.119686 0)
(0.691644 0.133068 0)
(0.70661 0.145046 0)
(0.722408 0.151143 0)
(0.752967 0.153049 0)
(0.801291 0.146065 0)
(0.755718 0.138419 0)
(0.645981 0.139741 0)
(0.515262 0.150807 0)
(0.395348 0.158992 0)
(0.320271 0.154456 0)
(0.272379 0.15081 0)
(0.244319 0.141317 0)
(0.224071 0.131781 0)
(0.201267 0.124335 0)
(0.184043 0.116031 0)
(0.168511 0.105847 0)
(0.14291 0.099271 0)
(0.127571 0.0913011 0)
(0.110245 0.0812576 0)
(0.0952367 0.0718552 0)
(0.0867982 0.0665872 0)
(0.0759016 0.063 0)
(0.0680912 0.0567136 0)
(0.0623617 0.0486862 0)
(0.0514944 0.0368145 0)
(0.0486056 0.027253 0)
(0.0418327 0.016714 0)
(0.0403244 0.01109 0)
(0.0371662 0.00587066 0)
(0.0337862 -0.000735024 0)
(0.0339453 -0.00551889 0)
(0.0268772 -0.0102457 0)
(0.0271465 -0.0100389 0)
(0.0242021 -0.0104401 0)
(0.0260736 -0.0129654 0)
(0.0267676 -0.0194067 0)
(0.0257307 -0.0246043 0)
(0.0292147 -0.0283481 0)
(0.0308758 -0.0368884 0)
(0.0318871 -0.0502706 0)
(0.0261476 -0.0583216 0)
(0.022679 -0.0561832 0)
(0.0300871 -0.0484061 0)
(0.0398828 -0.0418131 0)
(0.0486778 -0.0426182 0)
(0.0697485 -0.0439105 0)
(0.0744044 -0.0498283 0)
(0.0919296 -0.0528742 0)
(0.0969001 -0.0573871 0)
(0.111513 -0.0599154 0)
(0.116356 -0.0647445 0)
(0.122962 -0.0734572 0)
(0.136684 -0.0755266 0)
(0.157058 -0.0703141 0)
(0.178145 -0.0695541 0)
(0.19811 -0.0759364 0)
(0.24096 -0.0798783 0)
(0.285416 -0.0809096 0)
(0.34746 -0.0808336 0)
(0.397666 -0.0836917 0)
(0.435358 -0.0895712 0)
(0.502104 -0.0948644 0)
(0.548068 -0.107058 0)
(0.632514 -0.106129 0)
(0.687118 -0.101948 0)
(0.730872 -0.102217 0)
(0.742544 -0.0997414 0)
(0.722283 -0.104304 0)
(0.741869 -0.102121 0)
(0.760549 -0.0915593 0)
(0.792073 -0.0814317 0)
(0.800737 -0.0802608 0)
(0.794953 -0.0765978 0)
(0.777107 -0.0727068 0)
(0.764418 -0.0728135 0)
(0.754895 -0.0633669 0)
(0.752145 -0.0558922 0)
(0.754352 -0.0418797 0)
(0.758296 -0.0210387 0)
(0.759563 -0.0041754 0)
(0.765712 0.0149769 0)
(0.77457 0.0410633 0)
(0.776565 0.0606389 0)
(0.790763 0.0745676 0)
(0.821296 0.0917241 0)
(0.840813 0.107342 0)
(0.88366 0.111241 0)
(0.926805 0.118238 0)
(1.00379 0.111494 0)
(1.05918 0.100716 0)
(1.00643 0.0952418 0)
(0.840248 0.106298 0)
(0.675489 0.141768 0)
(0.581769 0.138841 0)
(0.536444 0.137208 0)
(0.499714 0.125269 0)
(0.459189 0.119196 0)
(0.40081 0.112748 0)
(0.332412 0.10279 0)
(0.28876 0.0933861 0)
(0.263933 0.0828592 0)
(0.243078 0.0767356 0)
(0.222122 0.0716319 0)
(0.199152 0.0690871 0)
(0.17387 0.0710498 0)
(0.14475 0.0737786 0)
(0.121276 0.067017 0)
(0.106319 0.0549593 0)
(0.0954183 0.0475848 0)
(0.0905055 0.0442233 0)
(0.0954045 0.0373039 0)
(0.109796 0.0201183 0)
(0.116679 -0.00816696 0)
(0.117053 -0.0432139 0)
(0.0972213 -0.0660573 0)
(0.0992121 -0.0546759 0)
(0.154066 -0.0113009 0)
(0.209326 0.0208724 0)
(0.219909 0.0254031 0)
(0.204045 0.0274483 0)
(0.161185 0.0306308 0)
(0.133025 0.0161504 0)
(0.130144 -0.00939527 0)
(0.143155 -0.0224151 0)
(0.190824 -0.0167297 0)
(0.240905 1.30878e-05 0)
(0.257239 0.0134353 0)
(0.263901 0.017684 0)
(0.273304 0.0159733 0)
(0.276451 0.00931872 0)
(0.27192 -0.00430289 0)
(0.276862 -0.0199196 0)
(0.276492 -0.0313937 0)
(0.296816 -0.0319999 0)
(0.31034 -0.0284889 0)
(0.313116 -0.0301512 0)
(0.319677 -0.0381526 0)
(0.309474 -0.0527581 0)
(0.306474 -0.0855384 0)
(0.313643 -0.12058 0)
(0.346847 -0.134454 0)
(0.469769 -0.114577 0)
(0.600744 -0.0837927 0)
(0.660217 -0.0695548 0)
(0.703678 -0.0850737 0)
(0.767542 -0.101232 0)
(0.830249 -0.114454 0)
(0.868041 -0.125996 0)
(0.889705 -0.130867 0)
(0.91512 -0.138407 0)
(0.934723 -0.167181 0)
(0.942646 -0.170567 0)
(0.933527 -0.148361 0)
(0.889341 -0.136819 0)
(0.876007 -0.13861 0)
(0.90162 -0.132484 0)
(0.945181 -0.119995 0)
(0.968347 -0.108966 0)
(0.962234 -0.0983043 0)
(0.945966 -0.0833225 0)
(0.939329 -0.0643579 0)
(0.940442 -0.0417532 0)
(0.947432 -0.0164155 0)
(0.957217 0.0114997 0)
(0.968342 0.040192 0)
(0.981237 0.0680204 0)
(0.998559 0.0916655 0)
(1.01687 0.111611 0)
(1.03961 0.126278 0)
(1.07757 0.136117 0)
(1.10884 0.142995 0)
(1.19127 0.133726 0)
(1.2654 0.132433 0)
(1.25198 0.129021 0)
(1.14055 0.123803 0)
(1.00686 0.14211 0)
(0.899235 0.148766 0)
(0.791762 0.163998 0)
(0.677937 0.169507 0)
(0.599887 0.159665 0)
(0.550739 0.143922 0)
(0.488468 0.14267 0)
(0.410692 0.147198 0)
(0.330887 0.143679 0)
(0.282959 0.123879 0)
(0.278897 0.0878763 0)
(0.319798 0.0649361 0)
(0.415312 0.082216 0)
(0.415878 0.11125 0)
(0.354813 0.125408 0)
(0.286713 0.119175 0)
(0.242343 0.0960263 0)
(0.230347 0.0581702 0)
(0.219484 0.0356017 0)
(0.194502 0.0292091 0)
(0.165365 0.0244525 0)
(0.129432 0.0205608 0)
(0.100207 0.0191969 0)
(0.0794517 0.0175362 0)
(0.0623822 0.013277 0)
(0.0483356 0.00994008 0)
(0.0382466 0.00714572 0)
(0.0318216 0.00322134 0)
(0.0256108 -0.00121367 0)
(0.0218995 -0.00368787 0)
(0.0194241 -0.0062304 0)
(0.0170266 -0.00833152 0)
(0.0169669 -0.00974947 0)
(0.0154969 -0.0125205 0)
(0.0145394 -0.0124736 0)
(0.0161481 -0.0133728 0)
(0.0162493 -0.0152293 0)
(0.0196123 -0.0150657 0)
(0.0224445 -0.0200563 0)
(0.0229659 -0.0219987 0)
(0.0297162 -0.0236894 0)
(0.0321858 -0.0337376 0)
(0.0330381 -0.0357208 0)
(0.0403084 -0.0420182 0)
(0.0399444 -0.0530849 0)
(0.0433495 -0.0531528 0)
(0.0492319 -0.0661175 0)
(0.046761 -0.0732897 0)
(0.0557226 -0.0785074 0)
(0.0533334 -0.0978483 0)
(0.0471835 -0.0999139 0)
(0.0603466 -0.104887 0)
(0.0464612 -0.147692 0)
(0.0451706 -0.112268 0)
(0.0280584 -0.153468 0)
(0.118328 -0.149022 0)
(0.29305 -0.15204 0)
(0.274693 -0.145629 0)
(0.343471 -0.157277 0)
(0.331572 -0.154685 0)
(0.387352 -0.154235 0)
(0.416365 -0.144303 0)
(0.441971 -0.134544 0)
(0.463119 -0.120261 0)
(0.48256 -0.103704 0)
(0.497432 -0.0867309 0)
(0.510481 -0.0672139 0)
(0.521265 -0.0462551 0)
(0.52729 -0.0240647 0)
(0.530033 -0.00118189 0)
(0.528311 0.0218848 0)
(0.522908 0.0451558 0)
(0.511946 0.0668102 0)
(0.498023 0.0868714 0)
(0.481401 0.104887 0)
(0.460503 0.118346 0)
(0.43926 0.13094 0)
(0.416458 0.142797 0)
(0.392744 0.146438 0)
(0.355754 0.144703 0)
(0.33484 0.143571 0)
(0.35222 0.155829 0)
(0.489693 0.184635 0)
(0.289733 0.113609 0)
(0.116196 0.183344 0)
(0.0516773 0.181841 0)
(0.477303 -0.123395 0)
(0.501022 -0.109875 0)
(0.51783 -0.0907694 0)
(0.532266 -0.0692817 0)
(0.543398 -0.0454787 0)
(0.5497 -0.0202287 0)
(0.550577 0.00551579 0)
(0.547966 0.0314601 0)
(0.541229 0.0578419 0)
(0.525279 0.0810291 0)
(0.494452 0.0993946 0)
(0.436162 0.105615 0)
(0.496499 0.137727 0)
(0.456387 0.105233 0)
(0.437113 0.0960339 0)
(0.320248 0.100226 0)
(0.156618 0.129219 0)
(0.0799118 0.151352 0)
(0.0504748 0.145729 0)
(0.0452596 0.148865 0)
(0.0461683 0.137434 0)
(0.0437195 0.127861 0)
(0.0433761 0.125125 0)
(0.0429371 0.115813 0)
(0.0417872 0.109705 0)
(0.0423795 0.103634 0)
(0.0422959 0.0951056 0)
(0.038905 0.0845638 0)
(0.0352561 0.0805134 0)
(0.0349589 0.0750917 0)
(0.0338399 0.0676364 0)
(0.0317052 0.0610312 0)
(0.0294014 0.0546347 0)
(0.026943 0.0491953 0)
(0.0247856 0.0442725 0)
(0.0228748 0.0396631 0)
(0.0211142 0.0353134 0)
(0.019518 0.0312149 0)
(0.0179506 0.0272283 0)
(0.0163595 0.0235629 0)
(0.0148057 0.020134 0)
(0.0132582 0.0169899 0)
(0.0117257 0.0140884 0)
(0.00989102 0.0116174 0)
(0.00870926 0.0102247 0)
(0.0090363 0.00861495 0)
(0.00927293 0.00529716 0)
(0.00882497 0.00149983 0)
(0.00733447 -0.00231561 0)
(0.00590708 -0.00494274 0)
(0.00540097 -0.00843351 0)
(0.00380004 -0.0119782 0)
(0.00328296 -0.014919 0)
(0.00237961 -0.0201478 0)
(-0.000449788 -0.0232741 0)
(0.000546972 -0.0263074 0)
(-0.000500545 -0.0335384 0)
(-0.00347883 -0.0360871 0)
(-0.000898971 -0.0402981 0)
(-0.00152802 -0.047802 0)
(7.5871e-05 -0.0510845 0)
(0.004152 -0.0606012 0)
(0.00302552 -0.0697624 0)
(0.00657159 -0.0762566 0)
(0.00810002 -0.089475 0)
(0.0076444 -0.0969428 0)
(0.0117174 -0.105466 0)
(0.013231 -0.117968 0)
(0.0167995 -0.125954 0)
(0.0219872 -0.136908 0)
(0.0227537 -0.147465 0)
(0.0282861 -0.149169 0)
(0.0544811 -0.152503 0)
(0.103211 -0.150716 0)
(0.170517 -0.155092 0)
(0.193195 -0.152424 0)
(0.117554 -0.15524 0)
(-0.0182174 -0.173127 0)
(-0.0168756 -0.156825 0)
(0.0118066 -0.157992 0)
(0.133376 -0.164245 0)
(0.267302 -0.156904 0)
(0.371063 -0.140997 0)
(0.462206 -0.121458 0)
(0.537115 -0.101753 0)
(0.600877 -0.0887335 0)
(0.664953 -0.0690062 0)
(0.72133 -0.0466506 0)
(0.76048 -0.0255932 0)
(0.784486 -0.00452818 0)
(0.796772 0.0203742 0)
(0.797617 0.0395941 0)
(0.796089 0.0566816 0)
(0.790406 0.0727126 0)
(0.784032 0.0882649 0)
(0.785477 0.0997061 0)
(0.795731 0.108875 0)
(0.842622 0.117633 0)
(0.857176 0.120641 0)
(0.803965 0.129602 0)
(0.679648 0.146351 0)
(0.520109 0.167827 0)
(0.375558 0.185398 0)
(0.290324 0.186889 0)
(0.236441 0.179241 0)
(0.204435 0.164996 0)
(0.177563 0.1555 0)
(0.161386 0.144846 0)
(0.145826 0.135671 0)
(0.127587 0.12799 0)
(0.113703 0.119521 0)
(0.100821 0.110316 0)
(0.083423 0.102816 0)
(0.0755178 0.0941396 0)
(0.0666852 0.0838886 0)
(0.0569083 0.0741794 0)
(0.0514381 0.0681347 0)
(0.0466469 0.063823 0)
(0.0428772 0.0577376 0)
(0.0423894 0.0494654 0)
(0.0362951 0.0378897 0)
(0.0338124 0.0277221 0)
(0.0290798 0.0172562 0)
(0.0270183 0.0113773 0)
(0.0246407 0.00621428 0)
(0.0222388 -0.000580085 0)
(0.0213242 -0.00522163 0)
(0.0158956 -0.0100038 0)
(0.0164504 -0.00988522 0)
(0.0147993 -0.0105997 0)
(0.017422 -0.0137063 0)
(0.0189836 -0.0195362 0)
(0.01811 -0.0248383 0)
(0.0220424 -0.0285223 0)
(0.023695 -0.0372679 0)
(0.0233535 -0.050204 0)
(0.0156141 -0.0573862 0)
(0.00958738 -0.0565562 0)
(0.0122516 -0.050433 0)
(0.0189912 -0.0442119 0)
(0.0286193 -0.0456219 0)
(0.0458033 -0.0473176 0)
(0.0502272 -0.0523008 0)
(0.066544 -0.0553893 0)
(0.0689407 -0.0598078 0)
(0.0807542 -0.0624911 0)
(0.0830305 -0.0656832 0)
(0.0859838 -0.0742039 0)
(0.0869901 -0.0765853 0)
(0.0930214 -0.0734422 0)
(0.106604 -0.0735837 0)
(0.118032 -0.0799507 0)
(0.132085 -0.0861004 0)
(0.146849 -0.0898555 0)
(0.172192 -0.0927449 0)
(0.200257 -0.0957847 0)
(0.224509 -0.104937 0)
(0.280697 -0.113022 0)
(0.319111 -0.127772 0)
(0.410332 -0.131677 0)
(0.526593 -0.123472 0)
(0.641915 -0.116882 0)
(0.740965 -0.100695 0)
(0.793606 -0.105803 0)
(0.818561 -0.116965 0)
(0.82176 -0.116255 0)
(0.81533 -0.115989 0)
(0.825743 -0.100407 0)
(0.845326 -0.0875352 0)
(0.862578 -0.0704277 0)
(0.858304 -0.0628756 0)
(0.856048 -0.0512455 0)
(0.854341 -0.0450683 0)
(0.852427 -0.0356308 0)
(0.855889 -0.0171555 0)
(0.855465 -8.98418e-05 0)
(0.864293 0.0132291 0)
(0.878 0.0363298 0)
(0.88371 0.0558951 0)
(0.90234 0.0572012 0)
(0.93973 0.0730093 0)
(0.985155 0.084563 0)
(1.07079 0.083849 0)
(1.15 0.0867529 0)
(1.1224 0.0848557 0)
(0.999966 0.106564 0)
(0.791604 0.139877 0)
(0.623914 0.159219 0)
(0.552393 0.163697 0)
(0.508447 0.146721 0)
(0.460636 0.141359 0)
(0.401641 0.134408 0)
(0.331282 0.132059 0)
(0.275334 0.12609 0)
(0.233891 0.113083 0)
(0.209443 0.0996707 0)
(0.192774 0.0873683 0)
(0.177178 0.0808757 0)
(0.159765 0.0756303 0)
(0.143179 0.0726235 0)
(0.120697 0.0751957 0)
(0.100473 0.0771674 0)
(0.0871254 0.0696458 0)
(0.0789282 0.0567114 0)
(0.0726745 0.0493602 0)
(0.0709291 0.0442828 0)
(0.0779368 0.0341318 0)
(0.0927206 0.0150367 0)
(0.0984815 -0.0114018 0)
(0.0959314 -0.0413937 0)
(0.0729204 -0.0623676 0)
(0.0565879 -0.0536856 0)
(0.0640327 -0.016671 0)
(0.0911605 0.0153951 0)
(0.0991935 0.0262692 0)
(0.0894039 0.0313439 0)
(0.0827297 0.031341 0)
(0.0835773 0.0151533 0)
(0.0846078 -0.00862974 0)
(0.0823872 -0.0204218 0)
(0.0863594 -0.0163518 0)
(0.107197 -0.00124706 0)
(0.133218 0.00987054 0)
(0.16094 0.0116611 0)
(0.193108 0.0106612 0)
(0.216526 0.00615014 0)
(0.220689 -0.00511722 0)
(0.21508 -0.0172503 0)
(0.195505 -0.0292162 0)
(0.191912 -0.0309286 0)
(0.188227 -0.0316887 0)
(0.193354 -0.0330948 0)
(0.216968 -0.0396818 0)
(0.225509 -0.0593309 0)
(0.244213 -0.0878583 0)
(0.248559 -0.119054 0)
(0.242866 -0.140164 0)
(0.274348 -0.134786 0)
(0.387822 -0.103227 0)
(0.461083 -0.0872411 0)
(0.493518 -0.0977416 0)
(0.56324 -0.117524 0)
(0.679304 -0.129783 0)
(0.773149 -0.135963 0)
(0.838954 -0.138998 0)
(0.901598 -0.146606 0)
(0.943151 -0.166661 0)
(0.972957 -0.163866 0)
(0.989033 -0.137895 0)
(0.989157 -0.131215 0)
(0.965626 -0.139642 0)
(0.936308 -0.146474 0)
(0.944193 -0.141586 0)
(1.00548 -0.115583 0)
(1.07606 -0.0909676 0)
(1.09293 -0.0743028 0)
(1.08752 -0.0572372 0)
(1.08648 -0.038215 0)
(1.09375 -0.0173501 0)
(1.10621 0.00490668 0)
(1.12095 0.0265403 0)
(1.1391 0.0481701 0)
(1.16734 0.0672746 0)
(1.20456 0.0844526 0)
(1.25329 0.0956348 0)
(1.34971 0.105791 0)
(1.40545 0.1169 0)
(1.39409 0.110402 0)
(1.30359 0.12796 0)
(1.14458 0.154179 0)
(0.96777 0.167546 0)
(0.856948 0.178637 0)
(0.796633 0.17606 0)
(0.731468 0.181794 0)
(0.638896 0.18234 0)
(0.566638 0.168598 0)
(0.486592 0.156685 0)
(0.393687 0.159195 0)
(0.309094 0.162983 0)
(0.242611 0.154807 0)
(0.214261 0.126129 0)
(0.226003 0.082556 0)
(0.256071 0.0544873 0)
(0.336063 0.070386 0)
(0.355806 0.114688 0)
(0.323742 0.133813 0)
(0.28609 0.126404 0)
(0.26568 0.0995565 0)
(0.256907 0.0610152 0)
(0.235554 0.0405269 0)
(0.203669 0.0355562 0)
(0.169872 0.0312041 0)
(0.131986 0.0272349 0)
(0.101531 0.0245879 0)
(0.0789808 0.0217781 0)
(0.0612972 0.0170177 0)
(0.0457627 0.0126888 0)
(0.0349574 0.00919324 0)
(0.0285967 0.00489742 0)
(0.022763 6.24902e-05 0)
(0.0194323 -0.00284053 0)
(0.0173664 -0.00576619 0)
(0.015524 -0.00798783 0)
(0.0155047 -0.00944475 0)
(0.0143466 -0.0122955 0)
(0.0135149 -0.0123531 0)
(0.0151046 -0.0134477 0)
(0.0152836 -0.0152325 0)
(0.0182586 -0.0154047 0)
(0.0209783 -0.020059 0)
(0.0216126 -0.0219341 0)
(0.0276785 -0.0240929 0)
(0.030003 -0.0330734 0)
(0.0310165 -0.0356655 0)
(0.0375053 -0.0417206 0)
(0.0373335 -0.0522704 0)
(0.0405577 -0.0546407 0)
(0.0458278 -0.0658637 0)
(0.0439406 -0.0744384 0)
(0.0513389 -0.0787624 0)
(0.0502601 -0.0986358 0)
(0.0457658 -0.0975743 0)
(0.0585009 -0.106435 0)
(0.0467572 -0.1298 0)
(0.0423278 -0.119068 0)
(0.0583625 -0.135348 0)
(0.0365264 -0.169512 0)
(0.0634062 -0.117572 0)
(0.00348934 -0.140768 0)
(0.386439 -0.152707 0)
(0.0786615 -0.0837454 0)
(0.368364 -0.151432 0)
(0.409139 -0.14028 0)
(0.44029 -0.135747 0)
(0.463903 -0.12438 0)
(0.484025 -0.108019 0)
(0.500722 -0.0902368 0)
(0.51458 -0.0697831 0)
(0.525757 -0.0479551 0)
(0.531833 -0.0248521 0)
(0.534699 -0.00116107 0)
(0.533001 0.022615 0)
(0.527524 0.0467048 0)
(0.516178 0.0692233 0)
(0.501823 0.0898556 0)
(0.484845 0.109494 0)
(0.463366 0.124903 0)
(0.438575 0.135857 0)
(0.392916 0.137618 0)
(0.381418 0.14414 0)
(0.241483 0.0855306 0)
(0.340668 0.102611 0)
(0.300511 0.089934 0)
(0.147053 0.0729022 0)
(0.0224945 0.191551 0)
(-0.00133903 0.190145 0)
(-0.001412 0.18026 0)
(0.518037 -0.13258 0)
(0.508731 -0.111769 0)
(0.511114 -0.0897737 0)
(0.522982 -0.0673432 0)
(0.540476 -0.0445043 0)
(0.553262 -0.0187422 0)
(0.549636 0.00827314 0)
(0.54052 0.033979 0)
(0.525872 0.0572321 0)
(0.51645 0.080214 0)
(0.421045 0.0770579 0)
(0.402696 0.0737094 0)
(0.30969 0.0645217 0)
(0.162638 0.102788 0)
(0.0962183 0.109042 0)
(0.0552288 0.160813 0)
(0.0419073 0.15754 0)
(0.0350909 0.148905 0)
(0.0318466 0.143287 0)
(0.0352464 0.146427 0)
(0.0406161 0.137443 0)
(0.0401548 0.12843 0)
(0.0406154 0.12467 0)
(0.0401519 0.116019 0)
(0.0393645 0.110038 0)
(0.039849 0.103447 0)
(0.039504 0.0952412 0)
(0.0365766 0.0854717 0)
(0.0334483 0.0808557 0)
(0.0329317 0.075174 0)
(0.0317859 0.0679839 0)
(0.0298129 0.061441 0)
(0.0276774 0.0551359 0)
(0.0254096 0.0496563 0)
(0.0233829 0.0446811 0)
(0.021575 0.0400329 0)
(0.0199082 0.0356535 0)
(0.0183912 0.0315316 0)
(0.0169064 0.0275482 0)
(0.0154087 0.0238759 0)
(0.0139443 0.0204421 0)
(0.0124871 0.0173007 0)
(0.0110549 0.0144071 0)
(0.00939478 0.0119162 0)
(0.00832746 0.0103391 0)
(0.00853302 0.00849528 0)
(0.00864261 0.00528391 0)
(0.00822182 0.00162396 0)
(0.00691685 -0.00209869 0)
(0.00562093 -0.00475356 0)
(0.00509064 -0.00818226 0)
(0.00363789 -0.0116906 0)
(0.00311443 -0.0146923 0)
(0.00227057 -0.0196581 0)
(-0.000169257 -0.0230378 0)
(0.000537994 -0.0261021 0)
(-0.000303782 -0.0330951 0)
(-0.00288197 -0.0361274 0)
(-0.000718746 -0.040436 0)
(-0.00121191 -0.0475799 0)
(0.000110056 -0.0514642 0)
(0.00388443 -0.0607039 0)
(0.00275676 -0.0699769 0)
(0.0058026 -0.0761884 0)
(0.00707864 -0.089083 0)
(0.00678309 -0.0968317 0)
(0.0101298 -0.105796 0)
(0.0107304 -0.116939 0)
(0.0127174 -0.125383 0)
(0.0160338 -0.135981 0)
(0.0150224 -0.146615 0)
(0.016661 -0.149738 0)
(0.0250155 -0.156602 0)
(0.0435809 -0.162115 0)
(0.0895931 -0.169718 0)
(0.179953 -0.151981 0)
(0.183356 -0.120913 0)
(0.0577459 -0.13873 0)
(-0.0172654 -0.185819 0)
(-0.00868017 -0.171058 0)
(0.00892859 -0.172068 0)
(0.0277368 -0.172686 0)
(0.0643187 -0.164658 0)
(0.155105 -0.15735 0)
(0.338879 -0.151141 0)
(0.5551 -0.133152 0)
(0.687692 -0.102345 0)
(0.776693 -0.0714418 0)
(0.834703 -0.0409629 0)
(0.863907 -0.0142523 0)
(0.869882 0.00687889 0)
(0.866126 0.0278186 0)
(0.870007 0.039534 0)
(0.874033 0.0603528 0)
(0.896684 0.0828261 0)
(0.894459 0.09179 0)
(0.862406 0.105868 0)
(0.806657 0.126589 0)
(0.685989 0.144193 0)
(0.523782 0.177404 0)
(0.361733 0.197878 0)
(0.26717 0.206061 0)
(0.208462 0.204253 0)
(0.169901 0.194528 0)
(0.146411 0.182789 0)
(0.130599 0.168312 0)
(0.113796 0.157929 0)
(0.103241 0.14751 0)
(0.0925413 0.138363 0)
(0.0804328 0.130556 0)
(0.0720897 0.121741 0)
(0.0644117 0.112762 0)
(0.055113 0.10444 0)
(0.050635 0.0953152 0)
(0.0454413 0.0852339 0)
(0.038269 0.0756725 0)
(0.0340616 0.0692365 0)
(0.0302288 0.0647205 0)
(0.0285712 0.0579527 0)
(0.0290665 0.0500672 0)
(0.0257856 0.0390159 0)
(0.0243717 0.0285503 0)
(0.0205447 0.0181933 0)
(0.0187573 0.0123834 0)
(0.0173936 0.00659332 0)
(0.0158789 0.000307238 0)
(0.0148358 -0.00448009 0)
(0.0107837 -0.00938714 0)
(0.0114572 -0.00933673 0)
(0.0109175 -0.0107247 0)
(0.0134956 -0.0134319 0)
(0.0156789 -0.0198184 0)
(0.0149316 -0.0248187 0)
(0.0189086 -0.0288443 0)
(0.0201143 -0.0378433 0)
(0.0183783 -0.0490046 0)
(0.0104097 -0.0560423 0)
(0.00341719 -0.0561978 0)
(0.00332236 -0.0503688 0)
(0.00911224 -0.0459193 0)
(0.0178587 -0.0478071 0)
(0.0299217 -0.0484213 0)
(0.0335716 -0.0540898 0)
(0.0468907 -0.055999 0)
(0.0491303 -0.0614413 0)
(0.0602767 -0.0618643 0)
(0.0619031 -0.0667229 0)
(0.0652438 -0.0730224 0)
(0.0625938 -0.0760378 0)
(0.064744 -0.0747717 0)
(0.0749393 -0.0751017 0)
(0.0829134 -0.0808281 0)
(0.0881865 -0.0864581 0)
(0.0954874 -0.0914586 0)
(0.108819 -0.0957922 0)
(0.126286 -0.100653 0)
(0.148168 -0.111121 0)
(0.183354 -0.121928 0)
(0.203209 -0.1376 0)
(0.245067 -0.148256 0)
(0.292997 -0.148188 0)
(0.368704 -0.145624 0)
(0.519116 -0.130908 0)
(0.656815 -0.114373 0)
(0.769257 -0.109135 0)
(0.855223 -0.0890999 0)
(0.89063 -0.0816929 0)
(0.896896 -0.0904166 0)
(0.879005 -0.0904478 0)
(0.879852 -0.0862167 0)
(0.8756 -0.0751351 0)
(0.878884 -0.0633375 0)
(0.894194 -0.0484694 0)
(0.909498 -0.0374375 0)
(0.929691 -0.0221992 0)
(0.938569 -0.00355543 0)
(0.958169 -0.000696844 0)
(0.980451 0.0209592 0)
(0.993717 0.0476714 0)
(1.02146 0.0405923 0)
(1.07843 0.0620185 0)
(1.1458 0.081622 0)
(1.14383 0.073088 0)
(1.11805 0.095684 0)
(0.984627 0.120673 0)
(0.74609 0.165718 0)
(0.598142 0.181082 0)
(0.523086 0.172379 0)
(0.474042 0.1675 0)
(0.414946 0.156421 0)
(0.350541 0.154121 0)
(0.289309 0.149109 0)
(0.235128 0.143949 0)
(0.202313 0.13361 0)
(0.17733 0.118125 0)
(0.162531 0.102869 0)
(0.146283 0.0904582 0)
(0.131192 0.0841582 0)
(0.111495 0.0792412 0)
(0.0914571 0.0772303 0)
(0.07265 0.0789617 0)
(0.0622303 0.0791103 0)
(0.0571977 0.0703907 0)
(0.0542451 0.0577083 0)
(0.0514942 0.0492327 0)
(0.0549304 0.0424175 0)
(0.064467 0.0317603 0)
(0.0749565 0.0150839 0)
(0.0792035 -0.0109426 0)
(0.0750634 -0.0413915 0)
(0.0541849 -0.0614261 0)
(0.0339931 -0.0536871 0)
(0.0288157 -0.0184069 0)
(0.0417123 0.0126877 0)
(0.0457217 0.0262423 0)
(0.0450215 0.0314219 0)
(0.0513134 0.0302989 0)
(0.0604513 0.0136803 0)
(0.0617764 -0.00862024 0)
(0.0552442 -0.0212425 0)
(0.0532551 -0.0194806 0)
(0.0662676 -0.00949295 0)
(0.0891132 0.00219969 0)
(0.116613 0.00540794 0)
(0.142058 0.00538925 0)
(0.163012 0.00385722 0)
(0.16953 -0.0039776 0)
(0.168333 -0.0139475 0)
(0.151208 -0.0262351 0)
(0.144284 -0.0291625 0)
(0.137999 -0.0311352 0)
(0.145262 -0.0352001 0)
(0.170375 -0.0436991 0)
(0.178208 -0.0579532 0)
(0.192374 -0.0867935 0)
(0.192355 -0.116094 0)
(0.17238 -0.137283 0)
(0.157066 -0.136524 0)
(0.179369 -0.116 0)
(0.218373 -0.101177 0)
(0.260645 -0.11606 0)
(0.378024 -0.138875 0)
(0.479981 -0.15369 0)
(0.570095 -0.157831 0)
(0.656269 -0.159527 0)
(0.744846 -0.163257 0)
(0.808974 -0.177314 0)
(0.877262 -0.175277 0)
(0.940378 -0.144479 0)
(0.98621 -0.132144 0)
(1.00983 -0.132812 0)
(1.02194 -0.136888 0)
(1.02689 -0.140292 0)
(1.03234 -0.140694 0)
(1.08357 -0.123652 0)
(1.16987 -0.0949343 0)
(1.23444 -0.0730925 0)
(1.26522 -0.0507213 0)
(1.27027 -0.0251199 0)
(1.27778 -0.00247129 0)
(1.29447 0.018761 0)
(1.32285 0.0385101 0)
(1.3762 0.0558769 0)
(1.45315 0.0764216 0)
(1.4809 0.0908347 0)
(1.47144 0.102486 0)
(1.40746 0.12942 0)
(1.27068 0.139743 0)
(1.0929 0.179948 0)
(0.932505 0.200698 0)
(0.805527 0.194288 0)
(0.732929 0.187251 0)
(0.699347 0.183041 0)
(0.66718 0.192174 0)
(0.598906 0.195468 0)
(0.498399 0.185022 0)
(0.38642 0.177314 0)
(0.294665 0.176912 0)
(0.224829 0.175954 0)
(0.184792 0.162226 0)
(0.174662 0.126716 0)
(0.187097 0.0782222 0)
(0.208507 0.0448231 0)
(0.256091 0.0611713 0)
(0.308883 0.113512 0)
(0.291348 0.137089 0)
(0.279909 0.130735 0)
(0.269373 0.102841 0)
(0.260397 0.0646979 0)
(0.23589 0.0458125 0)
(0.201804 0.041925 0)
(0.166141 0.0383588 0)
(0.127973 0.0341066 0)
(0.097239 0.0297847 0)
(0.0732787 0.0255238 0)
(0.0550829 0.0200819 0)
(0.0385253 0.0150826 0)
(0.0286109 0.0106865 0)
(0.0235783 0.00575417 0)
(0.0196799 0.000579954 0)
(0.0173672 -0.00255526 0)
(0.0159696 -0.00559903 0)
(0.0144033 -0.0079815 0)
(0.0143133 -0.00952384 0)
(0.013416 -0.0122476 0)
(0.0127574 -0.012651 0)
(0.0141748 -0.0138069 0)
(0.0144595 -0.0157348 0)
(0.0172207 -0.0162208 0)
(0.0197478 -0.0206692 0)
(0.0205422 -0.0229198 0)
(0.0258596 -0.0253642 0)
(0.0282001 -0.0338057 0)
(0.0292977 -0.0367109 0)
(0.0349854 -0.0428688 0)
(0.0352077 -0.0525186 0)
(0.0381856 -0.0553146 0)
(0.0427598 -0.0661084 0)
(0.041357 -0.0742363 0)
(0.0474543 -0.079782 0)
(0.0466562 -0.0964595 0)
(0.0427881 -0.0985003 0)
(0.0531361 -0.106699 0)
(0.0437829 -0.129273 0)
(0.0409113 -0.116465 0)
(0.0551251 -0.131928 0)
(0.0335487 -0.157791 0)
(0.0313194 -0.139038 0)
(0.0274582 -0.173271 0)
(0.020788 -0.119005 0)
(0.0329418 -0.159699 0)
(0.0595044 -0.155245 0)
(0.561934 -0.177557 0)
(0.464416 -0.141548 0)
(0.451805 -0.118415 0)
(0.460639 -0.108682 0)
(0.500268 -0.092683 0)
(0.518591 -0.0717308 0)
(0.529844 -0.0497348 0)
(0.536528 -0.0260089 0)
(0.539544 -0.00171069 0)
(0.537949 0.0233947 0)
(0.532508 0.049217 0)
(0.520766 0.0734573 0)
(0.505244 0.0947463 0)
(0.474729 0.111728 0)
(0.441273 0.120793 0)
(0.4545 0.14002 0)
(0.568705 0.174909 0)
(0.42165 0.109471 0)
(0.239653 0.149942 0)
(0.0757178 0.109844 0)
(0.0253982 0.143797 0)
(-0.028151 0.152304 0)
(-0.0324521 0.187255 0)
(-0.0168099 0.180375 0)
(-0.00515635 0.174352 0)
(-0.0414712 -0.214972 0)
(-0.060644 -0.0747673 0)
(0.0084276 -0.0435226 0)
(0.646142 -0.0769417 0)
(0.599173 -0.0498882 0)
(0.557179 -0.0218282 0)
(0.561721 0.00060106 0)
(0.535691 0.0307243 0)
(0.50374 0.029914 0)
(0.454245 0.0469874 0)
(0.233082 0.121718 0)
(0.087844 0.0949312 0)
(0.0313976 0.122861 0)
(0.0177418 0.131514 0)
(0.00899215 0.127513 0)
(0.00868661 0.151641 0)
(0.0213366 0.153603 0)
(0.0270677 0.148141 0)
(0.0278913 0.143456 0)
(0.0322363 0.145211 0)
(0.0371849 0.136888 0)
(0.0374256 0.128902 0)
(0.0380323 0.124251 0)
(0.0375023 0.116111 0)
(0.036967 0.110167 0)
(0.0373282 0.103345 0)
(0.0368062 0.0953974 0)
(0.0342639 0.086258 0)
(0.0315659 0.0811927 0)
(0.0309003 0.0753235 0)
(0.0297535 0.0683169 0)
(0.0279288 0.06183 0)
(0.0259528 0.0555979 0)
(0.0238633 0.0500881 0)
(0.0219677 0.0450677 0)
(0.0202655 0.0403842 0)
(0.0186944 0.0359782 0)
(0.0172595 0.0318354 0)
(0.0158592 0.027852 0)
(0.0144549 0.0241745 0)
(0.0130798 0.0207369 0)
(0.0117144 0.0175932 0)
(0.0103817 0.0147044 0)
(0.00888061 0.012191 0)
(0.00791852 0.0104643 0)
(0.00802216 0.00848227 0)
(0.00802863 0.00533448 0)
(0.00763389 0.00181738 0)
(0.00648769 -0.00182924 0)
(0.00530608 -0.00459389 0)
(0.0047941 -0.0080276 0)
(0.00347389 -0.0115417 0)
(0.00295035 -0.0145984 0)
(0.00223825 -0.0194076 0)
(9.82236e-05 -0.0228733 0)
(0.000607577 -0.0260643 0)
(-9.50602e-05 -0.0327156 0)
(-0.00230622 -0.0360907 0)
(-0.00041031 -0.0404847 0)
(-0.000717892 -0.0475972 0)
(0.00039236 -0.0519437 0)
(0.00374927 -0.0608069 0)
(0.00274989 -0.0701777 0)
(0.00553718 -0.0770182 0)
(0.00671797 -0.0887597 0)
(0.00650695 -0.0969846 0)
(0.00946426 -0.106168 0)
(0.00974946 -0.116683 0)
(0.0111047 -0.12494 0)
(0.0136155 -0.13507 0)
(0.0119436 -0.145008 0)
(0.0122763 -0.149122 0)
(0.0167033 -0.156178 0)
(0.0266778 -0.163379 0)
(0.0355192 -0.178267 0)
(0.073164 -0.168249 0)
(0.180105 -0.120662 0)
(0.205995 -0.111947 0)
(0.119116 -0.156644 0)
(0.0559991 -0.205303 0)
(0.0378839 -0.225073 0)
(0.0502243 -0.216822 0)
(0.0784398 -0.207893 0)
(0.144335 -0.205326 0)
(0.147297 -0.201844 0)
(0.246663 -0.179873 0)
(0.332508 -0.140164 0)
(0.420367 -0.0964779 0)
(0.571995 -0.0555135 0)
(0.685606 -0.0158145 0)
(0.781951 0.0148702 0)
(0.778179 0.0385759 0)
(0.780577 0.0505131 0)
(0.792627 0.0869842 0)
(0.781928 0.105944 0)
(0.722317 0.110411 0)
(0.615974 0.141823 0)
(0.476364 0.168632 0)
(0.342282 0.189346 0)
(0.247357 0.210263 0)
(0.178628 0.214021 0)
(0.14069 0.211877 0)
(0.119383 0.206796 0)
(0.103491 0.196742 0)
(0.0936286 0.18483 0)
(0.0861269 0.170938 0)
(0.0758906 0.160224 0)
(0.0694767 0.149344 0)
(0.063101 0.140474 0)
(0.0557211 0.132106 0)
(0.0508969 0.123046 0)
(0.0464021 0.114332 0)
(0.0406312 0.105541 0)
(0.0367603 0.0962233 0)
(0.0326199 0.0864576 0)
(0.0268515 0.0766945 0)
(0.0231073 0.0700808 0)
(0.020146 0.0647386 0)
(0.0196932 0.0580378 0)
(0.0207742 0.0500674 0)
(0.0198149 0.0388446 0)
(0.0191787 0.0291002 0)
(0.0158562 0.0185375 0)
(0.0139311 0.0125866 0)
(0.0128175 0.0067526 0)
(0.0116736 0.000373082 0)
(0.0109444 -0.003535 0)
(0.00813186 -0.00870219 0)
(0.00858225 -0.00880673 0)
(0.0092329 -0.0106298 0)
(0.0116109 -0.0137018 0)
(0.0141826 -0.0195371 0)
(0.0135798 -0.0245774 0)
(0.0173766 -0.0289979 0)
(0.0176648 -0.0373851 0)
(0.0147204 -0.0470258 0)
(0.00749354 -0.0539419 0)
(-0.000179176 -0.0552631 0)
(-0.00232474 -0.0500668 0)
(0.00195774 -0.0475477 0)
(0.00688397 -0.0487663 0)
(0.0149799 -0.049618 0)
(0.0183326 -0.0554896 0)
(0.0267503 -0.0569643 0)
(0.0292882 -0.0618422 0)
(0.0372125 -0.0623379 0)
(0.0394645 -0.0665777 0)
(0.0453349 -0.0719757 0)
(0.0447057 -0.0757502 0)
(0.0463034 -0.0756216 0)
(0.0535471 -0.0749925 0)
(0.0587746 -0.0803626 0)
(0.0623115 -0.0857378 0)
(0.0675778 -0.0910576 0)
(0.0767655 -0.095139 0)
(0.0900704 -0.101028 0)
(0.110432 -0.111922 0)
(0.136292 -0.121244 0)
(0.151695 -0.13677 0)
(0.18022 -0.147612 0)
(0.198985 -0.153234 0)
(0.225425 -0.15948 0)
(0.293125 -0.159515 0)
(0.354556 -0.157572 0)
(0.474404 -0.153337 0)
(0.633531 -0.14451 0)
(0.772918 -0.1176 0)
(0.889102 -0.107556 0)
(0.955805 -0.0912163 0)
(0.981181 -0.0825498 0)
(0.950519 -0.0819082 0)
(0.841087 -0.0674987 0)
(0.844906 -0.0588847 0)
(0.888275 -0.051918 0)
(0.924246 -0.0257679 0)
(0.948277 -0.00509597 0)
(0.98469 -0.0126197 0)
(1.0119 0.0200313 0)
(1.04165 0.0515159 0)
(1.04843 0.0312279 0)
(1.06059 0.0598369 0)
(1.06308 0.0916367 0)
(1.01577 0.077341 0)
(0.908171 0.133754 0)
(0.74384 0.172797 0)
(0.590523 0.193106 0)
(0.517753 0.189722 0)
(0.454903 0.18076 0)
(0.389754 0.179469 0)
(0.318043 0.171148 0)
(0.257644 0.167004 0)
(0.208777 0.159391 0)
(0.171382 0.150707 0)
(0.147464 0.137916 0)
(0.127398 0.121546 0)
(0.112573 0.106195 0)
(0.0936325 0.0940442 0)
(0.0795481 0.0877853 0)
(0.0635197 0.0832683 0)
(0.049681 0.0806922 0)
(0.0402326 0.0811543 0)
(0.038693 0.0796732 0)
(0.0404077 0.0705095 0)
(0.0413904 0.058199 0)
(0.0404243 0.0495012 0)
(0.0447017 0.0421632 0)
(0.0514178 0.0304431 0)
(0.0598344 0.0118053 0)
(0.0632851 -0.0130419 0)
(0.0571674 -0.0380677 0)
(0.0362523 -0.0547151 0)
(0.0132362 -0.0483381 0)
(0.00680127 -0.0188386 0)
(0.01712 0.0105011 0)
(0.0207993 0.0252603 0)
(0.0257933 0.0308424 0)
(0.0371048 0.0281148 0)
(0.0474199 0.0120461 0)
(0.0473115 -0.00757155 0)
(0.0401885 -0.0194367 0)
(0.0365094 -0.0195636 0)
(0.0398721 -0.00957881 0)
(0.0515236 -0.00145439 0)
(0.0668952 0.00179546 0)
(0.0811169 0.00237032 0)
(0.0950497 0.000302374 0)
(0.106052 -0.00547428 0)
(0.115831 -0.0138243 0)
(0.108608 -0.0230835 0)
(0.106955 -0.026221 0)
(0.100711 -0.0303865 0)
(0.102533 -0.0345395 0)
(0.109259 -0.0436132 0)
(0.109337 -0.0600066 0)
(0.11511 -0.0889651 0)
(0.111302 -0.117266 0)
(0.10379 -0.133271 0)
(0.0789494 -0.132876 0)
(0.0790428 -0.11701 0)
(0.116552 -0.111776 0)
(0.17119 -0.135757 0)
(0.316088 -0.162495 0)
(0.399722 -0.168957 0)
(0.442294 -0.173396 0)
(0.482101 -0.176035 0)
(0.532462 -0.181086 0)
(0.57422 -0.192264 0)
(0.649816 -0.192845 0)
(0.74305 -0.164425 0)
(0.838149 -0.14696 0)
(0.913145 -0.142734 0)
(0.968933 -0.143333 0)
(1.01145 -0.140728 0)
(1.05069 -0.133551 0)
(1.10572 -0.121036 0)
(1.17669 -0.103117 0)
(1.25163 -0.075307 0)
(1.32168 -0.0472533 0)
(1.37659 -0.0205935 0)
(1.41227 0.00212626 0)
(1.4307 0.0238264 0)
(1.44205 0.0478518 0)
(1.44731 0.0665287 0)
(1.44169 0.0846177 0)
(1.41315 0.099698 0)
(1.31069 0.130675 0)
(1.12517 0.173888 0)
(0.952259 0.187838 0)
(0.843962 0.205176 0)
(0.760659 0.212606 0)
(0.66614 0.203943 0)
(0.59716 0.194092 0)
(0.562855 0.188784 0)
(0.540156 0.201101 0)
(0.491684 0.209784 0)
(0.383451 0.206007 0)
(0.288941 0.196423 0)
(0.216577 0.191338 0)
(0.166968 0.184538 0)
(0.147701 0.165154 0)
(0.147821 0.125653 0)
(0.157254 0.0748055 0)
(0.167281 0.0394337 0)
(0.188492 0.0530027 0)
(0.250845 0.107456 0)
(0.267389 0.137732 0)
(0.267631 0.131502 0)
(0.265419 0.104768 0)
(0.25454 0.0675293 0)
(0.223766 0.0513626 0)
(0.187326 0.0486704 0)
(0.150564 0.0454082 0)
(0.113611 0.0406267 0)
(0.0833161 0.0351879 0)
(0.0593341 0.0298242 0)
(0.0433102 0.0236194 0)
(0.0295801 0.0175859 0)
(0.0234625 0.0119893 0)
(0.0206698 0.00650854 0)
(0.0180708 0.00114249 0)
(0.0162557 -0.0021602 0)
(0.0151044 -0.00526827 0)
(0.0136158 -0.00772085 0)
(0.0135334 -0.00933497 0)
(0.0127622 -0.0120184 0)
(0.0121581 -0.0126077 0)
(0.0134373 -0.0138771 0)
(0.0137922 -0.0159101 0)
(0.0162281 -0.016652 0)
(0.0186077 -0.0208158 0)
(0.0194492 -0.0233297 0)
(0.0242158 -0.0260045 0)
(0.0264587 -0.033843 0)
(0.0275655 -0.0373655 0)
(0.0326273 -0.0433611 0)
(0.0331381 -0.0527851 0)
(0.0357443 -0.056323 0)
(0.0399152 -0.0665823 0)
(0.0389095 -0.0747392 0)
(0.0442749 -0.0804544 0)
(0.0437803 -0.096047 0)
(0.0404653 -0.0985521 0)
(0.0485407 -0.106375 0)
(0.0409542 -0.125499 0)
(0.0379291 -0.117786 0)
(0.0492341 -0.132926 0)
(0.0316323 -0.151631 0)
(0.0285609 -0.134974 0)
(0.0258586 -0.15157 0)
(0.01182 -0.139109 0)
(0.046305 -0.12025 0)
(0.02734 -0.212456 0)
(0.0606725 -0.148195 0)
(-0.0155605 -0.093031 0)
(0.528476 -0.110766 0)
(0.281392 -0.0792711 0)
(0.504759 -0.0923132 0)
(0.526644 -0.0684458 0)
(0.52355 -0.0448512 0)
(0.539079 -0.0222197 0)
(0.543468 0.00238457 0)
(0.535203 0.0276732 0)
(0.513926 0.0510259 0)
(0.502326 0.072927 0)
(0.507743 0.0967947 0)
(0.282909 0.0585579 0)
(0.626549 0.131771 0)
(0.473976 0.0923877 0)
(0.262162 0.0716944 0)
(0.105458 0.154604 0)
(0.0297267 0.17945 0)
(-0.00749519 0.139651 0)
(-0.0296473 0.149281 0)
(-0.0393125 0.161223 0)
(-0.0331065 0.18051 0)
(-0.0170331 0.178189 0)
(-0.00515025 0.172122 0)
(-0.0383962 -0.190831 0)
(-0.0537794 -0.112377 0)
(-0.0541522 -0.214122 0)
(-0.0968093 -0.122022 0)
(-0.0860562 -0.0195925 0)
(-0.0604654 -0.0323685 0)
(-0.0711919 -0.0166308 0)
(-0.031225 0.0561574 0)
(-0.0218623 0.0410421 0)
(-0.0284541 0.084874 0)
(-0.00152872 0.141898 0)
(0.00693309 0.112831 0)
(-0.00106199 0.115988 0)
(-0.00061849 0.126746 0)
(-0.000476176 0.130257 0)
(0.00387367 0.148949 0)
(0.0170826 0.151126 0)
(0.0239652 0.147354 0)
(0.02572 0.143326 0)
(0.029965 0.143692 0)
(0.0342098 0.136359 0)
(0.0348063 0.129167 0)
(0.0354508 0.123942 0)
(0.034914 0.116255 0)
(0.0345539 0.110304 0)
(0.0348057 0.103312 0)
(0.0341792 0.0955625 0)
(0.0319632 0.0869277 0)
(0.0296244 0.0815078 0)
(0.0288646 0.0754995 0)
(0.0277371 0.0686285 0)
(0.0260516 0.0621921 0)
(0.0242275 0.0560202 0)
(0.0223062 0.0504886 0)
(0.0205414 0.0454297 0)
(0.0189467 0.0407141 0)
(0.0174731 0.0362829 0)
(0.016123 0.0321204 0)
(0.0148088 0.028136 0)
(0.0134974 0.0244521 0)
(0.0122126 0.0210101 0)
(0.0109393 0.0178642 0)
(0.00970396 0.0149738 0)
(0.00834834 0.0124353 0)
(0.00747799 0.0105707 0)
(0.00750246 0.00845087 0)
(0.00743493 0.00537161 0)
(0.00706688 0.00199803 0)
(0.00605394 -0.00159853 0)
(0.0049839 -0.00441728 0)
(0.00449337 -0.00782402 0)
(0.0033034 -0.0113363 0)
(0.00278008 -0.01447 0)
(0.00213857 -0.0191257 0)
(0.000251715 -0.0227332 0)
(0.000642486 -0.0260696 0)
(9.62324e-05 -0.0324578 0)
(-0.00169213 -0.0360779 0)
(-0.000180918 -0.0406909 0)
(-0.000319197 -0.0477934 0)
(0.000669004 -0.0524367 0)
(0.00351017 -0.0609285 0)
(0.00283277 -0.0699401 0)
(0.00553514 -0.0780719 0)
(0.00647694 -0.0886656 0)
(0.00609179 -0.0978709 0)
(0.00917377 -0.106671 0)
(0.00922491 -0.116709 0)
(0.0101853 -0.125216 0)
(0.0121317 -0.135401 0)
(0.0103044 -0.144661 0)
(0.0102955 -0.148888 0)
(0.0131908 -0.155965 0)
(0.019382 -0.164004 0)
(0.0204325 -0.178595 0)
(0.0222823 -0.177295 0)
(0.0854894 -0.144923 0)
(0.224066 -0.116398 0)
(0.226518 -0.135796 0)
(0.191795 -0.16617 0)
(0.109125 -0.199626 0)
(0.0904765 -0.213418 0)
(0.100515 -0.212287 0)
(0.100799 -0.198245 0)
(0.0485961 -0.188299 0)
(0.0474214 -0.159039 0)
(0.0772204 -0.12716 0)
(0.133476 -0.100049 0)
(0.210059 -0.0752921 0)
(0.290651 -0.0410283 0)
(0.377631 0.00726556 0)
(0.451393 0.0440596 0)
(0.457484 0.0548413 0)
(0.457618 0.0927912 0)
(0.424858 0.114332 0)
(0.352039 0.137241 0)
(0.278749 0.167389 0)
(0.208082 0.186744 0)
(0.150273 0.200052 0)
(0.111404 0.213365 0)
(0.0877938 0.216358 0)
(0.0768701 0.213548 0)
(0.07196 0.208766 0)
(0.0671575 0.198473 0)
(0.0642039 0.186087 0)
(0.0612887 0.172974 0)
(0.0553158 0.161366 0)
(0.0514247 0.150752 0)
(0.0476057 0.141856 0)
(0.0429493 0.133168 0)
(0.039309 0.124089 0)
(0.0360818 0.115346 0)
(0.0317242 0.106318 0)
(0.0282123 0.0970879 0)
(0.0248657 0.0872011 0)
(0.0203055 0.0776528 0)
(0.0170773 0.0708308 0)
(0.0151579 0.0649678 0)
(0.0153075 0.0580197 0)
(0.0168492 0.0499278 0)
(0.0168978 0.0390193 0)
(0.0165261 0.0290787 0)
(0.0137518 0.0191084 0)
(0.0118122 0.0127359 0)
(0.0109523 0.00685544 0)
(0.00969872 7.79431e-05 0)
(0.00896522 -0.00380028 0)
(0.00682071 -0.0087826 0)
(0.00697772 -0.00955734 0)
(0.00845941 -0.0112633 0)
(0.0108181 -0.0147596 0)
(0.0134346 -0.0197939 0)
(0.0129692 -0.0249 0)
(0.0160707 -0.0289733 0)
(0.0157677 -0.0371133 0)
(0.0120824 -0.0467693 0)
(0.00559449 -0.0525869 0)
(-0.00170979 -0.0540353 0)
(-0.00385935 -0.0505022 0)
(-0.000971712 -0.0478024 0)
(0.00281921 -0.0498652 0)
(0.00948214 -0.0515329 0)
(0.0127091 -0.0564125 0)
(0.0189096 -0.0588614 0)
(0.0213645 -0.0623097 0)
(0.0264639 -0.0638234 0)
(0.028386 -0.0678748 0)
(0.0291571 -0.0730447 0)
(0.0275182 -0.075507 0)
(0.0263769 -0.0758549 0)
(0.0296058 -0.0776386 0)
(0.0319562 -0.0826131 0)
(0.0350483 -0.0870143 0)
(0.0391591 -0.0919063 0)
(0.0459088 -0.0975002 0)
(0.0551347 -0.104686 0)
(0.068739 -0.116372 0)
(0.084957 -0.125403 0)
(0.100206 -0.141441 0)
(0.123858 -0.14773 0)
(0.143554 -0.151179 0)
(0.160785 -0.156128 0)
(0.194081 -0.148136 0)
(0.220436 -0.154594 0)
(0.261863 -0.157353 0)
(0.357105 -0.142085 0)
(0.429687 -0.140963 0)
(0.587671 -0.117911 0)
(0.684936 -0.111399 0)
(0.8193 -0.0721178 0)
(0.898946 -0.0536169 0)
(0.942823 -0.0453415 0)
(0.961052 -0.071072 0)
(0.958295 -0.0682979 0)
(0.948641 -0.044435 0)
(0.951475 -0.00956024 0)
(0.947146 -0.0226518 0)
(0.955653 0.0209909 0)
(0.970948 0.0616206 0)
(0.933087 0.0169324 0)
(0.842651 0.0828071 0)
(0.779902 0.109635 0)
(0.708293 0.108663 0)
(0.667836 0.152816 0)
(0.595259 0.187116 0)
(0.521709 0.203065 0)
(0.461008 0.200551 0)
(0.378155 0.19579 0)
(0.303634 0.194257 0)
(0.234859 0.184155 0)
(0.187291 0.176532 0)
(0.149828 0.166228 0)
(0.123497 0.155248 0)
(0.103511 0.14093 0)
(0.0874603 0.124161 0)
(0.0730637 0.108863 0)
(0.0564725 0.0967793 0)
(0.0451332 0.0900472 0)
(0.0348531 0.0848346 0)
(0.0274235 0.0821732 0)
(0.0245984 0.0817009 0)
(0.0276835 0.0788412 0)
(0.0326079 0.0696222 0)
(0.0352906 0.0584654 0)
(0.0353247 0.0499252 0)
(0.0375956 0.0404001 0)
(0.042722 0.0285295 0)
(0.0509526 0.0120972 0)
(0.0534946 -0.0113658 0)
(0.0472734 -0.035828 0)
(0.0274023 -0.051482 0)
(0.00297022 -0.0456009 0)
(-0.010067 -0.018547 0)
(-0.00343004 0.00966279 0)
(0.00488497 0.0247032 0)
(0.0162299 0.0290944 0)
(0.0291837 0.02597 0)
(0.0374074 0.0117124 0)
(0.0340329 -0.00656182 0)
(0.0244744 -0.0182119 0)
(0.0165538 -0.018063 0)
(0.0182948 -0.0114983 0)
(0.0287025 -0.00398525 0)
(0.0426654 -0.000879469 0)
(0.0546238 -0.000628825 0)
(0.0643705 -0.0019801 0)
(0.0674793 -0.00738107 0)
(0.0706888 -0.0129912 0)
(0.0617533 -0.0221587 0)
(0.0600807 -0.0255935 0)
(0.0531585 -0.0301252 0)
(0.0540987 -0.0388321 0)
(0.0643276 -0.0471497 0)
(0.075397 -0.0651171 0)
(0.0814016 -0.0910969 0)
(0.0706761 -0.115331 0)
(0.0556473 -0.128604 0)
(0.0365046 -0.128575 0)
(0.0382684 -0.118096 0)
(0.0779929 -0.11964 0)
(0.131497 -0.160185 0)
(0.255478 -0.178534 0)
(0.335832 -0.18088 0)
(0.376238 -0.174821 0)
(0.399842 -0.177663 0)
(0.404218 -0.186792 0)
(0.408615 -0.201661 0)
(0.441282 -0.205778 0)
(0.50016 -0.186996 0)
(0.589514 -0.169861 0)
(0.669826 -0.163566 0)
(0.741321 -0.162884 0)
(0.80574 -0.16203 0)
(0.87147 -0.159728 0)
(0.938544 -0.151255 0)
(1.00751 -0.134066 0)
(1.07901 -0.110621 0)
(1.16426 -0.0799981 0)
(1.24684 -0.044253 0)
(1.30973 -0.00804912 0)
(1.34173 0.0201141 0)
(1.34807 0.0427124 0)
(1.32895 0.0618042 0)
(1.2527 0.093674 0)
(1.10945 0.13077 0)
(0.925308 0.169216 0)
(0.794663 0.197201 0)
(0.707522 0.202497 0)
(0.653611 0.21449 0)
(0.601649 0.22593 0)
(0.525976 0.219066 0)
(0.463345 0.205188 0)
(0.42638 0.196695 0)
(0.402166 0.209199 0)
(0.351553 0.224589 0)
(0.278416 0.223217 0)
(0.212177 0.211121 0)
(0.160512 0.201532 0)
(0.12789 0.189353 0)
(0.120899 0.165778 0)
(0.125855 0.124505 0)
(0.127043 0.0731125 0)
(0.129839 0.0369005 0)
(0.136412 0.0472846 0)
(0.184705 0.0983154 0)
(0.220966 0.132706 0)
(0.241307 0.129165 0)
(0.245603 0.104368 0)
(0.223284 0.0725057 0)
(0.179598 0.0584806 0)
(0.145482 0.0556952 0)
(0.115519 0.0521989 0)
(0.0876172 0.0468858 0)
(0.0628535 0.0402813 0)
(0.0440888 0.0332898 0)
(0.0326136 0.0260124 0)
(0.0243349 0.0189273 0)
(0.0208028 0.0125096 0)
(0.0189879 0.00684146 0)
(0.0168482 0.00151428 0)
(0.0151685 -0.00192896 0)
(0.0140887 -0.00510769 0)
(0.0126607 -0.00763363 0)
(0.0125832 -0.00932512 0)
(0.0119084 -0.0119443 0)
(0.0113558 -0.0127545 0)
(0.0125958 -0.014112 0)
(0.012963 -0.0161918 0)
(0.0150811 -0.0172005 0)
(0.0173531 -0.0212048 0)
(0.0182183 -0.0239157 0)
(0.0224607 -0.0268492 0)
(0.024639 -0.0342105 0)
(0.02573 -0.0380047 0)
(0.0302905 -0.0440013 0)
(0.0309552 -0.0528711 0)
(0.0332828 -0.0570622 0)
(0.0370646 -0.0667797 0)
(0.0363222 -0.0751009 0)
(0.0408283 -0.0810823 0)
(0.0407497 -0.0954424 0)
(0.0379335 -0.0992847 0)
(0.0445751 -0.107265 0)
(0.0385269 -0.124165 0)
(0.0358898 -0.118456 0)
(0.0440084 -0.130379 0)
(0.0295372 -0.148857 0)
(0.0266724 -0.134153 0)
(0.0239223 -0.150298 0)
(0.0124348 -0.134562 0)
(0.0384009 -0.126647 0)
(0.0214085 -0.170452 0)
(-0.00977574 -0.148155 0)
(-0.00871332 -0.164464 0)
(-0.0232981 -0.127384 0)
(0.0254051 -0.0902159 0)
(0.0298673 -0.116944 0)
(0.523015 -0.0693809 0)
(0.590556 -0.0491413 0)
(0.591772 -0.0267492 0)
(0.581097 4.49855e-05 0)
(0.64652 0.0281856 0)
(0.515802 0.030525 0)
(0.498536 0.0425232 0)
(0.498948 0.0771413 0)
(0.397677 0.0951391 0)
(0.0828753 0.0413741 0)
(0.046465 0.135501 0)
(-0.0100099 0.168536 0)
(-0.0222664 0.174239 0)
(-0.011956 0.17418 0)
(-0.015506 0.144783 0)
(-0.031106 0.1512 0)
(-0.0361306 0.161167 0)
(-0.0302939 0.177317 0)
(-0.0160733 0.175991 0)
(-0.00488607 0.169974 0)
(-0.0301575 -0.178393 0)
(-0.0469772 -0.117625 0)
(-0.0528051 -0.136499 0)
(-0.088737 -0.105186 0)
(-0.0820557 -0.0378407 0)
(-0.0617521 -0.0273586 0)
(-0.0688992 -0.00824675 0)
(-0.0588831 0.0366233 0)
(-0.0479445 0.0437563 0)
(-0.0551434 0.0747035 0)
(-0.0304249 0.124756 0)
(-0.00353516 0.114141 0)
(-0.003907 0.117094 0)
(-0.00257077 0.127733 0)
(-0.0011816 0.130798 0)
(0.00362035 0.146367 0)
(0.0151469 0.149084 0)
(0.0216625 0.146312 0)
(0.0237965 0.143059 0)
(0.0277638 0.1426 0)
(0.0313934 0.135907 0)
(0.0322175 0.129304 0)
(0.0328681 0.123707 0)
(0.0323637 0.116393 0)
(0.0321239 0.110398 0)
(0.032286 0.103323 0)
(0.0316084 0.0957327 0)
(0.0296719 0.0875003 0)
(0.0276364 0.0818007 0)
(0.026825 0.0756874 0)
(0.0257329 0.0689208 0)
(0.0241797 0.0625288 0)
(0.0225014 0.0564064 0)
(0.0207399 0.0508587 0)
(0.019105 0.0457672 0)
(0.0176194 0.0410227 0)
(0.0162449 0.0365686 0)
(0.014982 0.0323881 0)
(0.0137556 0.0284015 0)
(0.0125369 0.0247119 0)
(0.0113426 0.021266 0)
(0.010162 0.0181162 0)
(0.00902243 0.0152229 0)
(0.00780041 0.0126602 0)
(0.00701314 0.0106774 0)
(0.00697672 0.00845384 0)
(0.0068607 0.00542387 0)
(0.00651222 0.00215042 0)
(0.0056161 -0.0013992 0)
(0.00465601 -0.00427731 0)
(0.00418398 -0.00767323 0)
(0.0031131 -0.0111776 0)
(0.00262524 -0.0143482 0)
(0.00204716 -0.018885 0)
(0.000428 -0.0225772 0)
(0.000738486 -0.0260737 0)
(0.000263954 -0.0322279 0)
(-0.00126271 -0.0360839 0)
(0.000130085 -0.0408233 0)
(-5.22446e-05 -0.0478172 0)
(0.00107773 -0.052635 0)
(0.00339863 -0.0615939 0)
(0.00291281 -0.0699131 0)
(0.00543239 -0.0784335 0)
(0.00602748 -0.0888238 0)
(0.00613918 -0.0978892 0)
(0.00898414 -0.106291 0)
(0.00859727 -0.116856 0)
(0.00958141 -0.125114 0)
(0.0109948 -0.135137 0)
(0.0092238 -0.144747 0)
(0.00916021 -0.14942 0)
(0.0113526 -0.156614 0)
(0.01538 -0.164163 0)
(0.0135041 -0.176276 0)
(0.00804434 -0.177328 0)
(0.0192797 -0.16298 0)
(0.125254 -0.139739 0)
(0.220541 -0.140578 0)
(0.203448 -0.158154 0)
(0.118422 -0.183603 0)
(0.0766656 -0.194938 0)
(0.0460238 -0.191237 0)
(0.019536 -0.171965 0)
(0.00714988 -0.169325 0)
(-0.00393787 -0.165851 0)
(0.000864852 -0.145118 0)
(0.0206276 -0.118218 0)
(0.0480667 -0.0880935 0)
(0.0834492 -0.0553176 0)
(0.125685 -0.0156227 0)
(0.175329 0.0274552 0)
(0.178079 0.0533291 0)
(0.181119 0.0885707 0)
(0.16647 0.118308 0)
(0.13405 0.143576 0)
(0.100948 0.169626 0)
(0.0747551 0.189531 0)
(0.0567305 0.203015 0)
(0.0467509 0.215388 0)
(0.0437889 0.218222 0)
(0.0447398 0.214812 0)
(0.0470303 0.20912 0)
(0.0479324 0.19891 0)
(0.0482564 0.186392 0)
(0.0472862 0.173382 0)
(0.0440079 0.1621 0)
(0.0408844 0.151184 0)
(0.0383136 0.142064 0)
(0.0350453 0.133501 0)
(0.0319528 0.124401 0)
(0.0293573 0.115792 0)
(0.0260347 0.106826 0)
(0.0232637 0.0975492 0)
(0.0206541 0.0878996 0)
(0.0169937 0.078522 0)
(0.0142693 0.0714634 0)
(0.0130727 0.0651305 0)
(0.013483 0.0578376 0)
(0.0151388 0.0497431 0)
(0.0154389 0.0391418 0)
(0.0150583 0.0296166 0)
(0.0126392 0.0195988 0)
(0.0106996 0.0133454 0)
(0.0101477 0.00709393 0)
(0.00857028 0.000773194 0)
(0.00803626 -0.00325066 0)
(0.00629562 -0.00833312 0)
(0.00637044 -0.0092811 0)
(0.00821157 -0.0116517 0)
(0.0103024 -0.0147817 0)
(0.0131118 -0.0200909 0)
(0.0126627 -0.024871 0)
(0.0148526 -0.0290736 0)
(0.0143747 -0.0372232 0)
(0.0104841 -0.0456018 0)
(0.00484243 -0.0512483 0)
(-0.0018676 -0.0527682 0)
(-0.00391882 -0.0501236 0)
(-0.00162514 -0.0481146 0)
(0.00162673 -0.0502883 0)
(0.00702704 -0.0517211 0)
(0.0100314 -0.0566065 0)
(0.0150285 -0.0584155 0)
(0.0175656 -0.0637062 0)
(0.0214855 -0.0635668 0)
(0.0233071 -0.0681279 0)
(0.0219865 -0.0718343 0)
(0.0198955 -0.0752253 0)
(0.0167233 -0.07565 0)
(0.0172839 -0.0768062 0)
(0.017299 -0.0814684 0)
(0.0175058 -0.0871584 0)
(0.0185181 -0.0935507 0)
(0.0222277 -0.100435 0)
(0.0281618 -0.109021 0)
(0.0358128 -0.120115 0)
(0.0451325 -0.132595 0)
(0.0518902 -0.147304 0)
(0.0636809 -0.160056 0)
(0.0792149 -0.163405 0)
(0.100792 -0.169068 0)
(0.128491 -0.172173 0)
(0.151677 -0.166515 0)
(0.176405 -0.172424 0)
(0.229531 -0.172849 0)
(0.251705 -0.160522 0)
(0.339646 -0.147576 0)
(0.4031 -0.139044 0)
(0.518012 -0.117009 0)
(0.649159 -0.0905027 0)
(0.714168 -0.0763817 0)
(0.784776 -0.0611392 0)
(0.817315 -0.0493991 0)
(0.824208 -0.0322125 0)
(0.848055 -0.00114866 0)
(0.825277 -0.0153728 0)
(0.766695 0.0280536 0)
(0.736226 0.0710748 0)
(0.596943 0.0503775 0)
(0.494041 0.0987784 0)
(0.490618 0.108735 0)
(0.488798 0.116186 0)
(0.492438 0.153328 0)
(0.474593 0.195176 0)
(0.442948 0.214301 0)
(0.381626 0.216259 0)
(0.291574 0.212858 0)
(0.225393 0.207825 0)
(0.16972 0.194744 0)
(0.135447 0.183485 0)
(0.107199 0.171697 0)
(0.0883553 0.159326 0)
(0.0724954 0.144289 0)
(0.0607355 0.127373 0)
(0.0486603 0.112194 0)
(0.036297 0.0995995 0)
(0.0278848 0.0919328 0)
(0.0218379 0.0866726 0)
(0.0180991 0.0828081 0)
(0.0182903 0.0810371 0)
(0.0229474 0.0776833 0)
(0.0273871 0.068514 0)
(0.029314 0.0579072 0)
(0.0302462 0.0488743 0)
(0.0329266 0.0406264 0)
(0.0381451 0.027823 0)
(0.0447647 0.00986944 0)
(0.0461081 -0.0120981 0)
(0.0396661 -0.0332562 0)
(0.0217445 -0.0466441 0)
(-0.000746235 -0.0408634 0)
(-0.0137376 -0.017192 0)
(-0.0100905 0.00721961 0)
(-0.000440921 0.0214079 0)
(0.0119163 0.0260477 0)
(0.0234036 0.0230483 0)
(0.0281334 0.00998017 0)
(0.023572 -0.00644634 0)
(0.0146129 -0.0166861 0)
(0.00855794 -0.0183667 0)
(0.0109449 -0.0129175 0)
(0.0200152 -0.00693253 0)
(0.0316383 -0.00332337 0)
(0.0412451 -0.00207815 0)
(0.0490233 -0.00224559 0)
(0.049412 -0.00673373 0)
(0.0450005 -0.0133497 0)
(0.0343574 -0.0227081 0)
(0.0304893 -0.0270855 0)
(0.029073 -0.0325278 0)
(0.035415 -0.038757 0)
(0.048265 -0.0491992 0)
(0.0605532 -0.065469 0)
(0.0657131 -0.088056 0)
(0.0532601 -0.111362 0)
(0.0350228 -0.12526 0)
(0.017294 -0.127594 0)
(0.0199756 -0.124211 0)
(0.0575806 -0.13437 0)
(0.0897609 -0.174906 0)
(0.157708 -0.195969 0)
(0.228422 -0.194573 0)
(0.286014 -0.183269 0)
(0.324253 -0.181984 0)
(0.328837 -0.187906 0)
(0.323806 -0.201734 0)
(0.32322 -0.2062 0)
(0.327019 -0.197067 0)
(0.365034 -0.180279 0)
(0.401079 -0.174964 0)
(0.444108 -0.170045 0)
(0.490025 -0.165452 0)
(0.555259 -0.16103 0)
(0.640275 -0.150634 0)
(0.731291 -0.133173 0)
(0.802231 -0.110452 0)
(0.876146 -0.0835601 0)
(0.949152 -0.0526709 0)
(1.01556 -0.0166911 0)
(1.05037 0.0163252 0)
(1.04445 0.0474657 0)
(0.986732 0.081889 0)
(0.885238 0.120598 0)
(0.76779 0.156322 0)
(0.645852 0.185939 0)
(0.569981 0.207529 0)
(0.523589 0.212847 0)
(0.490138 0.223958 0)
(0.453448 0.236493 0)
(0.397478 0.230377 0)
(0.347632 0.213838 0)
(0.310855 0.203651 0)
(0.281654 0.215974 0)
(0.241174 0.232912 0)
(0.196408 0.232952 0)
(0.153869 0.220466 0)
(0.119588 0.208212 0)
(0.100563 0.192046 0)
(0.101674 0.165455 0)
(0.109952 0.124117 0)
(0.107072 0.0727126 0)
(0.0958067 0.03669 0)
(0.0943488 0.0439217 0)
(0.12578 0.09155 0)
(0.160607 0.125179 0)
(0.181923 0.124779 0)
(0.186684 0.105725 0)
(0.16157 0.0788697 0)
(0.127647 0.0652326 0)
(0.103815 0.0607446 0)
(0.0822816 0.0567081 0)
(0.0628621 0.0510425 0)
(0.0454487 0.0437224 0)
(0.0332587 0.0356584 0)
(0.0262026 0.0274843 0)
(0.0214368 0.0197781 0)
(0.0189923 0.0130019 0)
(0.0174792 0.00721084 0)
(0.0154874 0.00191172 0)
(0.0139189 -0.00163304 0)
(0.012945 -0.00486184 0)
(0.0116544 -0.0074685 0)
(0.0115667 -0.00924694 0)
(0.0109977 -0.0118196 0)
(0.0105556 -0.0128076 0)
(0.0116591 -0.014267 0)
(0.0120665 -0.016417 0)
(0.0139924 -0.0176361 0)
(0.0160621 -0.0214841 0)
(0.0170019 -0.0243787 0)
(0.0207221 -0.0274893 0)
(0.0227698 -0.0344463 0)
(0.0239061 -0.038605 0)
(0.0279203 -0.0445797 0)
(0.0286968 -0.0531621 0)
(0.0308319 -0.0577515 0)
(0.0342023 -0.0671287 0)
(0.0337561 -0.0753766 0)
(0.0375855 -0.0816821 0)
(0.0376425 -0.0949695 0)
(0.0353219 -0.0996906 0)
(0.0407064 -0.107219 0)
(0.035846 -0.122713 0)
(0.033485 -0.119659 0)
(0.0398595 -0.131022 0)
(0.0275859 -0.145249 0)
(0.0245551 -0.134715 0)
(0.022235 -0.146706 0)
(0.0127319 -0.136151 0)
(0.0328525 -0.130066 0)
(0.0186016 -0.167463 0)
(-0.00748668 -0.143226 0)
(-0.00886452 -0.132293 0)
(-0.0246044 -0.122966 0)
(-0.00391351 -0.0858635 0)
(-0.0136193 -0.146325 0)
(-0.0632366 -0.117329 0)
(-0.0575023 -0.0336093 0)
(-0.0395278 -0.0318868 0)
(-0.041324 -0.0213385 0)
(-0.0170213 0.00586016 0)
(0.015844 0.0576821 0)
(-0.0101514 0.0463422 0)
(0.015557 0.0921235 0)
(0.0446978 0.130236 0)
(-0.0382713 0.113354 0)
(-0.045734 0.142161 0)
(-0.0450818 0.158265 0)
(-0.0342704 0.169942 0)
(-0.0164424 0.171367 0)
(-0.0164738 0.147979 0)
(-0.0285629 0.153297 0)
(-0.0321414 0.160607 0)
(-0.0269995 0.173749 0)
(-0.0149088 0.173483 0)
(-0.00454386 0.167933 0)
(-0.0246239 -0.166843 0)
(-0.0418869 -0.121281 0)
(-0.0499235 -0.132741 0)
(-0.0782003 -0.1009 0)
(-0.0740103 -0.0426358 0)
(-0.0582444 -0.0286191 0)
(-0.0625714 -0.00716797 0)
(-0.0553958 0.034612 0)
(-0.0460998 0.0452034 0)
(-0.0507042 0.0753474 0)
(-0.0302402 0.117637 0)
(-0.00603835 0.113093 0)
(-0.00419424 0.116721 0)
(-0.00285698 0.126592 0)
(-0.00101575 0.13094 0)
(0.00374237 0.144305 0)
(0.0136166 0.147478 0)
(0.0195611 0.14542 0)
(0.0218901 0.142721 0)
(0.0255649 0.141636 0)
(0.0286945 0.135512 0)
(0.0296521 0.129348 0)
(0.0302904 0.123526 0)
(0.0298397 0.116504 0)
(0.0296833 0.110461 0)
(0.0297736 0.103365 0)
(0.0290825 0.0959031 0)
(0.0273878 0.08799 0)
(0.0256114 0.0820708 0)
(0.024782 0.0758778 0)
(0.023738 0.0691934 0)
(0.0223122 0.0628401 0)
(0.0207742 0.0567583 0)
(0.0191655 0.0511991 0)
(0.0176597 0.0460797 0)
(0.0162844 0.0413093 0)
(0.0150102 0.0368343 0)
(0.0138367 0.0326372 0)
(0.0126992 0.0286477 0)
(0.0115733 0.0249521 0)
(0.0104701 0.0215023 0)
(0.00938181 0.0183481 0)
(0.00833649 0.0154488 0)
(0.00723831 0.0128617 0)
(0.00652706 0.0107749 0)
(0.0064456 0.00846257 0)
(0.0062943 0.00547709 0)
(0.00597058 0.00225103 0)
(0.00518259 -0.00121388 0)
(0.00432257 -0.004135 0)
(0.00387853 -0.00751741 0)
(0.00293491 -0.0110224 0)
(0.00247464 -0.0142566 0)
(0.00198592 -0.0186863 0)
(0.000600848 -0.0224517 0)
(0.000845911 -0.0261202 0)
(0.000429373 -0.0319849 0)
(-0.000861603 -0.0360655 0)
(0.000449115 -0.0411128 0)
(0.000350228 -0.0477993 0)
(0.00133183 -0.0530289 0)
(0.00345376 -0.0623478 0)
(0.00300028 -0.0706654 0)
(0.00513287 -0.0783392 0)
(0.00572897 -0.0887714 0)
(0.00600513 -0.0975558 0)
(0.00847204 -0.106381 0)
(0.00817885 -0.116828 0)
(0.00885773 -0.125476 0)
(0.00987045 -0.135337 0)
(0.00841022 -0.145081 0)
(0.00862139 -0.14969 0)
(0.0100853 -0.156944 0)
(0.0130126 -0.165963 0)
(0.00928932 -0.177819 0)
(0.00231434 -0.177315 0)
(0.00403017 -0.165833 0)
(0.0301473 -0.152013 0)
(0.112106 -0.144421 0)
(0.115583 -0.142295 0)
(0.0768827 -0.157258 0)
(0.0379162 -0.178172 0)
(0.0229048 -0.181579 0)
(0.00255731 -0.176267 0)
(-0.0100408 -0.175242 0)
(-0.0236205 -0.163131 0)
(-0.030775 -0.140338 0)
(-0.0291299 -0.116344 0)
(-0.024903 -0.0898109 0)
(-0.0140114 -0.0578479 0)
(0.00253085 -0.0175425 0)
(0.0290954 0.0236285 0)
(0.0327445 0.0515993 0)
(0.0374846 0.0866973 0)
(0.034324 0.119057 0)
(0.0261242 0.145646 0)
(0.0170935 0.171682 0)
(0.0138413 0.191354 0)
(0.0139148 0.204806 0)
(0.016804 0.215407 0)
(0.0229292 0.217563 0)
(0.028655 0.213893 0)
(0.0337941 0.208076 0)
(0.0373894 0.198402 0)
(0.0388648 0.186109 0)
(0.0388487 0.173675 0)
(0.0366716 0.162678 0)
(0.03421 0.151853 0)
(0.0323473 0.142757 0)
(0.0297655 0.134101 0)
(0.02734 0.125101 0)
(0.0251598 0.116457 0)
(0.0224972 0.107333 0)
(0.0203461 0.0980234 0)
(0.0183262 0.0883855 0)
(0.015322 0.0790533 0)
(0.0130857 0.0717838 0)
(0.0122864 0.0650518 0)
(0.0127411 0.0576394 0)
(0.0143354 0.0495312 0)
(0.014601 0.0390736 0)
(0.0141618 0.029748 0)
(0.0119754 0.0200227 0)
(0.010162 0.0135616 0)
(0.00975355 0.00723509 0)
(0.00806081 0.000848843 0)
(0.00763083 -0.00305847 0)
(0.00616059 -0.00811476 0)
(0.00622264 -0.00929639 0)
(0.00816661 -0.0119826 0)
(0.0101035 -0.0152115 0)
(0.0127355 -0.0200589 0)
(0.0122522 -0.0247122 0)
(0.0140461 -0.0291426 0)
(0.0134769 -0.0363722 0)
(0.00958388 -0.0443644 0)
(0.00480659 -0.049769 0)
(-0.00129889 -0.0518208 0)
(-0.00322641 -0.0498687 0)
(-0.00145228 -0.0487495 0)
(0.00137038 -0.0504401 0)
(0.00540902 -0.0521031 0)
(0.00753714 -0.0563476 0)
(0.0115633 -0.0587016 0)
(0.0135291 -0.0621659 0)
(0.0168597 -0.0633479 0)
(0.0184984 -0.0682852 0)
(0.0177621 -0.0702117 0)
(0.0159188 -0.0741396 0)
(0.0123095 -0.0743892 0)
(0.011816 -0.0763024 0)
(0.0110175 -0.0813329 0)
(0.010411 -0.0864644 0)
(0.0105118 -0.0922178 0)
(0.0129426 -0.098085 0)
(0.0172592 -0.105925 0)
(0.0223916 -0.116767 0)
(0.0287047 -0.127308 0)
(0.032042 -0.142302 0)
(0.0369842 -0.151362 0)
(0.0409811 -0.159379 0)
(0.0500788 -0.163387 0)
(0.0652516 -0.161032 0)
(0.0855303 -0.167997 0)
(0.109227 -0.171806 0)
(0.136347 -0.162509 0)
(0.148809 -0.160698 0)
(0.193136 -0.149166 0)
(0.223979 -0.141714 0)
(0.27028 -0.123867 0)
(0.356065 -0.0955512 0)
(0.393201 -0.0770615 0)
(0.459157 -0.0727071 0)
(0.506501 -0.0595535 0)
(0.519869 -0.0393799 0)
(0.559937 -0.00464629 0)
(0.531946 -0.00113614 0)
(0.43855 0.0401375 0)
(0.41684 0.0807037 0)
(0.330525 0.0751381 0)
(0.293429 0.0933742 0)
(0.308436 0.104107 0)
(0.329037 0.113584 0)
(0.348036 0.154682 0)
(0.353767 0.198195 0)
(0.338049 0.22242 0)
(0.283823 0.229774 0)
(0.209334 0.226786 0)
(0.162059 0.218009 0)
(0.122282 0.202563 0)
(0.0984704 0.189361 0)
(0.0774793 0.176191 0)
(0.0641422 0.162764 0)
(0.0527195 0.146861 0)
(0.0444455 0.129685 0)
(0.0353555 0.114497 0)
(0.0264997 0.101578 0)
(0.020078 0.0932479 0)
(0.0161332 0.0872104 0)
(0.013954 0.0834828 0)
(0.0147097 0.0812643 0)
(0.0191148 0.0772071 0)
(0.0225648 0.0684946 0)
(0.0239342 0.0583689 0)
(0.025092 0.0498721 0)
(0.0289984 0.0396529 0)
(0.0333111 0.0266777 0)
(0.0374391 0.010229 0)
(0.0375889 -0.0107553 0)
(0.0311593 -0.0314802 0)
(0.0161104 -0.0426307 0)
(-0.00237982 -0.0373453 0)
(-0.0133793 -0.0169059 0)
(-0.0101405 0.00580004 0)
(-0.000873818 0.0199906 0)
(0.00970101 0.0245116 0)
(0.018795 0.0221091 0)
(0.0217949 0.0110966 0)
(0.0186065 -0.00377968 0)
(0.0109777 -0.0144856 0)
(0.00468191 -0.0164511 0)
(0.0047049 -0.0123617 0)
(0.0112956 -0.00737231 0)
(0.0197912 -0.00412924 0)
(0.0258025 -0.00308401 0)
(0.0309861 -0.0030792 0)
(0.0323914 -0.00554073 0)
(0.0296309 -0.0109347 0)
(0.0205253 -0.0187455 0)
(0.0177448 -0.0235885 0)
(0.0190173 -0.0302692 0)
(0.0259883 -0.0389485 0)
(0.037902 -0.0491236 0)
(0.0475891 -0.0637456 0)
(0.0531453 -0.0852857 0)
(0.042383 -0.105571 0)
(0.0246745 -0.119459 0)
(0.00942686 -0.124799 0)
(0.0129299 -0.126937 0)
(0.0408022 -0.139645 0)
(0.0619669 -0.181468 0)
(0.0922097 -0.205306 0)
(0.134057 -0.206245 0)
(0.177192 -0.192154 0)
(0.207964 -0.187292 0)
(0.218251 -0.18868 0)
(0.220589 -0.197206 0)
(0.225824 -0.201606 0)
(0.222821 -0.195312 0)
(0.229351 -0.181465 0)
(0.248614 -0.174255 0)
(0.269933 -0.173524 0)
(0.30244 -0.173778 0)
(0.344121 -0.172471 0)
(0.391631 -0.162855 0)
(0.452828 -0.144239 0)
(0.513868 -0.122962 0)
(0.59411 -0.0966418 0)
(0.661908 -0.0657566 0)
(0.715084 -0.0258344 0)
(0.736163 0.0148671 0)
(0.727896 0.0553233 0)
(0.684707 0.0941876 0)
(0.611838 0.135541 0)
(0.529092 0.173955 0)
(0.4512 0.201435 0)
(0.406547 0.217679 0)
(0.377859 0.220952 0)
(0.352886 0.23099 0)
(0.327195 0.243421 0)
(0.289459 0.23825 0)
(0.252163 0.221735 0)
(0.217674 0.21198 0)
(0.187589 0.223549 0)
(0.15967 0.239415 0)
(0.13515 0.239367 0)
(0.109746 0.226652 0)
(0.0897061 0.212391 0)
(0.0819226 0.19284 0)
(0.0882087 0.164115 0)
(0.09694 0.12368 0)
(0.0928666 0.0749635 0)
(0.0699183 0.0385007 0)
(0.0596987 0.0426764 0)
(0.0792011 0.0857181 0)
(0.108432 0.11976 0)
(0.127498 0.122279 0)
(0.132884 0.10687 0)
(0.115643 0.0834559 0)
(0.090804 0.0698463 0)
(0.0726299 0.0644938 0)
(0.057444 0.0599836 0)
(0.0456172 0.0539671 0)
(0.0345959 0.0460633 0)
(0.0268927 0.0370659 0)
(0.0224009 0.0283659 0)
(0.0192784 0.0202808 0)
(0.0172155 0.0132998 0)
(0.0158497 0.00750233 0)
(0.0141147 0.00223654 0)
(0.0127743 -0.00142063 0)
(0.0118877 -0.00469551 0)
(0.010747 -0.00735458 0)
(0.0106438 -0.00920593 0)
(0.0101616 -0.0117406 0)
(0.00977036 -0.0128901 0)
(0.0107774 -0.014425 0)
(0.0111977 -0.0166283 0)
(0.0128849 -0.0180538 0)
(0.0148103 -0.0217771 0)
(0.0157423 -0.0248237 0)
(0.0190311 -0.0281196 0)
(0.0209569 -0.034745 0)
(0.0220716 -0.0391285 0)
(0.0256007 -0.0450691 0)
(0.0264808 -0.0533276 0)
(0.0283817 -0.0583909 0)
(0.0313775 -0.067423 0)
(0.0311488 -0.0757043 0)
(0.0343789 -0.0821972 0)
(0.0345823 -0.0946596 0)
(0.0326409 -0.100007 0)
(0.037017 -0.107539 0)
(0.0331064 -0.121447 0)
(0.0309922 -0.120408 0)
(0.0357861 -0.130468 0)
(0.0255799 -0.143343 0)
(0.0227732 -0.134669 0)
(0.0204294 -0.144894 0)
(0.0127678 -0.136237 0)
(0.0283052 -0.130852 0)
(0.0159443 -0.161019 0)
(-0.00636388 -0.141017 0)
(-0.00811076 -0.135884 0)
(-0.0204905 -0.119385 0)
(-0.0053601 -0.0910691 0)
(-0.015395 -0.121274 0)
(-0.0588536 -0.0923005 0)
(-0.0545174 -0.0401435 0)
(-0.0437107 -0.0255176 0)
(-0.0510396 -0.0092776 0)
(-0.0594208 0.0141681 0)
(-0.0521945 0.0455796 0)
(-0.0551699 0.0533862 0)
(-0.0627744 0.0851659 0)
(-0.0464977 0.117224 0)
(-0.0461174 0.117723 0)
(-0.0507396 0.139867 0)
(-0.0442177 0.156132 0)
(-0.0326759 0.168041 0)
(-0.017076 0.168823 0)
(-0.0164771 0.150166 0)
(-0.0256775 0.15374 0)
(-0.0284787 0.160476 0)
(-0.0240178 0.171117 0)
(-0.0136477 0.171396 0)
(-0.00419471 0.166056 0)
(-0.020209 -0.156984 0)
(-0.0371458 -0.123103 0)
(-0.046396 -0.126553 0)
(-0.0689622 -0.0970436 0)
(-0.0664071 -0.0466135 0)
(-0.054244 -0.0286684 0)
(-0.0566344 -0.00622264 0)
(-0.0504728 0.0312494 0)
(-0.0427011 0.0456431 0)
(-0.0447541 0.074193 0)
(-0.0277698 0.111591 0)
(-0.00721107 0.111691 0)
(-0.00422919 0.115987 0)
(-0.00277675 0.12497 0)
(-0.000753301 0.13096 0)
(0.00375033 0.142571 0)
(0.012217 0.145985 0)
(0.0175947 0.144542 0)
(0.0199994 0.142326 0)
(0.0233704 0.140819 0)
(0.0260875 0.13516 0)
(0.0271096 0.129331 0)
(0.0277231 0.123387 0)
(0.0273356 0.116599 0)
(0.0272363 0.110509 0)
(0.0272703 0.103429 0)
(0.026592 0.0960704 0)
(0.0251092 0.0884101 0)
(0.0235573 0.0823204 0)
(0.022736 0.0760661 0)
(0.0217503 0.0694469 0)
(0.020448 0.0631268 0)
(0.0190461 0.0570788 0)
(0.0175843 0.051511 0)
(0.0162064 0.046368 0)
(0.0149423 0.0415745 0)
(0.0137696 0.0370804 0)
(0.0126873 0.0328682 0)
(0.0116401 0.028875 0)
(0.0106069 0.0251736 0)
(0.00959492 0.0217199 0)
(0.00859904 0.0185604 0)
(0.00764638 0.0156541 0)
(0.00666344 0.0130434 0)
(0.00602259 0.0108661 0)
(0.00591004 0.00848054 0)
(0.00573624 0.00553131 0)
(0.00543729 0.00235577 0)
(0.00474545 -0.0010552 0)
(0.00398168 -0.00401399 0)
(0.00357941 -0.00738594 0)
(0.00273948 -0.0108866 0)
(0.0023249 -0.0141587 0)
(0.00190932 -0.018512 0)
(0.00070574 -0.022339 0)
(0.000894389 -0.02607 0)
(0.000629975 -0.0318424 0)
(-0.000464529 -0.0360866 0)
(0.000663758 -0.0411484 0)
(0.000710949 -0.0478642 0)
(0.00142044 -0.053476 0)
(0.00345106 -0.0626087 0)
(0.00312493 -0.0710275 0)
(0.00508865 -0.078194 0)
(0.00557392 -0.0888018 0)
(0.00574049 -0.0971942 0)
(0.00776763 -0.106443 0)
(0.00765024 -0.116744 0)
(0.0083688 -0.125505 0)
(0.00899022 -0.135326 0)
(0.00785918 -0.145316 0)
(0.00801003 -0.15015 0)
(0.00907793 -0.157399 0)
(0.0107143 -0.164862 0)
(0.00648716 -0.175215 0)
(-0.000470882 -0.175553 0)
(-0.000849326 -0.169033 0)
(0.0108339 -0.163279 0)
(0.0332986 -0.152624 0)
(0.0391757 -0.144787 0)
(0.0362131 -0.160362 0)
(0.0256507 -0.178604 0)
(0.0110343 -0.183941 0)
(-0.00554597 -0.17148 0)
(-0.0170762 -0.169445 0)
(-0.0306994 -0.160889 0)
(-0.0416432 -0.141233 0)
(-0.0477595 -0.11736 0)
(-0.0530485 -0.0902998 0)
(-0.0540491 -0.0590952 0)
(-0.0506471 -0.0200913 0)
(-0.0377386 0.0214177 0)
(-0.0334049 0.0511455 0)
(-0.0281516 0.0868581 0)
(-0.0247792 0.119667 0)
(-0.0213244 0.146547 0)
(-0.0186048 0.171958 0)
(-0.0119352 0.190989 0)
(-0.00466616 0.204026 0)
(0.00360735 0.213876 0)
(0.0132242 0.216061 0)
(0.0206326 0.212889 0)
(0.0268446 0.207319 0)
(0.0312249 0.19802 0)
(0.032968 0.186295 0)
(0.0334849 0.174281 0)
(0.0318064 0.163102 0)
(0.0297364 0.152575 0)
(0.0282697 0.143351 0)
(0.0262016 0.134747 0)
(0.0241012 0.125799 0)
(0.0222992 0.117097 0)
(0.0203502 0.107807 0)
(0.0185236 0.0984941 0)
(0.0168119 0.0889173 0)
(0.0143303 0.0796855 0)
(0.0125507 0.0721799 0)
(0.0120178 0.0650642 0)
(0.012495 0.0574613 0)
(0.0138997 0.0492481 0)
(0.0141184 0.0390828 0)
(0.0136946 0.0299862 0)
(0.0117584 0.0203702 0)
(0.00999385 0.0137997 0)
(0.00960203 0.00733277 0)
(0.00780889 0.00106454 0)
(0.00742939 -0.00299477 0)
(0.00615589 -0.00809607 0)
(0.00628846 -0.00971964 0)
(0.00812256 -0.0126987 0)
(0.0097348 -0.0158001 0)
(0.0120077 -0.0206693 0)
(0.0114831 -0.0251589 0)
(0.0131726 -0.0296248 0)
(0.0122492 -0.0366835 0)
(0.00864304 -0.0440368 0)
(0.0049331 -0.0489548 0)
(-0.000258213 -0.0510557 0)
(-0.00191792 -0.0501721 0)
(-0.000725232 -0.0490071 0)
(0.00156915 -0.0512935 0)
(0.0045685 -0.0533544 0)
(0.00607618 -0.0575831 0)
(0.0079717 -0.0600404 0)
(0.00926842 -0.0633447 0)
(0.011718 -0.0648996 0)
(0.0133578 -0.0676089 0)
(0.0129015 -0.0709305 0)
(0.0117122 -0.0732384 0)
(0.00857153 -0.0744032 0)
(0.00856431 -0.077586 0)
(0.00751773 -0.0820068 0)
(0.0069233 -0.0870112 0)
(0.00681324 -0.0931101 0)
(0.00815687 -0.100833 0)
(0.0110084 -0.110239 0)
(0.0143442 -0.121694 0)
(0.018812 -0.13384 0)
(0.0207198 -0.148152 0)
(0.0228112 -0.159298 0)
(0.0246442 -0.164987 0)
(0.0292606 -0.171563 0)
(0.0373888 -0.174952 0)
(0.0470012 -0.17509 0)
(0.0566176 -0.177633 0)
(0.0755319 -0.175436 0)
(0.0798517 -0.170819 0)
(0.10991 -0.158151 0)
(0.123247 -0.15002 0)
(0.139961 -0.134414 0)
(0.186604 -0.108954 0)
(0.211771 -0.0928109 0)
(0.257404 -0.0833332 0)
(0.297625 -0.0645754 0)
(0.303254 -0.0444623 0)
(0.327313 -0.00590939 0)
(0.29527 0.0118248 0)
(0.222725 0.0481456 0)
(0.215224 0.0859307 0)
(0.183603 0.0838427 0)
(0.17315 0.0918095 0)
(0.18987 0.1011 0)
(0.206877 0.112292 0)
(0.224469 0.152222 0)
(0.237726 0.19812 0)
(0.229228 0.228598 0)
(0.191153 0.24129 0)
(0.143038 0.237266 0)
(0.115434 0.225718 0)
(0.0894324 0.208486 0)
(0.0728175 0.193436 0)
(0.0575198 0.179079 0)
(0.0485203 0.164576 0)
(0.0409813 0.148156 0)
(0.035057 0.130811 0)
(0.0281905 0.11571 0)
(0.021632 0.102685 0)
(0.016811 0.0938815 0)
(0.0138054 0.0875754 0)
(0.0123071 0.0832583 0)
(0.0130332 0.0801454 0)
(0.0166667 0.0755986 0)
(0.0195573 0.067092 0)
(0.0209419 0.0573124 0)
(0.0225025 0.0482243 0)
(0.0248877 0.0387174 0)
(0.0283152 0.0259973 0)
(0.0318873 0.00897994 0)
(0.0315566 -0.0114591 0)
(0.0246192 -0.0291975 0)
(0.0104231 -0.0403223 0)
(-0.00442123 -0.0347918 0)
(-0.0123434 -0.0159932 0)
(-0.00948113 0.0048593 0)
(-0.0010472 0.0177355 0)
(0.00816545 0.0228763 0)
(0.0151911 0.0210588 0)
(0.0180438 0.0104543 0)
(0.0155311 -0.00343798 0)
(0.00907175 -0.0134628 0)
(0.00256361 -0.0165257 0)
(0.000317235 -0.014295 0)
(0.00322176 -0.0101034 0)
(0.00938477 -0.00664695 0)
(0.0136254 -0.00476358 0)
(0.0163957 -0.0040625 0)
(0.0160866 -0.00654267 0)
(0.014924 -0.0100676 0)
(0.0107512 -0.0184287 0)
(0.0108926 -0.0254013 0)
(0.0136806 -0.0330147 0)
(0.0211895 -0.0428368 0)
(0.0298682 -0.05337 0)
(0.0400481 -0.0698294 0)
(0.0412426 -0.0879043 0)
(0.0332337 -0.106836 0)
(0.0179344 -0.119392 0)
(0.00662891 -0.125594 0)
(0.012153 -0.129609 0)
(0.0368341 -0.145002 0)
(0.051409 -0.187027 0)
(0.0627099 -0.207308 0)
(0.0880011 -0.210424 0)
(0.109767 -0.195758 0)
(0.1286 -0.18668 0)
(0.133524 -0.189239 0)
(0.136946 -0.197694 0)
(0.140785 -0.201568 0)
(0.145629 -0.192826 0)
(0.16426 -0.180918 0)
(0.180538 -0.175511 0)
(0.19621 -0.1766 0)
(0.223069 -0.180373 0)
(0.256758 -0.182843 0)
(0.292666 -0.176642 0)
(0.340241 -0.160667 0)
(0.383297 -0.139101 0)
(0.437413 -0.111696 0)
(0.471955 -0.0753333 0)
(0.501293 -0.0303623 0)
(0.510701 0.0147567 0)
(0.50245 0.0597101 0)
(0.469057 0.104544 0)
(0.415134 0.149864 0)
(0.359782 0.187817 0)
(0.312197 0.211236 0)
(0.286205 0.223079 0)
(0.266865 0.225997 0)
(0.246979 0.235823 0)
(0.228441 0.247837 0)
(0.204011 0.24359 0)
(0.176834 0.227826 0)
(0.146868 0.218591 0)
(0.120238 0.228549 0)
(0.102353 0.242258 0)
(0.0907594 0.242177 0)
(0.0778942 0.229856 0)
(0.0690933 0.214033 0)
(0.0693824 0.192312 0)
(0.0780933 0.162521 0)
(0.0853907 0.123085 0)
(0.080057 0.0773646 0)
(0.0547265 0.04244 0)
(0.033091 0.0441851 0)
(0.0428871 0.0818749 0)
(0.0679137 0.114556 0)
(0.0858318 0.119413 0)
(0.0934556 0.107482 0)
(0.082657 0.0871374 0)
(0.066097 0.0735979 0)
(0.0531419 0.0672145 0)
(0.0424328 0.0620158 0)
(0.0344083 0.0555597 0)
(0.0267418 0.0474068 0)
(0.0220017 0.0380062 0)
(0.0192764 0.0289934 0)
(0.0172327 0.0207209 0)
(0.0155575 0.0136548 0)
(0.014361 0.0077959 0)
(0.0128924 0.00250806 0)
(0.0116632 -0.00119797 0)
(0.0108545 -0.00451328 0)
(0.00980649 -0.00723943 0)
(0.00966752 -0.00915921 0)
(0.00927041 -0.0116595 0)
(0.00894348 -0.0129581 0)
(0.009852 -0.0145842 0)
(0.0102681 -0.0168244 0)
(0.0117772 -0.0184219 0)
(0.0135201 -0.0220566 0)
(0.0144524 -0.0252243 0)
(0.0173229 -0.0286571 0)
(0.0191201 -0.0349985 0)
(0.0202067 -0.0396091 0)
(0.0233108 -0.0455605 0)
(0.0242152 -0.05357 0)
(0.0259425 -0.0589277 0)
(0.0285947 -0.0676936 0)
(0.0285166 -0.0759314 0)
(0.0312498 -0.0826521 0)
(0.0315458 -0.0943805 0)
(0.0299209 -0.100255 0)
(0.0334972 -0.107671 0)
(0.0303437 -0.120484 0)
(0.0284403 -0.12094 0)
(0.032052 -0.130211 0)
(0.0235146 -0.141276 0)
(0.0208679 -0.135054 0)
(0.0187902 -0.143392 0)
(0.0123575 -0.135875 0)
(0.024441 -0.132808 0)
(0.0136794 -0.156247 0)
(-0.00524097 -0.139538 0)
(-0.00733877 -0.131239 0)
(-0.0178189 -0.118705 0)
(-0.00691954 -0.0944538 0)
(-0.0160082 -0.119018 0)
(-0.0507689 -0.0898158 0)
(-0.048614 -0.0417693 0)
(-0.0411428 -0.0291421 0)
(-0.0472819 -0.010505 0)
(-0.0551456 0.012278 0)
(-0.0518858 0.0458869 0)
(-0.0534029 0.0546083 0)
(-0.0618863 0.0862687 0)
(-0.0493164 0.116034 0)
(-0.0438685 0.118898 0)
(-0.0472646 0.139245 0)
(-0.040256 0.153909 0)
(-0.029939 0.164335 0)
(-0.0168409 0.165541 0)
(-0.0159259 0.151888 0)
(-0.0230255 0.154612 0)
(-0.0251458 0.160535 0)
(-0.0212656 0.169118 0)
(-0.0123616 0.169453 0)
(-0.00383022 0.164335 0)
(-0.0165654 -0.149961 0)
(-0.0326759 -0.123613 0)
(-0.042425 -0.121663 0)
(-0.0605984 -0.0938605 0)
(-0.0592225 -0.0495215 0)
(-0.0498197 -0.0290169 0)
(-0.0509015 -0.00576324 0)
(-0.0456445 0.0288592 0)
(-0.0390036 0.0458821 0)
(-0.0394688 0.0731506 0)
(-0.0251139 0.106536 0)
(-0.00774154 0.110436 0)
(-0.00425959 0.115601 0)
(-0.00265737 0.123991 0)
(-0.000487522 0.130748 0)
(0.00365561 0.141077 0)
(0.0109092 0.144676 0)
(0.0157342 0.143741 0)
(0.0181239 0.141909 0)
(0.0211874 0.140111 0)
(0.0235549 0.13484 0)
(0.0245898 0.129271 0)
(0.0251694 0.123278 0)
(0.0248468 0.116675 0)
(0.0247858 0.110545 0)
(0.024777 0.103499 0)
(0.02413 0.0962287 0)
(0.0228349 0.0887681 0)
(0.0214803 0.0825472 0)
(0.0206875 0.0762455 0)
(0.019768 0.0696787 0)
(0.0185863 0.063387 0)
(0.0173168 0.0573669 0)
(0.0159971 0.0517929 0)
(0.014746 0.04663 0)
(0.0135938 0.041816 0)
(0.0125235 0.0373049 0)
(0.011534 0.033079 0)
(0.0105781 0.0290821 0)
(0.00963781 0.0253754 0)
(0.00871724 0.0219183 0)
(0.00781337 0.0187538 0)
(0.00695203 0.01584 0)
(0.00607733 0.0132075 0)
(0.00550284 0.0109522 0)
(0.00537055 0.00850735 0)
(0.00518552 0.00558422 0)
(0.0049131 0.00247123 0)
(0.00431147 -0.000911871 0)
(0.00363762 -0.00390253 0)
(0.00327012 -0.00726552 0)
(0.00254388 -0.0107661 0)
(0.002169 -0.0140854 0)
(0.00181503 -0.0183569 0)
(0.000795784 -0.0222527 0)
(0.000970276 -0.0260568 0)
(0.000754134 -0.0317304 0)
(-7.76294e-05 -0.0361017 0)
(0.00090113 -0.0411348 0)
(0.000988628 -0.0479634 0)
(0.00165838 -0.0537173 0)
(0.00336496 -0.0623007 0)
(0.00324033 -0.0710505 0)
(0.00499182 -0.0781897 0)
(0.00521159 -0.0890583 0)
(0.00549185 -0.0972189 0)
(0.00726697 -0.107005 0)
(0.00695564 -0.117099 0)
(0.007686 -0.125642 0)
(0.00810821 -0.135154 0)
(0.00730441 -0.143836 0)
(0.00740443 -0.150243 0)
(0.00791167 -0.15732 0)
(0.00934352 -0.165312 0)
(0.00484913 -0.175023 0)
(-0.00215851 -0.17555 0)
(-0.00313318 -0.170115 0)
(0.000609762 -0.160496 0)
(0.0119935 -0.14994 0)
(0.0225489 -0.148387 0)
(0.0271535 -0.161102 0)
(0.019668 -0.17451 0)
(0.00456749 -0.176597 0)
(-0.00932554 -0.169972 0)
(-0.019806 -0.167706 0)
(-0.0331612 -0.158519 0)
(-0.044875 -0.139592 0)
(-0.0530862 -0.116129 0)
(-0.0606267 -0.0894596 0)
(-0.0657458 -0.0589336 0)
(-0.0678957 -0.0213606 0)
(-0.0619354 0.0189222 0)
(-0.0575556 0.0499528 0)
(-0.0527166 0.0853803 0)
(-0.0465382 0.117975 0)
(-0.0389035 0.145282 0)
(-0.0312777 0.170218 0)
(-0.0211093 0.188942 0)
(-0.0114292 0.202014 0)
(-0.00139189 0.211687 0)
(0.00901494 0.214138 0)
(0.0166245 0.211439 0)
(0.0228772 0.206098 0)
(0.027122 0.197221 0)
(0.0289566 0.185852 0)
(0.029506 0.174179 0)
(0.0280932 0.163299 0)
(0.0262668 0.152651 0)
(0.024945 0.143374 0)
(0.0233543 0.134727 0)
(0.0216628 0.125844 0)
(0.0203529 0.117107 0)
(0.0188401 0.107984 0)
(0.0173747 0.0987559 0)
(0.016007 0.0892051 0)
(0.0139733 0.0799937 0)
(0.0124664 0.0723338 0)
(0.0120902 0.0649844 0)
(0.0126319 0.0572795 0)
(0.013879 0.0490662 0)
(0.0140914 0.0391722 0)
(0.0137336 0.0302313 0)
(0.0120242 0.020821 0)
(0.010291 0.0141193 0)
(0.00969625 0.00754733 0)
(0.00794553 0.00138697 0)
(0.00747001 -0.00285651 0)
(0.00618593 -0.0078813 0)
(0.00613879 -0.00977296 0)
(0.00746282 -0.0128899 0)
(0.00896517 -0.0158725 0)
(0.0109688 -0.0207058 0)
(0.0103035 -0.0248576 0)
(0.0116651 -0.0292772 0)
(0.0114187 -0.0360918 0)
(0.0085195 -0.0430607 0)
(0.00521383 -0.0481524 0)
(0.00108743 -0.0503299 0)
(-0.000432922 -0.0498729 0)
(0.000729589 -0.0496217 0)
(0.00216542 -0.0515213 0)
(0.0042044 -0.0534901 0)
(0.00530936 -0.0575032 0)
(0.00625719 -0.0599074 0)
(0.00691446 -0.0641107 0)
(0.00888305 -0.0643999 0)
(0.0102935 -0.0693666 0)
(0.00949348 -0.0699982 0)
(0.00889856 -0.0738345 0)
(0.00650129 -0.0746226 0)
(0.00676157 -0.0765562 0)
(0.00604612 -0.081287 0)
(0.00559319 -0.0870072 0)
(0.00554692 -0.0934147 0)
(0.00606991 -0.100285 0)
(0.00763822 -0.109067 0)
(0.00946645 -0.119806 0)
(0.0123068 -0.130933 0)
(0.0133309 -0.144652 0)
(0.0135411 -0.154442 0)
(0.0140612 -0.162431 0)
(0.0163197 -0.167307 0)
(0.020197 -0.169486 0)
(0.0271036 -0.173938 0)
(0.0325137 -0.177459 0)
(0.0389838 -0.172397 0)
(0.0433616 -0.170231 0)
(0.0548715 -0.158169 0)
(0.0634961 -0.150474 0)
(0.0703037 -0.13764 0)
(0.0939356 -0.113206 0)
(0.112619 -0.0980913 0)
(0.140895 -0.0877079 0)
(0.166413 -0.0677701 0)
(0.161464 -0.0435368 0)
(0.170264 -0.00377486 0)
(0.144974 0.0225164 0)
(0.103253 0.0538082 0)
(0.106645 0.0871398 0)
(0.100685 0.0860395 0)
(0.0986167 0.0902649 0)
(0.109325 0.0977306 0)
(0.11663 0.110754 0)
(0.126431 0.149968 0)
(0.139422 0.197435 0)
(0.136829 0.231737 0)
(0.119264 0.247291 0)
(0.0958747 0.242937 0)
(0.0826469 0.229398 0)
(0.066598 0.211684 0)
(0.0552346 0.19592 0)
(0.0446737 0.181039 0)
(0.0389195 0.165865 0)
(0.033835 0.149241 0)
(0.0292497 0.132114 0)
(0.0240627 0.117191 0)
(0.0190032 0.10397 0)
(0.0150165 0.0948267 0)
(0.0124002 0.0881872 0)
(0.0108969 0.0837233 0)
(0.0114705 0.0804429 0)
(0.0144211 0.0757861 0)
(0.0169693 0.0675096 0)
(0.0181731 0.0580685 0)
(0.0196728 0.0491428 0)
(0.0222424 0.0388074 0)
(0.0257838 0.0252835 0)
(0.028721 0.00901134 0)
(0.0275034 -0.00969792 0)
(0.0201977 -0.0273284 0)
(0.0068289 -0.0367099 0)
(-0.00702899 -0.0322111 0)
(-0.0126091 -0.0152976 0)
(-0.00945967 0.00284748 0)
(-0.00169738 0.016105 0)
(0.00600261 0.0210489 0)
(0.0116387 0.0192387 0)
(0.0143722 0.00992716 0)
(0.0133715 -0.00280691 0)
(0.00796724 -0.012279 0)
(0.00178074 -0.0151044 0)
(-0.00101617 -0.0130986 0)
(-7.43839e-05 -0.010269 0)
(0.00479028 -0.00709557 0)
(0.00854686 -0.00506324 0)
(0.0106581 -0.00449719 0)
(0.00977056 -0.006264 0)
(0.00968771 -0.0109552 0)
(0.00789968 -0.0188003 0)
(0.00842418 -0.0250315 0)
(0.0118921 -0.0328284 0)
(0.01829 -0.041898 0)
(0.0257982 -0.0524374 0)
(0.0331432 -0.0665616 0)
(0.034466 -0.0844781 0)
(0.0281211 -0.101567 0)
(0.0150444 -0.114956 0)
(0.00589008 -0.123868 0)
(0.0147597 -0.13147 0)
(0.0372195 -0.150662 0)
(0.0423771 -0.187714 0)
(0.0412147 -0.21227 0)
(0.0523242 -0.214137 0)
(0.0744573 -0.201018 0)
(0.0924146 -0.193381 0)
(0.0983892 -0.193888 0)
(0.102404 -0.200686 0)
(0.103844 -0.203806 0)
(0.108809 -0.199412 0)
(0.119417 -0.187344 0)
(0.133139 -0.182658 0)
(0.148435 -0.183862 0)
(0.163688 -0.1864 0)
(0.184235 -0.186808 0)
(0.213294 -0.180766 0)
(0.252713 -0.165524 0)
(0.283666 -0.144692 0)
(0.317724 -0.1162 0)
(0.332365 -0.0787855 0)
(0.347727 -0.033074 0)
(0.349086 0.0147216 0)
(0.339562 0.0638987 0)
(0.312209 0.112541 0)
(0.273462 0.158636 0)
(0.239868 0.195038 0)
(0.214006 0.215875 0)
(0.199761 0.225856 0)
(0.186335 0.229759 0)
(0.169819 0.239553 0)
(0.155411 0.25077 0)
(0.139571 0.247084 0)
(0.120306 0.232746 0)
(0.0962848 0.224601 0)
(0.0751538 0.232913 0)
(0.0648556 0.244173 0)
(0.0606782 0.243478 0)
(0.0563966 0.231212 0)
(0.0552986 0.214272 0)
(0.0610385 0.190932 0)
(0.0700271 0.160958 0)
(0.0750203 0.123012 0)
(0.0680994 0.0801111 0)
(0.0437127 0.0469758 0)
(0.0162431 0.0461606 0)
(0.0169726 0.0794705 0)
(0.0378124 0.110138 0)
(0.0547119 0.11664 0)
(0.0651457 0.107143 0)
(0.0609098 0.0888365 0)
(0.0505832 0.075711 0)
(0.0408385 0.0691046 0)
(0.0318289 0.063564 0)
(0.0257074 0.0569984 0)
(0.0210044 0.0484722 0)
(0.0186938 0.0384973 0)
(0.0170947 0.0292975 0)
(0.0155 0.0209406 0)
(0.0140743 0.0138617 0)
(0.0129864 0.007982 0)
(0.011614 0.00276884 0)
(0.0104916 -0.00102491 0)
(0.009763 -0.00436938 0)
(0.008831 -0.00712833 0)
(0.00869739 -0.00912555 0)
(0.0083567 -0.0116101 0)
(0.00809551 -0.0130243 0)
(0.0088929 -0.0147147 0)
(0.0093085 -0.0170035 0)
(0.0106441 -0.0187578 0)
(0.0122179 -0.0223115 0)
(0.0131173 -0.0255827 0)
(0.0156357 -0.0291514 0)
(0.0172729 -0.035272 0)
(0.0183251 -0.0400321 0)
(0.0210276 -0.0459681 0)
(0.0219323 -0.0537672 0)
(0.0234841 -0.0594275 0)
(0.0258129 -0.0679727 0)
(0.0258663 -0.0761756 0)
(0.0281663 -0.0830551 0)
(0.0285013 -0.0941841 0)
(0.0271722 -0.100453 0)
(0.0300844 -0.107835 0)
(0.0275315 -0.119606 0)
(0.0258353 -0.121338 0)
(0.0285371 -0.129928 0)
(0.0214194 -0.139717 0)
(0.0189931 -0.135105 0)
(0.0171191 -0.141947 0)
(0.0116926 -0.135978 0)
(0.0208686 -0.133641 0)
(0.0117432 -0.152996 0)
(-0.00421267 -0.137698 0)
(-0.00663349 -0.129622 0)
(-0.015476 -0.117642 0)
(-0.00769769 -0.0960895 0)
(-0.0160402 -0.111358 0)
(-0.0444866 -0.0851733 0)
(-0.0431917 -0.0438195 0)
(-0.0378848 -0.0283806 0)
(-0.0431717 -0.00870505 0)
(-0.0495765 0.0138466 0)
(-0.047714 0.0444564 0)
(-0.0488394 0.0561892 0)
(-0.0558111 0.0853195 0)
(-0.0453886 0.114027 0)
(-0.0404154 0.118337 0)
(-0.0423387 0.137213 0)
(-0.0362108 0.151524 0)
(-0.0269985 0.161656 0)
(-0.0161141 0.163572 0)
(-0.0151075 0.153164 0)
(-0.0205201 0.15539 0)
(-0.0220846 0.160492 0)
(-0.0187029 0.167441 0)
(-0.0110672 0.167723 0)
(-0.00345484 0.162778 0)
(-0.0136481 -0.143465 0)
(-0.0285706 -0.123259 0)
(-0.0382143 -0.117663 0)
(-0.05292 -0.0913517 0)
(-0.0523645 -0.0516344 0)
(-0.0451216 -0.0293393 0)
(-0.0453295 -0.00544874 0)
(-0.0408252 0.0269766 0)
(-0.0351884 0.0459872 0)
(-0.034595 0.0723386 0)
(-0.0225084 0.102565 0)
(-0.00787008 0.109069 0)
(-0.00418746 0.115125 0)
(-0.00251301 0.123512 0)
(-0.000294089 0.130474 0)
(0.0034737 0.139828 0)
(0.00966944 0.14353 0)
(0.0139622 0.14302 0)
(0.0162632 0.141495 0)
(0.0190196 0.139501 0)
(0.0210832 0.134554 0)
(0.022092 0.12919 0)
(0.0226307 0.123195 0)
(0.0223695 0.116741 0)
(0.022334 0.110575 0)
(0.0222942 0.103574 0)
(0.021691 0.0963825 0)
(0.0205641 0.0890793 0)
(0.0193852 0.0827584 0)
(0.0186368 0.0764198 0)
(0.0177901 0.0698952 0)
(0.0167265 0.0636275 0)
(0.0155865 0.0576302 0)
(0.0144048 0.0520515 0)
(0.0132795 0.0468714 0)
(0.0122396 0.0420393 0)
(0.0112726 0.0375125 0)
(0.0103774 0.0332739 0)
(0.00951375 0.0292726 0)
(0.0086664 0.0255601 0)
(0.00783745 0.0220989 0)
(0.00702533 0.0189279 0)
(0.00625397 0.016005 0)
(0.00548141 0.0133506 0)
(0.00497013 0.0110266 0)
(0.00482739 0.00853203 0)
(0.00464247 0.00562679 0)
(0.00439467 0.00257152 0)
(0.00387265 -0.00079138 0)
(0.0032881 -0.00380597 0)
(0.00296362 -0.00716148 0)
(0.00234177 -0.0106593 0)
(0.00201437 -0.0140128 0)
(0.00172958 -0.0182361 0)
(0.000896344 -0.0221906 0)
(0.00105737 -0.0260874 0)
(0.000906539 -0.0315722 0)
(0.000233411 -0.036138 0)
(0.0011935 -0.0413912 0)
(0.00124132 -0.048159 0)
(0.00193636 -0.05428 0)
(0.00319916 -0.0624067 0)
(0.00328959 -0.071172 0)
(0.00473693 -0.0792763 0)
(0.00499647 -0.0899559 0)
(0.00516079 -0.0973872 0)
(0.00662377 -0.107458 0)
(0.00636822 -0.117279 0)
(0.00685741 -0.12578 0)
(0.00727146 -0.135216 0)
(0.00658083 -0.143488 0)
(0.00667455 -0.150142 0)
(0.00702934 -0.157073 0)
(0.0081948 -0.16372 0)
(0.004572 -0.172279 0)
(-0.00266707 -0.173216 0)
(-0.00426639 -0.170117 0)
(-0.00320707 -0.164751 0)
(0.00388548 -0.154779 0)
(0.0154721 -0.147114 0)
(0.0224452 -0.158176 0)
(0.0159228 -0.171535 0)
(0.000632049 -0.176034 0)
(-0.0107276 -0.167763 0)
(-0.0202388 -0.16492 0)
(-0.0334681 -0.156031 0)
(-0.045379 -0.137684 0)
(-0.0539978 -0.114662 0)
(-0.0614136 -0.0882611 0)
(-0.0667785 -0.0579955 0)
(-0.0697734 -0.0214911 0)
(-0.0662464 0.0173733 0)
(-0.062059 0.0489894 0)
(-0.0575643 0.0837297 0)
(-0.0506837 0.115727 0)
(-0.0421262 0.143154 0)
(-0.0333124 0.167788 0)
(-0.0228501 0.186674 0)
(-0.0128502 0.200072 0)
(-0.00268894 0.209483 0)
(0.00726972 0.212286 0)
(0.0145205 0.210081 0)
(0.0203178 0.205051 0)
(0.0243677 0.196588 0)
(0.0259583 0.185622 0)
(0.0263402 0.174397 0)
(0.0250814 0.163661 0)
(0.0234267 0.153158 0)
(0.0221382 0.143866 0)
(0.0208853 0.135219 0)
(0.0195518 0.126394 0)
(0.0186382 0.117571 0)
(0.0175829 0.108325 0)
(0.0164799 0.098988 0)
(0.0154329 0.0895067 0)
(0.0138436 0.0804024 0)
(0.0126257 0.0725593 0)
(0.0123735 0.0649594 0)
(0.0127382 0.0571321 0)
(0.0137145 0.0488954 0)
(0.0138879 0.0391527 0)
(0.0134847 0.0303139 0)
(0.0119684 0.0210767 0)
(0.0103611 0.0142852 0)
(0.00958463 0.00765904 0)
(0.00796881 0.00154923 0)
(0.00734064 -0.00274599 0)
(0.00604914 -0.00765555 0)
(0.00609057 -0.00981664 0)
(0.00675227 -0.0135201 0)
(0.0077857 -0.0165178 0)
(0.00864588 -0.0209344 0)
(0.00873814 -0.0253295 0)
(0.00995553 -0.0299686 0)
(0.00981741 -0.0363865 0)
(0.00791973 -0.0427166 0)
(0.005329 -0.0474854 0)
(0.00217243 -0.0499365 0)
(0.000701 -0.0498976 0)
(0.00153951 -0.0498772 0)
(0.00270236 -0.0517434 0)
(0.00415149 -0.0537375 0)
(0.00468582 -0.057439 0)
(0.00537174 -0.0598222 0)
(0.00534337 -0.0633793 0)
(0.00638782 -0.0652609 0)
(0.00709326 -0.0679987 0)
(0.00716324 -0.0704059 0)
(0.00699472 -0.0724221 0)
(0.00547745 -0.0739453 0)
(0.00573871 -0.0773468 0)
(0.00545873 -0.0817493 0)
(0.00532456 -0.086956 0)
(0.00526131 -0.0932239 0)
(0.00575614 -0.100604 0)
(0.00688241 -0.109985 0)
(0.00789756 -0.121314 0)
(0.00946431 -0.133333 0)
(0.00951665 -0.147036 0)
(0.00849012 -0.157425 0)
(0.0079943 -0.164841 0)
(0.00892252 -0.17105 0)
(0.0110061 -0.174392 0)
(0.0147392 -0.177295 0)
(0.0162731 -0.179007 0)
(0.0210725 -0.176461 0)
(0.0231456 -0.172631 0)
(0.02817 -0.161541 0)
(0.0334947 -0.153086 0)
(0.0331413 -0.139371 0)
(0.0448662 -0.117933 0)
(0.056495 -0.103011 0)
(0.069578 -0.0916241 0)
(0.0816489 -0.0693126 0)
(0.0726745 -0.0425134 0)
(0.0729318 -0.00246364 0)
(0.0614502 0.0265312 0)
(0.0405713 0.0558211 0)
(0.0499205 0.085144 0)
(0.0536658 0.0862395 0)
(0.0530692 0.0890498 0)
(0.0562105 0.0959804 0)
(0.0556112 0.110393 0)
(0.0574026 0.148571 0)
(0.0673039 0.195961 0)
(0.0709396 0.231891 0)
(0.0703728 0.248697 0)
(0.0643188 0.244912 0)
(0.0604647 0.231448 0)
(0.0512349 0.214095 0)
(0.0437948 0.198049 0)
(0.0366365 0.18249 0)
(0.0328595 0.166839 0)
(0.0293818 0.150042 0)
(0.0256299 0.132887 0)
(0.02161 0.117884 0)
(0.0176736 0.104619 0)
(0.0140322 0.0953641 0)
(0.0115958 0.0885017 0)
(0.0100443 0.0836292 0)
(0.0104039 0.0795784 0)
(0.0127205 0.0744566 0)
(0.0148957 0.066291 0)
(0.0160988 0.0570051 0)
(0.0176289 0.0477903 0)
(0.0202337 0.0373916 0)
(0.0231865 0.0246119 0)
(0.0252025 0.00875434 0)
(0.0235399 -0.00956777 0)
(0.0167641 -0.0251934 0)
(0.00455119 -0.0341351 0)
(-0.00815389 -0.0303668 0)
(-0.0132407 -0.0155459 0)
(-0.00983482 0.00279884 0)
(-0.00264951 0.0150001 0)
(0.00386625 0.0207727 0)
(0.00920913 0.019421 0)
(0.0124769 0.0101953 0)
(0.0117099 -0.00197276 0)
(0.00710559 -0.0108688 0)
(0.00185954 -0.0139513 0)
(-0.00115282 -0.0129057 0)
(-0.00162317 -0.0100747 0)
(0.000398506 -0.00717828 0)
(0.00357255 -0.00482788 0)
(0.00609074 -0.00350352 0)
(0.00667168 -0.00544174 0)
(0.00755694 -0.00974198 0)
(0.00713281 -0.0180492 0)
(0.00822578 -0.0250471 0)
(0.0118816 -0.0341411 0)
(0.0168359 -0.0443466 0)
(0.0231084 -0.0554767 0)
(0.0274388 -0.0708769 0)
(0.0284738 -0.0866548 0)
(0.0227975 -0.102634 0)
(0.0131698 -0.11446 0)
(0.00860563 -0.124558 0)
(0.0189048 -0.135254 0)
(0.0348423 -0.152541 0)
(0.035722 -0.187238 0)
(0.0298971 -0.208118 0)
(0.0292219 -0.213164 0)
(0.0423097 -0.19912 0)
(0.0605561 -0.188432 0)
(0.0690521 -0.188239 0)
(0.0728901 -0.194882 0)
(0.0727869 -0.200065 0)
(0.0752302 -0.19709 0)
(0.0833249 -0.187994 0)
(0.0953157 -0.182594 0)
(0.105641 -0.184723 0)
(0.119814 -0.190014 0)
(0.13537 -0.19343 0)
(0.155922 -0.189077 0)
(0.184804 -0.173709 0)
(0.204629 -0.150653 0)
(0.22441 -0.119945 0)
(0.228123 -0.0811009 0)
(0.234674 -0.0339745 0)
(0.229763 0.0157705 0)
(0.218992 0.0673667 0)
(0.197309 0.117801 0)
(0.172768 0.163589 0)
(0.156047 0.198607 0)
(0.145535 0.218414 0)
(0.138236 0.227819 0)
(0.128358 0.232896 0)
(0.114474 0.242772 0)
(0.103217 0.252934 0)
(0.0932917 0.249382 0)
(0.0804299 0.236302 0)
(0.0623236 0.22887 0)
(0.0465425 0.235374 0)
(0.0411818 0.244484 0)
(0.0418178 0.243272 0)
(0.0425719 0.231109 0)
(0.0469668 0.213311 0)
(0.0551142 0.18935 0)
(0.0627523 0.159763 0)
(0.0661019 0.123284 0)
(0.0578662 0.0830014 0)
(0.0341912 0.0521572 0)
(0.00591865 0.0501198 0)
(-0.000508169 0.0785291 0)
(0.0161499 0.106051 0)
(0.0323995 0.113553 0)
(0.0454227 0.106128 0)
(0.0465643 0.0899225 0)
(0.0396494 0.0776186 0)
(0.03114 0.0708926 0)
(0.0236617 0.0649607 0)
(0.019506 0.0576844 0)
(0.0173655 0.0487744 0)
(0.0160385 0.0387399 0)
(0.0149755 0.0296254 0)
(0.013726 0.021263 0)
(0.0124633 0.0141388 0)
(0.0115145 0.00825289 0)
(0.0103221 0.0030005 0)
(0.00933709 -0.000840727 0)
(0.00867566 -0.00421921 0)
(0.00786491 -0.00703613 0)
(0.00772536 -0.00908347 0)
(0.00744154 -0.0115448 0)
(0.00722722 -0.0130827 0)
(0.0079406 -0.0148478 0)
(0.00833342 -0.0171611 0)
(0.00951032 -0.019049 0)
(0.0109155 -0.0225477 0)
(0.0117644 -0.025908 0)
(0.0139509 -0.029574 0)
(0.0154394 -0.0355007 0)
(0.0164169 -0.0404132 0)
(0.0187707 -0.0463559 0)
(0.0196492 -0.0539741 0)
(0.0210331 -0.0598464 0)
(0.0230633 -0.0682047 0)
(0.0231913 -0.0763695 0)
(0.0251267 -0.0834074 0)
(0.0254824 -0.0940388 0)
(0.0244102 -0.100647 0)
(0.0267508 -0.107986 0)
(0.0246937 -0.118958 0)
(0.0232018 -0.121607 0)
(0.0252022 -0.129606 0)
(0.0192907 -0.138364 0)
(0.0170983 -0.135141 0)
(0.0154421 -0.140898 0)
(0.0108502 -0.136293 0)
(0.0177978 -0.13437 0)
(0.00998319 -0.149641 0)
(-0.00347517 -0.136421 0)
(-0.00601539 -0.128326 0)
(-0.0134703 -0.117226 0)
(-0.0079984 -0.0978188 0)
(-0.0155351 -0.107421 0)
(-0.0386514 -0.0821849 0)
(-0.0381146 -0.0450065 0)
(-0.0344621 -0.0284596 0)
(-0.0389106 -0.00785832 0)
(-0.0440796 0.0145522 0)
(-0.0428096 0.0433114 0)
(-0.0438932 0.0573203 0)
(-0.049163 0.0845195 0)
(-0.0408212 0.110906 0)
(-0.0364442 0.118144 0)
(-0.0375495 0.136029 0)
(-0.0321758 0.150287 0)
(-0.0241539 0.15981 0)
(-0.015095 0.161781 0)
(-0.0140346 0.154085 0)
(-0.0181258 0.156002 0)
(-0.0192489 0.1604 0)
(-0.0163032 0.166048 0)
(-0.00977874 0.166197 0)
(-0.0030716 0.161386 0)
(-0.0112262 -0.138319 0)
(-0.0247131 -0.122433 0)
(-0.0338522 -0.114333 0)
(-0.0457884 -0.0892729 0)
(-0.0457761 -0.0531445 0)
(-0.0402013 -0.0296506 0)
(-0.0398796 -0.00515944 0)
(-0.0360486 0.0254815 0)
(-0.0312812 0.0459344 0)
(-0.030057 0.071486 0)
(-0.0199375 0.0992742 0)
(-0.00767079 0.107803 0)
(-0.00401565 0.114662 0)
(-0.00234376 0.123039 0)
(-0.000161592 0.130124 0)
(0.00322649 0.138773 0)
(0.00848307 0.142525 0)
(0.012263 0.142367 0)
(0.0144184 0.141085 0)
(0.0168689 0.138966 0)
(0.0186616 0.134288 0)
(0.0196151 0.129085 0)
(0.0201075 0.123119 0)
(0.0199014 0.116782 0)
(0.0198825 0.110587 0)
(0.0198217 0.103635 0)
(0.0192704 0.0965109 0)
(0.0182959 0.089331 0)
(0.0172759 0.0829347 0)
(0.016584 0.0765676 0)
(0.0158152 0.0700775 0)
(0.0148679 0.0638304 0)
(0.013855 0.0578522 0)
(0.0128078 0.0522703 0)
(0.0118072 0.0470763 0)
(0.0108801 0.0422288 0)
(0.0100171 0.0376889 0)
(0.00921725 0.0334398 0)
(0.00844663 0.0294355 0)
(0.00769231 0.0257191 0)
(0.006955 0.022256 0)
(0.00623417 0.0190814 0)
(0.00555163 0.0161527 0)
(0.00487621 0.0134818 0)
(0.00442585 0.0111031 0)
(0.00428094 0.00856955 0)
(0.00410486 0.00568121 0)
(0.00388244 0.00265539 0)
(0.00343361 -0.000676639 0)
(0.00293575 -0.00371696 0)
(0.00265938 -0.0070702 0)
(0.00212894 -0.0105707 0)
(0.00186515 -0.013962 0)
(0.00165076 -0.0181344 0)
(0.000979362 -0.0221435 0)
(0.00113671 -0.0261062 0)
(0.00106922 -0.031523 0)
(0.000517834 -0.0361734 0)
(0.00136968 -0.0417295 0)
(0.0014712 -0.0487333 0)
(0.00206111 -0.0546553 0)
(0.00338246 -0.063111 0)
(0.00334845 -0.0714325 0)
(0.00460807 -0.0798459 0)
(0.00483663 -0.0903016 0)
(0.00489737 -0.0974693 0)
(0.00596024 -0.108094 0)
(0.00571193 -0.117768 0)
(0.00612496 -0.125652 0)
(0.00647835 -0.134924 0)
(0.00587429 -0.143739 0)
(0.00577455 -0.15066 0)
(0.00607453 -0.15709 0)
(0.00698848 -0.163541 0)
(0.00427042 -0.171303 0)
(-0.00159163 -0.172325 0)
(-0.00451813 -0.169587 0)
(-0.00498659 -0.164287 0)
(0.000732424 -0.154769 0)
(0.0119581 -0.150699 0)
(0.0188097 -0.159874 0)
(0.0131492 -0.170205 0)
(-0.00034888 -0.171959 0)
(-0.0104747 -0.16597 0)
(-0.0189315 -0.16296 0)
(-0.031468 -0.153312 0)
(-0.0431698 -0.135603 0)
(-0.052103 -0.112779 0)
(-0.0589754 -0.0867487 0)
(-0.0644522 -0.0570827 0)
(-0.0676127 -0.02138 0)
(-0.0648879 0.0167212 0)
(-0.0609416 0.0486112 0)
(-0.0565448 0.0831191 0)
(-0.0494529 0.114673 0)
(-0.0408818 0.142009 0)
(-0.0315892 0.166106 0)
(-0.021384 0.184699 0)
(-0.0117627 0.198159 0)
(-0.00229725 0.207439 0)
(0.00678288 0.210615 0)
(0.0134253 0.208885 0)
(0.0184626 0.204142 0)
(0.0220791 0.196075 0)
(0.0234035 0.18551 0)
(0.0235043 0.174564 0)
(0.0224441 0.163856 0)
(0.0208963 0.153472 0)
(0.019573 0.144027 0)
(0.0185803 0.135325 0)
(0.0177175 0.126457 0)
(0.0171526 0.117521 0)
(0.0163872 0.108384 0)
(0.0156136 0.0991556 0)
(0.0147873 0.0897176 0)
(0.0135239 0.0806795 0)
(0.0125332 0.0727263 0)
(0.0122796 0.064951 0)
(0.0125471 0.0570568 0)
(0.0133022 0.0487605 0)
(0.0133377 0.0392254 0)
(0.0128402 0.0305108 0)
(0.0114393 0.0214889 0)
(0.0100259 0.0146151 0)
(0.00920524 0.00790937 0)
(0.00766974 0.00190791 0)
(0.00703253 -0.00248607 0)
(0.00555292 -0.00730783 0)
(0.0050785 -0.00964441 0)
(0.00495955 -0.013106 0)
(0.00584125 -0.015964 0)
(0.00640586 -0.0209397 0)
(0.00638107 -0.0247681 0)
(0.00776659 -0.0292624 0)
(0.00829553 -0.0357359 0)
(0.00720316 -0.042108 0)
(0.00503944 -0.0468359 0)
(0.00244583 -0.0492894 0)
(0.00121841 -0.0495714 0)
(0.00181602 -0.0498966 0)
(0.00289506 -0.0517744 0)
(0.00398973 -0.0540703 0)
(0.00417415 -0.057776 0)
(0.00447984 -0.06034 0)
(0.00425355 -0.0640977 0)
(0.00429514 -0.0655994 0)
(0.00495836 -0.0693289 0)
(0.00444944 -0.0699478 0)
(0.00492368 -0.0733727 0)
(0.0044588 -0.0744964 0)
(0.00512527 -0.0769583 0)
(0.00528009 -0.0815758 0)
(0.00537667 -0.0870426 0)
(0.00541824 -0.0934321 0)
(0.0060952 -0.100891 0)
(0.00709836 -0.110216 0)
(0.00770287 -0.121272 0)
(0.00852916 -0.132955 0)
(0.00784486 -0.146073 0)
(0.00599964 -0.156122 0)
(0.00499454 -0.164267 0)
(0.00465416 -0.169841 0)
(0.00544166 -0.173336 0)
(0.00817302 -0.17675 0)
(0.00852326 -0.179206 0)
(0.0107191 -0.176076 0)
(0.0118461 -0.172809 0)
(0.0142987 -0.162155 0)
(0.0175955 -0.153253 0)
(0.0145187 -0.139617 0)
(0.018887 -0.119498 0)
(0.0244814 -0.105417 0)
(0.0279347 -0.0924849 0)
(0.0312837 -0.0690162 0)
(0.0230561 -0.0413017 0)
(0.0215604 -0.00246864 0)
(0.0194138 0.0280103 0)
(0.0106728 0.0557721 0)
(0.0211102 0.0825975 0)
(0.0273198 0.0861237 0)
(0.0262013 0.0888275 0)
(0.0237105 0.0960729 0)
(0.0180742 0.111279 0)
(0.0145948 0.147981 0)
(0.0218584 0.194198 0)
(0.0302233 0.230368 0)
(0.0402187 0.247716 0)
(0.0438439 0.244755 0)
(0.0454496 0.232231 0)
(0.0407135 0.215447 0)
(0.0361425 0.199313 0)
(0.0316582 0.183419 0)
(0.0291553 0.16749 0)
(0.0268107 0.150616 0)
(0.0236853 0.133708 0)
(0.0204486 0.11874 0)
(0.0169608 0.105448 0)
(0.0132593 0.0960097 0)
(0.0106749 0.0890555 0)
(0.00920192 0.0841537 0)
(0.00921891 0.08001 0)
(0.0110223 0.0747498 0)
(0.0129299 0.0666782 0)
(0.0139678 0.0576867 0)
(0.0153079 0.0484774 0)
(0.0178271 0.037864 0)
(0.0203141 0.0244072 0)
(0.0219153 0.00875645 0)
(0.0201894 -0.00839452 0)
(0.0139073 -0.02344 0)
(0.00307063 -0.0317832 0)
(-0.00833167 -0.0284339 0)
(-0.0138046 -0.0153019 0)
(-0.0112662 0.000475031 0)
(-0.00497961 0.0129929 0)
(0.00060883 0.018607 0)
(0.0061476 0.0173759 0)
(0.0105646 0.00929974 0)
(0.0105024 -0.00149365 0)
(0.00664745 -0.00985315 0)
(0.00194511 -0.0131732 0)
(-0.00108778 -0.0126708 0)
(-0.0019373 -0.0108214 0)
(-0.00119003 -0.00854549 0)
(0.00101284 -0.00664472 0)
(0.00330987 -0.00549278 0)
(0.00472551 -0.00675471 0)
(0.00640803 -0.0105745 0)
(0.00708934 -0.018342 0)
(0.00886492 -0.0256114 0)
(0.0119842 -0.0344864 0)
(0.0151412 -0.0437869 0)
(0.0187658 -0.0554658 0)
(0.0218023 -0.0697465 0)
(0.0224534 -0.0844465 0)
(0.0200681 -0.0995599 0)
(0.0131055 -0.11292 0)
(0.013562 -0.124798 0)
(0.0209266 -0.135469 0)
(0.0315061 -0.152193 0)
(0.0326985 -0.184624 0)
(0.0239892 -0.207351 0)
(0.0190978 -0.215373 0)
(0.0274019 -0.208229 0)
(0.0438631 -0.19972 0)
(0.0528147 -0.198383 0)
(0.0573038 -0.20167 0)
(0.0574146 -0.204032 0)
(0.0593325 -0.200554 0)
(0.0663238 -0.19181 0)
(0.0772857 -0.187655 0)
(0.0849067 -0.188773 0)
(0.0901759 -0.192544 0)
(0.0967823 -0.195235 0)
(0.10828 -0.191646 0)
(0.127853 -0.176849 0)
(0.141016 -0.153312 0)
(0.153131 -0.120981 0)
(0.151427 -0.0814716 0)
(0.152489 -0.0337904 0)
(0.143387 0.0172721 0)
(0.133115 0.0701425 0)
(0.117802 0.121157 0)
(0.105319 0.166162 0)
(0.0998222 0.199705 0)
(0.0980863 0.219006 0)
(0.0940147 0.228965 0)
(0.0861262 0.23539 0)
(0.0749325 0.245406 0)
(0.0669821 0.254341 0)
(0.0617397 0.250774 0)
(0.0534798 0.238831 0)
(0.0403382 0.232364 0)
(0.0290247 0.237479 0)
(0.0269955 0.24443 0)
(0.0301542 0.242516 0)
(0.0343162 0.230178 0)
(0.0420224 0.21188 0)
(0.0502273 0.187804 0)
(0.0561773 0.158766 0)
(0.0579132 0.123845 0)
(0.0494167 0.0857862 0)
(0.026876 0.0567838 0)
(0.000403354 0.0537125 0)
(-0.00983504 0.0779948 0)
(0.00286904 0.103173 0)
(0.0180968 0.11048 0)
(0.032799 0.104122 0)
(0.0360217 0.0899836 0)
(0.0306917 0.07877 0)
(0.0229893 0.072176 0)
(0.0175203 0.065763 0)
(0.0153393 0.0581784 0)
(0.0146544 0.0491115 0)
(0.013997 0.0389358 0)
(0.0131815 0.0297516 0)
(0.0120954 0.0213886 0)
(0.0110352 0.0142902 0)
(0.0101706 0.00840311 0)
(0.00910704 0.00316118 0)
(0.00820727 -0.000703551 0)
(0.00760896 -0.00410883 0)
(0.00688195 -0.00694821 0)
(0.00674972 -0.00906285 0)
(0.00651741 -0.0115214 0)
(0.00635741 -0.0131413 0)
(0.00696692 -0.0149582 0)
(0.00733947 -0.0173115 0)
(0.00836565 -0.0193159 0)
(0.00960359 -0.0227668 0)
(0.0103888 -0.026194 0)
(0.0122724 -0.0299599 0)
(0.0135969 -0.0357393 0)
(0.0145026 -0.0407462 0)
(0.0165238 -0.0466878 0)
(0.0173457 -0.0541629 0)
(0.0185696 -0.0602268 0)
(0.0203264 -0.0684321 0)
(0.0205089 -0.0765523 0)
(0.0221202 -0.0837022 0)
(0.0224666 -0.0939242 0)
(0.0216168 -0.100788 0)
(0.0234988 -0.108123 0)
(0.0218493 -0.118415 0)
(0.0205461 -0.121805 0)
(0.022014 -0.129329 0)
(0.0171301 -0.137258 0)
(0.0151877 -0.135171 0)
(0.013736 -0.140016 0)
(0.00984161 -0.136529 0)
(0.0149982 -0.134876 0)
(0.00842852 -0.147348 0)
(-0.00281057 -0.135602 0)
(-0.00543347 -0.127431 0)
(-0.0117126 -0.116511 0)
(-0.00792371 -0.0988749 0)
(-0.0146068 -0.10352 0)
(-0.0333597 -0.0795601 0)
(-0.0333141 -0.0459118 0)
(-0.0308412 -0.0282899 0)
(-0.0345833 -0.00708996 0)
(-0.0387884 0.015247 0)
(-0.0379913 0.0426252 0)
(-0.038965 0.0583376 0)
(-0.0429431 0.0842238 0)
(-0.0362123 0.109226 0)
(-0.032483 0.11826 0)
(-0.0329412 0.135356 0)
(-0.0282621 0.148994 0)
(-0.0213415 0.158163 0)
(-0.013828 0.160337 0)
(-0.0127617 0.154755 0)
(-0.0158197 0.156459 0)
(-0.0165956 0.160278 0)
(-0.0140417 0.164888 0)
(-0.00850395 0.164867 0)
(-0.00268286 0.160162 0)
(-0.00917675 -0.134051 0)
(-0.0210672 -0.121354 0)
(-0.029419 -0.111595 0)
(-0.0390889 -0.0875929 0)
(-0.0394088 -0.0542224 0)
(-0.0351343 -0.0299352 0)
(-0.0345217 -0.00505148 0)
(-0.0313022 0.0243001 0)
(-0.0273108 0.0457807 0)
(-0.025777 0.0707034 0)
(-0.0173902 0.0966267 0)
(-0.00721396 0.106678 0)
(-0.00376512 0.114251 0)
(-0.00217247 0.122765 0)
(-6.83024e-05 0.130179 0)
(0.00293261 0.137913 0)
(0.00733811 0.141677 0)
(0.0106234 0.141809 0)
(0.0125895 0.140723 0)
(0.0147362 0.138533 0)
(0.016281 0.134079 0)
(0.0171573 0.129006 0)
(0.0175991 0.123086 0)
(0.0174405 0.116846 0)
(0.0174322 0.110631 0)
(0.0173591 0.103728 0)
(0.0168649 0.0966638 0)
(0.01603 0.0895809 0)
(0.0151559 0.0831281 0)
(0.0145299 0.0767382 0)
(0.0138432 0.0702753 0)
(0.0130107 0.0640444 0)
(0.0121228 0.0580807 0)
(0.0112075 0.0524952 0)
(0.0103307 0.0472882 0)
(0.00951651 0.0424259 0)
(0.00875823 0.0378728 0)
(0.00805485 0.0336123 0)
(0.0073781 0.0296021 0)
(0.00671711 0.0258786 0)
(0.00607171 0.0224091 0)
(0.005442 0.0192252 0)
(0.00484735 0.0162837 0)
(0.00426497 0.0135896 0)
(0.00387339 0.0111556 0)
(0.00373258 0.00858329 0)
(0.00357 0.0057036 0)
(0.00337321 0.00267684 0)
(0.00299427 -0.000609107 0)
(0.00257726 -0.00366152 0)
(0.00234099 -0.00700279 0)
(0.00192143 -0.0104991 0)
(0.0017004 -0.0139134 0)
(0.00153408 -0.0180468 0)
(0.00102331 -0.0221481 0)
(0.00117765 -0.0261012 0)
(0.00116664 -0.0316432 0)
(0.000766562 -0.0361942 0)
(0.00146755 -0.0418245 0)
(0.0016141 -0.0488121 0)
(0.00214069 -0.0545599 0)
(0.00339666 -0.0632729 0)
(0.00341562 -0.071616 0)
(0.00452657 -0.0794811 0)
(0.00485848 -0.0899175 0)
(0.00480229 -0.0975431 0)
(0.0056252 -0.10774 0)
(0.00549291 -0.117409 0)
(0.00556207 -0.126019 0)
(0.00555312 -0.135025 0)
(0.00506569 -0.144536 0)
(0.00504499 -0.150974 0)
(0.00489198 -0.157394 0)
(0.00567136 -0.163342 0)
(0.00330993 -0.170611 0)
(-0.000970962 -0.171823 0)
(-0.00318268 -0.168533 0)
(-0.00508993 -0.16409 0)
(-7.76406e-06 -0.156121 0)
(0.0101965 -0.151381 0)
(0.0165504 -0.158923 0)
(0.0116776 -0.167823 0)
(-0.000615435 -0.170306 0)
(-0.00967831 -0.164436 0)
(-0.0168086 -0.160914 0)
(-0.0278842 -0.150798 0)
(-0.0382845 -0.133764 0)
(-0.0465062 -0.111326 0)
(-0.051935 -0.0856597 0)
(-0.0572237 -0.0563826 0)
(-0.0603606 -0.0214915 0)
(-0.0586398 0.0154422 0)
(-0.0552437 0.0475195 0)
(-0.0512326 0.0816584 0)
(-0.0442606 0.112679 0)
(-0.0363866 0.140052 0)
(-0.0276246 0.163974 0)
(-0.0185599 0.182702 0)
(-0.00973772 0.19638 0)
(-0.00125639 0.205612 0)
(0.00667698 0.209127 0)
(0.0125487 0.207814 0)
(0.0168219 0.203354 0)
(0.0199331 0.195484 0)
(0.0209231 0.185413 0)
(0.020805 0.174719 0)
(0.0199283 0.164059 0)
(0.0184615 0.153814 0)
(0.0171527 0.144306 0)
(0.0162728 0.135531 0)
(0.0157188 0.126717 0)
(0.0154616 0.117797 0)
(0.015127 0.108662 0)
(0.0147123 0.0993784 0)
(0.0140371 0.0899448 0)
(0.0129341 0.0809595 0)
(0.0121165 0.0728856 0)
(0.0118391 0.0649709 0)
(0.0119311 0.0570375 0)
(0.0123873 0.0487505 0)
(0.0121548 0.0393795 0)
(0.0116793 0.0307093 0)
(0.0104545 0.0218091 0)
(0.00927209 0.0148924 0)
(0.00837963 0.00816036 0)
(0.00698823 0.00217943 0)
(0.0062489 -0.00219285 0)
(0.00488372 -0.00702624 0)
(0.0041941 -0.00965904 0)
(0.0037607 -0.0135754 0)
(0.00421858 -0.0165555 0)
(0.00465109 -0.0209682 0)
(0.0049369 -0.0254445 0)
(0.00601119 -0.0301557 0)
(0.00643909 -0.0362633 0)
(0.0061643 -0.0418139 0)
(0.00444765 -0.0463575 0)
(0.00239793 -0.0490164 0)
(0.00138693 -0.0495136 0)
(0.00168542 -0.050111 0)
(0.00248116 -0.0517567 0)
(0.00329609 -0.0538567 0)
(0.00356855 -0.0573868 0)
(0.00377117 -0.0599121 0)
(0.00340501 -0.0634953 0)
(0.00343235 -0.0651465 0)
(0.00348515 -0.0683278 0)
(0.00323055 -0.0703138 0)
(0.00352185 -0.0724259 0)
(0.00365165 -0.0739723 0)
(0.00458699 -0.0774391 0)
(0.00519412 -0.0817211 0)
(0.0057585 -0.0870419 0)
(0.00627198 -0.0934389 0)
(0.00709614 -0.100969 0)
(0.00806393 -0.110367 0)
(0.00837844 -0.121475 0)
(0.00855509 -0.133269 0)
(0.00750677 -0.146292 0)
(0.00530057 -0.156407 0)
(0.00385975 -0.164508 0)
(0.00272194 -0.170545 0)
(0.00256377 -0.17466 0)
(0.00335132 -0.178125 0)
(0.00310897 -0.179682 0)
(0.00476531 -0.177225 0)
(0.0056016 -0.173442 0)
(0.00650894 -0.163064 0)
(0.00886551 -0.153577 0)
(0.0053767 -0.139412 0)
(0.00606774 -0.120161 0)
(0.00783119 -0.106292 0)
(0.00607631 -0.0924792 0)
(0.00420669 -0.0686391 0)
(-0.00266108 -0.0406171 0)
(-0.00387687 -0.00260143 0)
(-0.00129029 0.0282484 0)
(-0.00347021 0.0553673 0)
(0.00634575 0.0805782 0)
(0.0128212 0.0859138 0)
(0.0111946 0.0892194 0)
(0.00571185 0.0972644 0)
(-0.0023785 0.11282 0)
(-0.00851603 0.147907 0)
(-0.00329739 0.192341 0)
(0.00757066 0.22786 0)
(0.0223843 0.245501 0)
(0.0309754 0.243708 0)
(0.0354241 0.232297 0)
(0.0337745 0.216251 0)
(0.0312299 0.200183 0)
(0.0283208 0.184014 0)
(0.0264946 0.167856 0)
(0.0248315 0.151005 0)
(0.0221778 0.134187 0)
(0.0192788 0.119298 0)
(0.0159213 0.106201 0)
(0.0124689 0.0966907 0)
(0.00973379 0.0893234 0)
(0.00808896 0.0840035 0)
(0.00799639 0.0793636 0)
(0.00955712 0.0736634 0)
(0.0111958 0.0656383 0)
(0.0122095 0.0567018 0)
(0.0134535 0.0472665 0)
(0.0153859 0.0365039 0)
(0.0178171 0.0236242 0)
(0.0190744 0.00858944 0)
(0.0174453 -0.00800975 0)
(0.0117195 -0.0218684 0)
(0.00217964 -0.0294828 0)
(-0.00795859 -0.0262614 0)
(-0.0137455 -0.0144189 0)
(-0.0128891 0.000895602 0)
(-0.00803252 0.0127284 0)
(-0.0019722 0.0186312 0)
(0.00455604 0.0172423 0)
(0.00888595 0.0091768 0)
(0.00911897 -0.00100071 0)
(0.00575353 -0.00884538 0)
(0.00152912 -0.0121375 0)
(-0.0011099 -0.0118641 0)
(-0.00231199 -0.0100944 0)
(-0.00202152 -0.00783022 0)
(-0.000556363 -0.00579279 0)
(0.00154623 -0.00457435 0)
(0.00351481 -0.00612026 0)
(0.00585116 -0.0102596 0)
(0.00734048 -0.0181563 0)
(0.00931751 -0.0255457 0)
(0.0114794 -0.0352501 0)
(0.0140278 -0.0454912 0)
(0.016447 -0.0561636 0)
(0.0189318 -0.0704313 0)
(0.0186688 -0.0863768 0)
(0.0166884 -0.100261 0)
(0.0137026 -0.112569 0)
(0.0149264 -0.125361 0)
(0.020785 -0.136706 0)
(0.0290357 -0.154677 0)
(0.028172 -0.184083 0)
(0.0191026 -0.20363 0)
(0.0129253 -0.211546 0)
(0.0142803 -0.203378 0)
(0.0283876 -0.194472 0)
(0.0386644 -0.192355 0)
(0.0426697 -0.19693 0)
(0.0418555 -0.201176 0)
(0.0413984 -0.199985 0)
(0.0452946 -0.193119 0)
(0.0550425 -0.188265 0)
(0.0619332 -0.189234 0)
(0.0654943 -0.193508 0)
(0.0675736 -0.196956 0)
(0.0716903 -0.194244 0)
(0.0822137 -0.17967 0)
(0.0900908 -0.155086 0)
(0.0970584 -0.121408 0)
(0.092704 -0.0808619 0)
(0.0904456 -0.0328998 0)
(0.0799435 0.0191706 0)
(0.0721775 0.0724176 0)
(0.063324 0.123083 0)
(0.0600186 0.166992 0)
(0.0616381 0.199567 0)
(0.0642071 0.219133 0)
(0.061767 0.229842 0)
(0.0553938 0.237401 0)
(0.0471293 0.247351 0)
(0.0427149 0.255174 0)
(0.0410064 0.251489 0)
(0.0358315 0.240504 0)
(0.0261927 0.234675 0)
(0.0183426 0.238553 0)
(0.0186155 0.243928 0)
(0.0230685 0.241439 0)
(0.0298035 0.228858 0)
(0.0383509 0.21031 0)
(0.045354 0.18649 0)
(0.0495686 0.15819 0)
(0.0499244 0.124482 0)
(0.041571 0.0887345 0)
(0.0211404 0.0615276 0)
(-0.00287296 0.0578214 0)
(-0.0139261 0.0783508 0)
(-0.00411879 0.100547 0)
(0.00979408 0.107403 0)
(0.0243873 0.102501 0)
(0.0277995 0.0903803 0)
(0.0233707 0.0802812 0)
(0.016966 0.073543 0)
(0.0134721 0.0664889 0)
(0.0125552 0.058292 0)
(0.0125717 0.0490586 0)
(0.0120953 0.0390105 0)
(0.0113942 0.0299884 0)
(0.010504 0.0216265 0)
(0.00954555 0.0144904 0)
(0.00876449 0.0085839 0)
(0.00780775 0.00335324 0)
(0.00702815 -0.000571313 0)
(0.00650388 -0.00399332 0)
(0.00589799 -0.00687891 0)
(0.00578012 -0.0090335 0)
(0.00558708 -0.0114774 0)
(0.00545953 -0.0131894 0)
(0.00599364 -0.0150644 0)
(0.00633128 -0.017435 0)
(0.00721457 -0.0195369 0)
(0.00828731 -0.0229527 0)
(0.0089954 -0.0264428 0)
(0.0106002 -0.0302739 0)
(0.0117576 -0.0359236 0)
(0.0125692 -0.0410288 0)
(0.014293 -0.0469733 0)
(0.0150437 -0.0543224 0)
(0.0161082 -0.0605328 0)
(0.0176065 -0.0686166 0)
(0.0178134 -0.0767029 0)
(0.0191407 -0.0839552 0)
(0.0194622 -0.0938465 0)
(0.0188025 -0.100916 0)
(0.0203036 -0.108241 0)
(0.0189907 -0.118008 0)
(0.0178703 -0.121979 0)
(0.0189333 -0.129122 0)
(0.0149367 -0.13637 0)
(0.0132584 -0.135046 0)
(0.0119916 -0.139132 0)
(0.00871938 -0.136499 0)
(0.0124748 -0.135038 0)
(0.0069485 -0.145292 0)
(-0.00231801 -0.135404 0)
(-0.00479705 -0.126934 0)
(-0.0100839 -0.116033 0)
(-0.00754258 -0.0996284 0)
(-0.0133508 -0.100489 0)
(-0.0284655 -0.0775172 0)
(-0.028729 -0.0465554 0)
(-0.0270884 -0.0281224 0)
(-0.030194 -0.00658161 0)
(-0.0336009 0.0158334 0)
(-0.0331526 0.04218 0)
(-0.0340074 0.0591465 0)
(-0.0369997 0.0840538 0)
(-0.0315925 0.107695 0)
(-0.0284431 0.118309 0)
(-0.028465 0.134705 0)
(-0.0244414 0.147895 0)
(-0.0185511 0.156762 0)
(-0.0123608 0.159167 0)
(-0.0113297 0.155229 0)
(-0.0135826 0.156797 0)
(-0.0140899 0.160141 0)
(-0.0118963 0.163927 0)
(-0.0072464 0.163725 0)
(-0.0022902 0.159105 0)
(-0.00740123 -0.130576 0)
(-0.0175931 -0.120194 0)
(-0.0249625 -0.109352 0)
(-0.0327306 -0.08623 0)
(-0.0332246 -0.0549831 0)
(-0.0299692 -0.0301864 0)
(-0.0292332 -0.00503497 0)
(-0.0265794 0.0233704 0)
(-0.0232999 0.0455802 0)
(-0.0216967 0.0699932 0)
(-0.0148636 0.0944934 0)
(-0.00654837 0.105643 0)
(-0.00341343 0.113796 0)
(-0.00189455 0.122712 0)
(-4.5224e-05 0.130761 0)
(0.00252104 0.137133 0)
(0.00622316 0.140901 0)
(0.00903147 0.14127 0)
(0.0107754 0.140329 0)
(0.0126206 0.138093 0)
(0.0139336 0.13382 0)
(0.0147165 0.128847 0)
(0.0151047 0.122979 0)
(0.0149855 0.116809 0)
(0.0149836 0.110576 0)
(0.0149051 0.103718 0)
(0.0144711 0.0967039 0)
(0.0137653 0.0896946 0)
(0.0130264 0.0832 0)
(0.0124734 0.0767944 0)
(0.0118721 0.0703562 0)
(0.0111531 0.064141 0)
(0.0103884 0.0581916 0)
(0.00960262 0.0526062 0)
(0.00884876 0.0473916 0)
(0.00814773 0.0425205 0)
(0.00749456 0.0379601 0)
(0.00688834 0.0336948 0)
(0.00630577 0.0296855 0)
(0.0057379 0.0259635 0)
(0.00518404 0.0224983 0)
(0.00464465 0.0193182 0)
(0.00413656 0.0163803 0)
(0.00364346 0.0136842 0)
(0.00330988 0.0112246 0)
(0.0031795 0.00863935 0)
(0.00303255 0.00578148 0)
(0.00286756 0.00277165 0)
(0.00255812 -0.000479063 0)
(0.00222021 -0.00355649 0)
(0.00203761 -0.00691089 0)
(0.00169407 -0.0104204 0)
(0.00154273 -0.0138796 0)
(0.0014254 -0.0180002 0)
(0.00103253 -0.0221275 0)
(0.00120738 -0.0261344 0)
(0.00124392 -0.0317044 0)
(0.000996657 -0.0362928 0)
(0.00154186 -0.041754 0)
(0.00179191 -0.0485937 0)
(0.00226002 -0.0545539 0)
(0.00329543 -0.0629169 0)
(0.00349555 -0.0713008 0)
(0.00434354 -0.0793923 0)
(0.0046693 -0.0898105 0)
(0.00461346 -0.0986659 0)
(0.00508312 -0.108441 0)
(0.00497837 -0.117975 0)
(0.00514682 -0.127153 0)
(0.00496815 -0.136105 0)
(0.00466749 -0.144598 0)
(0.00451149 -0.15179 0)
(0.00406657 -0.158826 0)
(0.00426515 -0.164497 0)
(0.00233121 -0.170845 0)
(-0.00100413 -0.171728 0)
(-0.00216196 -0.168777 0)
(-0.00312027 -0.162797 0)
(0.00057174 -0.156899 0)
(0.00981984 -0.15335 0)
(0.0148023 -0.159526 0)
(0.0102364 -0.166797 0)
(-0.000306491 -0.168457 0)
(-0.00805397 -0.163044 0)
(-0.0144872 -0.159238 0)
(-0.0240188 -0.148873 0)
(-0.0327058 -0.132425 0)
(-0.0397118 -0.110168 0)
(-0.0441113 -0.0847378 0)
(-0.0484796 -0.0555991 0)
(-0.0509796 -0.0213233 0)
(-0.0494699 0.0146121 0)
(-0.0465962 0.0467635 0)
(-0.0430883 0.0804506 0)
(-0.0371007 0.111151 0)
(-0.0303009 0.138542 0)
(-0.0225432 0.162309 0)
(-0.01464 0.181074 0)
(-0.00684131 0.194875 0)
(0.000421704 0.204114 0)
(0.00701721 0.207929 0)
(0.0118602 0.206943 0)
(0.0153417 0.202753 0)
(0.0178181 0.195242 0)
(0.0185906 0.185415 0)
(0.0182881 0.174862 0)
(0.0174135 0.164375 0)
(0.0161561 0.154127 0)
(0.0149192 0.14452 0)
(0.0141002 0.135624 0)
(0.0137022 0.126725 0)
(0.0134996 0.117779 0)
(0.0132692 0.108673 0)
(0.012973 0.0994641 0)
(0.0125012 0.0901183 0)
(0.0116738 0.0811778 0)
(0.0110116 0.0730342 0)
(0.0105985 0.0650475 0)
(0.0103674 0.0570188 0)
(0.0105004 0.0486796 0)
(0.0102665 0.0394205 0)
(0.00984578 0.0308205 0)
(0.00883755 0.0220666 0)
(0.00781005 0.0150653 0)
(0.00685684 0.00830862 0)
(0.00575417 0.00240759 0)
(0.00483554 -0.00223857 0)
(0.00374094 -0.00700027 0)
(0.0032904 -0.00969193 0)
(0.00321417 -0.0135779 0)
(0.00358319 -0.0166328 0)
(0.00394135 -0.0214636 0)
(0.00428096 -0.0255 0)
(0.00517898 -0.0301318 0)
(0.00541299 -0.0363571 0)
(0.00480781 -0.0420504 0)
(0.00340654 -0.0463917 0)
(0.00176959 -0.0489877 0)
(0.000949403 -0.0498478 0)
(0.00113327 -0.0508176 0)
(0.00190306 -0.0525916 0)
(0.00259266 -0.0549661 0)
(0.00279072 -0.0582322 0)
(0.00302748 -0.0607479 0)
(0.00272872 -0.0641057 0)
(0.00268733 -0.0658865 0)
(0.00246143 -0.0691346 0)
(0.00232135 -0.0701239 0)
(0.00240428 -0.0731556 0)
(0.00272572 -0.0747833 0)
(0.00413492 -0.0774903 0)
(0.00507275 -0.0818425 0)
(0.00591957 -0.0871527 0)
(0.00673478 -0.0935984 0)
(0.0078179 -0.101183 0)
(0.00897033 -0.110514 0)
(0.00952368 -0.121385 0)
(0.0095858 -0.132979 0)
(0.008226 -0.145499 0)
(0.00550214 -0.155725 0)
(0.00362214 -0.16417 0)
(0.00205129 -0.170114 0)
(0.00123115 -0.17427 0)
(0.00104369 -0.177831 0)
(4.64691e-05 -0.179708 0)
(0.000647356 -0.177498 0)
(0.00125391 -0.17369 0)
(0.00179367 -0.163594 0)
(0.00386897 -0.153708 0)
(0.000951857 -0.138983 0)
(0.000598407 -0.120291 0)
(0.000614573 -0.106378 0)
(-0.00328072 -0.0918628 0)
(-0.00720616 -0.0678056 0)
(-0.0125542 -0.0398007 0)
(-0.0132318 -0.00313654 0)
(-0.00887801 0.027945 0)
(-0.00764307 0.0543941 0)
(0.00044235 0.0791468 0)
(0.00612856 0.085626 0)
(0.00370449 0.0898924 0)
(-0.0031268 0.0986506 0)
(-0.0124805 0.114297 0)
(-0.019379 0.148392 0)
(-0.0146392 0.190717 0)
(-0.00285374 0.225076 0)
(0.0131966 0.242699 0)
(0.0235711 0.242186 0)
(0.029091 0.231827 0)
(0.0290461 0.216544 0)
(0.0275816 0.200636 0)
(0.0256502 0.184391 0)
(0.024212 0.168167 0)
(0.0228951 0.151353 0)
(0.0204661 0.134766 0)
(0.0179249 0.120007 0)
(0.0145672 0.106947 0)
(0.0110935 0.0973564 0)
(0.00823895 0.0899395 0)
(0.00650142 0.0844485 0)
(0.00652157 0.0795457 0)
(0.0079764 0.0738034 0)
(0.00940426 0.0659251 0)
(0.010367 0.0570807 0)
(0.0116036 0.0476232 0)
(0.0134009 0.0366738 0)
(0.01508 0.0235131 0)
(0.01608 0.00837993 0)
(0.0147929 -0.00775189 0)
(0.0101189 -0.0210635 0)
(0.0019931 -0.0283566 0)
(-0.00666988 -0.0254282 0)
(-0.0120185 -0.0145898 0)
(-0.012443 -0.000466974 0)
(-0.00870017 0.0109787 0)
(-0.00301644 0.0164616 0)
(0.00294791 0.0154591 0)
(0.00690899 0.00841005 0)
(0.00749054 -0.000973586 0)
(0.00458845 -0.00864655 0)
(0.00112499 -0.0120403 0)
(-0.0010963 -0.0121103 0)
(-0.00224932 -0.0107047 0)
(-0.00219103 -0.00879309 0)
(-0.00130229 -0.00710866 0)
(0.000456045 -0.00602223 0)
(0.00248158 -0.00740437 0)
(0.00510983 -0.0113227 0)
(0.00733889 -0.0189861 0)
(0.00893547 -0.0265418 0)
(0.0105782 -0.0354864 0)
(0.0114589 -0.044828 0)
(0.0143577 -0.0571516 0)
(0.014385 -0.0713713 0)
(0.0152481 -0.0847255 0)
(0.0147825 -0.098968 0)
(0.013432 -0.112605 0)
(0.0149716 -0.12516 0)
(0.0175451 -0.137596 0)
(0.0229396 -0.155256 0)
(0.02321 -0.183934 0)
(0.0151893 -0.20413 0)
(0.00845093 -0.213286 0)
(0.00654383 -0.209 0)
(0.0170014 -0.202567 0)
(0.0276535 -0.199478 0)
(0.0334397 -0.200815 0)
(0.0337322 -0.202551 0)
(0.0330216 -0.200601 0)
(0.034893 -0.194731 0)
(0.0419434 -0.190855 0)
(0.0470259 -0.190845 0)
(0.0482786 -0.194049 0)
(0.0468219 -0.19711 0)
(0.0453903 -0.194684 0)
(0.0487377 -0.180781 0)
(0.0526118 -0.155833 0)
(0.0560679 -0.121262 0)
(0.0508208 -0.0797249 0)
(0.0474563 -0.031436 0)
(0.0384596 0.0205416 0)
(0.0340686 0.0735021 0)
(0.0307885 0.123411 0)
(0.0331459 0.166215 0)
(0.037999 0.19836 0)
(0.0415785 0.218609 0)
(0.0396685 0.230364 0)
(0.0343961 0.238735 0)
(0.0287424 0.248331 0)
(0.027256 0.255067 0)
(0.0278469 0.251391 0)
(0.0245309 0.241621 0)
(0.017333 0.236401 0)
(0.0119812 0.23918 0)
(0.0135735 0.243038 0)
(0.0191153 0.239749 0)
(0.0270567 0.22699 0)
(0.0349895 0.208727 0)
(0.0403076 0.185461 0)
(0.0433552 0.157801 0)
(0.0426365 0.125249 0)
(0.0346786 0.0911053 0)
(0.0165408 0.0653862 0)
(-0.0046727 0.0610462 0)
(-0.0147067 0.0790494 0)
(-0.00738241 0.0982747 0)
(0.00453429 0.104553 0)
(0.0174486 0.100374 0)
(0.0214002 0.0900733 0)
(0.0174253 0.0808263 0)
(0.0127908 0.0739941 0)
(0.0108694 0.066503 0)
(0.0105619 0.0582277 0)
(0.010701 0.0490926 0)
(0.01029 0.0391037 0)
(0.00977097 0.0300612 0)
(0.00900533 0.0217436 0)
(0.0081308 0.0146651 0)
(0.00739084 0.00875829 0)
(0.00654953 0.0035768 0)
(0.00587779 -0.000414814 0)
(0.0054276 -0.0038785 0)
(0.00491502 -0.00678736 0)
(0.00481003 -0.00899501 0)
(0.0046607 -0.0114444 0)
(0.00457401 -0.0132185 0)
(0.00501706 -0.0151342 0)
(0.00531627 -0.0175385 0)
(0.00606351 -0.0197262 0)
(0.00697334 -0.023117 0)
(0.00759539 -0.0266549 0)
(0.00893364 -0.0305592 0)
(0.00992455 -0.0361199 0)
(0.0106366 -0.0412916 0)
(0.0120719 -0.047248 0)
(0.0127343 -0.0545124 0)
(0.0136466 -0.0608494 0)
(0.0149025 -0.0688316 0)
(0.0151148 -0.076872 0)
(0.0161872 -0.0841815 0)
(0.0164677 -0.0938002 0)
(0.0159708 -0.101017 0)
(0.017161 -0.10834 0)
(0.0161217 -0.11765 0)
(0.0151746 -0.122056 0)
(0.0159424 -0.128866 0)
(0.0127365 -0.135423 0)
(0.0113154 -0.134862 0)
(0.0102213 -0.138671 0)
(0.00753508 -0.136847 0)
(0.0100892 -0.135558 0)
(0.00546234 -0.14341 0)
(-0.00198754 -0.134893 0)
(-0.00417274 -0.126462 0)
(-0.00856283 -0.115513 0)
(-0.00692712 -0.10011 0)
(-0.0118509 -0.0979873 0)
(-0.0238938 -0.075876 0)
(-0.0243074 -0.0470038 0)
(-0.0232319 -0.027938 0)
(-0.025762 -0.00610197 0)
(-0.0284976 0.0162991 0)
(-0.0282972 0.041821 0)
(-0.0290331 0.0597391 0)
(-0.0312613 0.0838457 0)
(-0.0269636 0.106463 0)
(-0.0243434 0.118281 0)
(-0.0240989 0.134119 0)
(-0.0206956 0.146945 0)
(-0.0157727 0.155573 0)
(-0.0107325 0.158215 0)
(-0.0097724 0.155553 0)
(-0.0113991 0.157038 0)
(-0.0117029 0.16 0)
(-0.00984708 0.163135 0)
(-0.00600641 0.162762 0)
(-0.00189434 0.158217 0)
(-0.00582496 -0.127844 0)
(-0.0142565 -0.119074 0)
(-0.0205114 -0.107542 0)
(-0.0266405 -0.0851439 0)
(-0.0271893 -0.055514 0)
(-0.0247401 -0.0304012 0)
(-0.0239966 -0.00506829 0)
(-0.0218758 0.0226568 0)
(-0.0192651 0.0453867 0)
(-0.0177698 0.0694113 0)
(-0.0123609 0.0928423 0)
(-0.00573993 0.104876 0)
(-0.00295348 0.11359 0)
(-0.00153498 0.122681 0)
(-9.44952e-05 0.130785 0)
(0.00197701 0.136709 0)
(0.00514675 0.140513 0)
(0.00748732 0.141063 0)
(0.0089822 0.140232 0)
(0.0105284 0.137974 0)
(0.0116204 0.133843 0)
(0.0122965 0.128956 0)
(0.0126264 0.123146 0)
(0.0125387 0.117039 0)
(0.0125401 0.110799 0)
(0.0124614 0.103978 0)
(0.0120892 0.097003 0)
(0.0115045 0.0900497 0)
(0.0108935 0.0835233 0)
(0.0104191 0.0770992 0)
(0.0099059 0.0706719 0)
(0.00929966 0.0644609 0)
(0.00865702 0.0585141 0)
(0.00799903 0.05292 0)
(0.00736743 0.0476896 0)
(0.0067796 0.0428009 0)
(0.00623195 0.0382232 0)
(0.00572372 0.0339412 0)
(0.00523614 0.0299178 0)
(0.00476211 0.0261794 0)
(0.00430056 0.0226957 0)
(0.00385207 0.0194921 0)
(0.00343085 0.0165251 0)
(0.00302518 0.0137883 0)
(0.00274796 0.0112631 0)
(0.00263017 0.00862096 0)
(0.00250012 0.005737 0)
(0.00235942 0.00271369 0)
(0.00210275 -0.000543369 0)
(0.00183541 -0.00362922 0)
(0.00170259 -0.0069702 0)
(0.00144591 -0.0104757 0)
(0.00135171 -0.0139368 0)
(0.00130558 -0.0180203 0)
(0.00102545 -0.0221261 0)
(0.0012161 -0.0261546 0)
(0.00128835 -0.0315827 0)
(0.00111337 -0.0364457 0)
(0.0016647 -0.0418322 0)
(0.00187235 -0.0486219 0)
(0.0023324 -0.0549547 0)
(0.0029863 -0.0632093 0)
(0.00330069 -0.0716596 0)
(0.00408953 -0.0803886 0)
(0.00430271 -0.0908372 0)
(0.00435633 -0.100015 0)
(0.00474212 -0.10986 0)
(0.00457664 -0.119304 0)
(0.00478739 -0.127999 0)
(0.0045954 -0.137534 0)
(0.00404129 -0.145353 0)
(0.00353949 -0.153596 0)
(0.00347777 -0.159908 0)
(0.00353428 -0.165797 0)
(0.00151133 -0.171817 0)
(-0.00117726 -0.171439 0)
(-0.001938 -0.168054 0)
(-0.00196358 -0.163094 0)
(0.0018601 -0.15727 0)
(0.00950135 -0.154126 0)
(0.0131103 -0.159042 0)
(0.00880033 -0.164765 0)
(-0.000111817 -0.166949 0)
(-0.00689234 -0.161638 0)
(-0.0121141 -0.157491 0)
(-0.0200717 -0.14729 0)
(-0.0272645 -0.131125 0)
(-0.0330932 -0.109073 0)
(-0.0366426 -0.0838081 0)
(-0.0401248 -0.0548058 0)
(-0.0420278 -0.0211013 0)
(-0.04073 0.0142659 0)
(-0.0383377 0.0464615 0)
(-0.0353383 0.07977 0)
(-0.0302788 0.110079 0)
(-0.0245404 0.137378 0)
(-0.0178479 0.160851 0)
(-0.0111825 0.179632 0)
(-0.00461976 0.193529 0)
(0.00135157 0.202794 0)
(0.00672168 0.206783 0)
(0.01061 0.206102 0)
(0.0134862 0.202074 0)
(0.0154467 0.194827 0)
(0.0161224 0.185229 0)
(0.0158256 0.174864 0)
(0.0149785 0.16437 0)
(0.0139109 0.15423 0)
(0.012832 0.144657 0)
(0.0119884 0.135598 0)
(0.0115978 0.12672 0)
(0.0113303 0.117685 0)
(0.011115 0.108546 0)
(0.0108271 0.0993026 0)
(0.0102992 0.0900617 0)
(0.00948846 0.0811018 0)
(0.00881012 0.0729638 0)
(0.00840418 0.0649142 0)
(0.00820377 0.0568235 0)
(0.00830408 0.0484595 0)
(0.00804113 0.0392719 0)
(0.00758217 0.0306637 0)
(0.00670339 0.0220488 0)
(0.00581884 0.0149683 0)
(0.00512195 0.00821011 0)
(0.00422962 0.00231654 0)
(0.003755 -0.00253171 0)
(0.00314034 -0.00725183 0)
(0.00297354 -0.01005 0)
(0.00301023 -0.0139232 0)
(0.00334399 -0.0170763 0)
(0.00359794 -0.0217523 0)
(0.00392173 -0.0259933 0)
(0.00463938 -0.0307577 0)
(0.0047338 -0.0368317 0)
(0.00373837 -0.0421124 0)
(0.00257774 -0.0464971 0)
(0.00103611 -0.0489446 0)
(0.000354561 -0.0498449 0)
(0.000476862 -0.0508877 0)
(0.000975521 -0.052661 0)
(0.00167805 -0.054953 0)
(0.00209072 -0.0580986 0)
(0.00231371 -0.0606264 0)
(0.00209482 -0.0638154 0)
(0.00214105 -0.0657198 0)
(0.00184628 -0.069003 0)
(0.00187409 -0.0707476 0)
(0.00189957 -0.0732774 0)
(0.00216846 -0.0749063 0)
(0.00330646 -0.0783266 0)
(0.00446463 -0.0823125 0)
(0.00557406 -0.087542 0)
(0.00659061 -0.0939184 0)
(0.00778278 -0.101485 0)
(0.00899625 -0.110772 0)
(0.00965773 -0.121555 0)
(0.00987531 -0.133039 0)
(0.0088802 -0.145281 0)
(0.00676691 -0.155221 0)
(0.00463368 -0.163567 0)
(0.00232178 -0.169769 0)
(0.000967566 -0.17414 0)
(0.00031218 -0.17771 0)
(-0.00117995 -0.179435 0)
(-0.0013111 -0.177485 0)
(-0.00116012 -0.173627 0)
(-0.000923453 -0.163821 0)
(0.000862625 -0.153668 0)
(-0.00129393 -0.138695 0)
(-0.00152891 -0.120304 0)
(-0.00224816 -0.106107 0)
(-0.00671727 -0.0910022 0)
(-0.0106047 -0.0670859 0)
(-0.0144381 -0.0391687 0)
(-0.0143599 -0.00399863 0)
(-0.00951381 0.0268412 0)
(-0.00723919 0.0536146 0)
(-0.000717801 0.077321 0)
(0.00320413 0.085592 0)
(1.27778e-05 0.0908868 0)
(-0.00687147 0.100121 0)
(-0.0157239 0.116271 0)
(-0.0220691 0.148606 0)
(-0.0187475 0.188917 0)
(-0.00750132 0.222143 0)
(0.0075439 0.239832 0)
(0.0180672 0.240461 0)
(0.023855 0.231188 0)
(0.0250629 0.216609 0)
(0.0245133 0.200931 0)
(0.0233215 0.184636 0)
(0.0220656 0.168335 0)
(0.0206251 0.151582 0)
(0.0182285 0.135111 0)
(0.0156375 0.120364 0)
(0.0123494 0.107392 0)
(0.00927092 0.0976959 0)
(0.00684069 0.0900792 0)
(0.00549295 0.08433 0)
(0.00562071 0.0789952 0)
(0.00680747 0.0729375 0)
(0.00794568 0.0650275 0)
(0.00876135 0.0562151 0)
(0.00958061 0.046687 0)
(0.0107928 0.035869 0)
(0.0121591 0.0229765 0)
(0.0129778 0.00855927 0)
(0.0118343 -0.0068661 0)
(0.00812207 -0.0194494 0)
(0.00171588 -0.026343 0)
(-0.00530414 -0.0236489 0)
(-0.00968514 -0.0137111 0)
(-0.0102576 -0.000277537 0)
(-0.00741992 0.0104503 0)
(-0.00270225 0.0157604 0)
(0.00237306 0.0147712 0)
(0.00553331 0.00779504 0)
(0.0053394 -0.00108426 0)
(0.00317314 -0.00804836 0)
(0.000589716 -0.0114184 0)
(-0.00109396 -0.0116367 0)
(-0.00180343 -0.0104285 0)
(-0.00183297 -0.00862745 0)
(-0.00134222 -0.00696449 0)
(6.06147e-05 -0.00602162 0)
(0.00200801 -0.00769931 0)
(0.00472483 -0.0117422 0)
(0.00643379 -0.0193323 0)
(0.00753109 -0.0269824 0)
(0.00829833 -0.0370274 0)
(0.00955385 -0.0473229 0)
(0.0105016 -0.0584904 0)
(0.0123583 -0.0720479 0)
(0.0122383 -0.0869147 0)
(0.0117305 -0.100126 0)
(0.0120186 -0.113009 0)
(0.0129068 -0.126213 0)
(0.0130806 -0.13927 0)
(0.0179088 -0.15791 0)
(0.0191123 -0.18362 0)
(0.0124227 -0.201878 0)
(0.00544139 -0.210918 0)
(0.00216611 -0.207741 0)
(0.00537815 -0.201443 0)
(0.0136685 -0.197496 0)
(0.0202039 -0.198967 0)
(0.0217191 -0.20104 0)
(0.0215766 -0.199727 0)
(0.0228229 -0.19477 0)
(0.0282686 -0.191082 0)
(0.0328215 -0.190833 0)
(0.0339547 -0.19356 0)
(0.0312472 -0.196369 0)
(0.026057 -0.194247 0)
(0.0236328 -0.180881 0)
(0.0243056 -0.15636 0)
(0.0256927 -0.121421 0)
(0.0210952 -0.0793101 0)
(0.018132 -0.0305066 0)
(0.0116215 0.0213511 0)
(0.0101773 0.0735982 0)
(0.0104042 0.122995 0)
(0.0152711 0.165379 0)
(0.0212408 0.197613 0)
(0.0250419 0.218618 0)
(0.0240997 0.231235 0)
(0.0202528 0.240161 0)
(0.0168819 0.249332 0)
(0.0174407 0.255236 0)
(0.0192859 0.251719 0)
(0.0171261 0.242706 0)
(0.0119186 0.237802 0)
(0.00849567 0.239697 0)
(0.0107049 0.242455 0)
(0.0169371 0.238671 0)
(0.0247724 0.225951 0)
(0.0312993 0.207962 0)
(0.0350714 0.184982 0)
(0.0370424 0.157808 0)
(0.0360586 0.126134 0)
(0.0285088 0.0935735 0)
(0.0126213 0.0691687 0)
(-0.00566199 0.0644774 0)
(-0.0144218 0.0797764 0)
(-0.00873598 0.0968324 0)
(0.00098268 0.102443 0)
(0.0114334 0.0992316 0)
(0.0159 0.0905463 0)
(0.0131191 0.0822016 0)
(0.00997854 0.0749992 0)
(0.00898498 0.0670452 0)
(0.00883307 0.0584926 0)
(0.00902366 0.0492558 0)
(0.00875591 0.0392762 0)
(0.00827706 0.0302735 0)
(0.00749739 0.0218968 0)
(0.00665022 0.0147448 0)
(0.00597828 0.008814 0)
(0.0052594 0.00356936 0)
(0.00469183 -0.000446761 0)
(0.00433107 -0.00389819 0)
(0.00392094 -0.00682732 0)
(0.00383346 -0.00905852 0)
(0.00372033 -0.0114943 0)
(0.00365536 -0.0133239 0)
(0.00402086 -0.0152754 0)
(0.00428135 -0.017685 0)
(0.00488985 -0.0199324 0)
(0.0056378 -0.0232961 0)
(0.00616633 -0.0268653 0)
(0.00725211 -0.0308066 0)
(0.00807456 -0.0362708 0)
(0.00867717 -0.0414857 0)
(0.00984662 -0.047421 0)
(0.0104184 -0.0545707 0)
(0.0111802 -0.0609699 0)
(0.0122085 -0.068833 0)
(0.0124181 -0.0768272 0)
(0.0132568 -0.08421 0)
(0.0134883 -0.093686 0)
(0.0131403 -0.101034 0)
(0.0140736 -0.108352 0)
(0.0132611 -0.117329 0)
(0.0124994 -0.122123 0)
(0.0130657 -0.128741 0)
(0.0104704 -0.135224 0)
(0.00916076 -0.135996 0)
(0.00821086 -0.140225 0)
(0.00600297 -0.13949 0)
(0.00782338 -0.138272 0)
(0.00418537 -0.142712 0)
(-0.00171813 -0.135188 0)
(-0.00346074 -0.126967 0)
(-0.00712074 -0.115261 0)
(-0.00611957 -0.100433 0)
(-0.0101628 -0.0959271 0)
(-0.0195743 -0.0745837 0)
(-0.0200096 -0.0473181 0)
(-0.0192887 -0.0277524 0)
(-0.0213015 -0.00564592 0)
(-0.0234698 0.0167357 0)
(-0.0234309 0.0416426 0)
(-0.0240523 0.0602774 0)
(-0.0256881 0.083761 0)
(-0.022332 0.105565 0)
(-0.0201975 0.118293 0)
(-0.0198151 0.133698 0)
(-0.0170106 0.146207 0)
(-0.0130001 0.154638 0)
(-0.00897555 0.157487 0)
(-0.00811611 0.155791 0)
(-0.0092563 0.15722 0)
(-0.00940945 0.159873 0)
(-0.0078757 0.162499 0)
(-0.0047818 0.161972 0)
(-0.00149517 0.157498 0)
(-0.00433743 -0.125691 0)
(-0.0110152 -0.118063 0)
(-0.0160786 -0.106093 0)
(-0.0207604 -0.0842823 0)
(-0.0212727 -0.0558768 0)
(-0.0194701 -0.0305781 0)
(-0.0187966 -0.00512941 0)
(-0.0171839 0.0220925 0)
(-0.0152118 0.0451407 0)
(-0.0139553 0.0688101 0)
(-0.00985888 0.0913971 0)
(-0.0047315 0.104608 0)
(-0.0024207 0.114025 0)
(-0.00119566 0.123044 0)
(-0.00013836 0.130215 0)
(0.00145187 0.13703 0)
(0.0040169 0.140765 0)
(0.0058945 0.141301 0)
(0.00711999 0.140473 0)
(0.00837445 0.138087 0)
(0.00926271 0.133946 0)
(0.00983676 0.12901 0)
(0.0101188 0.123142 0)
(0.0100574 0.117022 0)
(0.0100664 0.110701 0)
(0.00999872 0.103836 0)
(0.00968986 0.0968505 0)
(0.00921967 0.0899106 0)
(0.00873109 0.0833361 0)
(0.0083417 0.0768716 0)
(0.00792032 0.0704364 0)
(0.00742511 0.064226 0)
(0.00690208 0.0582854 0)
(0.00636958 0.0526934 0)
(0.00585978 0.0474627 0)
(0.00538638 0.0425745 0)
(0.00494647 0.0380005 0)
(0.00453932 0.0337259 0)
(0.00414984 0.0297169 0)
(0.00377168 0.0259971 0)
(0.00340326 0.0225389 0)
(0.00304395 0.0193682 0)
(0.00270583 0.0164432 0)
(0.0023822 0.0137522 0)
(0.00215866 0.0112679 0)
(0.00205809 0.00868834 0)
(0.00195199 0.00588632 0)
(0.00184456 0.00294399 0)
(0.00166913 -0.000246027 0)
(0.00148143 -0.00333557 0)
(0.0013868 -0.00669133 0)
(0.00121949 -0.0102301 0)
(0.0011645 -0.013767 0)
(0.00114353 -0.0179038 0)
(0.00099921 -0.0220752 0)
(0.00115518 -0.026275 0)
(0.00126642 -0.0315638 0)
(0.00117693 -0.0366344 0)
(0.0016445 -0.041996 0)
(0.00186498 -0.0488595 0)
(0.00226819 -0.0552302 0)
(0.00293173 -0.0634878 0)
(0.00308639 -0.071995 0)
(0.0036989 -0.080734 0)
(0.00384729 -0.0909653 0)
(0.00388822 -0.100118 0)
(0.00424587 -0.109981 0)
(0.00407029 -0.119595 0)
(0.00397054 -0.128096 0)
(0.00388026 -0.137813 0)
(0.00323766 -0.145635 0)
(0.0030465 -0.153609 0)
(0.00264751 -0.159928 0)
(0.00243142 -0.165853 0)
(0.000815108 -0.171827 0)
(-0.000922921 -0.171037 0)
(-0.00155498 -0.167768 0)
(-0.00162951 -0.162639 0)
(0.0018238 -0.158136 0)
(0.00821146 -0.154956 0)
(0.0109646 -0.158952 0)
(0.00667732 -0.163735 0)
(-0.000441696 -0.16582 0)
(-0.00566017 -0.160552 0)
(-0.00975841 -0.156124 0)
(-0.0162526 -0.146111 0)
(-0.021917 -0.130165 0)
(-0.0264659 -0.108605 0)
(-0.0291196 -0.0833781 0)
(-0.0317921 -0.0544572 0)
(-0.0333291 -0.0211179 0)
(-0.0322761 0.0137835 0)
(-0.0303455 0.0459941 0)
(-0.0276504 0.0789477 0)
(-0.0233525 0.108951 0)
(-0.018379 0.13615 0)
(-0.0126914 0.159427 0)
(-0.00718534 0.178252 0)
(-0.00177297 0.192284 0)
(0.00304114 0.201635 0)
(0.00732899 0.20585 0)
(0.0103956 0.205478 0)
(0.0126428 0.201643 0)
(0.0140761 0.194571 0)
(0.0143731 0.185217 0)
(0.0139271 0.175041 0)
(0.0130032 0.164583 0)
(0.0119638 0.154478 0)
(0.0109677 0.144886 0)
(0.0101128 0.135737 0)
(0.00966181 0.126825 0)
(0.00931052 0.117757 0)
(0.00898834 0.108637 0)
(0.00862415 0.0994511 0)
(0.00808239 0.0902627 0)
(0.0073741 0.0813472 0)
(0.00682103 0.0731357 0)
(0.00649956 0.0650534 0)
(0.00635108 0.0569559 0)
(0.00638365 0.0485897 0)
(0.0061295 0.0395465 0)
(0.00573869 0.0309782 0)
(0.00502991 0.0224398 0)
(0.00435666 0.0153503 0)
(0.00383855 0.00860927 0)
(0.00307301 0.00278479 0)
(0.0026425 -0.00197629 0)
(0.00206275 -0.00665145 0)
(0.00195293 -0.00963054 0)
(0.00210637 -0.0135681 0)
(0.00240358 -0.0167636 0)
(0.0027959 -0.0213305 0)
(0.00280701 -0.0255577 0)
(0.00333578 -0.0301893 0)
(0.00344799 -0.036003 0)
(0.00291675 -0.0413118 0)
(0.00194768 -0.0455259 0)
(0.000840675 -0.0482813 0)
(0.00028413 -0.0493497 0)
(0.000415335 -0.0505272 0)
(0.000743495 -0.0523163 0)
(0.00122454 -0.0547557 0)
(0.00138042 -0.0578511 0)
(0.00161248 -0.0605469 0)
(0.00161669 -0.063769 0)
(0.00181583 -0.0658289 0)
(0.00137443 -0.06898 0)
(0.00124151 -0.07047 0)
(0.00134948 -0.0732942 0)
(0.00174962 -0.075174 0)
(0.00232398 -0.07835 0)
(0.00316402 -0.0825762 0)
(0.00420876 -0.0879032 0)
(0.00529014 -0.0943588 0)
(0.00649825 -0.102022 0)
(0.00770957 -0.111364 0)
(0.00853918 -0.122082 0)
(0.00895909 -0.133481 0)
(0.00832788 -0.145477 0)
(0.00678856 -0.155355 0)
(0.00515913 -0.163688 0)
(0.00343068 -0.169808 0)
(0.00196211 -0.174337 0)
(0.000414642 -0.177816 0)
(-0.00135906 -0.179472 0)
(-0.00196904 -0.177544 0)
(-0.00205938 -0.17351 0)
(-0.00219871 -0.163804 0)
(-0.000865394 -0.153519 0)
(-0.00226393 -0.1383 0)
(-0.00228564 -0.120185 0)
(-0.00321372 -0.105895 0)
(-0.00775018 -0.0902618 0)
(-0.0112299 -0.0664568 0)
(-0.0138717 -0.0386418 0)
(-0.0129336 -0.00431864 0)
(-0.0079331 0.0263582 0)
(-0.00489612 0.0528001 0)
(0.000212025 0.0766918 0)
(0.00354735 0.0855138 0)
(7.27988e-05 0.0916163 0)
(-0.00715034 0.101428 0)
(-0.01561 0.117829 0)
(-0.0213794 0.149099 0)
(-0.0182632 0.187657 0)
(-0.00770603 0.219653 0)
(0.00603387 0.237304 0)
(0.0161004 0.238781 0)
(0.021591 0.230457 0)
(0.023032 0.216454 0)
(0.0224507 0.201045 0)
(0.0210655 0.184847 0)
(0.0194448 0.168582 0)
(0.0176274 0.151974 0)
(0.0151869 0.135644 0)
(0.0126037 0.121051 0)
(0.0096499 0.108121 0)
(0.00710316 0.0983856 0)
(0.00530344 0.0906768 0)
(0.00436209 0.0846956 0)
(0.00442786 0.0792806 0)
(0.00520626 0.0732921 0)
(0.00605479 0.0655821 0)
(0.00668809 0.0569315 0)
(0.00761004 0.0473579 0)
(0.00864679 0.0362008 0)
(0.0093797 0.0231819 0)
(0.0100119 0.00858154 0)
(0.00920892 -0.00648433 0)
(0.00639095 -0.0186188 0)
(0.00145041 -0.0252116 0)
(-0.00393699 -0.0227005 0)
(-0.00737177 -0.0133988 0)
(-0.00778955 -0.000746997 0)
(-0.00541527 0.00950873 0)
(-0.00170737 0.0146024 0)
(0.00166457 0.0138946 0)
(0.00384045 0.00777357 0)
(0.00380564 -0.000567077 0)
(0.00242836 -0.00749897 0)
(0.000547306 -0.0109277 0)
(-0.000701831 -0.0114566 0)
(-0.001207 -0.0104458 0)
(-0.0012474 -0.0087982 0)
(-0.000946446 -0.00737255 0)
(0.000136448 -0.00660426 0)
(0.00168761 -0.00835137 0)
(0.00345017 -0.0125201 0)
(0.00436942 -0.019682 0)
(0.00495783 -0.0271152 0)
(0.00526312 -0.0360026 0)
(0.00604556 -0.0458235 0)
(0.00806477 -0.0583812 0)
(0.0088376 -0.0727199 0)
(0.00963207 -0.0857293 0)
(0.00960549 -0.099757 0)
(0.00950733 -0.112856 0)
(0.00841096 -0.125433 0)
(0.00895567 -0.137972 0)
(0.0125371 -0.156693 0)
(0.0135653 -0.182863 0)
(0.00984425 -0.201906 0)
(0.00326206 -0.211192 0)
(0.000545278 -0.209101 0)
(0.00162095 -0.204905 0)
(0.00500435 -0.20269 0)
(0.00915864 -0.202896 0)
(0.0119176 -0.203351 0)
(0.0133019 -0.20136 0)
(0.0150294 -0.196628 0)
(0.01899 -0.193001 0)
(0.0224937 -0.192164 0)
(0.0233972 -0.193911 0)
(0.0203826 -0.195721 0)
(0.0135605 -0.193149 0)
(0.00760698 -0.180248 0)
(0.00532832 -0.156037 0)
(0.00489572 -0.120657 0)
(0.00166065 -0.0780264 0)
(-0.000228916 -0.0291959 0)
(-0.00372054 0.0220009 0)
(-0.0024698 0.0738268 0)
(0.000545107 0.122545 0)
(0.00709431 0.164162 0)
(0.013355 0.196203 0)
(0.0168079 0.217874 0)
(0.0156522 0.231169 0)
(0.0125456 0.240497 0)
(0.0105221 0.249205 0)
(0.0120265 0.254333 0)
(0.0139945 0.251019 0)
(0.012039 0.243004 0)
(0.00797213 0.238509 0)
(0.00591162 0.239643 0)
(0.00870919 0.241243 0)
(0.0153681 0.236668 0)
(0.022446 0.223932 0)
(0.0275958 0.206431 0)
(0.0305074 0.183963 0)
(0.0314475 0.157341 0)
(0.0295948 0.126686 0)
(0.0227482 0.0954768 0)
(0.00942112 0.0719688 0)
(-0.0058567 0.0664115 0)
(-0.0133588 0.0794701 0)
(-0.00912202 0.0953054 0)
(-0.00122003 0.100486 0)
(0.00676696 0.0971332 0)
(0.0108482 0.0894749 0)
(0.00979095 0.0817451 0)
(0.00805875 0.0746395 0)
(0.00748894 0.066661 0)
(0.00741855 0.0580422 0)
(0.00749775 0.0488337 0)
(0.00713674 0.039015 0)
(0.00662325 0.0301672 0)
(0.00582671 0.02201 0)
(0.00506282 0.0150069 0)
(0.00448443 0.00913059 0)
(0.00390543 0.00392035 0)
(0.00345628 -8.37419e-05 0)
(0.00316717 -0.0035814 0)
(0.00284282 -0.00654277 0)
(0.00277011 -0.0088213 0)
(0.0026877 -0.0112769 0)
(0.00264501 -0.0131612 0)
(0.00291959 -0.0151563 0)
(0.00312577 -0.0176124 0)
(0.003592 -0.0199413 0)
(0.00417104 -0.0233333 0)
(0.00458767 -0.0269878 0)
(0.00542862 -0.0310221 0)
(0.00610388 -0.0364698 0)
(0.00659931 -0.0417818 0)
(0.0075345 -0.0477563 0)
(0.00803955 -0.0548868 0)
(0.00866839 -0.0613936 0)
(0.00948886 -0.0692456 0)
(0.00967916 -0.0773066 0)
(0.0102919 -0.0848144 0)
(0.0104942 -0.0939744 0)
(0.0102927 -0.10137 0)
(0.0110017 -0.108706 0)
(0.0103954 -0.117426 0)
(0.00983164 -0.122474 0)
(0.0101423 -0.128993 0)
(0.00803934 -0.135712 0)
(0.00716021 -0.136923 0)
(0.00643375 -0.141101 0)
(0.00480962 -0.140725 0)
(0.00636183 -0.139501 0)
(0.00307717 -0.143045 0)
(-0.00161762 -0.13541 0)
(-0.0027649 -0.127285 0)
(-0.00552242 -0.115254 0)
(-0.00511356 -0.10065 0)
(-0.0083219 -0.0945976 0)
(-0.0154615 -0.0736751 0)
(-0.0158024 -0.0475332 0)
(-0.0152755 -0.027636 0)
(-0.0168083 -0.00547557 0)
(-0.0184869 0.0168882 0)
(-0.0185513 0.0412752 0)
(-0.0190638 0.0603969 0)
(-0.020239 0.0833686 0)
(-0.0176983 0.104565 0)
(-0.0160203 0.117978 0)
(-0.0156019 0.133086 0)
(-0.0133818 0.145384 0)
(-0.0102323 0.15371 0)
(-0.00712167 0.156783 0)
(-0.00638673 0.15585 0)
(-0.00714632 0.157279 0)
(-0.00719014 0.15972 0)
(-0.00596668 0.16198 0)
(-0.00356937 0.16134 0)
(-0.00109204 0.156948 0)
(-0.00304142 -0.124453 0)
(-0.0077895 -0.117343 0)
(-0.0116725 -0.104927 0)
(-0.015043 -0.0835559 0)
(-0.0154492 -0.0560782 0)
(-0.014176 -0.030709 0)
(-0.0136278 -0.00515958 0)
(-0.0125143 0.0218559 0)
(-0.0111715 0.0452804 0)
(-0.0102496 0.068916 0)
(-0.00725554 0.0911924 0)
(-0.00353995 0.105463 0)
(-0.00184995 0.115478 0)
(-0.00101147 0.124661 0)
(-0.000184407 0.131875 0)
(0.00105986 0.139294 0)
(0.00289635 0.143309 0)
(0.00426819 0.144144 0)
(0.00518883 0.143496 0)
(0.0061013 0.141181 0)
(0.00674639 0.137137 0)
(0.0071681 0.13221 0)
(0.00737421 0.126295 0)
(0.0073422 0.120092 0)
(0.00734322 0.113639 0)
(0.00728478 0.106656 0)
(0.00706446 0.0995375 0)
(0.00672943 0.0924658 0)
(0.00637566 0.0857161 0)
(0.00608484 0.0790869 0)
(0.00577483 0.0725048 0)
(0.00541648 0.0661471 0)
(0.00503843 0.0600655 0)
(0.00465331 0.0543351 0)
(0.00428314 0.0489705 0)
(0.0039379 0.0439548 0)
(0.00361595 0.0392594 0)
(0.00331678 0.0348687 0)
(0.00303004 0.0307479 0)
(0.00275234 0.0269174 0)
(0.00248372 0.0233468 0)
(0.00222695 0.0200582 0)
(0.00199022 0.0170052 0)
(0.00176747 0.0141695 0)
(0.00161582 0.0115093 0)
(0.00154256 0.00873731 0)
(0.00146186 0.00575907 0)
(0.0013873 0.0026655 0)
(0.00125533 -0.000676594 0)
(0.00112191 -0.00387014 0)
(0.00107106 -0.00728852 0)
(0.000959285 -0.0108598 0)
(0.000951358 -0.0144 0)
(0.000960555 -0.0185046 0)
(0.000879986 -0.0226254 0)
(0.00102394 -0.0268194 0)
(0.0011144 -0.031966 0)
(0.001096 -0.0369424 0)
(0.00141388 -0.0421793 0)
(0.00158731 -0.0487283 0)
(0.00190505 -0.0548993 0)
(0.00245901 -0.062638 0)
(0.00270271 -0.0709377 0)
(0.00321389 -0.0793466 0)
(0.00334812 -0.0892121 0)
(0.00339556 -0.0981385 0)
(0.00367353 -0.107927 0)
(0.00360447 -0.1177 0)
(0.00353195 -0.126701 0)
(0.00336525 -0.136174 0)
(0.00292142 -0.144502 0)
(0.00264556 -0.152032 0)
(0.0023597 -0.158932 0)
(0.00199947 -0.164984 0)
(0.000469019 -0.170747 0)
(-0.00110776 -0.170121 0)
(-0.0014567 -0.167556 0)
(-0.00110367 -0.16325 0)
(0.00103237 -0.159928 0)
(0.00573585 -0.156776 0)
(0.00775793 -0.159538 0)
(0.00455321 -0.16365 0)
(-0.00074756 -0.165651 0)
(-0.00412903 -0.160696 0)
(-0.00718032 -0.155424 0)
(-0.0122522 -0.14515 0)
(-0.0164399 -0.129299 0)
(-0.0196117 -0.108017 0)
(-0.0212843 -0.0828392 0)
(-0.022939 -0.0540089 0)
(-0.0238735 -0.021064 0)
(-0.0229383 0.0134111 0)
(-0.0214917 0.0455552 0)
(-0.0193351 0.078178 0)
(-0.0160666 0.107954 0)
(-0.0122451 0.135166 0)
(-0.00790638 0.158399 0)
(-0.0037405 0.177336 0)
(0.000384155 0.191484 0)
(0.00401545 0.200913 0)
(0.00716736 0.205297 0)
(0.00928203 0.205099 0)
(0.0107265 0.201368 0)
(0.0116381 0.194464 0)
(0.0116727 0.185294 0)
(0.0112252 0.175222 0)
(0.0103666 0.164826 0)
(0.00951872 0.154716 0)
(0.00872343 0.14506 0)
(0.00810614 0.135917 0)
(0.00778137 0.126949 0)
(0.00750607 0.117905 0)
(0.00721209 0.108792 0)
(0.00684524 0.0996396 0)
(0.00635699 0.0904458 0)
(0.00574533 0.0816081 0)
(0.00525489 0.0733038 0)
(0.00495522 0.0652041 0)
(0.00480439 0.0570593 0)
(0.00480065 0.0486684 0)
(0.00462784 0.0397032 0)
(0.00435831 0.0311412 0)
(0.00385342 0.0225712 0)
(0.00336348 0.0154913 0)
(0.00299218 0.00871172 0)
(0.00249616 0.00291764 0)
(0.00217469 -0.00172301 0)
(0.00168247 -0.00630952 0)
(0.00154052 -0.00928739 0)
(0.0014805 -0.0131271 0)
(0.00164384 -0.0163191 0)
(0.00185516 -0.0207566 0)
(0.00199107 -0.025033 0)
(0.00242418 -0.0298283 0)
(0.00253631 -0.0355447 0)
(0.00230448 -0.0405872 0)
(0.00182462 -0.0449592 0)
(0.000942909 -0.0477588 0)
(0.000428498 -0.0488802 0)
(0.000555144 -0.0500517 0)
(0.000828051 -0.0517252 0)
(0.00113251 -0.0539698 0)
(0.00122603 -0.0569603 0)
(0.0013179 -0.0595618 0)
(0.00120213 -0.0627363 0)
(0.00125928 -0.0648486 0)
(0.00118524 -0.0681543 0)
(0.0010014 -0.0698888 0)
(0.00107765 -0.0725751 0)
(0.00117444 -0.0745235 0)
(0.00165838 -0.0777306 0)
(0.00207935 -0.0818589 0)
(0.00252878 -0.0871248 0)
(0.00313798 -0.0935968 0)
(0.00393862 -0.101323 0)
(0.00481225 -0.110711 0)
(0.00558173 -0.121488 0)
(0.00616843 -0.133012 0)
(0.00603473 -0.144998 0)
(0.0053481 -0.155079 0)
(0.00438731 -0.163595 0)
(0.003288 -0.169952 0)
(0.00239026 -0.174644 0)
(0.00140659 -0.178305 0)
(6.4289e-05 -0.180254 0)
(-0.00140772 -0.178819 0)
(-0.00214015 -0.174575 0)
(-0.00277641 -0.165178 0)
(-0.00188242 -0.154387 0)
(-0.00262818 -0.138664 0)
(-0.00231003 -0.120495 0)
(-0.00286233 -0.105658 0)
(-0.00674026 -0.0896929 0)
(-0.00918319 -0.0664237 0)
(-0.00973804 -0.0390294 0)
(-0.00789343 -0.00543258 0)
(-0.00333192 0.0254503 0)
(-0.000495355 0.0521323 0)
(0.00290923 0.0758194 0)
(0.00471431 0.085776 0)
(0.000363548 0.0929242 0)
(-0.0063389 0.102977 0)
(-0.0135886 0.119178 0)
(-0.0186608 0.149341 0)
(-0.0155198 0.186054 0)
(-0.00653791 0.216933 0)
(0.00483545 0.234823 0)
(0.0135142 0.237214 0)
(0.0180784 0.229785 0)
(0.0191279 0.216418 0)
(0.0184249 0.201325 0)
(0.0169437 0.185211 0)
(0.0154106 0.169018 0)
(0.0136973 0.152413 0)
(0.0116611 0.136176 0)
(0.00953542 0.121597 0)
(0.00724854 0.108671 0)
(0.00529435 0.0987711 0)
(0.00404737 0.0908509 0)
(0.00346208 0.0847503 0)
(0.00343801 0.0791062 0)
(0.00392562 0.0728086 0)
(0.00443701 0.064988 0)
(0.00480007 0.0561836 0)
(0.00523304 0.0466601 0)
(0.00605804 0.035665 0)
(0.00668328 0.0228063 0)
(0.00702512 0.00858346 0)
(0.00647947 -0.00591136 0)
(0.00459171 -0.0175685 0)
(0.00116936 -0.0238139 0)
(-0.00266061 -0.0213501 0)
(-0.00518693 -0.0125777 0)
(-0.0056477 -0.000619644 0)
(-0.00398902 0.00919184 0)
(-0.00139771 0.0142338 0)
(0.00140045 0.0136374 0)
(0.00306229 0.00746634 0)
(0.00300966 -0.000303075 0)
(0.00177244 -0.00679391 0)
(0.000276308 -0.0101335 0)
(-0.000649236 -0.0107029 0)
(-0.00104681 -0.00978709 0)
(-0.00100895 -0.00822555 0)
(-0.000681011 -0.00697261 0)
(3.99673e-05 -0.00633423 0)
(0.00109599 -0.00799334 0)
(0.00203374 -0.0117014 0)
(0.00250815 -0.0186127 0)
(0.00283337 -0.0259511 0)
(0.00329433 -0.0354805 0)
(0.0042109 -0.0457155 0)
(0.00546543 -0.0568744 0)
(0.00668571 -0.0703366 0)
(0.00665949 -0.0852646 0)
(0.00655955 -0.0987386 0)
(0.00639763 -0.11158 0)
(0.00531052 -0.123901 0)
(0.00691758 -0.136927 0)
(0.00904392 -0.155299 0)
(0.00893326 -0.17956 0)
(0.00722179 -0.19825 0)
(0.00199612 -0.20885 0)
(-0.000818685 -0.208009 0)
(-0.000397697 -0.204108 0)
(0.00101945 -0.201792 0)
(0.00241749 -0.202728 0)
(0.00295601 -0.203839 0)
(0.00320766 -0.202298 0)
(0.00433275 -0.198182 0)
(0.00683417 -0.194866 0)
(0.00959598 -0.193829 0)
(0.0111147 -0.195051 0)
(0.0093797 -0.196191 0)
(0.00474699 -0.193167 0)
(0.000240912 -0.180395 0)
(-0.00319822 -0.156575 0)
(-0.00444531 -0.121154 0)
(-0.00615812 -0.0784794 0)
(-0.00650826 -0.0298055 0)
(-0.00731877 0.0212769 0)
(-0.00497282 0.0724257 0)
(-0.00157198 0.120973 0)
(0.00326206 0.16277 0)
(0.00781152 0.195637 0)
(0.0103985 0.218121 0)
(0.00941233 0.232087 0)
(0.00742911 0.241583 0)
(0.00658232 0.249885 0)
(0.00846457 0.254678 0)
(0.010272 0.251836 0)
(0.00879189 0.24437 0)
(0.00588117 0.23974 0)
(0.00498464 0.240113 0)
(0.00818647 0.241114 0)
(0.0145132 0.236405 0)
(0.0200669 0.22418 0)
(0.0235045 0.207106 0)
(0.0253174 0.184957 0)
(0.0253726 0.158597 0)
(0.023133 0.128238 0)
(0.0170861 0.0976943 0)
(0.00636589 0.0750831 0)
(-0.00576651 0.0695536 0)
(-0.0120443 0.0806154 0)
(-0.00857871 0.0951832 0)
(-0.00201898 0.100221 0)
(0.00403247 0.0971596 0)
(0.00733296 0.0903583 0)
(0.00745807 0.0833425 0)
(0.00621876 0.0762741 0)
(0.00588685 0.0680362 0)
(0.00580086 0.0592757 0)
(0.00586291 0.0499595 0)
(0.00555076 0.0399631 0)
(0.00497542 0.030899 0)
(0.00418996 0.0223911 0)
(0.00357717 0.0150475 0)
(0.00314636 0.00894244 0)
(0.00273771 0.00358066 0)
(0.00244394 -0.000556056 0)
(0.00224597 -0.00411553 0)
(0.0020399 -0.00712662 0)
(0.00199871 -0.00945157 0)
(0.0019355 -0.011934 0)
(0.00190917 -0.0138749 0)
(0.00211119 -0.0159203 0)
(0.00225496 -0.0184082 0)
(0.002589 -0.020797 0)
(0.00298921 -0.0241994 0)
(0.00328253 -0.0278827 0)
(0.00385517 -0.0319559 0)
(0.00426692 -0.0373671 0)
(0.00459248 -0.0426966 0)
(0.00518827 -0.0486697 0)
(0.00547793 -0.0557273 0)
(0.00588738 -0.0622576 0)
(0.006439 -0.0700225 0)
(0.00660612 -0.0779965 0)
(0.00710694 -0.0853899 0)
(0.00746708 -0.0936286 0)
(0.00736305 -0.100719 0)
(0.00787911 -0.107849 0)
(0.00751901 -0.116155 0)
(0.00709767 -0.121292 0)
(0.00730603 -0.127569 0)
(0.00596336 -0.134086 0)
(0.00521919 -0.135277 0)
(0.00470752 -0.138744 0)
(0.00352071 -0.138265 0)
(0.00471826 -0.137255 0)
(0.00219278 -0.141135 0)
(-0.00144658 -0.133077 0)
(-0.00209984 -0.125308 0)
(-0.00406113 -0.114483 0)
(-0.00398594 -0.10056 0)
(-0.00624203 -0.0939362 0)
(-0.0113531 -0.0732188 0)
(-0.011658 -0.0478065 0)
(-0.0112537 -0.027491 0)
(-0.0123329 -0.0050495 0)
(-0.0135666 0.0176549 0)
(-0.0137009 0.0418911 0)
(-0.0141118 0.0615065 0)
(-0.0149241 0.0842354 0)
(-0.0130947 0.105046 0)
(-0.0118434 0.118909 0)
(-0.0114581 0.133733 0)
(-0.00978176 0.145769 0)
(-0.00746533 0.153892 0)
(-0.0051929 0.156997 0)
(-0.00460027 0.156458 0)
(-0.00505922 0.157759 0)
(-0.00502583 0.159924 0)
(-0.00410445 0.161812 0)
(-0.00236317 0.160991 0)
(-0.000682815 0.15661 0)
(-0.00173409 -0.127188 0)
(-0.00472809 -0.120566 0)
(-0.00726103 -0.107292 0)
(-0.00943969 -0.0850029 0)
(-0.00970489 -0.056976 0)
(-0.00886949 -0.0309488 0)
(-0.00844658 -0.00536718 0)
(-0.00775873 0.0208385 0)
(-0.00693299 0.0439337 0)
(-0.0063466 0.0669397 0)
(-0.00448861 0.088432 0)
(-0.00225276 0.102441 0)
(-0.00120187 0.112028 0)
(-0.000712918 0.120754 0)
(-0.000149249 0.128062 0)
(0.000730219 0.134872 0)
(0.00193484 0.138706 0)
(0.00286675 0.139493 0)
(0.00350327 0.138739 0)
(0.00412987 0.136331 0)
(0.00457613 0.132263 0)
(0.00488031 0.1273 0)
(0.00502925 0.121385 0)
(0.00500716 0.115185 0)
(0.00500348 0.108761 0)
(0.00495369 0.101867 0)
(0.00478904 0.0948504 0)
(0.00454889 0.0879047 0)
(0.00429814 0.081286 0)
(0.00408699 0.0748271 0)
(0.00386235 0.0684466 0)
(0.00360518 0.0622996 0)
(0.00333624 0.056436 0)
(0.00306549 0.0509254 0)
(0.0028072 0.0457833 0)
(0.00256765 0.0409939 0)
(0.0023454 0.0365293 0)
(0.00213982 0.0323731 0)
(0.0019439 0.0284926 0)
(0.00175493 0.0249041 0)
(0.00157192 0.021581 0)
(0.00139464 0.0185422 0)
(0.0012263 0.0157468 0)
(0.00106365 0.0131781 0)
(0.000948496 0.0108066 0)
(0.000896837 0.00838579 0)
(0.000851102 0.00579008 0)
(0.000809981 0.00304776 0)
(0.000752542 5.26814e-05 0)
(0.000708125 -0.00283065 0)
(0.00071285 -0.00598826 0)
(0.000684256 -0.00935381 0)
(0.000728093 -0.0127628 0)
(0.000783072 -0.0167542 0)
(0.000772418 -0.0208454 0)
(0.000916754 -0.0251096 0)
(0.00102856 -0.0303318 0)
(0.00104995 -0.0355293 0)
(0.0012956 -0.0410634 0)
(0.00139349 -0.0479596 0)
(0.00154778 -0.0544928 0)
(0.00167292 -0.0625711 0)
(0.00169325 -0.0711704 0)
(0.00187801 -0.080175 0)
(0.00189454 -0.0905915 0)
(0.00185695 -0.100108 0)
(0.00187913 -0.110409 0)
(0.00180121 -0.120708 0)
(0.00167341 -0.130463 0)
(0.00152341 -0.139979 0)
(0.00132861 -0.148576 0)
(0.00115254 -0.155956 0)
(0.000962881 -0.163172 0)
(0.000694121 -0.169089 0)
(0.000126976 -0.174259 0)
(-0.000996435 -0.17418 0)
(-0.00158551 -0.171844 0)
(-0.00178163 -0.167351 0)
(-0.000836242 -0.163411 0)
(0.00144803 -0.160281 0)
(0.0030884 -0.16209 0)
(0.00195062 -0.165078 0)
(-0.000709692 -0.166338 0)
(-0.00279874 -0.162435 0)
(-0.00434169 -0.157653 0)
(-0.00818999 -0.147044 0)
(-0.0115882 -0.130916 0)
(-0.0142535 -0.109332 0)
(-0.0157887 -0.0837327 0)
(-0.0171881 -0.0542292 0)
(-0.0181112 -0.0211434 0)
(-0.0174592 0.0134393 0)
(-0.0162957 0.0456346 0)
(-0.0143245 0.0780573 0)
(-0.0114692 0.107653 0)
(-0.00801783 0.134721 0)
(-0.0042658 0.157874 0)
(-0.000727331 0.176747 0)
(0.00264467 0.190885 0)
(0.00543055 0.200334 0)
(0.00766399 0.20489 0)
(0.0091567 0.204804 0)
(0.0101673 0.201273 0)
(0.0106887 0.194436 0)
(0.010487 0.185437 0)
(0.00993469 0.175463 0)
(0.00905053 0.165112 0)
(0.00823327 0.154995 0)
(0.00749459 0.145261 0)
(0.00691946 0.136117 0)
(0.00657869 0.127077 0)
(0.00627493 0.118046 0)
(0.00592414 0.108915 0)
(0.00549468 0.0997892 0)
(0.00496862 0.0905905 0)
(0.00437463 0.0817794 0)
(0.00389967 0.0734163 0)
(0.00357991 0.0652841 0)
(0.00335953 0.0570913 0)
(0.00324953 0.0486837 0)
(0.00303347 0.0397719 0)
(0.00277087 0.0312274 0)
(0.00237968 0.0227409 0)
(0.00205922 0.015597 0)
(0.00178586 0.00881896 0)
(0.00150662 0.00307541 0)
(0.00132595 -0.00157927 0)
(0.0010873 -0.00612601 0)
(0.000875914 -0.00919602 0)
(0.000877419 -0.0130956 0)
(0.000975078 -0.0163436 0)
(0.00111233 -0.0208063 0)
(0.00117354 -0.0250695 0)
(0.00134712 -0.0297092 0)
(0.00140497 -0.0354265 0)
(0.00131021 -0.0405044 0)
(0.00100568 -0.0447217 0)
(0.000740169 -0.0475408 0)
(0.000358965 -0.0487896 0)
(0.000311381 -0.0500589 0)
(0.000417384 -0.0517446 0)
(0.000515962 -0.0540632 0)
(0.000577042 -0.0570158 0)
(0.000627739 -0.0596373 0)
(0.000604047 -0.0627417 0)
(0.000707816 -0.0647958 0)
(0.000890814 -0.0679501 0)
(0.00082917 -0.0696692 0)
(0.00086716 -0.0723517 0)
(0.000978383 -0.0742975 0)
(0.00135323 -0.0774648 0)
(0.00165855 -0.0814964 0)
(0.00189975 -0.0866255 0)
(0.00211145 -0.0929376 0)
(0.00240041 -0.100505 0)
(0.00275951 -0.109707 0)
(0.00306811 -0.120282 0)
(0.00329088 -0.131643 0)
(0.00325006 -0.143491 0)
(0.00293484 -0.153653 0)
(0.00254373 -0.162272 0)
(0.00209188 -0.168859 0)
(0.00167354 -0.173753 0)
(0.001196 -0.177605 0)
(0.000476812 -0.179632 0)
(-0.000456147 -0.178688 0)
(-0.00169757 -0.174917 0)
(-0.0024681 -0.166135 0)
(-0.00176902 -0.155491 0)
(-0.00204129 -0.139925 0)
(-0.00125782 -0.121614 0)
(-0.00141862 -0.106171 0)
(-0.00429443 -0.0895182 0)
(-0.00578152 -0.0661842 0)
(-0.00545922 -0.0386571 0)
(-0.00342648 -0.00560567 0)
(0.00128016 0.0248335 0)
(0.00416565 0.0514925 0)
(0.00652077 0.0751031 0)
(0.0068724 0.0859177 0)
(0.00198708 0.0935701 0)
(-0.00452916 0.103876 0)
(-0.0112577 0.120515 0)
(-0.0152396 0.149719 0)
(-0.0122804 0.185322 0)
(-0.00431 0.215573 0)
(0.00590694 0.233287 0)
(0.0131999 0.236111 0)
(0.0167966 0.22932 0)
(0.0173751 0.216489 0)
(0.0164689 0.201609 0)
(0.0148833 0.185594 0)
(0.0133001 0.169375 0)
(0.0115956 0.152837 0)
(0.00959743 0.136657 0)
(0.00755853 0.122085 0)
(0.00561651 0.109133 0)
(0.0040249 0.0991103 0)
(0.00297927 0.0911621 0)
(0.00232223 0.0849622 0)
(0.00228174 0.0792686 0)
(0.0027197 0.0730978 0)
(0.00303082 0.0654037 0)
(0.003154 0.0566689 0)
(0.00336996 0.0471376 0)
(0.00368257 0.0360174 0)
(0.00400249 0.023139 0)
(0.00411972 0.00879837 0)
(0.0037952 -0.00560576 0)
(0.00273519 -0.0171786 0)
(0.000801187 -0.0233661 0)
(-0.00138116 -0.0209544 0)
(-0.00285892 -0.0124016 0)
(-0.00328288 -0.000713558 0)
(-0.00242456 0.00883795 0)
(-0.000837456 0.0137961 0)
(0.000833251 0.0132404 0)
(0.0020885 0.00745826 0)
(0.00203994 -0.000111322 0)
(0.00118907 -0.00661313 0)
(0.000182414 -0.0100869 0)
(-0.000474309 -0.0107754 0)
(-0.000769747 -0.00993351 0)
(-0.000677768 -0.00834131 0)
(-0.000195407 -0.00697281 0)
(0.000316518 -0.00630412 0)
(0.00098311 -0.00787316 0)
(0.00137532 -0.0116177 0)
(0.00162209 -0.0184246 0)
(0.00179146 -0.0258218 0)
(0.00240281 -0.034928 0)
(0.00286355 -0.0448827 0)
(0.00308168 -0.056808 0)
(0.00341065 -0.0705972 0)
(0.00389668 -0.0840064 0)
(0.00376004 -0.0976587 0)
(0.0035136 -0.110632 0)
(0.00370817 -0.123369 0)
(0.00483678 -0.136868 0)
(0.00614335 -0.15631 0)
(0.0052488 -0.180202 0)
(0.0039846 -0.19791 0)
(0.00147265 -0.208079 0)
(-0.000890441 -0.207293 0)
(-0.000736485 -0.203915 0)
(1.25353e-05 -0.201706 0)
(0.000616029 -0.202212 0)
(0.000572913 -0.20304 0)
(0.000327989 -0.201624 0)
(0.000654576 -0.198007 0)
(0.00170208 -0.195375 0)
(0.00293257 -0.194886 0)
(0.00369057 -0.196209 0)
(0.00309775 -0.197017 0)
(0.000854543 -0.193431 0)
(-0.0022527 -0.180916 0)
(-0.0056928 -0.158054 0)
(-0.00699833 -0.122265 0)
(-0.00756335 -0.0789722 0)
(-0.00678364 -0.0297149 0)
(-0.00659634 0.0213372 0)
(-0.00396921 0.0722491 0)
(-0.000542368 0.120657 0)
(0.00382498 0.16225 0)
(0.00743248 0.194792 0)
(0.00904499 0.217676 0)
(0.00792146 0.231975 0)
(0.00617055 0.241693 0)
(0.00550866 0.249844 0)
(0.00705183 0.254271 0)
(0.00821288 0.251566 0)
(0.0065832 0.244681 0)
(0.00431247 0.240531 0)
(0.00414315 0.240831 0)
(0.00723184 0.24133 0)
(0.0124022 0.236027 0)
(0.0166468 0.223505 0)
(0.0192873 0.206294 0)
(0.0206316 0.183978 0)
(0.0203346 0.157649 0)
(0.0178428 0.12778 0)
(0.0122861 0.0980971 0)
(0.00323308 0.0760602 0)
(-0.00503671 0.070052 0)
(-0.00911398 0.0797627 0)
(-0.00661746 0.0937783 0)
(-0.00189672 0.0990099 0)
(0.00161927 0.0956014 0)
(0.00350166 0.0889289 0)
(0.00421753 0.0819604 0)
(0.00447696 0.0749351 0)
(0.0043821 0.0665235 0)
(0.00423667 0.0576033 0)
(0.00406519 0.0482437 0)
(0.00359578 0.0384156 0)
(0.00309624 0.029677 0)
(0.00264519 0.0216761 0)
(0.00228909 0.0148413 0)
(0.00202629 0.00919524 0)
(0.00175557 0.0041559 0)
(0.00156969 0.000259259 0)
(0.00144636 -0.003039 0)
(0.00129663 -0.00587915 0)
(0.00127167 -0.0080807 0)
(0.00123258 -0.0104176 0)
(0.00121057 -0.0122608 0)
(0.0013457 -0.0141877 0)
(0.00143891 -0.0165402 0)
(0.00166159 -0.0188144 0)
(0.00193805 -0.0220477 0)
(0.0021362 -0.0256029 0)
(0.00254036 -0.0295648 0)
(0.00284726 -0.0348721 0)
(0.00308016 -0.0401961 0)
(0.00352166 -0.0462065 0)
(0.00372905 -0.0533901 0)
(0.00400513 -0.0601575 0)
(0.00437203 -0.068198 0)
(0.00441396 -0.0765368 0)
(0.00467255 -0.0843811 0)
(0.00452344 -0.0932727 0)
(0.00432368 -0.101065 0)
(0.00462063 -0.108854 0)
(0.00432509 -0.117839 0)
(0.00403255 -0.123642 0)
(0.00407213 -0.130311 0)
(0.00311447 -0.136299 0)
(0.00266227 -0.137289 0)
(0.00233993 -0.140133 0)
(0.00169839 -0.13944 0)
(0.00236722 -0.138582 0)
(0.000928639 -0.142529 0)
(-0.00121215 -0.133967 0)
(-0.00158194 -0.12582 0)
(-0.0028292 -0.115733 0)
(-0.00297622 -0.101479 0)
(-0.00454597 -0.0934969 0)
(-0.00747231 -0.072206 0)
(-0.00747261 -0.0471435 0)
(-0.00709183 -0.027089 0)
(-0.00768849 -0.0054932 0)
(-0.00843348 0.016149 0)
(-0.00852671 0.039468 0)
(-0.00877851 0.0590006 0)
(-0.00922795 0.0813612 0)
(-0.00808198 0.102004 0)
(-0.00728123 0.116403 0)
(-0.00699249 0.131412 0)
(-0.00595548 0.143792 0)
(-0.00449209 0.152279 0)
(-0.00307609 0.155859 0)
(-0.00266771 0.155982 0)
(-0.0028785 0.157561 0)
(-0.00280244 0.159824 0)
(-0.00220611 0.161664 0)
(-0.00112832 0.160844 0)
(-0.000261563 0.156509 0)
(-0.000376564 -0.120607 0)
(-0.00113513 -0.117262 0)
(-0.00213357 -0.10718 0)
(-0.00307835 -0.0874224 0)
(-0.00340255 -0.0604642 0)
(-0.00332641 -0.0334786 0)
(-0.00341101 -0.0051444 0)
(-0.00329432 0.025069 0)
(-0.00316325 0.0523945 0)
(-0.00301851 0.07972 0)
(-0.00224107 0.105225 0)
(-0.00122162 0.1216 0)
(-0.000763334 0.133469 0)
(-0.000539028 0.14441 0)
(-0.000232525 0.154142 0)
(0.00025234 0.16246 0)
(0.00089867 0.167511 0)
(0.00140165 0.168996 0)
(0.00176116 0.168624 0)
(0.00211909 0.166206 0)
(0.00238153 0.161832 0)
(0.0025836 0.156271 0)
(0.00268966 0.149438 0)
(0.00269783 0.142177 0)
(0.00271472 0.134544 0)
(0.00269053 0.126302 0)
(0.00259757 0.117871 0)
(0.00247199 0.109496 0)
(0.00234425 0.101427 0)
(0.00222895 0.0935055 0)
(0.00209998 0.085656 0)
(0.00195176 0.0780669 0)
(0.00179843 0.0708157 0)
(0.00164758 0.063983 0)
(0.00150586 0.0575882 0)
(0.00137571 0.0516142 0)
(0.00125583 0.0460286 0)
(0.0011461 0.0408136 0)
(0.00104225 0.0359296 0)
(0.000943118 0.0313975 0)
(0.000848685 0.0271832 0)
(0.000759457 0.0233084 0)
(0.00067787 0.0197178 0)
(0.000603578 0.0163934 0)
(0.000558138 0.0132761 0)
(0.000538582 0.0100469 0)
(0.000513729 0.00659779 0)
(0.000505247 0.00304475 0)
(0.000491755 -0.000745622 0)
(0.000485737 -0.00443254 0)
(0.000505897 -0.0083521 0)
(0.000503094 -0.0124413 0)
(0.000550001 -0.0164953 0)
(0.000594619 -0.0211431 0)
(0.000590307 -0.0258189 0)
(0.000689892 -0.0305946 0)
(0.000761534 -0.036322 0)
(0.000773749 -0.041956 0)
(0.000947349 -0.0478936 0)
(0.00103104 -0.0552412 0)
(0.00116922 -0.062128 0)
(0.00134611 -0.0707907 0)
(0.00138643 -0.079551 0)
(0.00153437 -0.0886303 0)
(0.00153753 -0.0990123 0)
(0.00151476 -0.108374 0)
(0.00154192 -0.118473 0)
(0.00143642 -0.128403 0)
(0.00136101 -0.137702 0)
(0.00123024 -0.146812 0)
(0.00101136 -0.154882 0)
(0.000855465 -0.161839 0)
(0.000689319 -0.168429 0)
(0.000482387 -0.173804 0)
(-5.45726e-05 -0.17847 0)
(-0.000582393 -0.177972 0)
(-0.000800512 -0.175454 0)
(-0.0008686 -0.170593 0)
(-0.000798734 -0.165345 0)
(6.48159e-05 -0.161783 0)
(0.000329022 -0.162705 0)
(0.000276129 -0.165041 0)
(-0.000318837 -0.165385 0)
(-0.000534346 -0.16056 0)
(-0.000850233 -0.154905 0)
(-0.00166175 -0.143598 0)
(-0.0028542 -0.127693 0)
(-0.00418911 -0.106786 0)
(-0.00522209 -0.082094 0)
(-0.00618239 -0.0530132 0)
(-0.00682549 -0.0207915 0)
(-0.00628526 0.0135456 0)
(-0.00549071 0.0454459 0)
(-0.00409653 0.0775419 0)
(-0.00237024 0.106894 0)
(-0.000286175 0.133848 0)
(0.00184346 0.157005 0)
(0.00370634 0.175963 0)
(0.00544279 0.190243 0)
(0.0067646 0.199841 0)
(0.00773619 0.20456 0)
(0.00819077 0.204636 0)
(0.00826646 0.201169 0)
(0.00801614 0.194476 0)
(0.0073851 0.185556 0)
(0.00666426 0.175603 0)
(0.00584182 0.165239 0)
(0.0051393 0.155104 0)
(0.00455017 0.145377 0)
(0.00405561 0.13613 0)
(0.00370306 0.1271 0)
(0.00340083 0.118035 0)
(0.00307032 0.108932 0)
(0.00273853 0.0997948 0)
(0.00239151 0.0906419 0)
(0.00203262 0.0817715 0)
(0.00174368 0.0734288 0)
(0.00152897 0.0652458 0)
(0.00136515 0.0570704 0)
(0.00125553 0.0486559 0)
(0.00109893 0.0397252 0)
(0.000958042 0.0311431 0)
(0.000794262 0.0227005 0)
(0.000677558 0.0155082 0)
(0.000578231 0.0087731 0)
(0.000497133 0.00293284 0)
(0.000461003 -0.00192644 0)
(0.000367301 -0.00654632 0)
(0.000414148 -0.00969537 0)
(0.000385675 -0.0136331 0)
(0.000430763 -0.0169622 0)
(0.000456218 -0.0214443 0)
(0.000479688 -0.0257769 0)
(0.000557369 -0.0305515 0)
(0.000547412 -0.0362393 0)
(0.000452479 -0.0412423 0)
(0.000340093 -0.045424 0)
(0.000203908 -0.048056 0)
(0.000271173 -0.0493815 0)
(0.000296313 -0.0507783 0)
(0.000355952 -0.0525824 0)
(0.000452433 -0.0549567 0)
(0.000474512 -0.0579186 0)
(0.000458771 -0.0606369 0)
(0.000395561 -0.0637177 0)
(0.000331753 -0.0658584 0)
(0.00024978 -0.0688182 0)
(0.000270629 -0.0705566 0)
(0.000267637 -0.0732263 0)
(0.000285967 -0.0752431 0)
(0.000344367 -0.0785108 0)
(0.00042757 -0.0826799 0)
(0.000549497 -0.0879939 0)
(0.000666835 -0.094487 0)
(0.000785835 -0.102241 0)
(0.00088201 -0.111589 0)
(0.000930326 -0.122207 0)
(0.00094174 -0.133509 0)
(0.000853744 -0.145076 0)
(0.000717088 -0.154882 0)
(0.000573541 -0.163106 0)
(0.000441323 -0.169294 0)
(0.000366976 -0.173802 0)
(0.000279286 -0.177235 0)
(3.24924e-05 -0.178772 0)
(-0.00026196 -0.17724 0)
(-0.000581507 -0.173047 0)
(-0.000796182 -0.164103 0)
(-0.00106995 -0.153433 0)
(-0.000999101 -0.138005 0)
(-0.000331298 -0.120224 0)
(0.000117304 -0.104805 0)
(-0.000446705 -0.088443 0)
(0.000338409 -0.0661888 0)
(0.00342507 -0.0394909 0)
(0.00678044 -0.00696323 0)
(0.0106364 0.023901 0)
(0.0116988 0.05131 0)
(0.0111742 0.075345 0)
(0.00905506 0.0871015 0)
(0.00386194 0.095459 0)
(-0.00123921 0.10569 0)
(-0.00542052 0.121765 0)
(-0.00738546 0.149648 0)
(-0.00492476 0.183737 0)
(0.000794605 0.213149 0)
(0.00724889 0.231089 0)
(0.0116406 0.234938 0)
(0.0133826 0.229006 0)
(0.0128703 0.216708 0)
(0.0114751 0.202037 0)
(0.00972275 0.186024 0)
(0.00807369 0.169794 0)
(0.00654217 0.153202 0)
(0.0049263 0.13701 0)
(0.00365151 0.1224 0)
(0.00259912 0.109355 0)
(0.00181237 0.0992909 0)
(0.00130218 0.0912018 0)
(0.00103222 0.0848938 0)
(0.00100932 0.0790726 0)
(0.00109554 0.072769 0)
(0.00116346 0.0650384 0)
(0.00119666 0.0563857 0)
(0.00122769 0.0467404 0)
(0.00124446 0.0357066 0)
(0.00128678 0.0227397 0)
(0.00127876 0.00851306 0)
(0.00110934 -0.00603138 0)
(0.000771976 -0.0174005 0)
(0.000185277 -0.0233608 0)
(-0.000508352 -0.0209536 0)
(-0.000958822 -0.0125265 0)
(-0.00110929 -0.000894264 0)
(-0.000816694 0.00863691 0)
(-0.000290965 0.0134953 0)
(0.000269379 0.0129784 0)
(0.000548936 0.00721669 0)
(0.000717015 -0.000338026 0)
(0.000668585 -0.00678536 0)
(0.000385044 -0.010218 0)
(8.70227e-05 -0.0109923 0)
(-2.4218e-05 -0.010238 0)
(-8.77834e-05 -0.00877235 0)
(-0.000112301 -0.00747835 0)
(3.29577e-05 -0.00688189 0)
(0.00019827 -0.00858921 0)
(0.000549346 -0.0125405 0)
(0.000741996 -0.0194971 0)
(0.000912896 -0.0271336 0)
(0.000940267 -0.0366145 0)
(0.0010283 -0.0469087 0)
(0.00124437 -0.0588035 0)
(0.0011779 -0.0724424 0)
(0.00109923 -0.0861941 0)
(0.0011436 -0.0996037 0)
(0.00117207 -0.112491 0)
(0.00147819 -0.125368 0)
(0.0018771 -0.139619 0)
(0.00226153 -0.159056 0)
(0.00207093 -0.182826 0)
(0.00108826 -0.19999 0)
(0.000390547 -0.208925 0)
(-0.000455196 -0.208245 0)
(-0.000670915 -0.204693 0)
(-0.000245714 -0.202283 0)
(6.38193e-05 -0.202506 0)
(-1.78403e-05 -0.202965 0)
(-0.000251648 -0.201225 0)
(-0.000220202 -0.197308 0)
(4.80603e-05 -0.19417 0)
(0.00029146 -0.193102 0)
(0.000444027 -0.193892 0)
(0.00033382 -0.194352 0)
(-0.000698717 -0.190799 0)
(-0.00286106 -0.178157 0)
(-0.00441133 -0.154912 0)
(-0.00473167 -0.120408 0)
(-0.00376493 -0.078511 0)
(-0.00163864 -0.0302412 0)
(9.64845e-05 0.0206005 0)
(0.00240765 0.0713074 0)
(0.00508477 0.119658 0)
(0.00776781 0.161511 0)
(0.00910045 0.194788 0)
(0.00917645 0.218465 0)
(0.00736777 0.233446 0)
(0.00560882 0.243318 0)
(0.00500509 0.251306 0)
(0.00574146 0.255997 0)
(0.0057497 0.254231 0)
(0.00418262 0.248154 0)
(0.00298819 0.244041 0)
(0.00361178 0.243782 0)
(0.00645926 0.243879 0)
(0.0103727 0.239414 0)
(0.0130862 0.228169 0)
(0.0144473 0.211881 0)
(0.014229 0.190246 0)
(0.0123491 0.164304 0)
(0.00909389 0.134331 0)
(0.00530331 0.104247 0)
(0.000497822 0.0818116 0)
(-0.00450572 0.0756373 0)
(-0.00682945 0.0850062 0)
(-0.00502361 0.0985481 0)
(-0.00148277 0.104098 0)
(0.000836639 0.102304 0)
(0.00197566 0.0960768 0)
(0.00254446 0.0891553 0)
(0.00305098 0.0818183 0)
(0.00307132 0.073169 0)
(0.00301175 0.0640088 0)
(0.00284593 0.0542636 0)
(0.00240856 0.043683 0)
(0.00199307 0.0339806 0)
(0.00157374 0.0247718 0)
(0.00128019 0.0167556 0)
(0.00111879 0.010016 0)
(0.000961593 0.00409795 0)
(0.000871683 -0.000510067 0)
(0.000819009 -0.00455325 0)
(0.000727592 -0.00800556 0)
(0.000720756 -0.0107101 0)
(0.000706539 -0.0135877 0)
(0.000691987 -0.0159104 0)
(0.000772694 -0.0183565 0)
(0.000824036 -0.0213274 0)
(0.000941917 -0.0242445 0)
(0.00108792 -0.0283006 0)
(0.00117881 -0.0327607 0)
(0.00137964 -0.0377179 0)
(0.00152373 -0.04422 0)
(0.00162036 -0.0507513 0)
(0.00183147 -0.0580682 0)
(0.00191171 -0.0666781 0)
(0.00202393 -0.0748153 0)
(0.00219067 -0.0843162 0)
(0.00220146 -0.0940676 0)
(0.00237556 -0.103321 0)
(0.00239361 -0.114341 0)
(0.00224993 -0.123543 0)
(0.0023761 -0.132506 0)
(0.00218083 -0.142645 0)
(0.00195936 -0.149307 0)
(0.00193261 -0.15664 0)
(0.00140524 -0.162987 0)
(0.00116812 -0.164106 0)
(0.000985951 -0.167073 0)
(0.00056863 -0.16619 0)
(0.000820336 -0.164854 0)
(6.35917e-05 -0.167953 0)
(-0.00098456 -0.158226 0)
(-0.00106527 -0.148579 0)
(-0.00161515 -0.137165 0)
(-0.00180314 -0.120804 0)
(-0.00237795 -0.109527 0)
(-0.00352107 -0.0851765 0)
(-0.00345043 -0.0559614 0)
(-0.00324856 -0.0316589 0)
(-0.00363047 -0.00501751 0)
(-0.00402541 0.0221091 0)
(-0.0041206 0.0504587 0)
(-0.00420856 0.0739027 0)
(-0.0043613 0.0997867 0)
(-0.00374044 0.122781 0)
(-0.00328139 0.138318 0)
(-0.00305759 0.153903 0)
(-0.00250072 0.166133 0)
(-0.00177581 0.173773 0)
(-0.00108075 0.175768 0)
(-0.000829777 0.173811 0)
(-0.000840315 0.172917 0)
(-0.000734301 0.172306 0)
(-0.000435042 0.170912 0)
(3.28455e-05 0.166548 0)
(0.000136984 0.15849 0)
)
;
boundaryField
{
inlet
{
type waveVelocity;
refValue nonuniform List<vector>
60
(
(0.414838 -0.0011921 0)
(0.414896 -0.00357717 0)
(0.415014 -0.00596484 0)
(0.41519 -0.00835684 0)
(0.415426 -0.0107549 0)
(0.41572 -0.0131609 0)
(0.416073 -0.0155764 0)
(0.416486 -0.0180034 0)
(0.416958 -0.0204435 0)
(0.41749 -0.0228986 0)
(0.418081 -0.0253706 0)
(0.418732 -0.0278614 0)
(0.419444 -0.0303728 0)
(0.420216 -0.0329067 0)
(0.421048 -0.0354652 0)
(0.421942 -0.0380503 0)
(0.422897 -0.040664 0)
(0.423913 -0.0433084 0)
(0.424992 -0.0459856 0)
(0.426133 -0.048698 0)
(0.427337 -0.0514477 0)
(0.428604 -0.0542371 0)
(0.429935 -0.0570686 0)
(0.43133 -0.0599447 0)
(0.43279 -0.0628678 0)
(0.434315 -0.0658406 0)
(0.435905 -0.0688659 0)
(0.437562 -0.0719463 0)
(0.439286 -0.0750849 0)
(0.441077 -0.0782846 0)
(0.442936 -0.0815485 0)
(0.444865 -0.0848798 0)
(0.446862 -0.0882819 0)
(0.44893 -0.0917582 0)
(0.451068 -0.0953123 0)
(0.453278 -0.0989479 0)
(0.455561 -0.102669 0)
(0.457916 -0.106479 0)
(0.460346 -0.110384 0)
(0.46285 -0.114386 0)
(0.46543 -0.11849 0)
(0.468087 -0.122702 0)
(0.470821 -0.127026 0)
(0.473634 -0.131467 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
)
;
refGradient uniform (0 0 0);
valueFraction uniform 1;
value nonuniform List<vector>
60
(
(0.414838 -0.0011921 0)
(0.414896 -0.00357717 0)
(0.415014 -0.00596484 0)
(0.41519 -0.00835684 0)
(0.415426 -0.0107549 0)
(0.41572 -0.0131609 0)
(0.416073 -0.0155764 0)
(0.416486 -0.0180034 0)
(0.416958 -0.0204435 0)
(0.41749 -0.0228986 0)
(0.418081 -0.0253706 0)
(0.418732 -0.0278614 0)
(0.419444 -0.0303728 0)
(0.420216 -0.0329067 0)
(0.421048 -0.0354652 0)
(0.421942 -0.0380503 0)
(0.422897 -0.040664 0)
(0.423913 -0.0433084 0)
(0.424992 -0.0459856 0)
(0.426133 -0.048698 0)
(0.427337 -0.0514477 0)
(0.428604 -0.0542371 0)
(0.429935 -0.0570686 0)
(0.43133 -0.0599447 0)
(0.43279 -0.0628678 0)
(0.434315 -0.0658406 0)
(0.435905 -0.0688659 0)
(0.437562 -0.0719463 0)
(0.439286 -0.0750849 0)
(0.441077 -0.0782846 0)
(0.442936 -0.0815485 0)
(0.444865 -0.0848798 0)
(0.446862 -0.0882819 0)
(0.44893 -0.0917582 0)
(0.451068 -0.0953123 0)
(0.453278 -0.0989479 0)
(0.455561 -0.102669 0)
(0.457916 -0.106479 0)
(0.460346 -0.110384 0)
(0.46285 -0.114386 0)
(0.46543 -0.11849 0)
(0.468087 -0.122702 0)
(0.470821 -0.127026 0)
(0.473634 -0.131467 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
)
;
}
bottom
{
type slip;
}
outlet
{
type waveVelocity;
refValue nonuniform List<vector>
60
(
(0.249978 0.00146736 0)
(0.24996 0.00440235 0)
(0.249926 0.00733814 0)
(0.249873 0.0102753 0)
(0.249804 0.0132143 0)
(0.249716 0.0161557 0)
(0.249611 0.0191 0)
(0.249487 0.0220479 0)
(0.249346 0.0249996 0)
(0.249186 0.0279559 0)
(0.249007 0.0309171 0)
(0.248809 0.0338839 0)
(0.248591 0.0368566 0)
(0.248354 0.0398358 0)
(0.248097 0.0428219 0)
(0.247819 0.0458154 0)
(0.247519 0.0488167 0)
(0.247198 0.0518262 0)
(0.246855 0.0548445 0)
(0.246488 0.0578718 0)
(0.246099 0.0609086 0)
(0.245685 0.0639551 0)
(0.245246 0.0670119 0)
(0.244781 0.0700792 0)
(0.24429 0.0731572 0)
(0.243771 0.0762464 0)
(0.243224 0.0793468 0)
(0.242648 0.0824589 0)
(0.242041 0.0855827 0)
(0.241403 0.0887185 0)
(0.240733 0.0918664 0)
(0.240028 0.0950265 0)
(0.239288 0.0981989 0)
(0.238512 0.101384 0)
(0.237698 0.104581 0)
(0.236844 0.10779 0)
(0.235948 0.111012 0)
(0.23501 0.114246 0)
(0.234027 0.117492 0)
(0.232997 0.12075 0)
(0.232145 0.12334 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
)
;
refGradient uniform (0 0 0);
valueFraction uniform 1;
value nonuniform List<vector>
60
(
(0.249978 0.00146736 0)
(0.24996 0.00440235 0)
(0.249926 0.00733814 0)
(0.249873 0.0102753 0)
(0.249804 0.0132143 0)
(0.249716 0.0161557 0)
(0.249611 0.0191 0)
(0.249487 0.0220479 0)
(0.249346 0.0249996 0)
(0.249186 0.0279559 0)
(0.249007 0.0309171 0)
(0.248809 0.0338839 0)
(0.248591 0.0368566 0)
(0.248354 0.0398358 0)
(0.248097 0.0428219 0)
(0.247819 0.0458154 0)
(0.247519 0.0488167 0)
(0.247198 0.0518262 0)
(0.246855 0.0548445 0)
(0.246488 0.0578718 0)
(0.246099 0.0609086 0)
(0.245685 0.0639551 0)
(0.245246 0.0670119 0)
(0.244781 0.0700792 0)
(0.24429 0.0731572 0)
(0.243771 0.0762464 0)
(0.243224 0.0793468 0)
(0.242648 0.0824589 0)
(0.242041 0.0855827 0)
(0.241403 0.0887185 0)
(0.240733 0.0918664 0)
(0.240028 0.0950265 0)
(0.239288 0.0981989 0)
(0.238512 0.101384 0)
(0.237698 0.104581 0)
(0.236844 0.10779 0)
(0.235948 0.111012 0)
(0.23501 0.114246 0)
(0.234027 0.117492 0)
(0.232997 0.12075 0)
(0.232145 0.12334 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
(0 0 0)
)
;
}
atmosphere
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
357
(
(0 -0.120607 0)
(0 -0.117262 0)
(0 -0.10718 0)
(0 -0.0874224 0)
(0 -0.0604642 0)
(0 -0.0334786 0)
(0 -0.0051444 0)
(-0.00329432 0.025069 0)
(-0.00316325 0.0523945 0)
(-0.00301851 0.07972 0)
(-0.00224107 0.105225 0)
(-0.00122162 0.1216 0)
(-0.000763334 0.133469 0)
(-0.000539028 0.14441 0)
(-0.000232525 0.154142 0)
(0.00025234 0.16246 0)
(0.00089867 0.167511 0)
(0.00140165 0.168996 0)
(0.00176116 0.168624 0)
(0.00211909 0.166206 0)
(0.00238153 0.161832 0)
(0.0025836 0.156271 0)
(0.00268966 0.149438 0)
(0.00269783 0.142177 0)
(0.00271472 0.134544 0)
(0.00269053 0.126302 0)
(0.00259757 0.117871 0)
(0.00247199 0.109496 0)
(0.00234425 0.101427 0)
(0.00222895 0.0935055 0)
(0.00209998 0.085656 0)
(0.00195176 0.0780669 0)
(0.00179843 0.0708157 0)
(0.00164758 0.063983 0)
(0.00150586 0.0575882 0)
(0.00137571 0.0516142 0)
(0.00125583 0.0460286 0)
(0.0011461 0.0408136 0)
(0.00104225 0.0359296 0)
(0.000943118 0.0313975 0)
(0.000848685 0.0271832 0)
(0.000759457 0.0233084 0)
(0.00067787 0.0197178 0)
(0.000603578 0.0163934 0)
(0.000558138 0.0132761 0)
(0.000538582 0.0100469 0)
(0.000513729 0.00659779 0)
(0.000505247 0.00304475 0)
(0 -0.000745622 0)
(0 -0.00443254 0)
(0 -0.0083521 0)
(0 -0.0124413 0)
(0 -0.0164953 0)
(0 -0.0211431 0)
(0 -0.0258189 0)
(0 -0.0305946 0)
(0 -0.036322 0)
(0 -0.041956 0)
(0 -0.0478936 0)
(0 -0.0552412 0)
(0 -0.062128 0)
(0 -0.0707907 0)
(0 -0.079551 0)
(0 -0.0886303 0)
(0 -0.0990123 0)
(0 -0.108374 0)
(0 -0.118473 0)
(0 -0.128403 0)
(0 -0.137702 0)
(0 -0.146812 0)
(0 -0.154882 0)
(0 -0.161839 0)
(0 -0.168429 0)
(0 -0.173804 0)
(0 -0.17847 0)
(0 -0.177972 0)
(0 -0.175454 0)
(0 -0.170593 0)
(0 -0.165345 0)
(0 -0.161783 0)
(0 -0.162705 0)
(0 -0.165041 0)
(0 -0.165385 0)
(0 -0.16056 0)
(0 -0.154905 0)
(0 -0.143598 0)
(0 -0.127693 0)
(0 -0.106786 0)
(0 -0.082094 0)
(0 -0.0530132 0)
(0 -0.0207915 0)
(-0.00628526 0.0135456 0)
(-0.00549071 0.0454459 0)
(-0.00409653 0.0775419 0)
(-0.00237024 0.106894 0)
(-0.000286175 0.133848 0)
(0.00184346 0.157005 0)
(0.00370634 0.175963 0)
(0.00544279 0.190243 0)
(0.0067646 0.199841 0)
(0.00773619 0.20456 0)
(0.00819077 0.204636 0)
(0.00826646 0.201169 0)
(0.00801614 0.194476 0)
(0.0073851 0.185556 0)
(0.00666426 0.175603 0)
(0.00584182 0.165239 0)
(0.0051393 0.155104 0)
(0.00455017 0.145377 0)
(0.00405561 0.13613 0)
(0.00370306 0.1271 0)
(0.00340083 0.118035 0)
(0.00307032 0.108932 0)
(0.00273853 0.0997948 0)
(0.00239151 0.0906419 0)
(0.00203262 0.0817715 0)
(0.00174368 0.0734288 0)
(0.00152897 0.0652458 0)
(0.00136515 0.0570704 0)
(0.00125553 0.0486559 0)
(0.00109893 0.0397252 0)
(0.000958042 0.0311431 0)
(0.000794262 0.0227005 0)
(0.000677558 0.0155082 0)
(0.000578231 0.0087731 0)
(0.000497133 0.00293284 0)
(0 -0.00192644 0)
(0 -0.00654632 0)
(0 -0.00969537 0)
(0 -0.0136331 0)
(0 -0.0169622 0)
(0 -0.0214443 0)
(0 -0.0257769 0)
(0 -0.0305515 0)
(0 -0.0362393 0)
(0 -0.0412423 0)
(0 -0.045424 0)
(0 -0.048056 0)
(0 -0.0493815 0)
(0 -0.0507783 0)
(0 -0.0525824 0)
(0 -0.0549567 0)
(0 -0.0579186 0)
(0 -0.0606369 0)
(0 -0.0637177 0)
(0 -0.0658584 0)
(0 -0.0688182 0)
(0 -0.0705566 0)
(0 -0.0732263 0)
(0 -0.0752431 0)
(0 -0.0785108 0)
(0 -0.0826799 0)
(0 -0.0879939 0)
(0 -0.094487 0)
(0 -0.102241 0)
(0 -0.111589 0)
(0 -0.122207 0)
(0 -0.133509 0)
(0 -0.145076 0)
(0 -0.154882 0)
(0 -0.163106 0)
(0 -0.169294 0)
(0 -0.173802 0)
(0 -0.177235 0)
(0 -0.178772 0)
(0 -0.17724 0)
(0 -0.173047 0)
(0 -0.164103 0)
(0 -0.153433 0)
(0 -0.138005 0)
(0 -0.120224 0)
(0 -0.104805 0)
(0 -0.088443 0)
(0 -0.0661888 0)
(0 -0.0394909 0)
(0 -0.00696323 0)
(0.0106364 0.023901 0)
(0.0116988 0.05131 0)
(0.0111742 0.075345 0)
(0.00905506 0.0871015 0)
(0.00386194 0.095459 0)
(-0.00123921 0.10569 0)
(-0.00542052 0.121765 0)
(-0.00738546 0.149648 0)
(-0.00492476 0.183737 0)
(0.000794605 0.213149 0)
(0.00724889 0.231089 0)
(0.0116406 0.234938 0)
(0.0133826 0.229006 0)
(0.0128703 0.216708 0)
(0.0114751 0.202037 0)
(0.00972275 0.186024 0)
(0.00807369 0.169794 0)
(0.00654217 0.153202 0)
(0.0049263 0.13701 0)
(0.00365151 0.1224 0)
(0.00259912 0.109355 0)
(0.00181237 0.0992909 0)
(0.00130218 0.0912018 0)
(0.00103222 0.0848938 0)
(0.00100932 0.0790726 0)
(0.00109554 0.072769 0)
(0.00116346 0.0650384 0)
(0.00119666 0.0563857 0)
(0.00122769 0.0467404 0)
(0.00124446 0.0357066 0)
(0.00128678 0.0227397 0)
(0.00127876 0.00851306 0)
(0 -0.00603138 0)
(0 -0.0174005 0)
(0 -0.0233608 0)
(0 -0.0209536 0)
(0 -0.0125265 0)
(0 -0.000894264 0)
(-0.000816694 0.00863691 0)
(-0.000290965 0.0134953 0)
(0.000269379 0.0129784 0)
(0.000548936 0.00721669 0)
(0 -0.000338026 0)
(0 -0.00678536 0)
(0 -0.010218 0)
(0 -0.0109923 0)
(0 -0.010238 0)
(0 -0.00877235 0)
(0 -0.00747835 0)
(0 -0.00688189 0)
(0 -0.00858921 0)
(0 -0.0125405 0)
(0 -0.0194971 0)
(0 -0.0271336 0)
(0 -0.0366145 0)
(0 -0.0469087 0)
(0 -0.0588035 0)
(0 -0.0724424 0)
(0 -0.0861941 0)
(0 -0.0996037 0)
(0 -0.112491 0)
(0 -0.125368 0)
(0 -0.139619 0)
(0 -0.159056 0)
(0 -0.182826 0)
(0 -0.19999 0)
(0 -0.208925 0)
(0 -0.208245 0)
(0 -0.204693 0)
(0 -0.202283 0)
(0 -0.202506 0)
(0 -0.202965 0)
(0 -0.201225 0)
(0 -0.197308 0)
(0 -0.19417 0)
(0 -0.193102 0)
(0 -0.193892 0)
(0 -0.194352 0)
(0 -0.190799 0)
(0 -0.178157 0)
(0 -0.154912 0)
(0 -0.120408 0)
(0 -0.078511 0)
(0 -0.0302412 0)
(9.64845e-05 0.0206005 0)
(0.00240765 0.0713074 0)
(0.00508477 0.119658 0)
(0.00776781 0.161511 0)
(0.00910045 0.194788 0)
(0.00917645 0.218465 0)
(0.00736777 0.233446 0)
(0.00560882 0.243318 0)
(0.00500509 0.251306 0)
(0.00574146 0.255997 0)
(0.0057497 0.254231 0)
(0.00418262 0.248154 0)
(0.00298819 0.244041 0)
(0.00361178 0.243782 0)
(0.00645926 0.243879 0)
(0.0103727 0.239414 0)
(0.0130862 0.228169 0)
(0.0144473 0.211881 0)
(0.014229 0.190246 0)
(0.0123491 0.164304 0)
(0.00909389 0.134331 0)
(0.00530331 0.104247 0)
(0.000497822 0.0818116 0)
(-0.00450572 0.0756373 0)
(-0.00682945 0.0850062 0)
(-0.00502361 0.0985481 0)
(-0.00148277 0.104098 0)
(0.000836639 0.102304 0)
(0.00197566 0.0960768 0)
(0.00254446 0.0891553 0)
(0.00305098 0.0818183 0)
(0.00307132 0.073169 0)
(0.00301175 0.0640088 0)
(0.00284593 0.0542636 0)
(0.00240856 0.043683 0)
(0.00199307 0.0339806 0)
(0.00157374 0.0247718 0)
(0.00128019 0.0167556 0)
(0.00111879 0.010016 0)
(0.000961593 0.00409795 0)
(0 -0.000510067 0)
(0 -0.00455325 0)
(0 -0.00800556 0)
(0 -0.0107101 0)
(0 -0.0135877 0)
(0 -0.0159104 0)
(0 -0.0183565 0)
(0 -0.0213274 0)
(0 -0.0242445 0)
(0 -0.0283006 0)
(0 -0.0327607 0)
(0 -0.0377179 0)
(0 -0.04422 0)
(0 -0.0507513 0)
(0 -0.0580682 0)
(0 -0.0666781 0)
(0 -0.0748153 0)
(0 -0.0843162 0)
(0 -0.0940676 0)
(0 -0.103321 0)
(0 -0.114341 0)
(0 -0.123543 0)
(0 -0.132506 0)
(0 -0.142645 0)
(0 -0.149307 0)
(0 -0.15664 0)
(0 -0.162987 0)
(0 -0.164106 0)
(0 -0.167073 0)
(0 -0.16619 0)
(0 -0.164854 0)
(0 -0.167953 0)
(0 -0.158226 0)
(0 -0.148579 0)
(0 -0.137165 0)
(0 -0.120804 0)
(0 -0.109527 0)
(0 -0.0851765 0)
(0 -0.0559614 0)
(0 -0.0316589 0)
(0 -0.00501751 0)
(-0.00402541 0.0221091 0)
(-0.0041206 0.0504587 0)
(-0.00420856 0.0739027 0)
(-0.0043613 0.0997867 0)
(-0.00374044 0.122781 0)
(-0.00328139 0.138318 0)
(-0.00305759 0.153903 0)
(-0.00250072 0.166133 0)
(-0.00177581 0.173773 0)
(-0.00108075 0.175768 0)
(-0.000829777 0.173811 0)
(-0.000840315 0.172917 0)
(-0.000734301 0.172306 0)
(-0.000435042 0.170912 0)
(3.28455e-05 0.166548 0)
(0.000136984 0.15849 0)
)
;
}
frontBack
{
type empty;
}
}
// ************************************************************************* //
| |
728a3cdd897d3e4792c481be2f27538d0a822538 | 99f13d1a4b83277f2dc6c17e4b2a01f3cc4c405e | /src/Mappings/SphereExpMapping.h | 8a1c7febd980f097b414aa1b1b5d750d630e18b1 | [] | no_license | stormraiser/yaoclass20-advanced-computer-graphics-project | 7f86aa4a119872013fcc99f0869991cc73d7dc1c | c73bcd12d75266ef63fe50a5038b2257f5d8e257 | refs/heads/master | 2016-09-15T08:04:35.330720 | 2016-05-23T09:55:00 | 2016-05-23T09:55:00 | 42,011,421 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 228 | h | SphereExpMapping.h | #pragma once
#include "Core/Mapping.h"
class SphereExpMapping: public Mapping{
private:
double c;
int k;
public:
SphereExpMapping(double _c, int _k): c(_c), k(_k){}
double value(const HitInfo &info) const;
};
|
979ea185ff6eeff638578e08a1224322f81dac89 | 5fc3eac5651b2ec83080d78918446b02863f2757 | /proj04/proj04.cpp | b25d41e4ad7310c0c0e52c1cf3bae31ef82d6473 | [] | no_license | funakoshiapi/C-Plus-Projects | 7f25d1b28afed7a1c1bc6fba63e5f20d46458c6f | eb18370ced6177ba5ae9d71c12335ab1b67d68c9 | refs/heads/master | 2022-12-07T04:34:51.451355 | 2020-08-12T17:53:58 | 2020-08-12T17:53:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,342 | cpp | proj04.cpp |
// Readme.. (Project 3 had no comments because I assumed that since the class had no
// coding standards for comments, it was not required. It was only mantioned that it was good practice.
// Can I please have my points back for project 3? )
// Project04
// This source code allows the user to input a string, and get to know what type the
// the inputed string is.
// Makes use of functions and string manipulation.
#include <iostream>
#include <string>
#include <cctype>
#include<cmath>
#include <algorithm>
using std::boolalpha;
using std::cin;
using std::cout;
using std::endl;
using std::isalpha;
using std::isdigit;
using std::string;
// Function Declaration
bool valid_hex(string to_test);
bool valid_octal(string to_test);
bool valid_binary(string to_test);
bool valid_int(string to_test);
bool valid_float( string to_test);
string classify_string(string to_test);
int main()
{
cout << boolalpha;
int testnum;
cin >> testnum;
switch (testnum)
{
case 1:
{
string to_test;
cin >> to_test;
cout << valid_hex(to_test) << endl;
break;
}
case 2:{
string to_test;
cin >> to_test;
cout << valid_octal(to_test) << endl;
break;
}
case 3:{
string to_test;
cin >> to_test;
cout << valid_binary(to_test) << endl;
break;
}
case 4:{
string to_test;
cin >> to_test;
cout << valid_float(to_test) << endl;
break;
}
case 5:{
string to_test;
cin >> to_test;
cout << valid_int(to_test) << endl;
break;
}
case 6:{
string to_test;
cin >> to_test;
cout << classify_string(to_test) << endl;
break;
}
}
}
// Function Definition
bool valid_hex(string to_test)
// will check it the string input is be a hexadecimal number
// returns true if is hexadecimal and false otherwise
{
int size = to_test.size();
// slicing the string in order to check if
// the string starts with the desired numbers or letters
if ((to_test.substr(0, 2) == "0x"))
{
// looping through the string in order to read
// to check if each character is not a digit
string test_1 = to_test.substr(2);
for (int i = 0; i < test_1.size(); i++)
{
char c = test_1[i];
// If the chracter is not a digit then will return false
if (isxdigit(c) == 0)
{
return false;
}
}
}
// accounting for the the negative hexadecimal numbers
else if (to_test.substr(0, 3) == "-0x")
{
string test_2 = to_test.substr(3);
for (int i = 0; i < test_2.size(); i++)
{
char c = test_2[i];
if (isxdigit(c) == 0)
{
return false;
}
}
}
else
{
return false;
}
return true;
}
bool valid_octal(string to_test)
// will check it the string input is be a octal number
// returns true if is octal and false otherwise
{
int size = to_test.size();
// checking if the first index of the string is 0
if ( to_test.substr(0,1) == "0") {
string test_1 = to_test.substr(1);
//cout<< test_1 << endl;
// this loop checks if the string fullfils the requirements for
// octal number
for (int i = 0; i < test_1.size(); i++)
{
char c = test_1[i];
if (isdigit(c) == 0 || (c > '7'))
{
return false;
}
}
}
else if ( to_test.substr(0,2) == "-0") {
string test_2 = to_test.substr(2);
for (int i = 0; i < test_2.size(); i++)
{
char c = test_2[i];
if (isdigit(c) == 0 || ( c >'7'))
{
return false;
}
}
}
else{return false;}
return true;
}
// simillar idea as above was followed for the binary function
bool valid_binary(string to_test){
// will check it the string input is be a binary number
// returns true if is binary and false otherwise
int size = to_test.size();
if ( to_test.substr(0,2) == "0b") {
string test_1 = to_test.substr(2);
//cout<< test_1 << endl;
for (int i = 0; i < test_1.size(); i++)
{
char c = test_1[i];
if (c != '0' && c != '1')
{
return false;
}
}
}
else if ( to_test.substr(0,3) == "-0b") {
string test_2 = to_test.substr(3);
for (int i = 0; i < test_2.size(); i++)
{
char c = test_2[i];
if (c != '0' && c != '1')
{
return false;
}
}
}
else{return false;}
return true;
}
bool valid_int(string to_test)
// will check it the string input is be a int number
// returns true if is int and false otherwise
{
// accounts for the situation were -0, 01, -01 are inputed
if ( to_test.substr(0,2) == "-0" ) {
return false;
}
if ( to_test.substr(0,1) == "0" && to_test.substr(1,1) > "0" ) {
return false;
}
for (int i = 0; i < to_test.size(); i++)
{
char c = to_test[i];
if (isdigit(c) == 0){
if (c == '-' && i == 0){
;
}
else{
return false;
}
if (c == '.') {
return false;
break ;
}
}
}
return true;
}
bool valid_float( string to_test){
// will check it the string input is be a float number
// returns true if is float and false otherwise
if (valid_int (to_test) == true){
return false;
}
else{
int e_count =0;
int dot_count=0;
// the for loop takes track of the number of times "." or "-" appears
for (int i = 0; i < to_test.size(); i++)
{
char c = to_test[i];
if (!isdigit(c)){
if (c =='.') {
//cout<< dot_count<<endl;
dot_count = dot_count+1; // increment each time '.' is found
if (dot_count > 1){ // return false if more then one '.' is found
// cout<< dot_count<<endl;
return false;
}
} else if (c == 'e'){
e_count = e_count+1; // increment each time 'e' is found
if (e_count>1){ // return false if more then one 'e' is found
return false;
}
}
else if (c != '-'){
return false;
}
}
}
}
return true;
}
string classify_string(string to_test){
// will check it the string input is a hex, octal, binary, int or float number
// returns a string containing the type name and returns
//false if is not a hex, octal, binary, int or float number
if (to_test == ""){
return "false";
}
if (to_test == " "){
return"false";
}
if (valid_int (to_test)){
//cout<< "integer"<< endl;
return "int";
}
if ( valid_octal(to_test)){
//cout<<"octal"<<endl;
return "octal";
}
if (valid_float (to_test)){
//cout << "float" <<endl;
return "float";
}
if (valid_binary(to_test)){
// cout<<"binary"<<endl;
return "binary";
}
if ( valid_hex(to_test)){
//cout<<"hex"<<endl;
return"hex";
}
return"false";
} |
0a0e6832ff1ba912236441032f76f5c632874343 | ff0589961076b3449ed49c4fbd3479f732f62151 | /include/CallableTraits.hpp | e09cfcbbbd0cb3ea093236ba02e1711244df9d6a | [] | no_license | juxeii/memoization | 7647b5f628a0dc36fa6bf3f1ee9551f15e41e953 | aa9ebe987b8bbcc7454a237f4c55b3aefcd17dd3 | refs/heads/master | 2023-02-16T22:19:48.100715 | 2021-01-13T08:13:12 | 2021-01-13T08:13:12 | 321,981,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,354 | hpp | CallableTraits.hpp | #pragma once
#include <functional>
#include <tuple>
#include <type_traits>
namespace memoization::details
{
template <typename T>
struct function_components
{
};
template <typename R, typename... Args>
struct function_components<std::function<R(Args...)>>
{
using type = std::tuple<R(Args...), R, std::tuple<std::decay_t<Args>...>>;
};
template <typename T>
using function_components_t = typename function_components<T>::type;
template <typename T, auto I>
using get_function_component_t = std::tuple_element_t<I, function_components_t<T>>;
template <typename T>
using function_signature_t = get_function_component_t<T, 0>;
template <typename T>
using function_result_t = get_function_component_t<T, 1>;
template <typename T>
using function_arguments_t = get_function_component_t<T, 2>;
} // namespace memoization::details
namespace memoization
{
using namespace memoization::details;
template <typename T>
using AsFunction = decltype(std::function{std::declval<T>()});
#if defined(__GNUC__) || defined(__GNUG__)
// CTAD bug in gcc, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98077
#define AS_FUNCTION(T) decltype(std::function{std::declval<T>()})
#else
#define AS_FUNCTION(T) AsFunction<T>
#endif
template <typename T, typename = void>
struct is_callable : std::false_type
{
};
template <typename T>
struct is_callable<T, std::void_t<AS_FUNCTION(T)>> : std::true_type
{
};
template <typename T>
inline constexpr auto is_callable_v = is_callable<T>::value;
template <typename T>
struct callable_to_function
{
static_assert(is_callable_v<T>);
using type = AS_FUNCTION(T);
};
template <typename T>
using callable_to_function_t = typename callable_to_function<T>::type;
template <typename T>
struct callable_result
{
using type = function_result_t<callable_to_function_t<T>>;
};
template <typename T>
using callable_result_t = typename callable_result<T>::type;
template <typename T>
struct callable_arguments
{
using type = function_arguments_t<callable_to_function_t<T>>;
};
template <typename T>
using callable_arguments_t = typename callable_arguments<T>::type;
} // namespace memoization
|
37351fe42a29c85edfdb5d4d137bff9e7aa37590 | d9008a6695469f0c1283439e9cd9fa360e1d8371 | /Modeling.hpp | cf41b0b1dc9d91a34f9901835f5502d4f7cb566d | [] | no_license | bobosky/MertonCreditModel | eb2ee55ad1a7f3bd373b72f4806ace9de22af649 | 42694b664c004314bbd40197adcf5d702c0fb07d | refs/heads/master | 2022-02-04T21:21:39.000372 | 2018-10-01T17:10:25 | 2018-10-01T17:10:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 816 | hpp | Modeling.hpp | //
// Modeling.hpp
// MoodysPractice
//
// Created by David Donnelly II on 9/29/18.
// Copyright © 2018 DavidDonnellyII. All rights reserved.
//
#ifndef Modeling_hpp
#define Modeling_hpp
#include <vector>
#include <stdio.h>
#include "DataHandle.hpp"
using namespace std;
struct Simulation{
int iterations;
int years;
double startMean;
double MeanVar;
double euro_diff_mean;
double euro_diff_var;
};
class MonteCarlo{
public:
MonteCarlo(Simulation, vector<Firm>);
Simulation Simu;
double* Run();
vector<Firm> FirmsList;
double MertonCalc(Firm, int, int);
private:
double* American_GDP_Generator();
double* Euro_GDP_Generator(double*);
double* SingleIteration();
double d2Calc(Firm, int, int);
double phi(double);
};
#endif /* Modeling_hpp */
|
227893b3e8cea49f0e807a8bfd53d1f3a07deea5 | ba3b353b77dcf3631919ba1fe595c764ee0a9358 | /Source/FactoryGame/Private/FGSkySphere.cpp | 555576abe6c7cd17d392e13f9357e7128ae4050b | [] | no_license | TL044CN/SF_Mod_RefinedPower | ec78e93ee6f5414013edff393817ef1094fb4afa | ccaed30e2e96fbc17bb30409b9a86b3540004b1d | refs/heads/master | 2023-01-25T03:41:52.333970 | 2020-11-22T18:21:29 | 2020-11-22T18:21:29 | 315,099,080 | 0 | 0 | null | 2020-11-22T18:21:30 | 2020-11-22T17:56:10 | null | UTF-8 | C++ | false | false | 1,991 | cpp | FGSkySphere.cpp | // This file has been automatically generated by the Unreal Header Implementation tool
#include "FGSkySphere.h"
#if WITH_EDITOR
void AFGSkySphere::PostEditChangeChainProperty( FPropertyChangedChainEvent& propertyChangedEvent){ }
#endif
#if WITH_EDITOR
float AFGSkySphere::GetViewMinInput() const{ return float(); }
float AFGSkySphere::GetViewMaxInput() const{ return float(); }
void AFGSkySphere::SetViewRange(float min, float max){ }
#endif
#if WITH_EDITOR
void AFGSkySphere::SetupPreviewDelegate(){ }
#endif
#if WITH_EDITORONLY_DATA
#endif
AFGSkySphere::AFGSkySphere() : Super() {
this->mSkyLightIntensity.EditorCurveData.PreInfinityExtrap = RCCE_Constant; this->mSkyLightIntensity.EditorCurveData.PostInfinityExtrap = RCCE_Constant; this->mSkyLightIntensity.EditorCurveData.DefaultValue = 5;
this->mOcclusionTintColor.ColorCurves[0].PreInfinityExtrap = RCCE_Constant; this->mOcclusionTintColor.ColorCurves[0].PostInfinityExtrap = RCCE_Constant; this->mOcclusionTintColor.ColorCurves[0].DefaultValue = 0;
this->mStarBrightness.EditorCurveData.PreInfinityExtrap = RCCE_Constant; this->mStarBrightness.EditorCurveData.PostInfinityExtrap = RCCE_Constant; this->mStarBrightness.EditorCurveData.DefaultValue = 0.200000002980232;
this->mSkyLightColor.ColorCurves[0].PreInfinityExtrap = RCCE_Constant; this->mSkyLightColor.ColorCurves[0].PostInfinityExtrap = RCCE_Constant; this->mSkyLightColor.ColorCurves[0].DefaultValue = 1;
}
void AFGSkySphere::PostActorCreated(){ Super::PostActorCreated(); }
void AFGSkySphere::PostLoad(){ Super::PostLoad(); }
void AFGSkySphere::BeginDestroy(){ Super::BeginDestroy(); }
void AFGSkySphere::UpdatePreview_Implementation(){ }
FLinearColor AFGSkySphere::GetColorCurveValue(const FRuntimeCurveLinearColor& curve, float time){ return FLinearColor(); }
float AFGSkySphere::GetFloatCurveValue(const FRuntimeFloatCurve& curve, float time){ return float(); }
void AFGSkySphere::GetSkySphereSettings(float atTime, FSkySphereSettings& out_settings) const{ }
|
8516c4a38536ba641c4cda3b8b4ec671991f3c4a | 319e7eb93d8ec1b9e0db8c829e30f2093718bd0f | /Arduino/libraries/RF24-master/arch/BBB/spi.cpp | 83750a201348e0fb51348b40cb0c77f146588cc5 | [
"MIT"
] | permissive | Petermarcu/Projects | 6644a7a6992fdeec522bddd6d9f0a0de4216df4d | 54e3a9854b18dc8327d1f5e482c09b316a69a388 | refs/heads/master | 2022-04-28T11:39:59.388617 | 2020-10-21T04:01:38 | 2020-10-21T04:01:38 | 32,695,728 | 5 | 1 | MIT | 2022-04-12T00:08:35 | 2015-03-22T21:12:03 | C# | UTF-8 | C++ | false | false | 3,898 | cpp | spi.cpp | /*
* File: spi.cpp
* Author: Purinda Gunasekara <purinda@gmail.com>
*
* Created on 24 June 2012, 11:00 AM
*
* Inspired from spidev test in linux kernel documentation
* www.kernel.org/doc/Documentation/spi/spidev_test.c
*/
#include "spi.h"
SPI::SPI() {
}
void SPI::begin(int busNo){
//BBB:
if(!busNo){
this->device = "/dev/spidev1.0";;
}else{
this->device = "/dev/spidev1.1";;
}
//RPi:
/* if(!busNo){
this->device = "/dev/spidev0.0";;
}else{
this->device = "/dev/spidev0.1";;
}*/
this->bits = 8;
// this->speed = 24000000; // 24Mhz - proly doesnt work
// this->speed = 16000000; // 16Mhz
this->speed = 8000000; // 8Mhz
// this->speed = 4000000;
// this->speed = 2000000; // 2Mhz
this->mode=0;
//this->mode |= SPI_NO_CS;
this->init();
}
void SPI::init()
{
int ret;
this->fd = open(this->device.c_str(), O_RDWR);
if (this->fd < 0)
{
perror("can't open device");
abort();
}
/*
* spi mode
*/
ret = ioctl(this->fd, SPI_IOC_WR_MODE, &this->mode);
if (ret == -1)
{
perror("can't set spi mode");
abort();
}
ret = ioctl(this->fd, SPI_IOC_RD_MODE, &this->mode);
if (ret == -1)
{
perror("can't set spi mode");
abort();
}
/*
* bits per word
*/
ret = ioctl(this->fd, SPI_IOC_WR_BITS_PER_WORD, &this->bits);
if (ret == -1)
{
perror("can't set bits per word");
abort();
}
ret = ioctl(this->fd, SPI_IOC_RD_BITS_PER_WORD, &this->bits);
if (ret == -1)
{
perror("can't set bits per word");
abort();
}
/*
* max speed hz
*/
ret = ioctl(this->fd, SPI_IOC_WR_MAX_SPEED_HZ, &this->speed);
if (ret == -1)
{
perror("can't set max speed hz");
abort();
}
ret = ioctl(this->fd, SPI_IOC_RD_MAX_SPEED_HZ, &this->speed);
if (ret == -1)
{
perror("can't set max speed hz");
abort();
}
}
uint8_t SPI::transfer(uint8_t tx_)
{
int ret;
uint8_t tx[1] = {tx_};
uint8_t rx[1];
struct spi_ioc_transfer tr = {
tr.tx_buf = (unsigned long)&tx[0],
tr.rx_buf = (unsigned long)&rx[0],
tr.len = 1,//ARRAY_SIZE(tx),
tr.delay_usecs = 0,
tr.cs_change=1,
tr.speed_hz = this->speed,
tr.bits_per_word = this->bits,
};
//Note: On RPi, for some reason I started getting 'bad message' errors, and changing the struct as below fixed it, until an update...??
//
/* // One byte is transfered at once
uint8_t rx[ARRAY_SIZE(tx)] = {0};
struct spi_ioc_transfer tr;
tr.tx_buf = (unsigned long)tx;
tr.rx_buf = (unsigned long)rx;
tr.len = ARRAY_SIZE(tx);
tr.delay_usecs = 0;
tr.cs_change = 1;
tr.speed_hz = this->speed;
tr.bits_per_word = this->bits;*/
ret = ioctl(this->fd, SPI_IOC_MESSAGE(1), &tr);
if (ret < 1)
{
perror("can't send spi message");
abort();
}
return rx[0];
}
//void bcm2835_spi_transfernb(char* tbuf, char* rbuf, uint32_t len)
void SPI::transfernb(char* tbuf, char* rbuf, uint32_t len)
{
int ret;
struct spi_ioc_transfer tr = {
tr.tx_buf = (unsigned long)tbuf,
tr.rx_buf = (unsigned long)rbuf,
tr.len = len,//ARRAY_SIZE(tx),
tr.cs_change=1,
tr.delay_usecs = 0,
tr.speed_hz = this->speed,
tr.bits_per_word = this->bits,
};
//Note: On RPi, for some reason I started getting 'bad message' errors, and changing the struct as below fixed it, until an update...??
// One byte is transfered at once
//uint8_t tx[] = {0};
//tx[0] = tx_;
//uint8_t rx[ARRAY_SIZE(tx)] = {0};
/*struct spi_ioc_transfer tr;
tr.tx_buf = (unsigned long)tbuf;//(unsigned long)tx;
tr.rx_buf = (unsigned long)rbuf;//(unsigned long)rx;
tr.len = len;//ARRAY_SIZE(tx);
tr.delay_usecs = 0;
tr.cs_change = 1;
tr.speed_hz = this->speed;
tr.bits_per_word = this->bits;*/
ret = ioctl(this->fd, SPI_IOC_MESSAGE(1), &tr);
if (ret < 1)
{
perror("can't send spi message");
abort();
}
//return rx[0];
}
void SPI::transfern(char* buf, uint32_t len)
{
transfernb(buf, buf, len);
}
SPI::~SPI() {
close(this->fd);
}
|
1c554c9ca6991541d8d2cd8fd0bfdeca3f053681 | de14a5d137287ec012d1644a15bc62da7e97d321 | /org.glite.wms-utils.jobid/src/jobid/JobIdExceptions.cpp | 6be40b7db15a2dceabedae6c82a6c88e21d19ebd | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | CESNET/glite-legacy | 209a5c01feccf69568fe850c76b0c91e036e6346 | 0ee8f0dea3fa9b316c7e98bbd002744995741644 | refs/heads/master | 2023-09-02T23:02:12.960080 | 2013-01-18T14:57:01 | 2013-01-18T14:57:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,595 | cpp | JobIdExceptions.cpp | /* **************************************************************************
* filename : JobIdExecptions.cpp
* author : Alessandro Maraschini <alessandro.maraschini@datamat.it>
* copyright : (C) 2002 by DATAMAT
***************************************************************************/
#include "glite/wmsutils/jobid/JobIdExceptions.h"
namespace glite {
namespace wmsutils {
namespace jobid {
using namespace std;
using namespace glite::wmsutils::exception;
/*****************************
* JobIdException
*****************************/
JobIdException::JobIdException (const string& file,
int line,
const string& method,
int code,
const string& exception_name)
: Exception(file, line, method, code, exception_name)
{
}
/*****************************
* WrongIdException
*****************************/
WrongIdException::WrongIdException(const string& file,
int line,
const string& method,
int code )
: JobIdException(file, line, method, code,
"WrongIdException")
{
error_message = "Wrong Field caught while parsing Job Id" ;
}
/*****************************
* EmptyIdException
*****************************/
EmptyIdException::EmptyIdException(const string& file,
int line,
const string& method,
int code ,
const string& field )
: JobIdException(file, line, method, code,
"EmptyIdException")
{
error_message = "Unable to retrieve " + field + ": the instance has not been initialized yet";
}
} // namespace jobid
} // namespace wmsutils
} // namespace glite
|
ac81431b16951e2e16e1fa41eae115bac1785b51 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /Codes/AC/1114.cpp | 2e70c6f5b358a5e706a2a064bc1a1ace44a7ec74 | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,114 | cpp | 1114.cpp | #define __USE_MINGW_ANSI_STDIO 0
#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define endl '\n'
#define ff first
#define ss second
#define mod 1000000007
#define pb push_back
#define mp make_pair
#define int long long
#define all(a) a.begin(), a.end()
#define inf (1LL<<61)
#define ull unsigned long long
#define debug1(x) cerr << #x << ": " << x <<'\n'
#define debug2(x, y) cerr << #x << ": " << x << '\t' << #y << ": " << y <<'\n'
#define debug3(x, y, z) cerr << #x << ": " << x << '\t' << #y << ": " << y << '\t' << #z << ": " << z <<'\n'
using namespace std;
int dx[]={1,0,-1,0};int dy[]={0,1,0,-1}; //4 Direction
//int dx[]={1,1,0,-1,-1,-1,0,1};int dy[]={0,1,1,1,0,-1,-1,-1};//8 direction
int gcd(int x,int y)
{
if(y==0)
return x;
else
return gcd(y,x%y);
}
int expo(int n,int m,int p) //modULAR EXPONENTIATION
{
int r=1;
n=n%p;
while(m>0)
{
if(m%2)
r=(r*n)%p;
n=(n*n)%p;
m=m/2;
}
return r%p;
}
bool isPrime(int n)
{
// Corner cases
if (n <= 1) return false;
if (n <= 3) return true;
// This is checked so that we can skip
// middle five numbers in below loop
if (n%2 == 0 || n%3 == 0) return false;
for (int i=5; i*i<=n; i=i+6)
if (n%i == 0 || n%(i+2) == 0)
return false;
return true;
}
int32_t main()
{
IOS;
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
/********************* Code starts here ***********************/
int n,d;
cin>>n>>d;
vector<pair<int,int> >v(n);
for(int i=0;i<n;i++)
{
cin>>v[i].ff>>v[i].ss;
}
sort(all(v));
int ans=0;
int j=0;
ans=v[j].ss;
int m=ans;
for(int i=1;i<n;i++)
{
while(abs(v[i].ff-v[j].ff)>=d)
{
m=m-v[j].ss;
j++;
}
m=m+v[i].ss;
ans=max(ans,m);
}
cout<<ans<<endl;
}
|
240c7d749716722f2c3ac0a9e43d9c1752f023fd | 2928bee4e6917946e058ecf0415d1847ef52a4db | /DAQSys.h | a6fc2b0f7c0013ccc47d9792da35295d51727e5d | [] | no_license | thinkexist1989/ThrustExpr | d12915dc6db31c54b96fa2f35feeaf4e8db77a51 | 25541d2adfed8a1f76382815983f006f5ec166f1 | refs/heads/master | 2021-01-20T02:42:24.057633 | 2017-04-26T05:59:30 | 2017-04-26T05:59:30 | 89,443,704 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,771 | h | DAQSys.h | // DAQSys.h: interface for the DAQSys class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DAQSYS_H__7532000D_2E31_4585_AB12_BB18D4864927__INCLUDED_)
#define AFX_DAQSYS_H__7532000D_2E31_4585_AB12_BB18D4864927__INCLUDED_
#include "NIDAQmx.h"
//#include <nidaqex.h>
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define NUM_CHANNELS 7
#define ERROR_MESSAGE_SIZE 2048
#define SCAN_BUFFER_SIZE 280
#ifdef _AFXDLL
class DAQException : public CException
#else
class AFX_NOVTABLE DAQException : public CException
#endif
{
public:
DAQException(CString new_err_msg="", BOOL bAutoDelete=true) : CException(bAutoDelete)
{
err_msg = new_err_msg;
err_no = 0;
}
DAQException(int new_err_no, BOOL bAutoDelete = true) : CException(bAutoDelete)
{
err_no = new_err_no;
CString integer;
integer.Format("%d",err_no);
char acErrMessage[ERROR_MESSAGE_SIZE];
DAQmxGetErrorString( new_err_no, acErrMessage, ERROR_MESSAGE_SIZE );
err_msg = acErrMessage;
}
CString GetErrMsg() { return err_msg; }
int GetErrNo() { return err_no; }
private:
CString err_msg;
int err_no;
};
/* this is used for development only, so that a DAQ is not required to test the GUI */
#define TEST_WITHOUT_DAQ 0
class DAQSys
{
public:
/* this method is used to setup the DAQ during object construction of when changed in the Program Options */
int init(CString changeDeviceName, short firstChannel, double scanRate);
/* scans all 7 gauges, or returns last scan if boolean is true, returns 0 for success or -1 for saturation */
int ScanGauges(double voltages[7], bool useStoredValues);
/* return the device number of the DAQ - originally defaults to 1 */
CString getDeviceName() { return m_cstrDeviceName; }
/* return the first channel to be scanned by the DAQ - originally defaults to 1 */
short getFirstChannel() { return firstChannel; }
/* returns the scan rate to be used when scanning the gauges */
double getScanRate() { return scanRate; }
DAQSys();
virtual ~DAQSys();
private:
TaskHandle m_th; /* The task handle to the NI-DAQmx scan. */
double range;
bool bipolarity;
double scanRate;
CString m_cstrDeviceName;
short firstChannel;
unsigned short numChannels;
long scanBuffer[SCAN_BUFFER_SIZE]; /*memory buffer used by scanning operation*/
unsigned int scanCount; /*the number of scans in a reading. averaged out to get
the final result*/
double m_dUpperSaturation; /* The upper level past which a gauge is considered
saturated. */
double m_dLowerSaturation; /* The lower level past which a gauge is considered
saturated. */
#if TEST_WITHOUT_DAQ
bool random_gen;
#endif
};
#endif // !defined(AFX_DAQSYS_H__7532000D_2E31_4585_AB12_BB18D4864927__INCLUDED_)
|
c4ab40e05b65448c21b1dde55b645f4af29817f6 | 6409b6a2699deb10488605525c24986b969f9922 | /Assignments/demo/CLL/CLL.h | 575a2a8c05972a5cec12418f06346723def6d555 | [] | no_license | prijuly2000/Data-Structure | 7745332f9b8d851139b04d99a5b4d2fb274b8b73 | caf2737d7912ea03f64a233f49f9bdf6b47933a4 | refs/heads/master | 2016-09-06T08:02:36.107609 | 2015-08-14T00:10:54 | 2015-08-14T00:10:54 | 40,687,301 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 136 | h | CLL.h | #include"Node.h"
class CLL
{
Node *last;
public:
CLL();
void insertpos(int,int);
void deletepos(int);
void display();
~CLL();
}; |
59bcf6a258eb35f7abcf7230ea58b0125e15e692 | b18ea10bd7dd81a705b0b9a19b15da73393e5ed4 | /WinCtrlSolution/VirtualGridDemo/GridPropertiesSheet.h | 4b25954aa385ffec0212732bb5fc13b5c9bbefd0 | [] | no_license | yedaoq/YedaoqCodeSpace | 90f56c37fbb0ba2e5b1d0854714acc531e3d9f42 | 523eb2eab61c958abba5dd5eeeb5944dee43b9a9 | refs/heads/master | 2021-01-02T09:52:25.642868 | 2018-07-03T12:36:44 | 2018-07-03T12:36:44 | 2,127,456 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,616 | h | GridPropertiesSheet.h | #if !defined(AFX_GRIDPROPERTIESSHEET_H__4C5D8673_8907_4B70_A717_929D9053E79D__INCLUDED_)
#define AFX_GRIDPROPERTIESSHEET_H__4C5D8673_8907_4B70_A717_929D9053E79D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// GridPropertiesSheet.h : header file
//
#include "VirtualGridCtrl.h"
#include "ColumnsPage.h"
#include "HeadersPage.h"
#include "CodeGenPage.h"
/////////////////////////////////////////////////////////////////////////////
// CGridPropertiesSheet
class CGridPropertiesSheet : public CPropertySheet
{
DECLARE_DYNAMIC(CGridPropertiesSheet)
// Construction
public:
CGridPropertiesSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
CGridPropertiesSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
// Attributes
public:
CColumnsPage m_columnsPage;
CHeadersPage m_headersPage;
CCodeGenPage m_codeGenPage;
CVirtualGridCtrl *m_pGrid;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CGridPropertiesSheet)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CGridPropertiesSheet();
// Generated message map functions
protected:
//{{AFX_MSG(CGridPropertiesSheet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_GRIDPROPERTIESSHEET_H__4C5D8673_8907_4B70_A717_929D9053E79D__INCLUDED_)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.