Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: anims.h
- Revision:
- 0:4c2681e58186
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/anims.h Tue Jan 19 17:58:03 2021 +0000
@@ -0,0 +1,56 @@
+#ifndef ANIMS_H
+#define ANIMS_H
+
+#include <stdint.h>
+#include "artanim.h"
+#include "drawings.h"
+/*
+artAnim elementsAnim = {
+ 5,
+ {
+ { 1000,32,32,0,0,carbonerouge},
+ { 1000,32,32,0,0,radium},
+ { 1000,32,32,0,0,carbonebleu}
+ }
+};
+*/
+
+artAnim vicRAnim = {
+ 1,
+ {
+ { 6500,32,32,0,0,victoirerouge},
+
+ }
+};
+
+artAnim vicBAnim = {
+ 1,
+ {
+ { 6500,32,32,0,0,victoirebleu}
+ }
+};
+
+artAnim butBAnim = {
+ 1,
+ {
+ { 6500,32,32,0,0,butbleu}
+ }
+};
+
+artAnim butRAnim = {
+ 1,
+ {
+ { 6500,32,32,0,0,butred}
+ }
+};
+
+
+artAnim BabyAnim = {
+ 1,
+ {
+ {NULL,32,32,32,0,babyfoot},
+ }
+};
+
+#endif
+