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

9 lines
179 B
Standard ML
Raw Normal View History

structure DrawMsg =
2024-10-06 09:32:56 +01:00
struct
datatype t =
REDRAW_TEXT of Real32.real vector
| REDRAW_CURSOR of Real32.real vector
| REDRAW_BG of Real32.real vector
| YANK of string
2024-10-06 09:32:56 +01:00
end