Program used to generate cwchess::direction_table[]. More...
#include "sys.h"#include <iostream>#include <iomanip>
Go to the source code of this file.
Classes | |
| struct | Direction |
Functions | |
| int | main () |
Variables | |
| Direction | dirs [] |
Program used to generate cwchess::direction_table[].
Definition in file direction_table.cc.
| Direction dirs[] |
{
{ -1, -1 },
{ 0, -1 },
{ 1, -1 },
{ -1, 0 },
{ 1, 0 },
{ -1, 1 },
{ 0, 1 },
{ 1, 1 }
}
Definition at line 36 of file direction_table.cc.