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

16 lines
333 B
Standard ML
Raw Normal View History

signature DRAW_MESSAGE =
sig
2024-07-31 22:25:15 +01:00
datatype t =
DRAW_BUTTON of Real32.real vector
| DRAW_TRIANGLES_AND_RESET_BUTTONS of Real32.real vector
| NO_DRAW
end
structure DrawMessage :> DRAW_MESSAGE =
2024-07-31 22:25:15 +01:00
struct
datatype t =
DRAW_BUTTON of Real32.real vector
| DRAW_TRIANGLES_AND_RESET_BUTTONS of Real32.real vector
| NO_DRAW
end