pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
694 B
24 lines
694 B
10 years ago
|
/* This file eases the integration of your personal animations which are not
|
||
|
meant to be included in the official Borgware-2D repository.
|
||
|
|
||
|
It is inserted at the middle of the big switch/case block of the
|
||
|
src/display_loop.c file. Please make sure that your use a mode number
|
||
|
greater or equal than 200 to avoid conflicts with newer upstream
|
||
|
animations.
|
||
|
|
||
|
Just add your header #include directives as shown in the commented
|
||
|
samples. */
|
||
|
|
||
|
// #ifdef ANIMATION_MY_SIMPLE_ANIM
|
||
|
// case 200:
|
||
|
// my_simple_animation();
|
||
|
// break;
|
||
|
// #endif
|
||
|
|
||
|
// #ifdef ANIMATION_MY_COMPLEX_ANIM
|
||
|
// case 201:
|
||
|
// my_complex_animation(MY_SAMPLE_INT, MY_SAMPLE_BOOL);
|
||
|
// break;
|
||
|
// #endif
|
||
|
|