borgware-2d/src/animations/program.h

30 lines
424 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
void spiral(int delay);
2011-02-25 22:57:49 +00:00
void joern1();
void checkerboard(unsigned char times);
2011-11-07 22:35:57 +00:00
void fire();
void random_bright(unsigned cycles);
#endif /* PROGRAMM_H_ */