summaryrefslogtreecommitdiff
path: root/rectangles.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-11 13:06:12 -0500
committerPietro Gagliardi <[email protected]>2014-02-11 13:06:12 -0500
commit42229820d2a47594f68d92356f8e8a86133a29f5 (patch)
tree3cd5deef283b4540bae2f75c049a5e69d4e9db20 /rectangles.go
parenta488e3ab36de1d6a329110fbaae44cd5747c854b (diff)
Added _windows.go extensions to all the files in preparation for the library writing.
Diffstat (limited to 'rectangles.go')
-rw-r--r--rectangles.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/rectangles.go b/rectangles.go
deleted file mode 100644
index c0c29d5..0000000
--- a/rectangles.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// 9 february 2014
-package main
-
-import (
-// "syscall"
-// "unsafe"
-)
-
-// TODO merge with common.go?
-
-type POINT struct {
- X int32
- Y int32
-}
-
-type RECT struct {
- Left int32
- Top int32
- Right int32
- Bottom int32
-}