diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-11 09:43:18 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-11 09:43:18 -0500 |
| commit | 271c89bad57c9ab29c1f1b2cce072ffe82918eea (patch) | |
| tree | b14b0f400779a556ce8c47e1b9df06840334fc80 /rectangles.go | |
| parent | 6ae39f57a299508ed02818dc13a51acec883596a (diff) | |
Added window sizing. I think I'm now ready for the wrapper itself.
Diffstat (limited to 'rectangles.go')
| -rw-r--r-- | rectangles.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/rectangles.go b/rectangles.go index d503edc..c0c29d5 100644 --- a/rectangles.go +++ b/rectangles.go @@ -12,3 +12,10 @@ type POINT struct { X int32 Y int32 } + +type RECT struct { + Left int32 + Top int32 + Right int32 + Bottom int32 +} |
