view clojure/com/aurellem/gb/saves.clj @ 308:de172acc5a03

moved the memory manipulation functions out of world.practice and into a separate location, gb.mem-utils, to avoid cyclic load dependency. will adjust the dependent files shortly.
author Dylan Holmes <ocsenave@gmail.com>
date Sat, 31 Mar 2012 04:25:49 -0500
parents 5becef6312b9
children 073600cba28a
line wrap: on
line source
1 (ns com.aurellem.gb.saves
2 (:use (com.aurellem.gb gb-driver))
3 (:import [com.aurellem.gb.gb_driver SaveState]))
5 (defn pre-wild-battle []
6 (read-state "prepare-for-battle"))
8 (defn pre-trainer-battle []
9 (read-state "pre-trainer-battle"))
11 (defn rlm-pallet-town []
12 (read-state "rlm-pallet-town"))