One example was playing with libgdx ``` fun someGa...
# announcements
o
One example was playing with libgdx
Copy code
fun someGameEngineFunction(x: Float, y: Float)
fun myFunction(x: Int, y: Int) { 
   …
   someGameEngineFunction(x,y)
}
I noticed early that I’m doing it wrong.