summaryrefslogtreecommitdiff
path: root/rectangles.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-09 14:59:37 -0500
committerPietro Gagliardi <[email protected]>2014-02-09 14:59:37 -0500
commit3482c9c541210dbf0e7bdd5dbf2c6372d5d55162 (patch)
tree8d9595b9c9ce22ed823a1f696a24eb9820aaa100 /rectangles.go
parentecc00bd1f5cb5d97387f762455c6c51afd0f2fae (diff)
Added the rest of the skeleton necessary for opening a simple window as well as the code to actually open one. Now for custom window procedures!
Diffstat (limited to 'rectangles.go')
-rw-r--r--rectangles.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/rectangles.go b/rectangles.go
new file mode 100644
index 0000000..d503edc
--- /dev/null
+++ b/rectangles.go
@@ -0,0 +1,14 @@
+// 9 february 2014
+package main
+
+import (
+// "syscall"
+// "unsafe"
+)
+
+// TODO merge with common.go?
+
+type POINT struct {
+ X int32
+ Y int32
+}