aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-06-09 17:31:32 +0200
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-06-09 17:31:32 +0200
commit7c11cb66608d5e335a19820e3392d6a7016cf7ce (patch)
tree604153aa90e7eacbaa8499c5b90354a94ea7ef20
parentfd234aeb2f90757d2115cdabfc488e78d87d0f46 (diff)
parenta6239500f9d2c42e9c6d8922af0aeeea366b2d7e (diff)
downloaddungeon_game-7c11cb66608d5e335a19820e3392d6a7016cf7ce.tar.xz
Merge branch 'master' of https://github.com/EliasFleckenstein03/dungeon_game
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index fbfc863..1f554cd 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Dungeon Game
-A small but flexible dungeon crawler written in C. Needs GCC to compile (`__USE_GNU`). Renders directly into the terminal.
+A small but flexible dungeon crawler written in C. Needs GCC to compile (`__USE_GNU`). Renders directly into the terminal using unicode and escape sequences. Enlarge font size to see what's happening ingame better. The game supports changing the font size or window size of the terminal emulator while running.
You can easily create plugins for the game by putting a new folder into plugins/ with the name of your plugin and then compiling your code into a shared library placed inside this folder named "<plugin name>.so" (`-shared -fpic`).
You might want to include the game.h file from plugins/game/game.h. Have a look into it to see available API. See the existing plugins for examples.