forked from foone/VGAPride
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrabs.cpp
More file actions
44 lines (38 loc) · 1.12 KB
/
Copy pathcrabs.cpp
File metadata and controls
44 lines (38 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "graphics.h"
#include "flags.h"
static GraphicsCommand crab_pride_flag_commands[]={
GraphicsCommand(Bitmap),
GraphicsCommand(EndCommandList)
};
static GraphicsCommand trans_crab_flag_commands[]={
GraphicsCommand(Bitmap),
GraphicsCommand(EndCommandList)
};
static GraphicsCommand autistic_pride_flag_commands[]={
GraphicsCommand(Bitmap),
GraphicsCommand(EndCommandList)
};
Flag crab_pride_flag = Flag(
"crab-pride",
"The Cool Crab Pride Flag",
"Created by Alice Averlong in 2022, based on the Cool Crab from Print Shop Deluxe",
"crab|crabs|gay-crabs",
crab_pride_flag_commands
);
Flag trans_crab_flag = Flag(
"trans-crab",
"The Cool Crab Trans Flag",
"Created by Alice Averlong in 2022, based on the Cool Crab from Print Shop Deluxe",
"transcrab",
trans_crab_flag_commands
);
Flag autistic_pride_flag = Flag(
"autistic",
"The Autistic Pride Flag",
"Created by Autistic Empire, under a Creative Commons Attribution-ShareAlike 4.0 International License: https://www.autisticempire.com/autistic-pride/",
"autism|autism-pride|autistic-pride",
autistic_pride_flag_commands,
RGB(248,243,234),
4,
LAYOUT_CENTER
);