| 35 | } |
| 36 | |
| 37 | Coral::Array<float> GetMousePosition() |
| 38 | { |
| 39 | Vector2 mousePosition = Input::GetMousePosition(); |
| 40 | return Coral::Array<float>::New({ mousePosition.x, mousePosition.y }); |
| 41 | } |
| 42 | |
| 43 | bool IsControllerConnected(int id) |
| 44 | { |
no outgoing calls
no test coverage detected