1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix Tetris onkeydown

This commit is contained in:
Alexander Medvednikov
2019-07-21 11:56:03 +02:00
parent 3245377683
commit 975286302c
2 changed files with 5 additions and 18 deletions

View File

@ -1,10 +1,10 @@
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
// that can be found in the LICENSE file.
import rand
import time
import gx
import gx
import gl
import gg
import glfw
@ -114,6 +114,7 @@ fn main() {
window_user_ptr: game
})
}
game.gg.window.set_user_ptr(game) // TODO remove this when `window_user_ptr:` works
game.init_game()
game.gg.window.onkeydown(key_down)
go game.run() // Run the game loop in a new thread