2024-07-30 19:04:36 +01:00
|
|
|
signature DRAW_MESSAGE =
|
|
|
|
|
sig
|
2024-07-31 12:30:12 +01:00
|
|
|
datatype t = DRAW_BUTTON of Real32.real vector
|
2024-07-31 14:52:12 +01:00
|
|
|
| NO_DRAW
|
2024-07-30 19:04:36 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
structure DrawMessage :> DRAW_MESSAGE =
|
2024-07-31 12:30:12 +01:00
|
|
|
struct
|
|
|
|
|
datatype t = DRAW_BUTTON of Real32.real vector
|
2024-07-31 14:52:12 +01:00
|
|
|
| NO_DRAW
|
2024-07-30 19:04:36 +01:00
|
|
|
end
|