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

12 lines
179 B
Standard ML
Raw Normal View History

signature DRAW_MSG =
sig
datatype t =
REDRAW_TEXT of Real32.real vector
end
structure DrawMsg :> DRAW_MSG =
2024-10-06 09:32:56 +01:00
struct
datatype t =
REDRAW_TEXT of Real32.real vector
end