25 lines
436 B
Org Mode
25 lines
436 B
Org Mode
* Inbox
|
|
** [2026-07-25 Sat 14:06] Level Design
|
|
- player (helps animal)
|
|
- save animal (and bring it back)
|
|
- Stage changes after saving animal to get back
|
|
** Diagrams
|
|
#+begin_src dot :file docs/entities.svg :results file graphics
|
|
digraph {
|
|
//entities
|
|
player;
|
|
animal;
|
|
|
|
// actions
|
|
node [shape="box"];
|
|
save_animal;
|
|
interact_with_env;
|
|
interact_with_anim;
|
|
use_item;
|
|
escape_player;
|
|
}
|
|
#+end_src
|
|
|
|
#+RESULTS:
|
|
[[file:docs/entities.svg]]
|