diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2022-11-07 03:31:07 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2022-11-07 03:31:07 +1300 |
commit | 525863904e8cb1ce62bbbf407262e5305d6bbc6f (patch) | |
tree | 68c9cfa61a8d807a08be92a328f27412bfdb3abb /src/dialog.mli | |
parent | 95ebd2d6acfa744c5e93287cc6385f4f1359376e (diff) |
visualwall now fully working
Diffstat (limited to 'src/dialog.mli')
-rw-r--r-- | src/dialog.mli | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/dialog.mli b/src/dialog.mli new file mode 100644 index 0000000..29bcf12 --- /dev/null +++ b/src/dialog.mli @@ -0,0 +1,26 @@ + + +(* Programmed by Jedidiah Barber *) +(* Licensed under the Sunset License v1.0 *) + + +val license_text : string + + + +val new_wall : unit -> (int * int * string) option + +val open_file : ?folder:string -> unit -> string option + +val save_file : ?folder:string -> ?name:string -> unit -> string option + +val export_file : ?folder:string -> ?name:string -> unit -> string option + +val colors : fore:(int * int * int) -> back:(int * int * int) -> + ((int * int * int) * (int * int * int)) option + +val modulus : current:int -> int option + +val about : unit -> unit + + |