blob: 5fd1ad7d77883d8f7b409f7896ed1bcc86019997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module Raylib
#attr_accessor :main_loop
#def call_main_loop
# self.main_loop.call
#end
def self.window_open(&block)
self.main_loop = block
self.execute_main_loop
end
end
|