2025-07-06 02:30:15 +01:00
|
|
|
structure FileMessage =
|
2024-08-17 09:46:53 +01:00
|
|
|
struct
|
|
|
|
|
datatype t =
|
2025-08-26 16:15:40 +01:00
|
|
|
SAVE_SQUARES of {output: string, filepath: string}
|
|
|
|
|
| LOAD_SQUARES of {filepath: string}
|
|
|
|
|
| EXPORT_SQUARES of {output: string, filepath: string}
|
|
|
|
|
| EXPORT_COLLISIONS of {output: string, filepath: string}
|
2024-08-17 09:46:53 +01:00
|
|
|
end
|