2011-04-10 10:23:24 +02:00
|
|
|
/*
|
|
|
|
* This software is licensed under the terms of the MIT-License
|
2017-02-11 04:52:08 +01:00
|
|
|
* See COPYING for further information.
|
2011-04-10 10:23:24 +02:00
|
|
|
* ---
|
2017-09-12 03:28:15 +02:00
|
|
|
* Copyright (c) 2011-2017, Lukas Weber <laochailan@web.de>.
|
|
|
|
* Copyright (c) 2012-2017, Andrei Alexeyev <akari@alienslab.net>.
|
2011-04-10 10:23:24 +02:00
|
|
|
*/
|
|
|
|
|
2017-09-27 14:14:53 +02:00
|
|
|
#pragma once
|
2011-04-10 10:23:24 +02:00
|
|
|
|
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);
|
2017-02-08 20:59:43 +01:00
|
|
|
void youmu_power(Player *plr, short npow);
|
2011-06-29 17:01:03 +02:00
|
|
|
|
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);
|
2017-02-08 20:59:43 +01:00
|
|
|
void marisa_power(Player *plr, short npow);
|
2011-11-04 18:54:53 +01:00
|
|
|
|
2012-07-16 17:47:06 +02:00
|
|
|
/* Misc */
|
|
|
|
int plrmode_repr(char *out, size_t outsize, Character pchar, ShotMode pshot);
|
2017-04-02 10:16:52 +02:00
|
|
|
int plrmode_parse(const char *name, Character *cha, ShotMode *shot);
|
2012-07-16 17:47:06 +02:00
|
|
|
|
2017-09-27 14:14:53 +02:00
|
|
|
|