Files
sml-projects/message-types/input-msg.sml

14 lines
218 B
Standard ML
Raw Normal View History

signature INPUT_MSG =
sig
datatype t =
RESIZE_EVENT of int * int
| CHAR_EVENT of char
end
structure InputMsg :> INPUT_MSG =
2024-10-06 09:32:56 +01:00
struct
datatype t =
RESIZE_EVENT of int * int
| CHAR_EVENT of char
2024-10-06 09:32:56 +01:00
end