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 */
|
|
|
|
|
|
|
|
void youmu_shot(Player *plr);
|
2011-04-10 10:23:24 +02:00
|
|
|
|
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-06-25 12:41:40 +02:00
|
|
|
/* Marisa */
|
|
|
|
|
|
|
|
void marisa_shot(Player *plr);
|
|
|
|
|
2011-04-10 10:23:24 +02:00
|
|
|
#endif
|