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

12 lines
187 B
Standard ML
Raw Normal View History

2024-12-13 22:48:34 +00:00
signature INPUT_MSG =
sig
datatype t =
RESIZE_WINDOW of {width: int, height: int}
end
structure InputMsg =
struct
datatype t =
RESIZE_WINDOW of {width: int, height: int}
end