Add Button controls to bindings
This commit is contained in:
parent
73c1a485fb
commit
c17e9190d0
2 changed files with 4 additions and 0 deletions
|
@ -8,6 +8,9 @@ module Dolphin = struct
|
|||
external val read_value_32 : int -> int = "ReadValue32"
|
||||
external val read_value_float : int -> float = "ReadValueFloat"
|
||||
external val read_value_string : int -> int -> string = "ReadValueString"
|
||||
|
||||
external val press_button : string -> () = "PressButton"
|
||||
external val release_button : string -> () = "ReleaseButton"
|
||||
|
||||
external val msg_box : string -> int -> () = "MsgBox"
|
||||
external val set_screen_text : string -> () = "SetScreenText"
|
||||
|
|
1
main.ml
1
main.ml
|
@ -5,6 +5,7 @@ open import "./pretty.ml"
|
|||
open import "./dolphin.ml"
|
||||
|
||||
open import "./mem/decode.ml"
|
||||
open import "./mem/int.ml"
|
||||
|
||||
open import "./oot/save_context.ml"
|
||||
|
||||
|
|
Loading…
Reference in a new issue