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.

14 lines
517 B

5 years ago
  1. #ifndef MINDUSTRY_H
  2. #define MINDUSTRY_H
  3. struct MindustryObject {};
  4. void _asm(char* code);
  5. void print(char* s);
  6. void printd(double s);
  7. void printflush(struct MindustryObject);
  8. struct MindustryObject radar(struct MindustryObject obj, char* target1, char* target2,
  9. char* target3, char* sort, double index);
  10. double sensor(struct MindustryObject obj, char* prop);
  11. void enable(struct MindustryObject obj, double enabled);
  12. void shoot(struct MindustryObject obj, double x, double y, double shoot);
  13. void end();
  14. #endif