Last active
July 1, 2019 04:26
-
-
Save fu-sen/3b9fd63279bb97af6380a8ef4d81498a to your computer and use it in GitHub Desktop.
z88dk sprite sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <graphics.h> | |
| #include <games.h> | |
| #include <stdio.h> | |
| char balloon[] = { 8, 8, | |
| 0x0e, 0x1d, 0x1f, 0x1f, 0x0e, 0x08, 0x10, 0xe0 | |
| }; | |
| void main(){ | |
| clg(); | |
| putsprite(SPR_XOR, 68, 20, balloon); | |
| while(!getk()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment