taisei/src/plrmodes.h

32 lines
651 B
C
Raw Normal View History

/*
* 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);
2011-04-29 10:26:37 +02:00
2011-07-05 15:20:19 +02:00
void youmu_shot(Player *plr);
void youmu_bomb(Player *plr);
void youmu_power(Player *plr, float npow);
/* Marisa */
void marisa_shot(Player *plr);
2011-07-05 15:20:19 +02:00
void marisa_bomb(Player *plr);
void marisa_power(Player *plr, float npow);
#endif