After this short break, I have to announce that this project is no longer called openth. The name was stereotypical and conflicted with Open Theme Hospital. Thus, gentlemen, we are now working on Seiyou (西洋). Thanks to lachs0r for this wonderful suggestion. Also the lincense has changed. Farewell, gnutardedness, hello MIT. I feel somehow relieved now after freeing the project of nearly one thousand lines.
19 lines
No EOL
314 B
C
19 lines
No EOL
314 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
|
|
|
|
void stage_start();
|
|
|
|
void stage_logic();
|
|
void stage_draw();
|
|
void stage_input();
|
|
|
|
void stage_end();
|
|
|
|
#endif |