2012-01-06 21:52:55 +01: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.
|
2012-01-06 21:52:55 +01:00
|
|
|
* ---
|
|
|
|
* Copyright (C) 2011, Lukas Weber <laochailan@web.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef STAGE1_H
|
|
|
|
#define STAGE1_H
|
|
|
|
|
2017-02-10 11:39:42 +01:00
|
|
|
#include "boss.h"
|
|
|
|
|
2012-08-10 22:08:51 +02:00
|
|
|
void stage1_loop(void);
|
2017-02-10 11:39:42 +01:00
|
|
|
void stage1_spellpractice_loop(void);
|
|
|
|
|
|
|
|
extern AttackInfo stage1_spells[];
|
2012-01-06 21:52:55 +01:00
|
|
|
|
2012-08-10 22:08:51 +02:00
|
|
|
#endif
|