Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 456 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 456 Bytes

Chess

A two player game of chess implemented in Python.

This implementation of chess uses the below co-ordinate system to control the movement of pieces:

- A  B  C  D  E  F  G  H
8 81 82 83 84 85 86 87 88
7 71 72 73 74 75 76 77 78
6 61 62 63 64 65 66 67 68
5 51 52 53 54 55 56 57 58
4 41 42 43 44 45 46 47 48
3 31 32 33 34 35 36 37 38
2 21 22 23 24 25 26 27 28
1 11 12 13 14 15 16 17 18

NOTE: Currently underwork