diff options
Diffstat (limited to 'area.go')
| -rw-r--r-- | area.go | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +// 16 december 2015 + +package ui + +// #include "ui.h" +import "C" + +// no need to lock this; only the GUI thread can access it +var areas = make(map[*C.uiArea]*Area) + +// TODO. +type Area struct { + Control +} |
