mirror of
https://git.sr.ht/~calebccff/pbsplash
synced 2026-01-12 20:48:40 -09:00
15 lines
221 B
C
15 lines
221 B
C
|
|
#ifndef __pbsplash_h__
|
||
|
|
#define __pbsplash_h__
|
||
|
|
|
||
|
|
struct col {
|
||
|
|
union {
|
||
|
|
unsigned int rgba;
|
||
|
|
struct {
|
||
|
|
unsigned char r, g, b, a;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
void animate_frame(int frame, int w, int y_off);
|
||
|
|
|
||
|
|
#endif
|