From 514a2df3bee80362739057278b7cde688dfd8e68 Mon Sep 17 00:00:00 2001 From: Steve Date: Tue, 30 Jan 2018 08:29:32 +0000 Subject: [PATCH] Tidied headers. --- src/entities/eyeDroids/eyeDroid.h | 2 -- src/entities/structures/door.h | 1 - src/entities/structures/horizontalDoor.h | 1 - 3 files changed, 4 deletions(-) diff --git a/src/entities/eyeDroids/eyeDroid.h b/src/entities/eyeDroids/eyeDroid.h index 3303a71..e4a8bcd 100644 --- a/src/entities/eyeDroids/eyeDroid.h +++ b/src/entities/eyeDroids/eyeDroid.h @@ -23,11 +23,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. extern void dropCarriedItem(void); extern int getDistance(int x1, int y1, int x2, int y2); extern double randF(void); -extern void throwFleshChunks(float x, float y, int amount); extern void addRandomWeapon(float x, float y); extern float limit(float i, float a, float b); extern void playSound(int snd, int ch); -extern void addBloodDecal(int x, int y); extern void updateObjective(char *targetName); extern int enemyCanSeePlayer(Entity *e); extern void addDefeatedTarget(char *name); diff --git a/src/entities/structures/door.h b/src/entities/structures/door.h index 82a6572..f6644b4 100644 --- a/src/entities/structures/door.h +++ b/src/entities/structures/door.h @@ -20,7 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "../../common.h" -extern void initEntity(Entity *e); extern Sprite *getSprite(char *name); extern void playSound(int snd, int ch); extern void getSlope(int x1, int y1, int x2, int y2, float *dx, float *dy); diff --git a/src/entities/structures/horizontalDoor.h b/src/entities/structures/horizontalDoor.h index 580b448..6a17410 100644 --- a/src/entities/structures/horizontalDoor.h +++ b/src/entities/structures/horizontalDoor.h @@ -20,6 +20,5 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "../../common.h" -extern void initDoor(Entity *e); extern Sprite *getSprite(char *name); extern Structure *createStructure(void);