taisei/src/plrmodes.h
laochailan b16df91ad5 removing SDL_image dependency
taisei now uses plain libpng to load graphics ... and various other changes I don't remember.
2011-05-06 17:09:43 +02:00

19 lines
No EOL
394 B
C

/*
* This software is licensed under the terms of the MIT-License
* See COPYING for further information.
* ---
* Copyright (C) 2011, Lukas Weber <laochailan@web.de>
*/
#ifndef PLRMODES_H
#define PLRMODES_H
#include "enemy.h"
#include "projectile.h"
void youmu_opposite_draw(Enemy *e, int t);
void youmu_opposite_logic(Enemy *e, int t);
void youmu_homing(Projectile *p, int t);
#endif