taisei/src/plrmodes.h
laochailan a2a6fb9343 marisa laser revamped
also added fullscreen config option
2011-06-29 17:01:03 +02:00

31 lines
No EOL
591 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_shot(Player *plr);
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_power(Player *plr, float npow);
/* Marisa */
void marisa_shot(Player *plr);
void marisa_power(Player *plr, float npow);
#endif