home projects git about
1 2 3 4 5 6 7 8 9 10
require 'honey.std' honey.glfw.Init() local window = honey.Window(640, 480, "geometry") while not window:shouldClose() do print(window:getSize()) honey.glfw.PollEvents() end