07-05-2023, 09:16 PM
Great Job! You code is clean and easy to read. I really need to get better at doing this kind of code.
One tip. In QB64 you don't have to use the call command.
I wrote a lot of code with the CALL command before realizing I didn't need it.
One tip. In QB64 you don't have to use the call command.
Code: (Select All)
' Instead of doing this
call foo(x, y)
' You can do this, just remove the parenthesis
foo x, y
I wrote a lot of code with the CALL command before realizing I didn't need it.
2D physics engine https://github.com/mechatronic3000/fzxNGN
Untitled Rouge-like https://github.com/mechatronic3000/Untitled-Rougelike
QB Pool https://github.com/mechatronic3000/QBPool
Untitled Rouge-like https://github.com/mechatronic3000/Untitled-Rougelike
QB Pool https://github.com/mechatronic3000/QBPool