add TinyCloud

This commit is contained in:
cuu
2019-02-07 21:16:41 +08:00
parent 8a205de3ca
commit 021ebc3a3a
6 changed files with 280 additions and 0 deletions

View File

@@ -17,6 +17,17 @@ type WidgetInterface interface {
NewCoord(x,y int)
}
type Coord struct {
X int
Y int
}
type Plane struct {
W int
H int
}
type Widget struct {
PosX int
PosY int