taisei/src/stage.h
laochailan 512fd9a8e3 deathbombing, marisa shot #1
DEATHBOMB_TIME shall be 10 frames. i think it's appropriate. marisa haz lasorz. (actually made of projectiles, not from lasers). some fixes.
2011-06-25 12:41:40 +02:00

24 lines
No EOL
456 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 STAGE_H
#define STAGE_H
typedef void (*StageRule)(void);
void stage_loop(StageRule start, StageRule end, StageRule draw, StageRule event);
void stage_start();
void stage_logic();
void stage_draw();
void stage_input();
void stage_end();
void apply_bg_shaders();
#endif