?? 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 + -