16 lines
191 B
Go
16 lines
191 B
Go
|
package bloob
|
||
|
|
||
|
type Settings struct {
|
||
|
WindowSize Vec2i
|
||
|
Scale int
|
||
|
TargetFps int
|
||
|
Title string
|
||
|
}
|
||
|
|
||
|
type Bloob struct {
|
||
|
MousePos Vec2i
|
||
|
Cursor *Image
|
||
|
}
|
||
|
|
||
|
var DefaultCursor *Image
|