22 Dec
2021
22 Dec
'21
9:51 a.m.
// spaceship_factory.h /* * This file is a stub, just for ideas. Feel free to delete it, break it into subfiles, copy * parts out, rename it, etc etc. Put in what you think might be helpful! */ typedef struct builder_interface builder_interface_t; int builder_ct(); builder_interface_t * builder_alloc(int idx); void builder_free(builder_interface_t * builder);