From 425d3a385b758db6b55f549334470084f35e29c2 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Sun, 26 Apr 2015 22:38:45 -0400 Subject: [PATCH] Some cleanup. --- src/bullet.cpp | 7 ------- src/bullet.h | 1 - 2 files changed, 8 deletions(-) diff --git a/src/bullet.cpp b/src/bullet.cpp index 6e4cf15..4cfcf9b 100644 --- a/src/bullet.cpp +++ b/src/bullet.cpp @@ -177,10 +177,3 @@ object *bullet_getTarget(object *bullet) return &aliens[i]; } - -void bullet_checkMineCollisions(object *bullet) -{ - - - -} diff --git a/src/bullet.h b/src/bullet.h index 1931a5b..9489383 100644 --- a/src/bullet.h +++ b/src/bullet.h @@ -22,6 +22,5 @@ along with this program. If not, see . void bullet_add(object *theWeapon, object *attacker, int y, int dy); object *bullet_getTarget(object *bullet); -void bullet_checkMineCollisions(object *bullet); #endif