summaryrefslogtreecommitdiff
path: root/rectangles.go
blob: d503edcc84530fba1a4c07718d95feb677df2567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 9 february 2014
package main

import (
//	"syscall"
//	"unsafe"
)

// TODO merge with common.go?

type POINT struct {
	X	int32
	Y	int32
}