blob: d43645b1ab16643dec10e9a3bf522c22d4301f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}
|