Skip to content

Commit

Permalink
rename to roguehike
Browse files Browse the repository at this point in the history
  • Loading branch information
postboy committed Feb 8, 2025
1 parent 5621cdc commit f498232
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ngrad
# roguehike

A simple roguelike not-quite game in Clojure. Go climb a virtual mountain here!

Expand Down
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion src/ngrad/core.clj → src/roguehike/core.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns ngrad.core
(ns roguehike.core
(:require [lanterna.screen :as s]
[clojure.string :as string]
[clojure.math :as math]))
Expand Down

0 comments on commit f498232

Please sign in to comment.