10 lines
185 B
Standard ML
10 lines
185 B
Standard ML
signature DRAW_MESSAGE =
|
|
sig
|
|
datatype t = DRAW_BUTTON of Real32.real vector
|
|
end
|
|
|
|
structure DrawMessage :> DRAW_MESSAGE =
|
|
struct
|
|
datatype t = DRAW_BUTTON of Real32.real vector
|
|
end
|