justnukeit/Position.ml

11 lines
99 B
OCaml

type t = {
mutable x : int ;
mutable y : int ;
}
let zero = {
x = 0 ;
y = 0 ;
}