Add state.ml

master
Fabien Freling 2019-05-12 11:56:31 +02:00
parent a206b9d7ca
commit a17a03aaef
1 changed files with 9 additions and 0 deletions

9
src/core/state.ml Normal file
View File

@ -0,0 +1,9 @@
(* State of the world, contains all the required information at any point *)
type t = {
cartridge : option Cartridge.t;
}
(* Global reference *)
let state = ref {
cartridge = None
}