summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2013-03-25 13:48:04 +0100
committerBardur Arantsson <bardur@scientician.net>2013-09-27 14:46:41 +0200
commit3f0417be80c0cd9bae1d2aa9a81bc0bcc9ef4841 (patch)
tree24f35798388c200ac15f38414835cd0e0e53fc40 /src/types.h
parentd777849861081855a9fdc3a6c71ef9510884190e (diff)
Remove monster_mind
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/types.h b/src/types.h
index f0cdec0f..2339a9ce 100644
--- a/src/types.h
+++ b/src/types.h
@@ -836,22 +836,6 @@ struct object_type
/*
- * Monster mind, use for skills and such
- */
-typedef struct monster_mind monster_mind;
-struct monster_mind
-{
- /*
- * Without this, bcc can't compile because it does not
- * allow empty structure. Remove this when you add some
- * variables to this structure. -- Kusunose
- */
- byte dummy;
-};
-
-
-
-/*
* Monster information, for a specific monster.
*
* Note: fy, fx constrain dungeon size to 256x256
@@ -910,8 +894,6 @@ struct monster_type
s16b possessor; /* Is it under the control of a possessor ? */
monster_race *sr_ptr; /* Does it have a specific race(not in r_info) */
-
- monster_mind *mind; /* Does it have a mind? */
};