diff options
| author | Franklin Wei <git@fwei.tk> | 2016-03-29 16:03:47 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2016-03-29 16:03:47 -0400 |
| commit | 281bb06f483f571bdbb8e314a5bd951ed671e6d8 (patch) | |
| tree | cfc7e2a4027574da7266ed61a1d55007d975518c /src/world.h | |
| parent | 8426162eb0a463118e77e3fe32b96552565584a1 (diff) | |
| download | netcosm-281bb06f483f571bdbb8e314a5bd951ed671e6d8.zip netcosm-281bb06f483f571bdbb8e314a5bd951ed671e6d8.tar.gz netcosm-281bb06f483f571bdbb8e314a5bd951ed671e6d8.tar.bz2 netcosm-281bb06f483f571bdbb8e314a5bd951ed671e6d8.tar.xz | |
fix things
Diffstat (limited to 'src/world.h')
| -rw-r--r-- | src/world.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/world.h b/src/world.h index 7749a63..50f9769 100644 --- a/src/world.h +++ b/src/world.h @@ -48,11 +48,11 @@ void world_save(const char *fname); /* loads the world from disk */ bool world_load(const char *fname, const struct roomdata_t *data, size_t data_sz, const char *world_name); -/** verbs **/ +/** global verbs **/ bool world_verb_add(struct verb_t*); bool world_verb_del(struct verb_t*); -/* gets the map of verbs */ +/* gets the map of global verbs */ void *world_verb_map(void); void world_free(void); |