7 lines
52 B
Go
7 lines
52 B
Go
|
package chess
|
||
|
|
||
|
type Square struct {
|
||
|
X int
|
||
|
Y int
|
||
|
}
|