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

12 lines
191 B
Standard ML
Raw Normal View History

signature DRAW_MESSAGE =
sig
2024-07-31 12:00:07 +01:00
datatype t =
DRAW_BUTTON of Real32.real vector
end
structure DrawMessage :> DRAW_MESSAGE =
struct
2024-07-31 12:00:07 +01:00
datatype t =
DRAW_BUTTON of Real32.real vector
end