📄 onemove.h
字号:
/****************************************************
Author: S. Senthil kumar
Class Name: OneMove
Purpose: Stores a move.
******************************************************/
struct OneMove
{
int piece; //piece Id
int destx; //Destination square x coordinate
int desty; //Destination square y coordinate
int sourcex; //Source square x coordinate
int sourcey; //Source square y coordinate
//int norm_or_attack;
OneMove *next; //Pointer to itself. Used only in Move Generator
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -