summaryrefslogtreecommitdiff
path: root/src/options.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.ml')
-rw-r--r--src/options.ml8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/options.ml b/src/options.ml
new file mode 100644
index 0000000..a57c28b
--- /dev/null
+++ b/src/options.ml
@@ -0,0 +1,8 @@
1type t = { height: int; ascii: bool; marker: Marker.t}
2let default =
3 { height = 14
4 ; ascii = false
5 ; marker = Marker.Point
6 }
7let with_height v c = { c with height = v; }
8let with_marker v c = { c with marker = v; }