annotate 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
rev   line source
rlm@179 1 (ns com.aurellem.gb.saves
rlm@179 2 (:use (com.aurellem.gb gb-driver))
rlm@179 3 (:import [com.aurellem.gb.gb_driver SaveState]))
rlm@179 4
rlm@235 5 (defn pre-wild-battle []
rlm@235 6 (read-state "prepare-for-battle"))
rlm@179 7
rlm@179 8 (defn pre-trainer-battle []
rlm@235 9 (read-state "pre-trainer-battle"))
rlm@235 10
rlm@235 11 (defn rlm-pallet-town []
rlm@235 12 (read-state "rlm-pallet-town"))
rlm@235 13
rlm@235 14
rlm@235 15