qvmfrotation.cpp

来自「Windows上的MUD客户端程序」· C++ 代码 · 共 17 行

CPP
17
字号
#include <QvMFRotation.h>

QV_MFIELD_OBJ_SOURCE(QvMFRotation, QvOrientation, 1);
QV_MFIELD_ASSIGN(QvMFRotation, QvOrientation, 1);

QvBool
QvMFRotation::read1Value(QvInput *in, int index)
{
	// Reading not implemented yet
	return   (in->read(values[index].axis[0]) &&
	    in->read(values[index].axis[1]) &&
	    in->read(values[index].axis[2]) &&
	    in->read(values[index].angle));

    return FALSE;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?