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
228 B

5 years ago
  1. #include "c2logic/builtins.h"
  2. extern struct MindustryObject display1;
  3. void main(void) {
  4. drawcolor(128, 128, 0, 0);
  5. drawpoly(40, 40, 6, 10, 0);
  6. drawcolor(0, 128, 128, 0);
  7. drawpoly(40, 40, 3, 10, 180);
  8. drawflush(display1);
  9. }