Newer
Older
naledi / terranostra.lisp
;;;;
;;;; Terra Nostra is a Minecraft-like survival game for the commandline.
;;;;
;;;; This is the main program file.
;;;;
;;;; (c) 2018 Daniel Vedder, MIT license
;;;;


(defvar *debugging* T)

(load "util.lisp")
(load "items.lisp")
(load "biome.lisp")
(load "animals.lisp")
(load "world.lisp")


;; Initialize the random state (which would otherwise not be very random...)
(setf *random-state* (make-random-state t))

(create-world 100 "test.world")