WindowSize returns the width and height of the current window
()
| 230 | |
| 231 | // WindowSize returns the width and height of the current window |
| 232 | func WindowSize() (w, h int) { |
| 233 | w = int(WindowWidth()) |
| 234 | h = int(WindowHeight()) |
| 235 | return |
| 236 | } |
| 237 | |
| 238 | // WindowWidth returns the current window width |
| 239 | func WindowWidth() float32 { |
nothing calls this directly
no test coverage detected