borgware-2d/animations/programm.h

30 lines
434 B
C
Raw Normal View History

#ifndef PROGRAMM_H_
#define PROGRAMM_H_
2011-03-07 01:12:03 +00:00
#include "../pixel.h"
#include "../util.h"
2011-02-25 22:57:49 +00:00
void test_level(unsigned char level);
void test_palette();
2009-02-19 00:54:57 +00:00
void test_palette2();
2009-02-26 00:04:45 +00:00
2011-02-25 22:57:49 +00:00
#ifdef ANIMATION_OFF
inline static void off()
{
clear_screen(0);
2009-02-26 00:04:45 +00:00
2011-02-25 22:57:49 +00:00
while(1)
wait(100);
2009-02-26 00:04:45 +00:00
2011-02-25 22:57:49 +00:00
}
#endif
2009-02-26 00:04:45 +00:00
2011-02-25 22:57:49 +00:00
void spirale(unsigned int delay);
void joern1();
void schachbrett(unsigned char times);
void feuer();
void random_bright(unsigned cycles);
#endif /* PROGRAMM_H_ */