diff --git a/README.md b/README.md index 97b9ad6..491865b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ngrad +# roguehike A simple roguelike not-quite game in Clojure. Go climb a virtual mountain here! diff --git a/project.clj b/project.clj index f98f605..00150fa 100644 --- a/project.clj +++ b/project.clj @@ -1,7 +1,7 @@ -(defproject ngrad "0.1" - :description "A simple roguelike not-quite game. Go for a walk through the city streets!" - :url "https://github.com/postboy/ngrad" +(defproject roguehike "0.1" + :description "A simple roguelike not-quite game. Go climb a virtual mountain here!" + :url "https://github.com/postboy/roguehike" :license {:name "MIT/X11"} :dependencies [[org.clojure/clojure "1.11.0"] [clojure-lanterna "0.9.7"]] - :main ngrad.core) + :main roguehike.core) diff --git a/src/ngrad/core.clj b/src/roguehike/core.clj similarity index 99% rename from src/ngrad/core.clj rename to src/roguehike/core.clj index 93e758e..729b22f 100644 --- a/src/ngrad/core.clj +++ b/src/roguehike/core.clj @@ -1,4 +1,4 @@ -(ns ngrad.core +(ns roguehike.core (:require [lanterna.screen :as s] [clojure.string :as string] [clojure.math :as math]))