comparison org/world.org @ 306:7e7f8d6d9ec5

massive spellchecking
author Robert McIntyre <rlm@mit.edu>
date Sat, 18 Feb 2012 10:59:41 -0700
parents 0235c32152af
children a48a75e5876c
comparison
equal deleted inserted replaced
305:19c43ec6958d 306:7e7f8d6d9ec5
47 47
48 ** Header 48 ** Header
49 #+name: header 49 #+name: header
50 #+begin_src clojure :results silent 50 #+begin_src clojure :results silent
51 (ns cortex.world 51 (ns cortex.world
52 "World Creation, abstracion over jme3's input system, and REPL 52 "World Creation, abstraction over jme3's input system, and REPL
53 driven exception handling" 53 driven exception handling"
54 {:author "Robert McIntyre"} 54 {:author "Robert McIntyre"}
55 55
56 (:use (clojure.contrib (def :only (defvar defn-memo)))) 56 (:use (clojure.contrib (def :only (defvar defn-memo))))
57 (:use [clojure.contrib [str-utils :only [re-gsub]]]) 57 (:use [clojure.contrib [str-utils :only [re-gsub]]])
83 83
84 (defvar *app-settings* 84 (defvar *app-settings*
85 (doto (AppSettings. true) 85 (doto (AppSettings. true)
86 (.setFullscreen false) 86 (.setFullscreen false)
87 (.setTitle "Aurellem.") 87 (.setTitle "Aurellem.")
88 ;; The "Send" AudioRenderer supports sumulated hearing. 88 ;; The "Send" AudioRenderer supports simulated hearing.
89 (.setAudioRenderer "Send")) 89 (.setAudioRenderer "Send"))
90 "These settings control how the game is displayed on the screen for 90 "These settings control how the game is displayed on the screen for
91 debugging purposes. Use binding forms to change this if desired. 91 debugging purposes. Use binding forms to change this if desired.
92 Full-screen mode does not work on some computers.") 92 Full-screen mode does not work on some computers.")
93 93