Add Button controls to bindings

This commit is contained in:
Aly 2021-04-02 15:50:45 -07:00
parent 73c1a485fb
commit c17e9190d0
2 changed files with 4 additions and 0 deletions

View File

@ -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"

View File

@ -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"