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.
9 lines
222 B
9 lines
222 B
#include "c2logic/builtins.h"
|
|
extern struct MindustryObject display1;
|
|
void main(void) {
|
|
drawcolor(128, 128, 0);
|
|
drawpoly(40, 40, 6, 10, 0);
|
|
drawcolor(0, 128, 128);
|
|
drawpoly(40, 40, 3, 10, 180);
|
|
drawflush(display1);
|
|
}
|