taisei/src/plrmodes.h
laochailan 3605159528 Renovated Youmu Opposite sign
added some blasts to youmu haunted, too.
2011-11-04 18:54:53 +01:00

32 lines
No EOL
651 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"
#include "player.h"
/* Youmu */
void youmu_opposite_draw(Enemy *e, int t);
void youmu_opposite_logic(Enemy *e, int t);
int youmu_homing(Projectile *p, int t);
void youmu_shot(Player *plr);
void youmu_bomb(Player *plr);
void youmu_power(Player *plr, float npow);
/* Marisa */
void marisa_shot(Player *plr);
void marisa_bomb(Player *plr);
void marisa_power(Player *plr, float npow);
#endif