summaryrefslogtreecommitdiffstats
path: root/src/char/char.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/char/char.h')
-rw-r--r--src/char/char.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/char/char.h b/src/char/char.h
index 02bddaa..f5054d5 100644
--- a/src/char/char.h
+++ b/src/char/char.h
@@ -54,7 +54,6 @@ struct mf_char {
int (*update)(struct mf_char *);
int (*step)(struct mf_char *);
int (*turn)(struct mf_char *);
- void (*collide)(struct mf_char *);
int (*render)(struct mf_char *, SDL_Renderer *);
void (*destroy)(struct mf_char *);
};
@@ -71,7 +70,6 @@ mf_char_new(size_t size);
c->update = &_mf_##name##_update; \
c->step = &_mf_##name##_step; \
c->turn = &_mf_##name##_turn; \
- c->collide = &_mf_##name##_collide; \
c->render = &_mf_##name##_render; \
c->destroy = &_mf_##name##_destroy; \
t_c = (struct mf_##name *) c; \