diff options
author | hanemile <hanemile@protonmail.com> | 2018-10-30 15:11:03 +0100 |
---|---|---|
committer | hanemile <hanemile@protonmail.com> | 2018-10-30 15:11:03 +0100 |
commit | b12c570a8f9217d105a32acd439249cd307d44b0 (patch) | |
tree | 4e281a96ce4c59f267012003c81e57e7a7b615a7 | |
parent | 4f212425e1b4878985c62b33bfccba7f766363a4 (diff) |
coordinate structure
-rw-r--r-- | structs/structs.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/structs/structs.go b/structs/structs.go new file mode 100644 index 0000000..ad47731 --- /dev/null +++ b/structs/structs.go @@ -0,0 +1,6 @@ +package structs + +type coord struct { + x float64 + y float64 +} |