2011-04-10 10:23:24 +02:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2011-04-26 12:04:45 +02:00
|
|
|
#include "enemy.h"
|
2011-05-06 17:09:43 +02:00
|
|
|
#include "projectile.h"
|
2011-06-25 12:41:40 +02:00
|
|
|
#include "player.h"
|
|
|
|
|
|
|
|
/* Youmu */
|
|
|
|
|
2011-04-26 12:04:45 +02:00
|
|
|
void youmu_opposite_draw(Enemy *e, int t);
|
|
|
|
void youmu_opposite_logic(Enemy *e, int t);
|
2011-04-10 10:23:24 +02:00
|
|
|
|
2011-05-13 19:03:02 +02:00
|
|
|
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);
|
2011-06-29 17:01:03 +02:00
|
|
|
void youmu_power(Player *plr, float npow);
|
|
|
|
|
2011-06-25 12:41:40 +02:00
|
|
|
/* Marisa */
|
|
|
|
|
|
|
|
void marisa_shot(Player *plr);
|
2011-07-05 15:20:19 +02:00
|
|
|
void marisa_bomb(Player *plr);
|
2011-06-29 17:01:03 +02:00
|
|
|
void marisa_power(Player *plr, float npow);
|
2011-11-04 18:54:53 +01:00
|
|
|
|
2011-04-10 10:23:24 +02:00
|
|
|
#endif
|