summaryrefslogtreecommitdiff
path: root/rectangles.go
blob: c0c29d5e286693bb45666d437a22f76778338a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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
}