Moved nothing() to MIA.

This commit is contained in:
Steve 2018-02-03 18:32:12 +00:00
parent 3d2000e818
commit d3db893190
4 changed files with 6 additions and 6 deletions

View File

@ -23,10 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
static int isBlockedByMap(Entity *src, Entity *dest);
static int isBlockedByEntities(Entity *src, Entity *dest);
void nothing(void)
{
}
void lookForPlayer(void)
{

View File

@ -21,7 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../common.h"
extern int isSolid(int x, int y);
extern int lineIntersectsRect(SDL_Rect r, int x1, int y1, int x2, int y2);
extern Entity **getAllEntsWithin(int x, int y, int w, int h, Entity *ignore);
extern int lineRectIntersection(int x1, int y1, int x2, int y2, SDL_Rect *r);

View File

@ -23,6 +23,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
static void init(void);
static void reset(void);
static void tick(void);
static void nothing(void);
static void touch(Entity *other);
static void preTeleport(void);
static void teleport(void);
@ -151,6 +152,11 @@ static void teleport(void)
}
}
static void nothing(void)
{
}
static void load(cJSON *root)
{
MIA *m;

View File

@ -22,7 +22,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../../json/cJSON.h"
extern Sprite *getSprite(char *name);
extern void nothing(void);
extern void addMIATeleportStars(float x, float y);
extern void addTeleportStars(Entity *e);
extern void setGameplayMessage(int type, char *format, ...);