This website works better with JavaScript
Home
Explore
Help
Sign In
quintor
/
pinguin-server
Watch
2
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
int64 --> int
Ronald Peterson
10 years ago
parent
e70974031f
commit
4807ca1ec8
1 changed files
with
2 additions
and
2 deletions
Split View
Show Diff Stats
2
2
board/coordinate.go
+ 2
- 2
board/coordinate.go
View File
@@ -1,6 +1,6 @@
package board
type Coordinate struct {
- X int
64
- Y int
64
+ X int
+ Y int
}